blob: 51984b8ab9fe89348738af1b604400424de60fa2 [file] [log] [blame]
Wolfgang Denka0b1b612008-10-14 22:13:41 +02001commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
2Author: Jason Jin <Jason.jin@freescale.com>
3Date: Fri Oct 10 11:41:01 2008 +0800
4
5 Do not init SATA when disabled on 8536DS.
6
7 SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
8 driver still try to access the SATA registers, the cpu will hangup.
9 This patch try to fix this by reading the serdes status before the SATA
10 initialize.
11
12 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
13 Acked-by: Andy Fleming <afleming@freescale.com>
14
15commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
16Author: Nikita V. Youshchenko <yoush@cs.msu.su>
17Date: Fri Oct 3 00:03:55 2008 +0400
18
19 fsl_diu: fix alignment error that caused malloc corruption
20
21 When aligning malloc()ed screen_base, invalid offset was added.
22 This not only caused misaligned result (which did not cause hardware
23 misbehaviour), but - worse - caused screen_base + smem_len to
24 be out of malloc()ed space, which in turn caused breakage of
25 futher malloc()/free() operation.
26
27 This patch fixes screen_base alignment.
28
29 Also this patch makes memset() that cleans framebuffer to be executed
30 on first initialization of diu, not only on re-initialization. It looks
31 correct to clean the framebuffer instead of displaying random garbage;
32 I believe that was disabled only because that memset caused breakage
33 of malloc/free described above - which no longer happens with the fix
34 described above.
35
36 Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
37
38commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
39Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40Date: Wed Sep 24 10:29:37 2008 +0200
41
42 api: Fix building with CONFIG_API
43
44 This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
45
46 USB_MAX_STOR_DEV is defined in include/usb.h, but
47 needed in api/api_storage.c.
48
49 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50
51commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
52Author: Peter Tyser <ptyser@xes-inc.com>
53Date: Tue Sep 23 12:39:40 2008 -0500
54
55 Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
56
57 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
58
59commit 81e612014c40c922ec35488d17c504d4e9286f06
60Author: Peter Tyser <ptyser@xes-inc.com>
61Date: Tue Sep 23 12:38:42 2008 -0500
62
63 Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
64
65 The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
66 CFG_EEPROM_PAGE_WRITE_BITS in various temperature
67 sensor drivers are not necessary
68
69 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
70
71commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
72Author: Mike Frysinger <vapier@gentoo.org>
73Date: Tue Oct 14 07:04:38 2008 -0400
74
75 cmd_spi: remove broken signed casting for display
76
77 Since we're working with unsigned data, you can't apply a signed pointer
78 cast and then attempt to print the result. Otherwise you get wrong output
79 when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
80
81 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
82
83commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
84Author: Mike Frysinger <vapier@gentoo.org>
85Date: Tue Oct 14 07:05:24 2008 -0400
86
87 strings cmd: drop old CONFIG_CFG_STRINGS define
88
89 We don't need CONFIG_CFG_STRINGS anymore now that we have the define
90 CONFIG_CMD_STRINGS and Makefile control.
91
92 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
93
94commit fecb5ade3b37f62981f2b05b621005850173aaa9
95Author: Jason Jin <Jason.jin@freescale.com>
96Date: Fri Sep 19 17:32:49 2008 +0800
97
98 Fix the NAND size overflow issue.
99
100 When the total size of all NAND devices exceeds 4 GiB, the size will
101 overflow. This patch tries to fix this.
102
103 Note that we still have a problem when a single NAND device is bigger
104 than 4 GiB: then the overflow would actually happen earlier, i. e.
105 when storing the size in nand_info[].size, as nand_info[].size is an
106 "u_int32_t".
107
108 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
109 Signed-off-by: Wolfgang Denk <wd@denx.de>
110
111commit 30f574717277238b9014b8136c90eea77196490f
112Author: Louis Su <louis@asix.com.tw>
113Date: Wed Jul 9 11:01:37 2008 +0800
114
115 AX88180: new gigabit network driver
116
117 Signed-off-by: Louis Su <louis@asix.com.tw>
118 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
119
120commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
121Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
122Date: Tue Aug 19 16:07:03 2008 +0200
123
124 enable 10/100M at VSC8601 at tsec driver
125
126 Currently VSC8601 doesn't link with 10/100M partners if the
127 EEPROM/Strapping is not set up.
128 Setting the auto-neg register fixes this.
129
130 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
131 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
132
133commit 702c85b0e876d587c11acdbb55738ee52acd54f4
134Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
135Date: Tue Sep 30 15:02:53 2008 +0900
136
137 net: ne2000: Divided a function of NE2000 driver
138
139 get_prom function was used __attriute__ , but it is not enable.
140 ax88796.o does not do link besides ne2000.o. When ld is carried
141 out, get_prom function of ax88796.c is ignored.
142 This problem is a thing by specifications of ld.
143 I checked and test this patch on SuperH and MIPS.
144
145 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
146 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
147
148commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
149Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
150Date: Tue Oct 14 11:10:59 2008 +0900
151
152 sh: rsk7203: Add smc911x driver support to board config file
153
154 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
155 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
156
157commit cae6f909baf86357b3c0bd01acfc414348c4d175
158Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
159Date: Thu Oct 9 13:54:33 2008 +0900
160
161 sh: Fix cannot execute a stand-alone application
162
163 Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
164
165 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
166 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
167
168commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
169Author: Ed Swarthout <Ed.Swarthout@freescale.com>
170Date: Wed Oct 8 23:38:00 2008 -0500
171
172 fsl_pci_init do not scan bus when configured as an end-point
173
174 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
175 Acked-by: Andy Fleming <afleming@freescale.com>
176
177commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
178Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
179Date: Tue Sep 16 17:07:53 2008 -0400
180
181 ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
182
183 This is no longer necessary now that the GD_FLG_RELOC flag is set for
184 all ARM boards.
185
186 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
187
188commit d977a57356657ba241256231efca32828a5822f9
189Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
190Date: Sat Sep 13 10:04:32 2008 +0200
191
192 Fix lzma uncompress call (image_start wrongly used instead image_len)
193
194 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
195
196commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
197Author: Nick Spence <nick.spence@freescale.com>
198Date: Thu Aug 28 14:09:15 2008 -0700
199
200 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
201
202 This is needed in unlock_ram_in_cache() because it is called from C and
203 will corrupt the small data area anchor that is kept in R2.
204
205 lock_ram_in_cache() is modified similarly as good coding practice, but
206 is not called from C.
207
208 Signed-off-by: Nick Spence <nick.spence@freescale.com>
209
210commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
211Author: Kumar Gala <galak@kernel.crashing.org>
212Date: Tue Aug 19 15:05:34 2008 -0500
213
214 86xx: remove redudant code with lib_ppc/interrupts.c
215
216 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
217 Not know how that happened, but there is no good reason for it.
218
219 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
220 they exist.
221
222 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
223
224commit 0d01f66d235118515b5086b88f82498bc0695d6a
225Author: Ed Swarthout <Ed.Swarthout@freescale.com>
226Date: Thu Oct 9 01:26:36 2008 -0500
227
228 CFI: cfi_flash write fix for AMD legacy
229
230 The flash_unlock_seq requires a sector for AMD_LEGACY.
231 Fix a retcode check typeo.
232
233 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
234 Signed-off-by: Stefan Roese <sr@denx.de>
235
236commit 542b385a620a1783454a00424930e51895f45073
237Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
238Date: Tue Oct 7 13:13:10 2008 +0200
239
240 ppc4xx: Fix USB 2.0 phy reset sequence
241
242 This patch fixes USB 2.0 communication issues on some DU440 boards.
243
244 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
245 Signed-off-by: Stefan Roese <sr@denx.de>
246
247commit df8c1ce11114c2260dedb5547281945f7db8fa5c
248Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
249Date: Tue Oct 7 13:13:09 2008 +0200
250
251 ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
252
253 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
254 Signed-off-by: Stefan Roese <sr@denx.de>
255
256commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
257Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
258Date: Tue Oct 7 13:13:08 2008 +0200
259
260 ppc4xx: Fix DU440 GPIO configuration
261
262 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
263 Signed-off-by: Stefan Roese <sr@denx.de>
264
265commit 35dd025c70fcc4389317db2f2a9d14795172137d
266Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
267Date: Tue Oct 7 13:13:07 2008 +0200
268
269 ppc4xx: Update DU440 config
270
271 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
272 Signed-off-by: Stefan Roese <sr@denx.de>
273
274commit f3bf9273939ffe1a60a32a2eef909097f15df56b
275Author: Kumar Gala <galak@kernel.crashing.org>
276Date: Wed Oct 8 15:36:39 2008 -0500
277
278 MPC8572DS: Fix compile warnings
279
280 Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
281 compile warnings:
282
283 cmd_i2c.c:112: warning: missing braces around initializer
284 cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
285
286 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
287
288commit dffd2446fb041f38ef034b0fcf41e51e5e489159
289Author: Wolfgang Grandegger <wg@grandegger.com>
290Date: Tue Sep 30 10:55:57 2008 +0200
291
292 85xx: Using proper I2C source clock divider for MPC8544
293
294 Measurements with our MPC8544 board showed that the I2C bus frequency
295 is wrong by a factor of 1.5. Obviously, the interpretation of the
296 MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
297 correct. There seems to be an error in the 8544 RM.
298
299 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
300
301commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
302Author: Rafal Czubak <rcz@semihalf.com>
303Date: Wed Oct 8 13:41:30 2008 +0200
304
305 FSL: Fix get_cpu_board_revision() return value.
306
307 get_cpu_board_revision() returned board revision based on information stored
308 in global static struct eeprom. It should instead use one from local struct
309 board_eeprom, to which the data is actually read from EEPROM. The bug led to
310 system hang after printing L1 cache information on U-Boot startup. The problem
311 was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
312 boards using CFG_I2C_EEPROM_CCID.
313
314 The change has been successfully tested on MPC8555CDS system.
315
316 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
317
318commit 747f316cca484ed627a97dd3391febabce384186
319Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
320Date: Tue Sep 30 20:08:49 2008 +0200
321
322 update uImage FIT multi documentation
323
324 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
325
326commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
327Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
328Date: Tue Sep 30 20:08:36 2008 +0200
329
330 move README.imx31 to doc/ and merge with README.mx31
331
332 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
333
334commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
335Author: Guennadi Liakhovetski <lg@denx.de>
336Date: Thu Sep 25 20:54:37 2008 +0200
337
338 i.MX31: switch to CFG_HZ=1000
339
340 Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
341 cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
342 provides 2% or 0.4% precision depending on the
343 CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
344 boot-delay.
345
346 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
347
348commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
349Author: gnusercn <gnusercn@gmail.com>
350Date: Wed Oct 8 18:58:58 2008 +0200
351
352 Fix bug: in arch-arm, env_get_char dose not work fine
353
354 due to the arm implementation which supposed that U-Boot is in RAM
355 when we jump to start_armboot
356
357 Signed-off-by: gnusercn <gnusercn@gmail.com>
358 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
359
360commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
361Author: Adam Graham <agraham@amcc.com>
362Date: Mon Oct 6 10:16:13 2008 -0700
363
364 ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
365
366 After changing SDRAM_CLKTR phase value rerun the memory preload
367 initialization sequence (INITPLR) to reset and relock the memory
368 DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
369 adjustment effects the phase relationship of the internal, to the
370 PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
371
372 Signed-off-by: Adam Graham <agraham@amcc.com>
373 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
374 Signed-off-by: Stefan Roese <sr@denx.de>
375
376commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
377Author: Haiying Wang <Haiying.Wang@freescale.com>
378Date: Fri Oct 3 11:48:03 2008 -0400
379
380 Remove redundant #define for MPC8536DS
381
382 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
383
384commit 445a7b38308eb05b41de74165b20855db58c7ee5
385Author: Haiying Wang <Haiying.Wang@freescale.com>
386Date: Fri Oct 3 11:47:30 2008 -0400
387
388 Add ID EEPROM support for MPC8572DS
389
390 The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
391 system information like mac addresses etc. This patch enables it.
392
393 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
394
395commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
396Author: Haiying Wang <Haiying.Wang@freescale.com>
397Date: Fri Oct 3 11:46:59 2008 -0400
398
399 Minor fixes for I2C address on MPC8572DS
400
401 MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
402 according to the board spec, and adds the 2nd i2c bus offset.
403
404 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
405
406commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
407Author: Jason Jin <Jason.jin@freescale.com>
408Date: Sat Sep 27 14:40:57 2008 +0800
409
410 Fix the incorrect DDR clk freq reporting on 8536DS
411
412 On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
413 The display is still sync mode DDR freq. This patch try to fix
414 this. The display DDR freq is now the actual freq in both
415 sync and async mode.
416
417 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
418
419commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
420Author: Kumar Gala <galak@kernel.crashing.org>
421Date: Tue Oct 7 10:28:46 2008 -0500
422
423 85xx: Remove setting of *cache-line-size in device trees
424
425 ePAPR says if the *cache-block-size is the same as *cache-line-size
426 than we don't need the *cache-line-size property.
427
428 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
429
430commit cd3cb0d9269d155276b00207e3816a9347fd1c92
431Author: Gerald Van Baren <vanbaren@cideas.com>
432Date: Sat Oct 4 07:56:06 2008 -0400
433
434 libfdt: Fix error in documentation for fdt_get_alias_namelen()
435
436 Oops, screwed up the function name in the documenting comment for this
437 function. Trivial correction in this patch.
438
439 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
440 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
441
442commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
443Author: David Gibson <david@gibson.dropbear.id.au>
444Date: Wed Aug 20 16:55:14 2008 +1000
445
446 libfdt: Add function to explicitly expand aliases
447
448 Kumar has already added alias expansion to fdt_path_offset().
449 However, in some circumstances it may be convenient for the user of
450 libfdt to explicitly get the string expansion of an alias. This patch
451 adds a function to do this, fdt_get_alias(), and uses it to implement
452 fdt_path_offset().
453
454 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
455
456commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
457Author: Mike Frysinger <vapier@gentoo.org>
458Date: Thu Oct 2 01:55:38 2008 -0400
459
460 cfi_flash: do not reset flash when probe fails
461
462 The CFI flash driver starts at flash_init() which calls down into
463 flash_get_size(). This starts by calling flash_detect_cfi(). If said
464 function fails, flash_get_size() finishes by attempting to reset the
465 flash. Unfortunately, it does this with an info->portwidth set to 0x10
466 which filters down into flash_make_cmd() and that happily smashes the
467 stack by sticking info->portwidth bytes into a cfiword_t variable that
468 lives on the stack. On a 64bit system you probably won't notice, but
469 killing the last 8 bytes on a 32bit system usually leads to a corrupt
470 return address. Which is what happens on a Blackfin system.
471
472 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
473 Signed-off-by: Stefan Roese <sr@denx.de>
474
475commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
476Author: Stefan Roese <sr@denx.de>
477Date: Fri Sep 26 17:03:26 2008 +0200
478
479 fdt: Overwrite /chosen node in bootm if it already exists in the dtb
480
481 Set force parameter in fdt_chosen() call in do_bootm_linux() call.
482 Without this, the chosen node is not overwritten if it already
483 exists.
484
485 Signed-off-by: Stefan Roese <sr@denx.de>
486
487commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
488Author: Jon Loeliger <jdl@freescale.com>
489Date: Thu Sep 25 11:02:17 2008 -0500
490
491 Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
492
493 Using Gcc 4.3 detected this problem:
494
495 ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
496 ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
497 occur when assuming that (X + c) < X is always false
498
499 To fix the problem, treat the offset as an unsigned int.
500
501 The problem report and proposed fix were provided
502 by Steve Papacharalambous <stevep@freescale.com>.
503
504 Signed-off-by: Jon Loeliger <jdl@freescale.com>
505
506commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
507Author: David Gibson <david@gibson.dropbear.id.au>
508Date: Fri Aug 29 14:19:13 2008 +1000
509
510 libfdt: Fix bugs in fdt_get_path()
511
512 The current implementation of fdt_get_path() has a couple of bugs,
513 fixed by this patch.
514
515 First, contrary to its documentation, on success it returns the length
516 of the node's path, rather than 0. The testcase is correspondingly
517 wrong, and the patch fixes this as well.
518
519 Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
520 instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
521 Specifically this happens when there is insufficient space even to
522 hold the path's second last component. This behaviour is corrected,
523 and the testcase updated to check it.
524
525 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
526
527commit 33af3e6656e84660d397b5dd95abab2dccc36f83
528Author: Wolfgang Denk <wd@denx.de>
529Date: Wed Oct 1 12:34:58 2008 +0200
530
531 TQM5200: enable support for ATAPI devices
532
533 Signed-off-by: Wolfgang Denk <wd@denx.de>
534
535commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
536Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
537Date: Mon Sep 15 05:48:25 2008 +0200
538
539 Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
540
541 we need this due to the arm implementation which supposed that U-Boot
542 is in RAM when we jump to start_armboot
543
544 This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
545 in order to do it for all arm board
546
547 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
548
549commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
550Author: Kim Phillips <kim.phillips@freescale.com>
551Date: Wed Sep 24 08:46:25 2008 -0500
552
553 mpc83xx: don't disable autoboot
554
555 bootdelay set to -1 'permanently' disables autobooting, even if
556 bootcmd is specified. Change to a positive value to allow
557 autobooting when a bootcmd is set.
558
559 Reported-by: Coray Tate <Coray.Tate@freescale.com>
560 Cc: Scott Wood <scottwood@freescale.com>
561 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
562
563commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
564Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
565Date: Wed Sep 24 10:42:15 2008 +0900
566
567 mpc83xx: Fix typo in include/mpc83xx.h
568
569 Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
570
571 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
572 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
573
574commit 162c41c03179727a1d14262f703c9a8bc40231fa
575Author: Kim Phillips <kim.phillips@freescale.com>
576Date: Tue Sep 23 09:38:49 2008 -0500
577
578 mpc83xx: add h/w flash protection to board configs
579
580 the operating system may leave flash in a h/w locked state after writing.
581 This allows u-boot to continue to write flash by enabling h/w unlocking
582 by default.
583
584 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
585
586commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
587Author: Anton Vorontsov <avorontsov@ru.mvista.com>
588Date: Thu Sep 11 21:35:36 2008 +0400
589
590 mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
591
592 The spd_dram code shifts the base address, then masks 20 bits, but
593 forgets to shift the base address back. Fix this by just masking the
594 base address correctly.
595
596 Found this bug while trying to relocate a DDR memory at the base != 0.
597
598 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
599 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
600
601commit 8fd4166c467a46773f80208bda1ec3b4757747bc
602Author: Stefan Roese <sr@denx.de>
603Date: Mon Sep 22 16:10:43 2008 +0200
604
605 ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
606
607 Depending on the configuration jumper "SATA SELECT", U-Boot disabled
608 either one PCIe node or the SATA node in the device tree blob. This
609 patch removes the unnecessary and even confusing warning, when the node
610 is not found at all.
611
612 Signed-off-by: Stefan Roese <sr@denx.de>
613
614commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
615Author: Remy Bohmer <linux@bohmer.net>
616Date: Fri Sep 19 13:30:06 2008 +0200
617
618 Add missing device types to dev_print() in part.c
619
620 Signed-off-by: Remy Bohmer <linux@bohmer.net>
621
622commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
623Author: Wolfgang Denk <wd@denx.de>
624Date: Mon Sep 22 22:23:06 2008 +0200
625
626 Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
627 eventually leads to a machine check. This change assures that DPRAM
628 is allocated only once in that case.
629
630 Signed-off-by: Gary Jennejohn <garyj@denx.de>
631 Signed-off-by: Wolfgang Denk <wd@denx.de>
632
633commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
634Author: Laurent Pinchart <laurentp@cse-semaphore.com>
635Date: Wed Sep 17 17:57:34 2008 +0200
636
637 Fix Spartan-3 definitions.
638
639 A few Spartan-3 definitions erroneously use Spartan-3E size
640 constants. This patch fixes them.
641
642 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
643
644commit 28113e1f0da4146b823ffce37680d31d5685a60b
645Author: Laurent Pinchart <laurentp@cse-semaphore.com>
646Date: Wed Sep 17 17:41:58 2008 +0200
647
648 Remove duplicate Spartan-3E definition.
649
650 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
651 Signed-off-by: Wolfgang Denk <wd@denx.de>
652
653commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
654Author: Anatolij Gustschin <agust@denx.de>
655Date: Wed Sep 17 13:46:17 2008 +0200
656
657 socrates: change default mtest address range
658
659 Running mtest command on socrates without specifying
660 an address range crashes the board. This patch changes
661 default mtest address range to prevent this behavior.
662
663 Signed-off-by: Anatolij Gustschin <agust@denx.de>
664
665commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
666Author: Anatolij Gustschin <agust@denx.de>
667Date: Wed Sep 17 12:34:45 2008 +0200
668
669 socrates: fix crash after relocation
670
671 Currently U-Boot crashes after relocation to RAM.
672 Changing the CPO value of the DDR SDRAM TIMING_CFG_2
673 register to READ_LAT + 1 (to the value it was before
674 conversion of socrates to new DDR code) fixes the
675 problem.
676
677 Signed-off-by: Anatolij Gustschin <agust@denx.de>
678
679commit 562788b0a303f3528b920d81f547f5ca77ba528e
680Author: Anatolij Gustschin <agust@denx.de>
681Date: Wed Sep 17 11:45:51 2008 +0200
682
683 socrates: fix SPD EEPROM address
684
685 Commit be0bd8234b9777ecd63c4c686f72af070d886517
686 changed SPD EEPROM address to 0x51 and DDR SDRAM
687 detection stopped working. Change this address
688 back to 0x50.
689
690 Signed-off-by: Anatolij Gustschin <agust@denx.de>
691
692commit 023824549a370bd185d7129d9a6c86f9be7b86a8
693Author: Stefan Roese <sr@denx.de>
694Date: Mon Sep 22 11:06:50 2008 +0200
695
696 Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
697
698 This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
699
700 Signed-off-by: Stefan Roese <sr@denx.de>
701
702commit b5d10a13525c07ec6374adf840d7c87553b5f189
703Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
704Date: Thu Sep 18 19:34:36 2008 +0900
705
706 sh: Fix compile warning
707
708 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
709
710commit 4a065abf926f128beb36d93449defa0d690e7fef
711Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
712Date: Thu Sep 18 19:04:26 2008 +0900
713
714 sh: Add support watchdog for SH4A core
715
716 Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
717 And fix some compile warning.
718
719 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
720
721commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
722Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
723Date: Wed Sep 17 11:45:26 2008 +0900
724
725 sh: Fix typo in SH serial driver
726
727 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
728 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
729
730commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
731Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
732Date: Wed Sep 17 11:08:36 2008 +0900
733
734 sh: Add support any page size and empty_zero_page to SH Linux uImage
735
736 Old U-Boot supported 4KB page size only. If this version, Linux
737 kernel can not get command line from U-Boot.
738 SH Linux kernel can change page size and empty_zero_page.
739 This patch support this function and fix promlem.
740
741 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
742 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
743
744commit ce9f99ddb59628f41dc534e892368a7d66dfc774
745Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
746Date: Thu Aug 28 13:40:52 2008 +0900
747
748 sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
749
750 Add function of smc911x, pkt_data_pull and pkt_data_push.
751
752 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
753 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
754
755commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
756Author: Wolfgang Denk <wd@denx.de>
757Date: Thu Sep 18 13:57:32 2008 +0200
758
759 ADS5121: fix typo in "rootpath" default setting
760
761 Signed-off-by: Wolfgang Denk <wd@denx.de>
762
763commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
764Author: Wolfgang Denk <wd@denx.de>
765Date: Wed Sep 17 10:17:55 2008 +0200
766
767 Coding style cleanup; update CHANEGLOG
768
769 Signed-off-by: Wolfgang Denk <wd@denx.de>
770
771commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
772Author: Victor Gallardo <vgallardo@amcc.com>
773Date: Tue Sep 16 06:59:13 2008 -0700
774
775 ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
776
777 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
778 Signed-off-by: Adam Graham <agraham@amcc.com>
779 Signed-off-by: Stefan Roese <sr@denx.de>
780
781commit ce47eb402c5e29a025399dc282246414fc492940
782Author: Peter Tyser <ptyser@xes-inc.com>
783Date: Tue Sep 16 10:04:47 2008 -0500
784
785 Support for multiple SGMII/TBI interfaces for TSEC ethernet
786
787 Fix TBI PHY accesses to use the proper offset in CPU register space. The
788 previous code would incorrectly access the TBI PHY by reading/writing to CPU
789 register space at the same location as would be used to access external PHYs.
790
791 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
792 Acked-by: Andy Fleming <afleming@freescale.com>
793
Wolfgang Denk87b4ef52008-09-17 10:17:55 +0200794commit 7c803be2eb3cae245dedda438776e08fb122250f
795Author: Wolfgang Denk <wd@denx.de>
796Date: Tue Sep 16 18:02:19 2008 +0200
797
798 TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
799
800 After switching to using the CFI flash driver, the correct remapping
801 of the flash banks was forgotten.
802
803 Also, some boards were not adapted, and the old legacy flash driver
804 was not removed yet.
805
806 Signed-off-by: Wolfgang Denk <wd@denx.de>
807
808commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
809Author: Wolfgang Denk <wd@denx.de>
810Date: Sun Sep 14 00:59:35 2008 +0200
811
812 Prepare v2008.10-rc2
813
814 Signed-off-by: Wolfgang Denk <wd@denx.de>
815
816commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
817Author: Wolfgang Denk <wd@denx.de>
818Date: Sat Sep 13 02:23:05 2008 +0200
819
820 Coding style cleanup, update CHANGELOG
821
822 Signed-off-by: Wolfgang Denk <wd@denx.de>
823
Wolfgang Denkf12e4542008-09-13 02:23:05 +0200824commit 0c32565f536609d78feef35c88bbc39d3ac53a73
825Author: Peter Tyser <ptyser@xes-inc.com>
826Date: Wed Sep 10 09:18:34 2008 -0500
827
828 Update mailing list email and archive addresses
829
830 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
831
832commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
833Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
834Date: Thu Sep 11 15:40:01 2008 +0200
835
836 85xx: socrates: autoprobe Lime chip
837
838 This patch is an attempt to implement autoprobing for the Lime
839 presence on the bus.
840 Configure GPCM for Lime CS2 and try to access chip ID registers.
841 Second read atempt delivers register values if the chip is present.
842
843 Signed-off-by: Anatolij Gustschin <agust@denx.de>
844
845commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
846Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
847Date: Thu Sep 11 15:40:01 2008 +0200
848
849 85xx: socrates: Add support for new image format.
850
851 Signed-off-by: Detlev Zundel <dzu@denx.de>
852
853commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
854Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
855Date: Thu Sep 11 17:28:18 2008 +0900
856
857 sh: Fix compile error for r2dplus
858
859 netdev.h was not include by r2dplus.
860
861 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
862
863commit 56844a22b76c719e600047e23b80465a44d76abd
864Author: Heiko Schocher <hs@denx.de>
865Date: Thu Sep 11 08:11:23 2008 +0200
866
867 powerpc: Fix bootm to boot up again with a Ramdisk
868
869 Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
870 and this stopped Linux from booting with a Ramdisk. This patch fixes
871 this, by deleting the useless dummy mem reservation.
872
873 When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
874 added to of_size, so we dont need anymore a dummy mem reservation.
875
876 I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
877 system (=0x44 bytes) and rounded it up to 0x80).
878
879 Signed-off-by: Heiko Schocher <hs@denx.de>
880 Acked-by: Kumar Gala <galak@kernel.crashing.org>
881
882commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
883Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
884Date: Mon Sep 8 02:46:13 2008 +0200
885
886 Add support for LZMA uncompression algorithm.
887
888 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
889 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
890
891commit 0008b6d968160abe2bfd936493f3a516a7c8da20
892Author: Anton Vorontsov <avorontsov@ru.mvista.com>
893Date: Fri Jun 27 23:04:20 2008 +0400
894
895 fsl_elbc_nand: ecclayout cleanups
896
897 This patch deletes oobavail assignments, they're calculated by the nand
898 core code in nand_scan_tail, plus current oobavail values are wrong for
899 the LP NANDs.
900
901 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
902 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
903 Signed-off-by: Scott Wood <scottwood@freescale.com>
904
905commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
906Author: Anton Vorontsov <avorontsov@ru.mvista.com>
907Date: Fri Jun 27 23:04:13 2008 +0400
908
909 fsl_elbc_nand: implement support for flash-based BBT
910
911 This patch implements support for flash-based BBT for chips working
912 through ELBC NAND controller, so that NAND core will not have to re-scan
913 for bad blocks on every boot.
914
915 Because ELBC controller may provide HW-generated ECCs we should adjust
916 bbt pattern and bbt version positions in the OOB free area.
917
918 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
919 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
920 Signed-off-by: Scott Wood <scottwood@freescale.com>
921
922commit 97ae023648e764f794ffb9c52da109d6caf09c47
923Author: Anton Vorontsov <avorontsov@ru.mvista.com>
924Date: Fri Jun 27 23:04:04 2008 +0400
925
926 fsl_elbc_nand: fix OOB workability for large page NAND chips
927
928 For large page chips, nand_bbt is looking into OOB area, and checking
929 for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
930 reserved for bbt means.
931
932 But ELBC driver is specifying ecclayout so that oobfree area starts at
933 offset 1, so only one byte left for the bbt purposes.
934
935 This causes problems with any OOB users, namely JFFS2: after first mount
936 JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
937
938 OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
939 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
940 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
941 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
942
943 And on the next boot, NAND core will rescan for bad blocks, then will
944 see "0xff 0x19" pattern, and will mark all blocks as bad ones.
945
946 To fix the issue we should implement our own bad block pattern: just one
947 byte at OOB start. Though, this will work only for x8 chips. For x16
948 chips two bytes must be checked. Since ELBC driver does not support x16
949 NANDs (yet), we're safe for now.
950
951 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
952 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
953 Signed-off-by: Scott Wood <scottwood@freescale.com>
954
955commit 7238ada313057a85409485b8ee21515dc10c07a5
956Author: Wolfgang Denk <wd@denx.de>
957Date: Fri Sep 12 13:52:21 2008 +0200
958
959 MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
960
961 Signed-off-by: Wolfgang Denk <wd@denx.de>
962
963commit b18410e508a12ba0a177dfc2a386857c806fa96d
964Author: Stefan Roese <sr@denx.de>
965Date: Thu Sep 11 13:05:56 2008 +0200
966
967 ppc4xx: Enable device tree (FDT) support in zeus board port
968
969 Signed-off-by: Stefan Roese <sr@denx.de>
970
971commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
972Author: Stefan Roese <sr@denx.de>
973Date: Wed Sep 10 16:53:47 2008 +0200
974
975 ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
976
977 This patch fixes a problem introdiced with patch
978 bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
979 initdram()].
980
981 The boards affected are:
982 - PCI405
983 - PPChameleonEVB
984 - quad100hd
985 - taihu
986 - zeus
987
988 Signed-off-by: Stefan Roese <sr@denx.de>
989
990commit 61737c59a3285f6fadf96a5836879898c04ec28d
991Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
992Date: Thu Sep 11 19:41:26 2008 -0400
993
994 ppc4xx: Add .gitignore file to xilinx-ppc440 boards
995
996 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
997 Signed-off-by: Stefan Roese <sr@denx.de>
998
999commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
1000Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1001Date: Thu Sep 11 19:41:25 2008 -0400
1002
1003 ppc4xx: Fix compilation of v5fx30teval_flash
1004
1005 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1006 Signed-off-by: Stefan Roese <sr@denx.de>
1007
1008commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
1009Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1010Date: Wed Sep 10 17:44:30 2008 -0400
1011
1012 ppc4xx: Fix in-tree build for ppc440-generic boards
1013
1014 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1015 Signed-off-by: Stefan Roese <sr@denx.de>
1016
1017commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
1018Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1019Date: Fri Sep 12 02:20:47 2008 +0200
1020
1021 ARM: synchronize mach-types.h with linux 2.6.27-rc6
1022
1023 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1024
1025commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
1026Author: Jens Scharsig <esw@bus-elektronik.de>
1027Date: Fri Sep 12 02:20:47 2008 +0200
1028
1029 at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
1030
1031 This patch prevents linker error on AT91RM9200 boards, if
1032 CONFIG_CMD_I2_TREE is set.
1033 It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
1034
1035 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
1036
1037commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
1038Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
1039Date: Fri Sep 12 02:20:47 2008 +0200
1040
1041 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
1042
1043 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
1044
1045 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
1046
1047commit 03db53335c8eba656a7c44d1555b1a4514383e33
1048Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
1049Date: Fri Sep 12 02:20:46 2008 +0200
1050
1051 make: Remove redundant __ARM__ addition when cross-compiling on *BSD
1052
1053 __ARM__ is given by arm_config.mk automatically.
1054
1055 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
1056
1057commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
1058Author: Claudio Scordino <claudio@evidence.eu.com>
1059Date: Fri Sep 12 02:20:46 2008 +0200
1060
1061 Fix MACH_TYPE for the AT91RM9200DK board.
1062
1063 Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
1064
1065commit 274737e5eb25b2bcd3af3a96da923effd543284f
1066Author: Andrew Dyer <adyer@righthandtech.com>
1067Date: Fri Sep 12 02:20:46 2008 +0200
1068
1069 i.mx change get_timer(base) to return time since base
1070
1071 This patch changes get_timer() for i.MX to return the time since
1072 'base' instead of the time since the counter was at zero.
1073
1074 Symptom seen is flash timeout errors when erasing or programming a
1075 sector using the common cfi flash code.
1076
1077 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
1078
1079commit 48fed40575b3e8eae960eb0141509ddd9a73012a
1080Author: Andrew Dyer <adyer@righthandtech.com>
1081Date: Fri Sep 12 02:20:46 2008 +0200
1082
1083 i.MX use u-boot baud rate and don't assume UART master clock
1084
1085 1) Change the i.MX serial driver to use the baud rate set in the
1086 u-boot environment
1087
1088 2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
1089
1090 3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
1091 one to clear" like other status bits in the reg.)
1092
1093 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
1094
1095commit 6e1551a870d360805b9d172dc56d935064abe71d
1096Author: Andrew Dyer <adyer@righthandtech.com>
1097Date: Fri Sep 12 02:20:46 2008 +0200
1098
1099 arm920t fix constant error in start.S
1100
1101 Code in cpu/arm920t/start.S will die with a compilation error if
1102 CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
1103 the ARM sub instruction. Change the code so that each is subtracted
1104 independently to avoid the error.
1105
1106 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
1107
1108commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
1109Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
1110Date: Fri Sep 12 02:20:40 2008 +0200
1111
1112 ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
1113
1114 - Correct Invalid #define of MPUTIM_PTV_MASK for
1115 omap1510 & omap730 register definition
1116
1117 MPUTIM_PTV_MASK is defined as
1118 #define MPUTIM_PTV_MASK (0x7<<PTV_BIT)
1119
1120 while it should have been
1121 #define MPUTIM_PTV_MASK (0x7<<MPUTIM_PTV_BIT)
1122
1123 - Below Patch corrects the same
1124
1125 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
1126
1127commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
1128Author: Adrian Filipi <adrian.filipi@eurotech.com>
1129Date: Fri Jul 18 11:52:02 2008 -0400
1130
1131 Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
1132
1133 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
1134
1135commit eb16135df20535b0d19969f50fb5bd17f95e9c25
1136Author: Guennadi Liakhovetski <lg@denx.de>
1137Date: Thu Aug 28 12:25:11 2008 +0200
1138
1139 i.MX31: document timer precision option
1140
1141 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
1142
1143commit 1a6337b01351b82a45b0defa76f08744511c580b
1144Author: Magnus Lilja <lilja.magnus@gmail.com>
1145Date: Fri Aug 29 10:36:18 2008 +0200
1146
1147 i.MX31: Make the SPI bus and chip select configurable for MC13783
1148
1149 The i.MX31 has three SPI buses and each bus has several chip selects
1150 and the MC13783 chip can be connected to any of these. The current
1151 RTC driver for MC13783 is hardcoded for CSPI2/SS2.
1152
1153 This patch makes make MC13783 SPI bus and chip select configurable
1154 via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
1155
1156 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
1157
1158commit 8c4ebec25b21e355b8488698ec1594da9701fff4
1159Author: Magnus Lilja <lilja.magnus@gmail.com>
1160Date: Fri Aug 29 10:36:17 2008 +0200
1161
1162 i.MX31: Add reset_timer() and modify get_timer_masked().
1163
1164 This patch adds the reset_timer() function (needed by nand_base.c) and
1165 modifies the get_timer_masked() to work in the same way as the omap24xx
1166 function.
1167
1168 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
1169
1170commit deeec4991a55de243787002ede24d2331d234fc8
1171Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1172Date: Wed Sep 10 22:48:09 2008 +0200
1173
1174 ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
1175
1176 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1177
1178commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
1179Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1180Date: Wed Sep 10 22:48:09 2008 +0200
1181
1182 bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
1183
1184 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1185
1186commit 0e8d158664a913392cb01fb11a948d83f72e105e
1187Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1188Date: Wed Sep 10 22:48:06 2008 +0200
1189
1190 rename CFG_ENV macros to CONFIG_ENV
1191
1192 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1193
1194commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
1195Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1196Date: Wed Sep 10 22:48:05 2008 +0200
1197
1198 nvedit: rename error comment to CONFIG_ENV_IS_IN_
1199
1200 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1201
1202commit b64b775e7546ed138df360ceb3a71ee358cb9a01
1203Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1204Date: Wed Sep 10 22:48:05 2008 +0200
1205
1206 cmd_mem: Move conditional compilation to Makefile
1207
1208 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1209
1210commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
1211Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1212Date: Wed Sep 10 22:48:05 2008 +0200
1213
1214 move cmd_get_data_size to command.c
1215
1216 add CMD_DATA_SIZE macro to enable it
1217
1218 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1219
1220commit 507641d2491980531932b9f25dab37fe5e6c3a1a
1221Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1222Date: Wed Sep 10 22:48:04 2008 +0200
1223
1224 env_flash: Move conditional compilation to Makefile
1225
1226 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1227
1228commit 5a1aceb0689e2f731491838970884a673ef7e7d3
1229Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1230Date: Wed Sep 10 22:48:04 2008 +0200
1231
1232 rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
1233
1234 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1235
1236commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
1237Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1238Date: Wed Sep 10 22:48:03 2008 +0200
1239
1240 cleanup use of CFG_ENV_IS_IN_FLASH
1241
1242 - #if CFG_ENV_IS_IN_FLASH
1243 - #if (CFG_ENV_IS_IN_FLASH == 1)
1244 - #define CFG_ENV_IS_IN_FLASH 0
1245
1246 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1247
1248commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
1249Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1250Date: Wed Sep 10 22:48:01 2008 +0200
1251
1252 rename environment.c in env_embedded.c to reflect is functionality
1253
1254 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1255
1256commit c0878af6e32f0fd8e13a6ca315b9add64441115a
1257Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1258Date: Wed Sep 10 22:48:01 2008 +0200
1259
1260 env_nowhere: Move conditional compilation to Makefile
1261
1262 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1263
1264commit 93f6d72544da4510a146bc4c93d609b0116cde37
1265Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1266Date: Wed Sep 10 22:48:00 2008 +0200
1267
1268 rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
1269
1270 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1271
1272commit 2556ef78113b5f089dfcac5da90bf31dd568397b
1273Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1274Date: Wed Sep 10 22:48:00 2008 +0200
1275
1276 env_sf: Move conditional compilation to Makefile
1277
1278 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1279
1280commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
1281Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1282Date: Wed Sep 10 22:48:00 2008 +0200
1283
1284 rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
1285
1286 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1287
1288commit 55c5f49910ec8225347aa1d211352a84de6649b4
1289Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1290Date: Wed Sep 10 22:48:00 2008 +0200
1291
1292 env_onenand: Move conditional compilation to Makefile
1293
1294 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1295
1296commit 9656138ff1a34d4c4768db6b490deffc40ee674b
1297Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1298Date: Wed Sep 10 22:47:59 2008 +0200
1299
1300 rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
1301
1302 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1303
1304commit 957a0e69575683efd70ace147746bbb3d8e7c501
1305Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1306Date: Wed Sep 10 22:47:59 2008 +0200
1307
1308 env_nvram: Move conditional compilation to Makefile
1309
1310 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1311
1312commit 9314cee6917444ab88bd4e758da7a30975120187
1313Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1314Date: Wed Sep 10 22:47:59 2008 +0200
1315
1316 rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
1317
1318 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1319
1320commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
1321Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1322Date: Wed Sep 10 22:47:59 2008 +0200
1323
1324 env_nand: Move conditional compilation to Makefile
1325
1326 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1327
1328commit 51bfee192099206a4397f15f3b93516e01f58ab0
1329Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1330Date: Wed Sep 10 22:47:58 2008 +0200
1331
1332 rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
1333
1334 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1335
1336commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
1337Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1338Date: Wed Sep 10 22:47:58 2008 +0200
1339
1340 env_dataflash: Move conditional compilation to Makefile
1341
1342 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1343
1344commit 057c849c45b9ee19df8ff3acdeee66be52819962
1345Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1346Date: Wed Sep 10 22:47:58 2008 +0200
1347
1348 rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
1349
1350 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1351
1352commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
1353Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1354Date: Wed Sep 10 22:47:52 2008 +0200
1355
1356 cmd_eeprom: Move conditional compilation to Makefile
1357
1358 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1359
1360commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
1361Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1362Date: Fri Sep 5 09:19:54 2008 +0200
1363
1364 env_eeprom: Move conditional compilation to Makefile
1365
1366 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1367
1368commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
1369Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1370Date: Fri Sep 5 09:19:30 2008 +0200
1371
1372 rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
1373
1374 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1375
1376commit 32628c5008105a732212003d83b75f05e5243bb2
1377Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1378Date: Sat Aug 30 23:54:58 2008 +0200
1379
1380 cmd_mac: Move conditional compilation to Makefile
1381
1382 finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
1383 start in commit ad8f8687b78c3e917b173f038926695383c55555
1384
1385 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1386
1387commit e5648acab153f0f429bfc714902c5aaa7879f71b
1388Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1389Date: Sat Aug 30 23:47:41 2008 +0200
1390
1391 cmd_fdc: Move conditional compilation to Makefile
1392
1393 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1394
1395commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
1396Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1397Date: Sat Aug 30 23:47:38 2008 +0200
1398
1399 common/Makefile: add core command section
1400
1401 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1402
1403commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
1404Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1405Date: Sat Aug 30 23:29:57 2008 +0200
1406
1407 cmd_vfd: Move conditional compilation to Makefile
1408
1409 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1410
1411commit 6644641d072aee3087da129d8443187196a4d8a9
1412Author: Scott Wood <scottwood@freescale.com>
1413Date: Wed Sep 10 11:48:49 2008 -0500
1414
1415 delta, zylonite: Update nand_oobinfo to nand_ecclayout.
1416
1417 This is part of the switch to newer upstream MTD code.
1418
1419 Signed-off-by: Scott Wood <scottwood@freescale.com>
1420
1421commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
1422Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
1423Date: Sat Aug 30 17:06:55 2008 -0400
1424
1425 ARM DaVinci: Fix broken HW ECC for large page NAND.
1426
1427 Based on original patch by Bernard Blackham <bernard@largestprime.net>
1428
1429 U-boot's HW ECC support for large page NAND on Davinci is completely
1430 broken. Some kernels, such as the 2.6.10 one supported by
1431 MontaVista for DaVinci, rely upon this broken behaviour as they
1432 share the same code for ECCs. In the existing scheme, error
1433 detection *might* work on large page, but error correction
1434 definitely does not. Small page ECC correction works, but the
1435 format is not compatible with the mainline git kernel.
1436
1437 This patch adds ECC code that matches what is currently in the
1438 Davinci git repository (since NAND support was added in 2.6.24).
1439 This makes the ECC and OOB layout written by u-boot compatible with
1440 Linux for both small page and large page devices and fixes ECC
1441 correction for large page devices.
1442
1443 The old behaviour can be restored by defining the macro
1444 CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
1445
1446 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
1447 Acked-by: Sergey Kubushyn <ksi@koi8.net>
1448 Signed-off-by: Scott Wood <scottwood@freescale.com>
1449
1450commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
1451Author: Heiko Schocher <hs@denx.de>
1452Date: Wed Sep 10 11:15:28 2008 +0200
1453
1454 muas3001: update BR4 settings
1455
1456 Also set up the port pins for using I2C.
1457
1458 Signed-off-by: Heiko Schocher <hs@denx.de>
1459
1460commit 3591293509e0c0bcf244b0f974775bff2e25697e
1461Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
1462Date: Wed Sep 10 09:43:49 2008 +0300
1463
1464 autoscr: Fix one-character lines and non-newline terminated scripts
1465
1466 When not using hush, the autoscr command now executes lines that are
1467 only one character long. It also runs the last line of scripts even if
1468 it does not end in a newline.
1469
1470 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
1471
1472commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
1473Author: Victor Gallardo <vgallardo@amcc.com>
1474Date: Tue Sep 9 15:13:29 2008 -0700
1475
1476 ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
1477
1478 On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
1479 and glacier.
1480
1481 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
1482
1483commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
1484Author: Heiko Schocher <hs@denx.de>
1485Date: Mon Sep 8 10:21:11 2008 +0200
1486
1487 muas3001: added support for the LM75 sensor.
1488
1489 Signed-off-by: Heiko Schocher <hs@denx.de>
1490
1491commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
1492Author: Heiko Schocher <hs@denx.de>
1493Date: Mon Sep 8 10:20:19 2008 +0200
1494
1495 muas3001: activate WDT for the muas3001 board.
1496
1497 Signed-off-by: Heiko Schocher <hs@denx.de>
1498
1499commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
1500Author: Heiko Schocher <hs@denx.de>
1501Date: Mon Sep 8 10:19:36 2008 +0200
1502
1503 muas3001: added 64MB SDRAM autodetection.
1504
1505 Signed-off-by: Heiko Schocher <hs@denx.de>
1506
1507commit 5251469943895de4bb9a04d5053352cc22acb7d5
1508Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
1509Date: Thu Aug 21 07:12:26 2008 -0700
1510
1511 Fix printf errors under -DDEBUG
1512
1513 Fix printf format-string/arg mismatches under -DDEBUG.
1514
1515 These warnings occur with DEBUG defined for a platform using
1516 cpu/mpc85xx. Users of other architectures can unearth similar
1517 problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
1518 after "CFLAGS += $(call cc-option,-fno-stack-protector)".
1519
1520 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
1521 Signed-off-by: Andy Fleming <afleming@freescale.com>
1522
1523commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
1524Author: Wolfgang Denk <wd@denx.de>
1525Date: Tue Sep 9 23:55:18 2008 +0200
1526
1527 Update CHANGELOG, prepare 2008-10-rc1 release
1528
1529 Signed-off-by: Wolfgang Denk <wd@denx.de>
1530
1531commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
1532Author: Kumar Gala <galak@kernel.crashing.org>
1533Date: Mon Sep 8 08:51:29 2008 -0500
1534
1535 85xx: Ensure timebase is zero on secondary cores
1536
1537 The e500um says the timebase is volatile out of reset. To ensure
1538 TB sync works we need to make sure its zero.
1539
1540 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1541
Wolfgang Denk8b9e4782008-09-09 23:55:18 +02001542commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
1543Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1544Date: Tue Sep 9 22:18:24 2008 +0200
1545
1546 bootm_load_os: fix load_end debug message
1547
1548 print load_end value not pointer
1549
1550 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1551
1552commit 1d9af0be764960e6cc1c093e97176c3542796820
1553Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1554Date: Tue Sep 9 22:18:23 2008 +0200
1555
1556 bootm: enable fdt support only on ppc, m68k and sparc
1557
1558 ...as done in image.c
1559
1560 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1561
1562commit 748b5274e76f81df85cfcffaffedc323678d0623
1563Author: Markus Heidelberg <markus.heidelberg@web.de>
1564Date: Tue Sep 9 18:51:05 2008 +0200
1565
1566 common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
1567
1568 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
1569
1570commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
1571Author: Markus Heidelberg <markus.heidelberg@web.de>
1572Date: Tue Sep 9 17:31:46 2008 +0200
1573
1574 gitignore: add tags files and Vim swap file
1575
1576 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
1577
1578commit 1d9b67b23fca6a25154333733204339802510720
1579Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
1580Date: Tue Sep 9 17:52:47 2008 +0900
1581
1582 add board_eth_init() for sh7785lcr board
1583
1584 Fix the problem that cannot work RTL8169 on sh7785lcr board.
1585
1586 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
1587
1588commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
1589Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
1590Date: Wed Aug 6 16:08:41 2008 -0500
1591
1592 mtd: SPI Flash: Support the STMicro Flash
1593
1594 Add MTD SPI Flash support for M25P16, M25P20, M25P32,
1595 M25P40, M25P64, M25P80, M25P128.
1596
1597 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
1598 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
1599
Wolfgang Denkf12e4542008-09-13 02:23:05 +02001600commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
1601Author: Wolfgang Denk <wd@denx.de>
1602Date: Tue Sep 9 17:55:31 2008 +0200
1603
1604 trab: fix build problem after change to use do_div()
1605
1606 We must link with libgeneric now.
1607
1608 Signed-off-by: Wolfgang Denk <wd@denx.de>
1609
Wolfgang Denk8b9e4782008-09-09 23:55:18 +02001610commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
1611Author: Ryan CHEN <ryan.chen@st.com>
1612Date: Wed Aug 20 13:00:17 2008 -0400
1613
1614 Correct drv_usb_kbd_init function
1615
1616 The patch is that check if usb_get_dev_index() function return valid
1617 pointer. If valid, continue. Otherwise return -1.
1618
1619 Signed-off-by: Ryan Chen <ryan.chen@st.com>
1620 Acked-by: Markus Klotzbuecher <mk@denx.de>
1621
1622commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
1623Author: Remy Bohmer <linux@bohmer.net>
1624Date: Wed Aug 20 11:22:02 2008 +0200
1625
1626 Make usb-stop() safe to call multiple times in a row.
1627
1628 A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
1629 enabled the usb_stop() command in common/cmd_bootm.c which was
1630 not enabled for some time, because no board did actually set the
1631 CFG_CMD_USB flag. So, now the usb_stop() is executed before
1632 loading the linux kernel.
1633
1634 However, the usb_ohci driver hangs up (at least on AT91SAM) if the
1635 driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
1636 If some other piece of code calls usb_stop() before the bootm command,
1637 this command will hangup the system during boot.
1638 (usb start and stop is typically used while booting from usb memory stick)
1639
1640 But, stopping the usb stack twice is useless anyway, and a flag already
1641 existed that kept track on the usb_init()/usb_stop() calls.
1642 So, we now check if the usb stack is really started before we stop it.
1643
1644 This problem is now fixed in both the upper as low-level layer.
1645
1646 Signed-off-by: Remy Bohmer <linux@bohmer.net>
1647 Acked-by: Markus Klotzbuecher <mk@denx.de>
1648
1649commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
1650Author: Wolfgang Denk <wd@denx.de>
1651Date: Tue Sep 9 16:55:47 2008 +0200
1652
1653 Makefile: fix bug introduced by commit 47ffd6c2
1654
1655commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
1656Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1657Date: Tue Sep 9 10:00:33 2008 -0400
1658
1659 ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
1660
1661 This patch solves the problems compiling ml507, v5fx30teval and
1662 ppc440-generic out of tree.
1663
1664 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1665
1666commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
1667Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
1668Date: Thu Sep 4 15:35:46 2008 -0300
1669
1670 Fix dev_print when called from usb_stor_info (usb storage command)
1671
1672 Fix output of the usb storage command. It was printing "Device 0: not
1673 available" because IF_TYPE_USB was not included into the switch
1674 statement.
1675
1676 Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
1677
1678commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
1679Author: Bartlomiej Sieka <tur@semihalf.com>
1680Date: Tue Sep 9 12:58:16 2008 +0200
1681
1682 FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
1683
1684 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
1685
1686commit 919f550dc11a13abf01c6bc713c968de790b8d7c
1687Author: Bartlomiej Sieka <tur@semihalf.com>
1688Date: Tue Sep 9 12:58:15 2008 +0200
1689
1690 FIT: add ability to check hashes of all images in FIT, improve output
1691
1692 - add function fit_all_image_check_hashes() that verifies if all
1693 hashes of all images in the FIT are valid
1694 - improve output of fit_image_check_hashes() when the hash check fails
1695
1696 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
1697
1698commit 1de1fa408967cef6804bb046b904114519bb36f0
1699Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1700Date: Mon Sep 8 20:54:39 2008 +0200
1701
1702 qemu_mips: Update linux bootm to support dynamic cmdline
1703
1704 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1705
1706commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
1707Author: Peter Tyser <ptyser@xes-inc.com>
1708Date: Mon Sep 8 14:56:49 2008 -0500
1709
1710 Add support for booting of INTEGRITY operating system uImages
1711
1712 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1713
1714commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
1715Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1716Date: Mon Sep 8 21:01:29 2008 +0200
1717
1718 mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
1719
1720 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1721
1722commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
1723Author: Kumar Gala <galak@kernel.crashing.org>
1724Date: Mon Sep 8 13:57:12 2008 -0500
1725
1726 Remove support for booting ARTOS images
1727
1728 Pantelis Antoniou stated:
1729 AFAIK, it is still used but the products using PPC are long gone.
1730 Nuke it plz (from orbit).
1731
1732 So remove it since it cleans up a usage of env_get_char outside of
1733 the environment code.
1734
1735 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1736
1737commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
1738Author: Wolfgang Denk <wd@denx.de>
1739Date: Tue Sep 9 15:45:18 2008 +0200
1740
1741 Makefile: compile and link each module just once
1742
1743 Several source files need to be compiled and linked when one or more
1744 config options are selected. To allow for easy selection in the
1745 Makefiles yet to avoild multiple compilation (which costs build time)
1746 and especially multiple linking (which causes errors), we use
1747 "COBJS = $(sort COBJS-y)" which eliminates duplicates.
1748
1749 By courtesy of Detlev Zundel who suggested this approach.
1750
1751 Signed-off-by: Wolfgang Denk <wd@denx.de>
1752
1753commit 48d0192fe869948fef14b460b5f0c85bca933693
1754Author: Andreas Engel <andreas.engel@ericsson.com>
1755Date: Mon Sep 8 14:30:53 2008 +0200
1756
1757 Moved conditional compile into Makefile
1758
1759 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
1760
1761commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
1762Author: Andreas Engel <andreas.engel@ericsson.com>
1763Date: Mon Sep 8 10:17:31 2008 +0200
1764
1765 Merged serial_pl010.c and serial_pl011.c.
1766
1767 They only differ in the init function.
1768 This also adds the missing watchdog support for the PL011.
1769
1770 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
1771
1772commit 0817d688f307ee2c0598e79175c94a40ce90337b
1773Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1774Date: Sun Sep 7 17:10:27 2008 -0400
1775
1776 Remove gap fill in srec object v2
1777
1778 SREC files do not need gap fill: The load address is specified in the
1779 file. On the other hand, it can't be avoided in a .bin object. It has
1780 no information about memory location.
1781
1782 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
1783
1784commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
1785Author: Markus Heidelberg <markus.heidelberg@web.de>
1786Date: Sun Sep 7 20:18:27 2008 +0200
1787
1788 README: fix missing subdirectory in the documentation
1789
1790 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
1791
1792commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
1793Author: Graeme Russ <graeme.russ@gmail.com>
1794Date: Sun Sep 7 07:08:42 2008 +1000
1795
1796 Update i386 code (sc520_cdp)
1797
1798 Attempt to bring i386 / sc520 inline with master
1799
1800 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
1801
1802commit 5608692104efa8d56df803dc79ea41ac3607eee5
1803Author: Guennadi Liakhovetski <lg@denx.de>
1804Date: Thu Sep 4 13:01:49 2008 +0200
1805
1806 fw_env: add NAND support
1807
1808 Add support for environment in NAND with automatic NOR / NAND recognition,
1809 including unaligned environment, bad-block skipping, redundant environment
1810 copy.
1811
1812 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
1813
1814commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
1815Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1816Date: Tue Sep 9 09:50:24 2008 +0200
1817
1818 ppc4xx: Fix out-of-tree building of CPCI405 variants
1819
1820 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1821 Acked-by: Stefan Roese <sr@denx.de>
1822
1823commit 59f630588e3fdbd698a0a2798e52a8924e899563
1824Author: Sergei Poselenov <sposelenov@emcraft.com>
1825Date: Fri Aug 15 15:42:11 2008 +0200
1826
1827 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
1828
1829 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
1830
1831commit e64987a892353f3d49eb242d997820ef8f538912
1832Author: Anatolij Gustschin <agust@denx.de>
1833Date: Fri Aug 15 15:42:13 2008 +0200
1834
1835 85xx: socrates: Enable Lime support.
1836
1837 This patch adds Lime GDC support together with support for the PWM
1838 backlight control through the w83782d chip. The reset pin of the
1839 latter is attached to GPIO, so we need to reset it in
1840 early_board_init_r.
1841
1842 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1843
1844commit 3e79b588b5199f35016f178fc0d5d1266382097f
1845Author: Detlev Zundel <dzu@denx.de>
1846Date: Fri Aug 15 15:42:12 2008 +0200
1847
1848 85xx: Socrates: Major code update.
1849
1850 - Update the local bus ranges in the FDT for Linux for the various
1851 devices connected to the local bus via chip-select.
1852
1853 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
1854 lower than 66 MHz and uses I/O accessor functions consequently.
1855
1856 - UPM data update.
1857
1858 - Update of default environment and configuration. Use I2C multibus
1859 as we do have two I2C buses. Also enable sdram and ext2 commands.
1860
1861 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
1862 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
1863 Signed-off-by: Detlev Zundel <dzu@denx.de>
1864
1865commit e8d18541c6ceab821f75faab031740b33fdbfa4b
1866Author: Timur Tabi <timur@freescale.com>
1867Date: Fri Jul 18 16:52:23 2008 +0200
1868
1869 Update Freescale 85xx boards to sys_eeprom.c
1870
1871 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
1872 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
1873 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
1874 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
1875
1876 Signed-off-by: Timur Tabi <timur@freescale.com>
1877
1878commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
1879Author: Wolfgang Denk <wd@denx.de>
1880Date: Tue Sep 9 10:08:02 2008 +0200
1881
1882 lib_ppc/interrupts.c: make board_show_activity() a weak function
1883
1884 This allows to use show_activity() without having to
1885 define an empty board_show_activity() function.
1886
1887 Signed-off-by: Wolfgang Denk <wd@denx.de>
1888
1889commit fe876787f8743883ce58fed61525eaa2f34da4c5
1890Author: Wolfgang Denk <wd@denx.de>
1891Date: Tue Sep 9 10:06:44 2008 +0200
1892
1893 stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
1894
1895 Signed-off-by: Wolfgang Denk <wd@denx.de>
1896
1897commit 965de106ba8900372c8b16dc60d5acab7f925e38
1898Author: Wolfgang Denk <wd@denx.de>
1899Date: Tue Sep 9 10:03:47 2008 +0200
1900
1901 NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
1902
1903 Signed-off-by: Wolfgang Denk <wd@denx.de>
1904
Wolfgang Denkf12e4542008-09-13 02:23:05 +02001905commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
1906Author: Sergei Poselenov <sposelenov@emcraft.com>
1907Date: Fri Aug 15 15:42:11 2008 +0200
1908
1909 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
1910
1911 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
1912
1913commit 36241ca29d4804a1006fb3f26069effda5202581
1914Author: Anatolij Gustschin <agust@denx.de>
1915Date: Fri Aug 15 15:42:13 2008 +0200
1916
1917 85xx: socrates: Enable Lime support.
1918
1919 This patch adds Lime GDC support together with support for the PWM
1920 backlight control through the w83782d chip. The reset pin of the
1921 latter is attached to GPIO, so we need to reset it in
1922 early_board_init_r.
1923
1924 Signed-off-by: Anatolij Gustschin <agust@denx.de>
1925
1926commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
1927Author: Detlev Zundel <dzu@denx.de>
1928Date: Fri Aug 15 15:42:12 2008 +0200
1929
1930 85xx: Socrates: Major code update.
1931
1932 - Update the local bus ranges in the FDT for Linux for the various
1933 devices connected to the local bus via chip-select.
1934
1935 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
1936 lower than 66 MHz and uses I/O accessor functions consequently.
1937
1938 - UPM data update.
1939
1940 - Update of default environment and configuration. Use I2C multibus
1941 as we do have two I2C buses. Also enable sdram and ext2 commands.
1942
1943 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
1944 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
1945 Signed-off-by: Detlev Zundel <dzu@denx.de>
1946
Wolfgang Denk8b9e4782008-09-09 23:55:18 +02001947commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
1948Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1949Date: Tue Sep 9 01:22:39 2008 +0200
1950
1951 disk-on-chip: remove duplicate doc_probe declaration
1952
1953 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1954
1955commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
1956Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1957Date: Tue Sep 9 00:59:40 2008 +0200
1958
1959 onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
1960
1961 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1962
1963commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
1964Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1965Date: Tue Sep 9 00:59:39 2008 +0200
1966
1967 rs5c372: fix rtc_set prototype
1968
1969 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1970
1971commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
1972Author: Sergei Poselenov <sposelenov@emcraft.com>
1973Date: Thu Aug 14 14:08:28 2008 +0200
1974
1975 ARM: fix warning: target CPU does not support interworking
1976
1977 This patch fixes warnings like this:
1978
1979 start.S:0: warning: target CPU does not support interworking
1980
1981 which come from some ARM cross compilers and are caused by hard-coded
1982 (with "--with-cpu=arm9" configuration option) ARM targets (which
1983 support ARM Thumb instructions), while the ARM target selected from
1984 the command line (with "-march=armv4") doesn't support Thumb
1985 instructions.
1986
1987 This warning is issued by the compiler regardless of the real use of
1988 the Thumb instructions in code.
1989
1990 To fix this problem, we use options according to compiler version
1991 being used.
1992
1993 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
1994 Signed-off-by: Wolfgang Denk <wd@denx.de>
1995
1996commit 4265c35fbcb248e58179007621d61d32d0b3b82a
1997Author: Sergei Poselenov <sposelenov@emcraft.com>
1998Date: Thu Aug 14 14:08:28 2008 +0200
1999
2000 ARM: Use do_div() instead of division for "long long".
2001
2002 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
2003 Signed-off-by: Wolfgang Denk <wd@denx.de>
2004
Wolfgang Denkf12e4542008-09-13 02:23:05 +02002005commit 8febd13c69cb68652577d1a9fcbde954bf784155
2006Author: Timur Tabi <timur@freescale.com>
2007Date: Fri Jul 18 16:52:23 2008 +0200
2008
2009 Update Freescale 85xx boards to sys_eeprom.c
2010
2011 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
2012 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
2013 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
2014 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
2015
2016 Signed-off-by: Timur Tabi <timur@freescale.com>
2017
Wolfgang Denk8b9e4782008-09-09 23:55:18 +02002018commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
2019Author: Wolfgang Denk <wd@denx.de>
2020Date: Mon Sep 8 23:26:22 2008 +0200
2021
2022 lib_arm/bootm.c: fix compile warnings
2023
2024 bootm.c:128: warning: label 'error' defined but not used
2025 bootm.c:65: warning: unused variable 'ret'
2026
2027 Signed-off-by: Wolfgang Denk <wd@denx.de>
2028
2029commit 2e3c867d0a63c563a51e65b776973b008f16cec5
2030Author: Wolfgang Denk <wd@denx.de>
2031Date: Mon Sep 8 22:46:42 2008 +0200
2032
2033 ml507: fix out of tree build problem
2034
2035 Signed-off-by: Wolfgang Denk <wd@denx.de>
2036
2037commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
2038Author: Wolfgang Denk <wd@denx.de>
2039Date: Mon Sep 8 22:10:28 2008 +0200
2040
2041 common/cmd_bootm.c: fix printf() format warnings
2042
2043 Signed-off-by: Wolfgang Denk <wd@denx.de>
2044
2045commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
2046Author: Wolfgang Denk <wd@denx.de>
2047Date: Mon Sep 8 22:37:45 2008 +0200
2048
2049 BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
2050
2051 missing doc_probe() prototype.
2052
2053 Signed-off-by: Wolfgang Denk <wd@denx.de>
2054
2055commit 2c5e3cc4994897d364b148942ff23e47783198f6
2056Author: Wolfgang Denk <wd@denx.de>
2057Date: Mon Sep 8 21:28:14 2008 +0200
2058
2059 mk48t59: fix compile problem introduced by commit d1e23194
2060
2061 Signed-off-by: Wolfgang Denk <wd@denx.de>
2062
2063commit 5ff889349d2ace13f10c9335e09365fcec8247cc
2064Author: Stefan Roese <sr@denx.de>
2065Date: Mon Sep 8 14:11:12 2008 +0200
2066
2067 ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
2068
2069 This patch moves some 4xx specific prototypes out of include common.h
2070 to a ppc4xx specific header.
2071
2072 Signed-off-by: Stefan Roese <sr@denx.de>
2073
2074commit ac53ee8318678190bf3c68da477a84a657d86fb0
2075Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2076Date: Fri Sep 5 15:34:04 2008 +0200
2077
2078 ppc4xx: Update CPCI405(AB) configuration
2079
2080 This patch add FDT support and command line editing capabilities
2081 for CPCI405 and CPCI405AB boards.
2082
2083 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2084 Signed-off-by: Stefan Roese <sr@denx.de>
2085
2086commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
2087Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2088Date: Fri Sep 5 15:34:03 2008 +0200
2089
2090 ppc4xx: Cleanup CPCI405 linker script
2091
2092 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2093 Signed-off-by: Stefan Roese <sr@denx.de>
2094
2095commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
2096Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2097Date: Fri Sep 5 15:34:02 2008 +0200
2098
2099 ppc4xx: Update CPCI405 variants handling
2100
2101 This patch replaces the BOARD_REVISION variable in include/config.mk
2102 by a using a temporary include file in the platform directory.
2103
2104 The former way does not work anymore and the latter is also used by
2105 some other boards.
2106
2107 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2108 Signed-off-by: Stefan Roese <sr@denx.de>
2109
2110commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
2111Author: Stefan Roese <sr@denx.de>
2112Date: Mon Sep 8 10:01:48 2008 +0200
2113
2114 ppc4xx: Remove CONFIG_CS8952_PHY define
2115
2116 Since this define is only used on one board that was never really in
2117 production, removing this compile time option doesn't hurt and makes
2118 the code more readable.
2119
2120 Signed-off-by: Stefan Roese <sr@denx.de>
2121
2122commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
2123Author: Stefan Roese <sr@denx.de>
2124Date: Fri Sep 5 14:11:40 2008 +0200
2125
2126 ppc4xx: Fix compilation warning for PIP405
2127
2128 This patch fixes a compilation warning for the PIP405 board. It moves the
2129 #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
2130 occur anymore. I am a little unsure if this #ifdef is at the correct
2131 place now or if it could be removed completely. This needs to get
2132 tested on the PIP405 board.
2133
2134 Signed-off-by: Stefan Roese <sr@denx.de>
2135
2136commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
2137Author: Stefan Roese <sr@denx.de>
2138Date: Fri Sep 5 14:09:09 2008 +0200
2139
2140 ppc4xx: Fix compilation warning for canyonlands & glacier
2141
2142 Signed-off-by: Stefan Roese <sr@denx.de>
2143
2144commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
2145Author: Kumar Gala <galak@kernel.crashing.org>
2146Date: Fri Sep 5 14:40:29 2008 -0500
2147
2148 Fix compiler warning in mpc8xxx ddr code
2149
2150 ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
2151 ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
2152 ctrl_regs.c:523: note: 'caslat' was declared here
2153
2154 Add a warning in DDR1 case if cas_latency isn't a value we know about.
2155
2156 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2157 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2158
2159commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
2160Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2161Date: Mon Sep 1 23:06:23 2008 +0200
2162
2163 rtc: allow rtc_set to return an error and use it in cmd_date
2164
2165 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2166
2167commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
2168Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2169Date: Mon Sep 1 01:16:33 2008 +0200
2170
2171 ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
2172
2173 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2174
2175commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
2176Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2177Date: Sun Aug 31 05:37:04 2008 +0900
2178
2179 config.mk: Move arch-specific condition to $(ARCH)_config.mk
2180
2181 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
2182
2183commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
2184Author: Kumar Gala <galak@kernel.crashing.org>
2185Date: Fri Aug 29 19:08:29 2008 -0500
2186
2187 Prevent crash if random/invalid ramdisks are passed to bootm
2188
2189 Adds returning an error from the ramdisk detection code if
2190 its not a real ramdisk (invalid). There is no reason we can't
2191 just return back to the console if we detect an invalid
2192 ramdisk or CRC error.
2193
2194 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2195
2196commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
2197Author: Anatolij Gustschin <agust@denx.de>
2198Date: Fri Aug 29 21:04:45 2008 +0200
2199
2200 Prevent crash if random DTB address is passed to bootm
2201
2202 This patch adds bootm_start() return value check. If
2203 error status is returned, we do not proceed further to
2204 prevent board reset or crash as we still can recover
2205 at this point.
2206
2207 Signed-off-by: Anatolij Gustschin <agust@denx.de>
2208
2209commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
2210Author: Andrew Dyer <adyer@righthandtech.com>
2211Date: Fri Aug 29 12:30:39 2008 -0500
2212
2213 clean up some #if !defined() in drivers/video/cfb_console.c
2214
2215 rearrange some #if !defined() / #else / #endif statements to remove
2216 the negative logic.
2217
2218 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
2219
2220commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
2221Author: Kyungmin Park <kmpark@infradead.org>
2222Date: Fri Aug 29 09:02:20 2008 +0900
2223
2224 apollon: use the last memory area for u-boot
2225
2226 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2227
2228commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
2229Author: Heiko Schocher <hs@denx.de>
2230Date: Thu Aug 28 13:50:42 2008 +0200
2231
2232 TQM8272: move NAND part in seperate File
2233
2234 I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
2235 because I have no longer access to the hardware.
2236
2237 Signed-off-by: Heiko Schocher <hs@denx.de>
2238
2239commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
2240Author: Heiko Schocher <hs@denx.de>
2241Date: Thu Aug 28 13:48:36 2008 +0200
2242
2243 TQM8272: Fix compiling error for the TQM8272 board.
2244
2245 Fix compile problems caused by
2246 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
2247
2248 Signed-off-by: Heiko Schocher <hs@denx.de>
2249
2250commit 1a7f8ccec981648ccd38fca2535490582eee08e6
2251Author: Kyungmin Park <kmpark@infradead.org>
2252Date: Wed Aug 27 14:45:20 2008 +0900
2253
2254 Add JFFS2 command support on OneNAND
2255
2256 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2257
2258commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
2259Author: Mark Jackson <mpfj@mimc.co.uk>
2260Date: Mon Aug 25 19:21:30 2008 +0100
2261
2262 Allow console input to be disabled
2263
2264 Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
2265
2266 When CONFIG_DISABLE_CONSOLE is defined, setting
2267 GD_FLG_DISABLE_CONSOLE disables all console input and output.
2268
2269 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
2270
2271commit 2b22d608f370565c87f55928b524207031419c11
2272Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
2273Date: Wed Jul 30 12:39:29 2008 +0200
2274
2275 loads: allow negative offsets
2276
2277 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
2278
2279commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
2280Author: Yuri Tikhonov <yur@emcraft.com>
2281Date: Thu Sep 4 11:19:05 2008 +0200
2282
2283 USB EHCI: reset root hub
2284
2285 Some of multi-function USB controllers (e.g. ISP1562) allow root hub
2286 resetting only via EHCI registers. So, this patch adds the
2287 corresponding kind of reset to OHCI's hc_reset() if the newly
2288 introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
2289 board).
2290
2291 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
2292 Acked-by: Markus Klotzbuecher <mk@denx.de>
2293
2294commit 5875d358f025c1b042d8a0f08384b756de7256c9
2295Author: Yuri Tikhonov <yur@emcraft.com>
2296Date: Fri Aug 15 15:42:09 2008 +0200
2297
2298 RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
2299
2300 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
2301
2302commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
2303Author: Stefan Roese <sr@denx.de>
2304Date: Fri Sep 5 10:47:46 2008 +0200
2305
2306 devices: Use list_add_tail() instead of list_add() to register a device
2307
2308 This patch fixes a problem spotted on Glacier/Canyonlands (and most
2309 likely lots of other board ports), that no serial output was seen
2310 after console initialization in console_init_r(). This is because the
2311 last added console device was used instead of the first added.
2312
2313 This patch fixes this problem by using list_add_tail() instead of
2314 list_add() to register a device. This way the first added console
2315 is used again.
2316
2317 Signed-off-by: Stefan Roese <sr@denx.de>
2318
2319commit 78d78236896d62bb8ca7302af38d8f1493eb2651
2320Author: Victor Gallardo <vgallardo@amcc.com>
2321Date: Thu Sep 4 23:49:36 2008 -0700
2322
2323 ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
2324
2325 This patch adds GPCS, SGMII and M88E1112 PHY support
2326 for the AMCC PPC460GT/EX processors.
2327
2328 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
2329 Signed-off-by: Stefan Roese <sr@denx.de>
2330
2331commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
2332Author: Adam Graham <agraham@amcc.com>
2333Date: Wed Sep 3 12:26:59 2008 -0700
2334
2335 ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
2336
2337 Signed-off-by: Adam Graham <agraham@amcc.com>
2338 Signed-off-by: Stefan Roese <sr@denx.de>
2339
2340commit 075d0b81e896e8735ae26372cd384f87cbd24e41
2341Author: Adam Graham <agraham@amcc.com>
2342Date: Wed Sep 3 12:26:28 2008 -0700
2343
2344 ppc4xx: IBM Memory Controller DDR autocalibration routines
2345
2346 Alternate SDRAM DDR autocalibration routine that can be generically used
2347 for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
2348 support of more DIMM/memory chip vendors and gets the DDR autocalibration
2349 values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
2350
2351 Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
2352 "Method_A" and "Method_B". DDR autocalibration Method_A scans the full range
2353 of possible PPC4xx SDRAM Controller DDR autocalibration values and takes a
2354 lot longer to run than Method_B. Method_B executes in the same amount of time
2355 as the currently existing DDR autocalibration routine, i.e. 1 second or so.
2356 Normally Method_B is used and it is set as the default method.
2357
2358 The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
2359 Controller registers.[bit-field]:
2360 1) SDRAM0_RQDC.[RQFD]
2361 2) SDRAM0_RFDC.[RFFD]
2362
2363 This alternate PPC4xx DDR autocalibration code calibrates the following
2364 IBM SDRAM Controller registers.[bit-field]:
2365
2366 1) SDRAM0_WRDTR.[WDTR]
2367 2) SDRAM0_CLKTR.[CKTR]
2368 3) SDRAM0_RQDC.[RQFD]
2369 4) SDRAM0_RFDC.[RFFD]
2370
2371 and will also use the calibrated settings of the above four registers that
2372 produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
2373 register.[bit-field].
2374
2375 Signed-off-by: Adam Graham <agraham@amcc.com>
2376 Signed-off-by: Stefan Roese <sr@denx.de>
2377
2378commit e07f4a8033b6270b8103049adb6456f660ff4a89
2379Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
2380Date: Mon Sep 1 13:09:39 2008 -0400
2381
2382 ppc44x: Unification of virtex5 pp440 boards
2383
2384 This patch provides an unificated way of handling xilinx v5 ppc440 boards.
2385
2386 It unificates 3 different things:
2387
2388 1) Source code
2389 A new board called ppc440-generic has been created. This board includes
2390 a generic tlb initialization (Maps the whole memory into virtual) and
2391 defines board_pre_init, checkboard, initdram and get_sys_info weakly,
2392 so, they can be replaced by specific functions.
2393
2394 If a new board needs to redefine any of the previous functions
2395 (specific initialization) it can create a new directory with the
2396 specific initializations needed. (see the example ml507 board).
2397
2398 2) Configuration file
2399 Common configurations are located under configs/xilinx-ppc440.h, this
2400 header file interpretes the xparameters file generated by EDK and
2401 configurates u-boot in correspondence. Example: if there is a Temac,
2402 allows CMD_CONFIG_NET
2403 Specific configuration are located under specific configuration file.
2404 (see the example ml507 board)
2405
2406 3) Makefile
2407 Some work has been done in order to not duplicate work in the Main
2408 Makefile. Please see the attached code.
2409
2410 In order to support new boards they can be implemented in the next way:
2411
2412 a) Simple Generic Board (90% of the time)
2413 Using EDK generates a new xparameters.h file, replace
2414 ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
2415 && make
2416
2417 b) Simple Boards with special u-boot parameters (9 % of the time)
2418 Create a new file under configs for it (use ml507.h as example) and
2419 change your paramaters. Create a new Makefile paragraph and compile
2420
2421 c) Complex boards (1% of the time)
2422 Create a new folder for the board, like the ml507
2423
2424 Finally, it adds support for the Avnet FX30T Evaluation board, following
2425 the new generic structure:
2426
2427 Cheap board by Avnet for evaluating the Virtex5 FX technology.
2428
2429 This patch adds support for:
2430 - UartLite
2431 - 16MB Flash
2432 - 64MB RAM
2433
2434 Prior using U-boot in this board, read carefully the ERRATA by Avnet
2435 to solve some memory initialization issues.
2436
2437 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
2438 Signed-off-by: Stefan Roese <sr@denx.de>
2439
2440commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
2441Author: Nick Spence <nick.spence@freescale.com>
2442Date: Tue Sep 2 15:21:16 2008 -0500
2443
2444 mpc83xx: fix mpc8313 in-tree building with NAND
2445
2446 and add mpc8313 NAND build to MAKEALL
2447
2448 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2449 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2450
2451commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
2452Author: Nick Spence <nick.spence@freescale.com>
2453Date: Thu Aug 28 14:09:25 2008 -0700
2454
2455 mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
2456
2457 Cleans up some latent issues with the data cache control so that
2458 dcache_enable() and dcache_disable() will work reliably (after
2459 unlock_ram_in_cache() has been called)
2460
2461 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2462 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2463
2464commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
2465Author: Nick Spence <nick.spence@freescale.com>
2466Date: Thu Aug 28 14:09:19 2008 -0700
2467
2468 mpc83xx: Store and display Arbiter Event Register values
2469
2470 Record the Arbiter Event Register values and optionally display them.
2471
2472 The Arbiter Event Register can record the type and effective address of
2473 an arbiter error, even through an HRESET. This patch stores the values in
2474 the global data structure.
2475
2476 Display of the Arbiter Event registers immediately after the RSR value
2477 can be enabled with defines. The Arbiter values will only be displayed
2478 if an arbiter event has occured since the last Power On Reset, and either
2479 of the following defines exist:
2480 #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
2481 and type register values
2482 #define CONFIG_DISPLAY_AER_FULL - display and interpret the arbiter
2483 event register values
2484
2485 Address Only transactions are one of the trapped events that can register
2486 as an arbiter event. They occur with some cache manipulation instructions
2487 if the HID0_ABE (Address Broadcast Enable) is set and the memory region
2488 has the MEMORY_COHERENCE WIMG bit set. Setting:
2489 #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
2490 only events, so that it can still capture
2491 other real problems.
2492
2493 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2494 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2495
2496commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
2497Author: Nick Spence <nick.spence@freescale.com>
2498Date: Thu Aug 28 14:09:11 2008 -0700
2499
2500 mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
2501
2502 This is needed in unlock_ram_in_cache() because it is called from C and
2503 will corrupt the small data area anchor that is kept in R2.
2504
2505 lock_ram_in_cache() is modified similarly as good coding practice, but
2506 is not called from C.
2507
2508 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2509 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2510
2511commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
2512Author: Nick Spence <nick.spence@freescale.com>
2513Date: Fri Aug 22 23:52:50 2008 -0700
2514
2515 MPC83XX: Fix GPIO configuration - set gpio level before direction
2516
2517 Set DAT value before DIR values to avoid creating glitches on the
2518 GPIO signals.
2519
2520 Set gpio level register before direction register to inhibit
2521 glitches on high level output pins.
2522
2523 Dir and data gets cleared at powerup, so high level output lines see
2524 a short low pulse between setting the direction and level registers.
2525
2526 Issue was seen on a new board with the nReset line of the NOR flash
2527 connected to a GPIO. Setting the direction register puts the NOR flash
2528 in reset so the next instruction to set the level cannot get executed.
2529
2530 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2531 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2532 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2533
2534commit 7007c5975ee900ad70983b0681d3251e221f8321
2535Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2536Date: Tue Sep 2 02:58:32 2008 +0200
2537
2538 doc/qemu_mips: add doc howto debug u-boot with gdb
2539
2540 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2541
2542commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
2543Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2544Date: Wed Sep 3 17:15:45 2008 +0200
2545
2546 ppx4xx: Fix broken DASA_SIM board
2547
2548 This patch adds initdram() to DASA_SIM boards that has been
2549 removed accidentally by a previous commit.
2550
2551 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2552 Signed-off-by: Stefan Roese <sr@denx.de>
2553
2554commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
2555Author: Stefan Roese <sr@denx.de>
2556Date: Mon Sep 1 08:35:37 2008 +0200
2557
2558 ppc4xx: Remove reference to common/lists.o from some esd linker scripts
2559
2560 This patch removes some direct references to common/lists.o from some
2561 esd linker scripts. This is necessary because the lists source was moved
2562 and is not in the "common" directory anymore.
2563
2564 Signed-off-by: Stefan Roese <sr@denx.de>
2565
2566commit 97b0734d65f8a0b03df0a335a2addc759da56107
2567Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2568Date: Tue Sep 2 16:33:05 2008 +0200
2569
2570 ppc4xx: Remove obsolete or unused functions from some esd boards
2571
2572 This patch removes initdram() and testdram() from most esd 405 platforms.
2573 Some boards also have an empty dummy implementation of
2574 misc_init_f(). This is also removed.
2575
2576 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2577 Signed-off-by: Stefan Roese <sr@denx.de>
2578
2579commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
2580Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2581Date: Tue Sep 2 15:07:54 2008 +0200
2582
2583 ppc4xx: Update VOM405 board configuration
2584
2585 - remove PCI code
2586 - add command line editing
2587 - minor cleanup
2588
2589 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2590 Signed-off-by: Stefan Roese <sr@denx.de>
2591
2592commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
2593Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2594Date: Tue Sep 2 15:07:53 2008 +0200
2595
2596 ppc4xx: Remove obsolete initdram() function from VOM405 board
2597
2598 This patch removed the obsolete initdram() function from
2599 VOM405 platform file.
2600
2601 Some minor cleanup.
2602
2603 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2604 Signed-off-by: Stefan Roese <sr@denx.de>
2605
2606commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
2607Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2608Date: Tue Sep 2 15:07:52 2008 +0200
2609
2610 ppc4xx: Cleanup VOM405 linker script
2611
2612 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2613 Signed-off-by: Stefan Roese <sr@denx.de>
2614
2615commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
2616Author: Matthias Fuchs <mf@esd.eu>
2617Date: Tue Sep 2 15:07:51 2008 +0200
2618
2619 ppc4xx: Add fdt support for VOM405 boards
2620
2621 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2622 Signed-off-by: Stefan Roese <sr@denx.de>
2623
2624commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
2625Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2626Date: Tue Sep 2 11:36:14 2008 +0200
2627
2628 ppc4xx: Coding style cleanup
2629
2630 Wrap long lines etc.
2631
2632 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2633 Signed-off-by: Stefan Roese <sr@denx.de>
2634
2635commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
2636Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2637Date: Tue Sep 2 11:35:56 2008 +0200
2638
2639 ppc4xx: Enable USB on PLU405 boards
2640
2641 This patch enables the PCI-OHCI controller on PLU405 board.
2642
2643 Also the default CPU frequency is updated to 266 MHz and
2644 command line editing is enabled.
2645
2646 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2647 Signed-off-by: Stefan Roese <sr@denx.de>
2648
2649commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
2650Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2651Date: Tue Sep 2 11:35:35 2008 +0200
2652
2653 ppc4xx: Cleanup PLU405 platform file
2654
2655 This patch
2656 - wraps some long lines
2657 - removes unused/obsolete functions: misc_init_f() and initdram()
2658
2659 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2660 Signed-off-by: Stefan Roese <sr@denx.de>
2661
2662commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
2663Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2664Date: Tue Sep 2 11:35:04 2008 +0200
2665
2666 ppc4xx: Cleanup PLU405 linker script
2667
2668 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2669 Signed-off-by: Stefan Roese <sr@denx.de>
2670
2671commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
2672Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2673Date: Tue Sep 2 11:34:36 2008 +0200
2674
2675 ppc4xx: Add fdt support for PLU405 boards
2676
2677 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2678 Signed-off-by: Stefan Roese <sr@denx.de>
2679
2680commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
2681Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2682Date: Tue Sep 2 11:34:08 2008 +0200
2683
2684 ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
2685
2686 Signed-off-by: Matthias Fuchs <mf@esd.eu>
2687 Signed-off-by: Stefan Roese <sr@denx.de>
2688
2689commit be1b0d2777e179191a57b138b660547a17e55aad
2690Author: Jochen Friedrich <jochen@scram.de>
2691Date: Tue Sep 2 11:24:59 2008 +0200
2692
2693 Don't tftp to unknown flash
2694
2695 If a board has a variable number of flash banks, there are empty entries
2696 in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
2697 "Outside available Flash". This patch skips flash banks with unknown
2698 flash ids.
2699
2700 Signed-off-by: Jochen Friedrich <jochen@scram.de>
2701 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2702
2703commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
2704Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2705Date: Thu Aug 28 13:40:44 2008 +0900
2706
2707 net: smc911x: Add pkt_data_pull and pkt_data_push function
2708
2709 The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
2710 Byte-swapping is necessary, and so poor performance is inevitable.
2711 This problem cannot evade by the swap function of CHIP, this can
2712 evade by software Byte-swapping.
2713 And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
2714 functions necessary to solve this problem.
2715
2716 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2717 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2718
2719commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
2720Author: Ben Warren <biggerbadderben@gmail.com>
2721Date: Sun Aug 31 20:37:00 2008 -0700
2722
2723 Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
2724
2725 Affected boards:
2726 db64360
2727 db64460
2728 katmai
2729 taihu
2730 taishan
2731 yucca
2732 cpc45
2733 cpu87
2734 eXalion
2735 elppc
2736 debris
2737 kvme080
2738 mpc8315erdb
2739 integratorap
2740 ixdp425
2741 oxc
2742 pm826
2743 pm828
2744 pm854
2745 pm856
2746 ppmc7xx
2747 sc3
2748 sc520_spunk
2749 sorcery
2750 tqm8272
2751 tqm85xx
2752 utx8245
2753
2754 Removed initialization of the driver from net/eth.c
2755 Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
2756
2757 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2758
2759commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
2760Author: Ben Warren <biggerbadderben@gmail.com>
2761Date: Sun Aug 31 10:45:44 2008 -0700
2762
2763 Moved initialization of TULIP Ethernet controller to board_eth_init()
2764
2765 Affected boards:
2766 cu824
2767 bab7xx
2768 adciop
2769 dasa_sim
2770 mousse
2771 mpc8540eval
2772 musenki
2773 mvblue
2774 pcippc2/pcippc6
2775 sbc8240
2776 stxssa
2777
2778 Removed initialization of the driver from net/eth.c
2779
2780 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2781
2782commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
2783Author: Ben Warren <biggerbadderben@gmail.com>
2784Date: Sun Aug 31 10:44:19 2008 -0700
2785
2786 Moved initialization of E1000 Ethernet controller to board_eth_init()
2787
2788 Affected boards:
2789 ap1000
2790 mvbc_p
2791 PM854
2792
2793 Removed initialization of the driver from net/eth.c
2794
2795 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2796
2797commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
2798Author: Ben Warren <biggerbadderben@gmail.com>
2799Date: Sun Aug 31 10:40:51 2008 -0700
2800
2801 Moved initialization of plb2800 Ethernet driver to board_eth_init
2802
2803 Affected boards:
2804 purple
2805
2806 Removed initialization of controller from net/eth.c
2807
2808 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2809
2810commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
2811Author: Ben Warren <biggerbadderben@gmail.com>
2812Date: Sun Aug 31 10:39:12 2008 -0700
2813
2814 Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
2815
2816 Modified board_eth_init() functions of boards that have this FEC in addition
2817 to other Ethernet controllers.
2818
2819 Affected boards:
2820 bc3450
2821 icecube
2822 mvbc_p
2823 o2dnt
2824 pm520
2825 total5200
2826 tq5200
2827
2828 Removed initialization of controller from net/eth.c
2829
2830 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2831
2832commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
2833Author: Ben Warren <biggerbadderben@gmail.com>
2834Date: Sun Aug 31 10:36:38 2008 -0700
2835
2836 Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
2837
2838 Added a cpu_eth_init() function to MPC512x CPU directory and
2839 removed code from net/eth.c
2840
2841 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2842
2843commit 8218bd2aa68820b878a8413493ae17fd8d21f944
2844Author: Ben Warren <biggerbadderben@gmail.com>
2845Date: Sun Aug 31 10:16:59 2008 -0700
2846
2847 Moved initialization of IncaIP Ethernet controller to board_eth_init
2848
2849 Affected boards:
2850 IncaIP
2851
2852 Removed initialization of the driver from net/eth.c
2853
2854 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2855
2856commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
2857Author: Ben Warren <biggerbadderben@gmail.com>
2858Date: Sun Aug 31 10:15:26 2008 -0700
2859
2860 Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
2861
2862 Affected boards:
2863 AmigaOneG3SE
2864
2865 Removed initialization of the driver from net/eth.c
2866
2867 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2868
2869commit 6aca145e067efe75398e9fac97822bd3700de0b2
2870Author: Ben Warren <biggerbadderben@gmail.com>
2871Date: Sun Aug 31 10:13:34 2008 -0700
2872
2873 Moved initialization of GT6426x Ethernet controller to board_eth_init()
2874
2875 Affected boards:
2876 EVB64260
2877 P3G4
2878 ZUMA
2879
2880 Removed initialization of the driver from net/eth.c
2881
2882 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2883
2884commit e3090534d62045dcb73f5392bacc64a4e8e443dc
2885Author: Ben Warren <biggerbadderben@gmail.com>
2886Date: Sun Aug 31 10:08:43 2008 -0700
2887
2888 Moved initialization of PCNET Ethernet controller to board_eth_init()
2889
2890 Affected boards:
2891 PN62
2892 sc520_cdp
2893
2894 Removed initialization of the driver from net/eth.c
2895
2896 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2897
2898commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
2899Author: Ben Warren <biggerbadderben@gmail.com>
2900Date: Sun Aug 31 10:07:16 2008 -0700
2901
2902 Moved initialization of NATSEMI Ethernet controller to board_eth_init()
2903
2904 Affected boards:
2905 a3000
2906
2907 Removed initialization of the driver from net/eth.c
2908
2909 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2910
2911commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
2912Author: Ben Warren <biggerbadderben@gmail.com>
2913Date: Sun Aug 31 10:03:22 2008 -0700
2914
2915 Moved initialization of NS8382X Ethernet controller to board_eth_init()
2916
2917 Affected boards:
2918 bc3450
2919 cpci5200
2920 mecp5200
2921 pf2000
2922 icecube
2923 o2dnt
2924 pm520
2925 sandpoint8245
2926 total5200
2927 tqm5200
2928
2929 Removed initialization of the driver from net/eth.c
2930
2931 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2932
2933commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
2934Author: Ben Warren <biggerbadderben@gmail.com>
2935Date: Sun Aug 31 09:59:33 2008 -0700
2936
2937 Moved initialization of TSI108 Ethernet controller to board_eth_init()
2938
2939 Affected boards:
2940 mpc7448hpc2
2941
2942 Removed initialization of the driver from net/eth.c
2943
2944 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2945
2946commit 0b252f50ae218ae15bfb63af44227972686ebc56
2947Author: Ben Warren <biggerbadderben@gmail.com>
2948Date: Sun Aug 31 21:41:08 2008 -0700
2949
2950 Moved initialization of RTL8139 Ethernet controller to board_eth_init()
2951
2952 Affected boards:
2953 hidden_dragon
2954 MPC8544DS
2955 MPC8610HPCN
2956 R2DPLUS
2957 TB0229
2958
2959 Removed initialization of the driver from net/eth.c
2960
2961 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2962
2963commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
2964Author: Ben Warren <biggerbadderben@gmail.com>
2965Date: Sun Aug 31 09:49:42 2008 -0700
2966
2967 Moved initialization of RTL8169 Ethernet controller to board_eth_init()
2968
2969 Affected boards:
2970 linkstation
2971 r7780mp
2972
2973 Removed initialization of the driver from net/eth.c
2974
2975 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2976
2977commit 3ae071e44256144d6c1e3febb65f6c56bd433769
2978Author: Ben Warren <biggerbadderben@gmail.com>
2979Date: Tue Aug 12 22:11:53 2008 -0700
2980
2981 Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
2982
2983 Removed at91sam9_eth_initialize() from net/eth.c
2984
2985 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2986
2987commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
2988Author: Ben Warren <biggerbadderben@gmail.com>
2989Date: Sun Aug 31 22:22:04 2008 -0700
2990
2991 Introduce netdev.h header file and remove externs
2992
2993 This addresses all drivers whose initializers have already
2994 been moved to board_eth_init()/cpu_eth_init().
2995
2996 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2997
2998commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
2999Author: Andy Fleming <afleming@freescale.com>
3000Date: Sun Aug 31 16:33:30 2008 -0500
3001
3002 Add pixis_set_sgmii command
3003
3004 The 8544DS and 8572DS platforms support an optional SGMII riser card to
3005 expose ethernet over an SGMII interface. Once the card is in, it is also
3006 necessary to configure the board such that it uses the card, rather than
3007 the on-board ethernet ports. This can either be done by flipping dip switches
3008 on the motherboard, or by modifying registers in the pixis. Either way
3009 requires a reboot.
3010
3011 This adds a command to allow users to choose which ports are routed through
3012 the SGMII card, and which through the onboard ports. It also allows users
3013 to revert to the current switch settings.
3014
3015 This code does not work on the 8572, as the PIXIS is different.
3016
3017 Signed-off-by: Andy Fleming <afleming@freescale.com>
3018 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3019
3020commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
3021Author: Andy Fleming <afleming@freescale.com>
3022Date: Sun Aug 31 16:33:29 2008 -0500
3023
3024 Add SGMII support for the 8544 DS
3025
3026 The 8544 DS has an optional SGMII Riser card, which uses different PHY
3027 addresses. Check if we are in SGMII mode, and invoke the SGMII Riser
3028 setup code if so.
3029
3030 Signed-off-by: Andy Fleming <afleming@freescale.com>
3031 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3032
3033commit 652f7c2eef76a1340928bd660845441e932d86a2
3034Author: Andy Fleming <afleming@freescale.com>
3035Date: Sun Aug 31 16:33:28 2008 -0500
3036
3037 Add support for Freescale SGMII Riser Card
3038
3039 The 8544DS and 8572DS systems have an optional SGMII riser card which
3040 exposes new ethernet ports which are connected to the eTSECs via an
3041 SGMII interface. The SGMII PHYs for this board are offset from the standard
3042 PHY addresses, so this code modifies the passed in tsec_info structure to
3043 use the SGMII PHYs on the card, instead.
3044
3045 Signed-off-by: Andy Fleming <afleming@freescale.com>
3046 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3047
3048commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
3049Author: Andy Fleming <afleming@freescale.com>
3050Date: Sun Aug 31 16:33:27 2008 -0500
3051
3052 Add SGMII support to the tsec
3053
3054 Adds support for configuring the TBI to talk properly with the SerDes.
3055
3056 Signed-off-by: Andy Fleming <afleming@freescale.com>
3057 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3058
3059commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
3060Author: Andy Fleming <afleming@freescale.com>
3061Date: Sun Aug 31 16:33:26 2008 -0500
3062
3063 Pass in tsec_info struct through tsec_initialize
3064
3065 The tsec driver contains a hard-coded array of configuration information
3066 for the tsec ethernet controllers. We create a default function that works
3067 for most tsecs, and allow that to be overridden by board code. It creates
3068 an array of tsec_info structures, which are then parsed by the corresponding
3069 driver instance to determine configuration. Also, add regs, miiregs, and
3070 devname fields to the tsec_info structure, so that we don't need the kludgy
3071 "index" parameter.
3072
3073 Signed-off-by: Andy Fleming <afleming@freescale.com>
3074 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3075
3076commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
3077Author: Andy Fleming <afleming@freescale.com>
3078Date: Sun Aug 31 16:33:25 2008 -0500
3079
3080 tsec: Move tsec.h to include/
3081
3082 This is to prepare the way for board code passing in the tsec_info structure
3083
3084 Signed-off-by: Andy Fleming <afleming@freescale.com>
3085 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3086
3087commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
3088Author: Sergei Poselenov <sposelenov@emcraft.com>
3089Date: Fri Jun 6 15:52:44 2008 +0200
3090
3091 PHY: Add support for the M88E1121R Marvell chip.
3092
3093 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
3094 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
3095 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3096
3097commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
3098Author: Wolfgang Denk <wd@denx.de>
3099Date: Tue Sep 2 21:17:36 2008 +0200
3100
3101 fw_env.c: fix build problems with MTD_VERSION=old
3102
3103 (as needed to support old 2.4 Linux kernel based releases)
3104
3105 Signed-off-by: Wolfgang Denk <wd@denx.de>
3106
3107commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
3108Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3109Date: Mon Sep 1 17:11:26 2008 +0200
3110
3111 device: make device_register() clone the device
3112
3113 This is expected by the callers, but this fact was hidden well within
3114 the old list implementation.
3115
3116 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3117
3118commit c75e772a2f061a508bba28ded1b5bea91f0442b0
3119Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3120Date: Sun Aug 31 23:28:15 2008 +0900
3121
3122 sh: Remove CC line from board's Makefile
3123
3124 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3125
3126commit 468eae0660de6fdfd9999944c536ecc4797bd944
3127Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3128Date: Sun Aug 31 23:25:57 2008 +0900
3129
3130 sh: Replaced "@./mkconfig" for @$(MKCONFIG)
3131
3132 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3133
3134commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
3135Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3136Date: Thu Aug 28 14:50:52 2008 +0900
3137
3138 sh: Add support sh2 to MAKEALL
3139
3140 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3141 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3142
3143commit 6f3d8bb5faa12dbf3031382286784c978df038ee
3144Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3145Date: Thu Aug 28 14:52:23 2008 +0900
3146
3147 sh: Fix compile error rsk7203 board
3148
3149 This boards used old type preprocessor.
3150 This patch fix compile error.
3151
3152 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3153 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3154
3155commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
3156Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3157Date: Thu Aug 28 14:53:31 2008 +0900
3158
3159 sh: Fix compile error sh7785lcr board
3160
3161 This boards used old type preprocessor.
3162 This patch fix compile error.
3163
3164 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3165 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3166
3167commit 6f0da4972e48f99d37bc522814940a6022cd3084
3168Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3169Date: Fri Aug 22 17:39:09 2008 +0900
3170
3171 sh: Renesas Solutions AP325RXA board support
3172
3173 AP325RXA is SH7723's reference board.
3174 This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
3175 In this patch, support SCIF, NOR Flash, and Ethernet.
3176
3177 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3178 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3179
3180commit ab09f433b50bb83b5e440c335bc3839ee069e534
3181Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3182Date: Fri Aug 22 17:48:51 2008 +0900
3183
3184 sh: add support Renesas SH7723
3185
3186 Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
3187 This patch supports CPU register's header file and SCIF serial driver.
3188
3189 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3190 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3191
3192commit c655fad06ba3fb042dbc667724a40e1a9a091248
3193Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3194Date: Sun Aug 31 23:02:04 2008 +0900
3195
3196 sh: Renesas RSK+ 7203 board support
3197
3198 This adds initial support for the RTE RSK+ SH7203 board.
3199
3200 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3201 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3202
3203commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
3204Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3205Date: Thu Jul 3 23:11:02 2008 +0900
3206
3207 sh: Add support Renesas SH7203 processor
3208
3209 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3210 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3211
3212commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
3213Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3214Date: Sun Aug 31 22:48:33 2008 +0900
3215
3216 sh: Add support SH2/SH2A which is CPU of Renesas Technology
3217
3218 Add support SH2/SH2A basic function.
3219
3220 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3221 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3222
3223commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
3224Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3225Date: Sun Aug 31 22:45:08 2008 +0900
3226
3227 sh: Renesas R0P7785LC0011RL board support
3228
3229 This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
3230 Graphic, Ethernet, USB, SD, RTC, and I2C controller.
3231
3232 This patch supports the following functions:
3233 - 128MB DDR2-SDRAM (29-bit address mode only)
3234 - NOR Flash
3235 - USB host
3236 - Ethernet
3237
3238 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
3239 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3240
3241commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
3242Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
3243Date: Thu Jul 10 19:32:53 2008 +0900
3244
3245 sh: add support for SH7785
3246
3247 Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
3248 This patch supports CPU register's header file.
3249
3250 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
3251 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3252
3253commit d6e04258be8f2408845468d3cf722a4cf0433445
3254Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3255Date: Sun Aug 31 04:45:42 2008 +0200
3256
3257 davinci: fix remaining dm644x_eth
3258
3259 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3260
3261commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
3262Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3263Date: Sun Aug 31 04:24:56 2008 +0200
3264
3265 fs: Move conditional compilation to Makefile
3266
3267 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3268
3269commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
3270Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3271Date: Sun Aug 31 04:24:55 2008 +0200
3272
3273 devices: merge to list_head
3274
3275 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3276
3277commit ef0255fc75f28655f9681422079287d68a14dbaa
3278Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3279Date: Sun Aug 31 04:24:51 2008 +0200
3280
3281 update linux/list
3282
3283 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3284
3285commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
3286Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3287Date: Sun Aug 31 00:39:48 2008 +0200
3288
3289 smdk6400: add gitignore
3290
3291 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3292
3293commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
3294Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3295Date: Sun Aug 31 00:39:48 2008 +0200
3296
3297 smdk6400: Use CONFIG_FLASH_CFI_DRIVER
3298
3299 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3300
3301commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
3302Author: Guennadi Liakhovetski <lg@denx.de>
3303Date: Sun Aug 31 00:39:47 2008 +0200
3304
3305 smdk6400: remove redundant bootargs definition
3306
3307 Double bootargs setting leads to a duplicated environmant entry.
3308
3309 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3310
3311commit 11edcfe260f20dcea79284a3e95270989d433854
3312Author: Guennadi Liakhovetski <lg@denx.de>
3313Date: Sun Aug 31 00:39:47 2008 +0200
3314
3315 ARM: Add support for S3C6400 based SMDK6400 board
3316
3317 SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
3318 driver for it too. The board can also boot from the NOR flash, but due to
3319 hardware limitations it can only address 64KiB on it, which is not enough
3320 for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
3321
3322 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3323
3324commit e0056b341069796eaea11eae0fc8eb93a3dceaac
3325Author: Guennadi Liakhovetski <lg@denx.de>
3326Date: Sun Aug 31 00:39:47 2008 +0200
3327
3328 NAND: add NAND driver for S3C64XX
3329
3330 Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
3331
3332 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3333
3334commit 3fe7b589f9c7463df39056f8872006a67f56a91c
3335Author: Guennadi Liakhovetski <lg@denx.de>
3336Date: Sun Aug 31 00:39:47 2008 +0200
3337
3338 S3C64XX: remove broken HWFLOW support from the serial driver
3339
3340 As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
3341 broken and currently unused. Remove it.
3342
3343 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3344
3345commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
3346Author: Guennadi Liakhovetski <lg@denx.de>
3347Date: Sun Aug 31 00:39:47 2008 +0200
3348
3349 serial: add S3C64XX serial driver
3350
3351 Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
3352
3353 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3354
3355commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
3356Author: Guennadi Liakhovetski <lg@denx.de>
3357Date: Sun Aug 31 00:39:46 2008 +0200
3358
3359 USB: Add support for OHCI controller on S3C6400
3360
3361 Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
3362 try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
3363 it should work too and we could still profit from instruction cache.
3364
3365 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3366
3367commit 9b07773f8883665b002500c190507e9fd99b7181
3368Author: Guennadi Liakhovetski <lg@denx.de>
3369Date: Sun Aug 31 00:39:46 2008 +0200
3370
3371 ARM: Add arm1176 core with S3C6400 SoC
3372
3373 Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
3374
3375 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3376
3377commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
3378Author: Sandeep Paulraj <s-paulraj@ti.com>
3379Date: Sun Aug 31 00:39:46 2008 +0200
3380
3381 ARM DaVinci: Changing function names for EMAC driver
3382
3383 DM644x is just one of a series of DaVinci chips that use the EMAC driver.
3384 By replacing all the function names that start with dm644x_* to davinci_*
3385 we make these function more portable. I have tested this change on my EVM.
3386 DM6467 is another DaVinci SOC which uses the EMAC driver and i will
3387 be sending patches that add DaVinci DM6467 support to the list soon.
3388
3389 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3390
3391commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
3392Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
3393Date: Sat Aug 30 23:21:30 2008 +0200
3394
3395 Integrator[AP/CP] - Remove unused file memsetup.S
3396
3397 - memsetup.s is changed/merged to lowlevel_init.S
3398 memsetup.S has a global label memsetup that just returns back to caller
3399 - memsetup global label is changed/merged to lowlevel_init
3400 This label is not called from anywhere.
3401
3402 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
3403
3404commit 89d51d022a63be1a851eda983c8cbce1a044f65f
3405Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3406Date: Wed Aug 27 21:35:52 2008 +0200
3407
3408 ARM DaVinci: Standardize names of directories/files
3409
3410 ARM DaVinci: Standardize names of directories/files.
3411
3412 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3413 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3414
3415commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
3416Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3417Date: Fri Jul 11 15:10:13 2008 -0400
3418
3419 ARM DaVinci: Move common functions to board/davinci/common
3420
3421 ARM DaVinci: Move common functions to board/davinci/common.
3422
3423 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3424
3425commit c2b4b2e4814f4ace9015fdb64132894327400bf0
3426Author: Stefan Roese <sr@denx.de>
3427Date: Fri Aug 29 11:56:49 2008 +0200
3428
3429 ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
3430
3431 This function is needed for the new NAND infrastructure. We only need
3432 a dummy implementation though for the NDFC.
3433
3434 Signed-off-by: Stefan Roese <sr@denx.de>
3435
3436commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
3437Author: Stefan Roese <sr@denx.de>
3438Date: Fri Aug 29 12:06:27 2008 +0200
3439
3440 ppc4xx: Increase image size for NAND boot target
3441
3442 This is needed since now with HUSH enabled (amcc-common.h) the image
3443 read from NAND exceeds the previous limit.
3444
3445 Signed-off-by: Stefan Roese <sr@denx.de>
3446
3447commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
3448Author: Ben Warren <biggerbadderben@gmail.com>
3449Date: Thu Aug 28 23:58:30 2008 -0700
3450
3451 Move MPC512x_FEC driver to drivers/net
3452
3453 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3454
3455commit 80b00af01b3c9154774de2936f05a051e92f6a03
3456Author: Ben Warren <biggerbadderben@gmail.com>
3457Date: Thu Aug 28 23:58:29 2008 -0700
3458
3459 Move MPC5xxx_FEC driver to drivers/net
3460
3461 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3462
3463commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
3464Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3465Date: Fri Aug 29 21:53:57 2008 +0200
3466
3467 cmd_terminal: remove no need ifdef
3468
3469 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3470
3471commit 578118bdf122877ae769776be002255be447b4fa
3472Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3473Date: Fri Aug 29 21:53:57 2008 +0200
3474
3475 common/Makefile: order by functionality
3476
3477 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3478
3479commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
3480Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3481Date: Fri Aug 29 21:53:56 2008 +0200
3482
3483 miiphyutil: Move conditional compilation to Makefile
3484
3485 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3486
3487commit 81789c39db3f0f6b621df8c0ec66014d701f368e
3488Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3489Date: Fri Aug 29 21:53:37 2008 +0200
3490
3491 autoscript: Move conditional compilation to Makefile
3492
3493 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3494
3495commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
3496Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3497Date: Fri Aug 29 01:18:11 2008 +0200
3498
3499 crc16: move to lib_generic
3500
3501 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3502
3503commit 55195773eacefb22dd483a3c560ea30a14263ce1
3504Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3505Date: Fri Aug 29 01:18:01 2008 +0200
3506
3507 miiphybb: move to drivers/net/phy
3508
3509 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3510
3511commit e8314035996a9118ac5948df2ff8a2f2161ed67a
3512Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3513Date: Thu Aug 28 12:31:51 2008 +0200
3514
3515 soft_spi: move to drivers/spi
3516
3517 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3518
3519commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
3520Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3521Date: Thu Aug 28 12:31:51 2008 +0200
3522
3523 soft_i2c: move to drivers/i2c
3524
3525 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3526
3527commit 717a222229fdb77703e9174d0eb08a4b41febf49
3528Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3529Date: Thu Aug 28 12:31:48 2008 +0200
3530
3531 gunzip: move to lib_generic
3532
3533 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3534
3535commit 52aef8f9ba28b747973bf76741c23db658d5773c
3536Author: Wolfgang Ocker <weo@reccoware.de>
3537Date: Tue Aug 26 19:55:23 2008 +0200
3538
3539 ppc4xx: NAND configuration
3540
3541 Made NAND bank configuration setting a config variable.
3542
3543 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
3544 Signed-off-by: Stefan Roese <sr@denx.de>
3545
3546commit 5bc542a593abc9e974fbd34704af85c37c366c60
3547Author: Victor Gallardo <vgallardo@amcc.com>
3548Date: Thu Aug 28 16:03:28 2008 -0700
3549
3550 ppc4xx: fix UIC external_interrupt hang on UIC0
3551
3552 This patch fixes a UIC external_interrupt hang if critical or non-critical
3553 interrupt is set at the same time as a normal interrupt is set on UIC0.
3554
3555 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
3556 Signed-off-by: Stefan Roese <sr@denx.de>
3557
3558commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
3559Author: Prodyut Hazarika <phazarika@amcc.com>
3560Date: Wed Aug 27 16:39:00 2008 -0700
3561
3562 ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
3563
3564 Removed Magic numbers from Initialization preload registers
3565 Tested with Kilauea, Glacier, Canyonlands and Katmai boards
3566 About 5-7% improvement seen for LMBench memtests
3567
3568 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
3569 Signed-off-by: Stefan Roese <sr@denx.de>
3570
3571commit 8a490422bed685c9491274ec997f62061d88620b
3572Author: John Rigby <jrigby@freescale.com>
3573Date: Thu Aug 28 13:17:07 2008 -0600
3574
3575 ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
3576
3577 MPC5121 rev 2 silicon has a new register for controlling how long
3578 CS is asserted after deassertion of ALE in multiplexed mode.
3579
3580 The default is to assert CS together with ALE. The alternative
3581 is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
3582
3583 The default is wrong for the NOR flash and CPLD on the ADS5121.
3584
3585 This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
3586 it does so conditionally based on silicon rev 2.0 or greater.
3587
3588 Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
3589 Signed-off-by: John Rigby <jrigby@freescale.com>
3590
3591commit 5d9a5efa4b332f442b54a755d49969123c3a8742
3592Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3593Date: Tue Aug 19 00:56:46 2008 +0600
3594
3595 Add I2C frequency dividers for ColdFire
3596
3597 The existing I2C freqency dividers for FDR does not apply
3598 to ColdFire platforms; thus, a seperate table is added
3599 based on MCF5xxx Reference Manual
3600
3601 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3602 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3603 Acked-by: Tabi Timur <timur@freescale.com>
3604
3605commit eec567a67e00d1ed8d941e9098b7d421f4091abf
3606Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3607Date: Tue Aug 19 03:01:19 2008 +0600
3608
3609 ColdFire: I2C fix for multiple platforms
3610
3611 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3612
3613commit d53cf6a9c7423cba668b867978648645f71c3090
3614Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3615Date: Tue Aug 19 00:37:13 2008 +0600
3616
3617 ColdFire: Add CONFIG_MII_INIT for M5272C3
3618
3619 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3620
3621commit f78ced3028d4130b24a318943a70cf5584ab16f4
3622Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3623Date: Tue Aug 19 00:26:25 2008 +0600
3624
3625 ColdFire: Multiple fixes for MCF5445x platforms
3626
3627 Add FEC pin set and mii reset in __mii_init(). Change
3628 legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
3629 change cfi_offset to 0, and change CFG_FLASH_CFI to
3630 CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
3631 M54455EVB env settings in configuration file.
3632
3633 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3634
3635commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
3636Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3637Date: Fri Aug 15 18:24:25 2008 +0000
3638
3639 ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
3640
3641 The user manuals recommend 7.
3642
3643 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
3644 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3645
3646commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
3647Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3648Date: Fri Aug 15 16:50:07 2008 +0000
3649
3650 ColdFire: Raise uart baudrate to 115200 bps
3651
3652 M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
3653 uart baudrate increase from 19200 to 115200 bps
3654
3655 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3656
3657commit ab6ba842682552ccf071d0034da0a20633d1d1ac
3658Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3659Date: Wed Aug 13 12:07:03 2008 +0000
3660
3661 ColdFire: Fix board.c warning message
3662
3663 Implicit declaration of nand_init() warning message
3664
3665 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3666
3667commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
3668Author: Kumar Gala <galak@kernel.crashing.org>
3669Date: Wed Aug 27 01:10:34 2008 -0500
3670
3671 FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
3672
3673 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3674
3675commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
3676Author: Heiko Schocher <hs@denx.de>
3677Date: Thu Aug 21 20:44:49 2008 +0200
3678
3679 mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
3680
3681 Signed-off-by: Heiko Schocher <hs@denx.de>
3682
3683commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
3684Author: Kumar Gala <galak@kernel.crashing.org>
3685Date: Tue Aug 19 14:46:36 2008 -0500
3686
3687 mpc85xx: remove redudant code with lib_ppc/interrupts.c
3688
3689 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
3690 not show how that happened, but there is no good reason for it.
3691
3692 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
3693 they exist.
3694
3695 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3696
3697commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
3698Author: Kumar Gala <galak@kernel.crashing.org>
3699Date: Fri Jul 25 13:31:05 2008 -0500
3700
3701 mpc85xx: Add support for the MPC8536DS reference board
3702
3703 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3704 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
3705 Signed-off-by: Dejan Minic <minic@freescale.com>
3706 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
3707 Signed-off-by: Dave Liu <daveliu@freescale.com>
3708 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3709
3710commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
3711Author: Kumar Gala <galak@kernel.crashing.org>
3712Date: Tue Aug 12 11:14:19 2008 -0500
3713
3714 mpc85xx: Add support for the MPC8536
3715
3716 The MPC8536 Adds SDHC and SATA controllers to the PQ3 family. We
3717 also have SERDES init code for the 8536.
3718
3719 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3720 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
3721 Signed-off-by: Dejan Minic <minic@freescale.com>
3722 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
3723 Signed-off-by: Dave Liu <daveliu@freescale.com>
3724
3725commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
3726Author: Kumar Gala <galak@kernel.crashing.org>
3727Date: Tue Aug 12 11:13:08 2008 -0500
3728
3729 mpc85xx: Add support for the MPC8572DS reference board
3730
3731 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3732
3733commit 457caecdbca3df21a93abff19eab12dbc61b7897
3734Author: Kumar Gala <galak@kernel.crashing.org>
3735Date: Wed Aug 27 01:05:35 2008 -0500
3736
3737 FSL DDR: Remove old SPD support from cpu/mpc85xx
3738
3739 All 85xx boards have been converted to the new code so we can
3740 remove the old SPD DDR setup code.
3741
3742 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3743
3744commit 0e7927db138976469e7257e29c1338050a50fcd9
3745Author: Kumar Gala <galak@kernel.crashing.org>
3746Date: Wed Aug 27 01:04:07 2008 -0500
3747
3748 FSL DDR: Convert STXSSA to new DDR code.
3749
3750 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3751
3752commit c360d9b970fbb9c13744c355879671165bbb9b9e
3753Author: Kumar Gala <galak@kernel.crashing.org>
3754Date: Wed Aug 27 01:03:42 2008 -0500
3755
3756 FSL DDR: Convert STXGP3 to new DDR code.
3757
3758 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3759
3760commit 8e55313b7ae12352a343f9b9962e662dbd897187
3761Author: Kumar Gala <galak@kernel.crashing.org>
3762Date: Tue Aug 26 23:52:58 2008 -0500
3763
3764 FSL DDR: Convert SBC8560 to new DDR code.
3765
3766 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3767
3768commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
3769Author: Kumar Gala <galak@kernel.crashing.org>
3770Date: Tue Aug 26 23:52:32 2008 -0500
3771
3772 FSL DDR: Convert MPC8540EVAL to new DDR code.
3773
3774 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3775
3776commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
3777Author: Kumar Gala <galak@kernel.crashing.org>
3778Date: Tue Aug 26 23:52:07 2008 -0500
3779
3780 FSL DDR: Convert PM856 to new DDR code.
3781
3782 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3783
3784commit d53bd3e17bd4f460257c19255569ea6dcfaae817
3785Author: Kumar Gala <galak@kernel.crashing.org>
3786Date: Tue Aug 26 23:51:49 2008 -0500
3787
3788 FSL DDR: Convert PM854 to new DDR code.
3789
3790 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3791
3792commit 33b9079ba20926f14238fff863b68a98e938948e
3793Author: Kumar Gala <galak@kernel.crashing.org>
3794Date: Tue Aug 26 23:15:28 2008 -0500
3795
3796 FSL DDR: Convert sbc8548 to new DDR code.
3797
3798 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3799
3800commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
3801Author: Kumar Gala <galak@kernel.crashing.org>
3802Date: Tue Aug 26 23:14:14 2008 -0500
3803
3804 FSL DDR: Convert atum8548 to new DDR code.
3805
3806 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3807
3808commit be0bd8234b9777ecd63c4c686f72af070d886517
3809Author: Kumar Gala <galak@kernel.crashing.org>
3810Date: Tue Aug 26 22:56:56 2008 -0500
3811
3812 FSL DDR: Convert socrates to new DDR code.
3813
3814 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3815
3816commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
3817Author: Kumar Gala <galak@kernel.crashing.org>
3818Date: Tue Aug 26 08:02:30 2008 -0500
3819
3820 FSL DDR: Convert MPC8544DS to new DDR code.
3821
3822 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3823
3824commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
3825Author: Jon Loeliger <jdl@freescale.com>
3826Date: Tue Mar 18 13:51:05 2008 -0500
3827
3828 FSL DDR: Convert MPC8568MDS to new DDR code.
3829
3830 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3831 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3832
3833commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
3834Author: Jon Loeliger <jdl@freescale.com>
3835Date: Tue Mar 18 13:51:06 2008 -0500
3836
3837 FSL DDR: Convert MPC8548CDS to new DDR code.
3838
3839 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3840 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3841
3842commit aa11d85cf318b961e029fe50d68ca47d004bce93
3843Author: Jon Loeliger <jdl@freescale.com>
3844Date: Mon Mar 17 15:48:18 2008 -0500
3845
3846 FSL DDR: Convert MPC8541CDS to new DDR code.
3847
3848 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3849 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3850
3851commit 2b40edb10d81da7bba724edbccd7f53777112579
3852Author: Jon Loeliger <jdl@freescale.com>
3853Date: Tue Mar 18 11:12:42 2008 -0500
3854
3855 FSL DDR: Convert MPC8555ADS to new DDR code.
3856
3857 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3858 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3859
3860commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
3861Author: Jon Loeliger <jdl@freescale.com>
3862Date: Tue Mar 18 11:12:44 2008 -0500
3863
3864 FSL DDR: Convert MPC8560ADS to new DDR code.
3865
3866 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3867 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3868
3869commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
3870Author: Kumar Gala <galak@kernel.crashing.org>
3871Date: Fri Jun 6 13:12:18 2008 -0500
3872
3873 FSL DDR: Convert MPC8540ADS to new DDR code.
3874
3875 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3876
3877commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
3878Author: Kumar Gala <galak@kernel.crashing.org>
3879Date: Tue Aug 26 21:34:55 2008 -0500
3880
3881 FSL DDR: Add 85xx specific register setting
3882
3883 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3884
3885commit 6fb1b7346849ccd0c20306143e334f5b76143070
3886Author: Kumar Gala <galak@kernel.crashing.org>
3887Date: Mon Jun 9 11:07:46 2008 -0500
3888
3889 FSL DDR: Add e500 TLB helper for DDR code
3890
3891 Provide a helper function that board code can call to map TLBs when
3892 setting up DDR.
3893
3894 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3895
3896commit d26b739afe5a6760bd345743188759cd9d0f3b47
3897Author: Andrew Dyer <adyer@righthandtech.com>
3898Date: Tue Aug 26 17:03:38 2008 -0500
3899
3900 dm9000 remove dead external phy support, gpio fix
3901
3902 dm9000 has code to detect and initialize external phy parts, but later
3903 on in the code the part is forced to use the internal phy
3904 unconditionally. Remove the unused/untested code.
3905
3906 change the GPIO initialization so that only the GPIO used as an
3907 internal phy reset (hardwired in the chip) is set as an output. The
3908 remaining GPIO need to be handled by board specific code to prevent
3909 possible drive conflicts. Set as inputs for safety.
3910
3911 replace a few magic numbers with defines
3912
3913 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
3914 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3915
3916commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
3917Author: Peter Tyser <ptyser@xes-inc.com>
3918Date: Tue Aug 26 11:17:48 2008 -0500
3919
3920 Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
3921
3922 cmd_net.c command descriptions were updated to describe the optional
3923 hostIPaddr argument. The dhcp command help message was also updated
3924 to more closely reflect the other commands in cmd_net.c
3925
3926 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3927 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3928
3929commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
3930Author: Remy Bohmer <linux@bohmer.net>
3931Date: Wed Aug 20 11:30:28 2008 +0200
3932
3933 Fix bogus error message in the DHCP handler
3934
3935 The DHCP handler has 1 state that is not listed in this case, causing a
3936 failure message when there is actually no failure.
3937
3938 Signed-off-by: Remy Bohmer <linux@bohmer.net>
3939 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3940
3941commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
3942Author: Remy Bohmer <linux@bohmer.net>
3943Date: Wed Aug 20 11:30:27 2008 +0200
3944
3945 Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
3946
3947 The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
3948 missing extern inside the net/bootp.h header
3949
3950 Signed-off-by: Remy Bohmer <linux@bohmer.net>
3951 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3952
3953commit 1803f7f91ff35ca402259065df7557107dcf28a2
3954Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3955Date: Tue Aug 19 21:26:32 2008 +0000
3956
3957 ColdFire: Add FEC Buffer descriptors in SRAM
3958
3959 Add FEC Buffer descriptors and data buffer in SRAM for
3960 faster execution and access.
3961
3962 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3963 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3964
3965commit 429be27ce195210d4b9decf9e867b9ca6155a87d
3966Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3967Date: Thu Aug 21 23:55:11 2008 +0000
3968
3969 Fix ColdFire FEC warning messages
3970
3971 Types mismatch and implicit declaration of icache_invalid()
3972 warning messages
3973
3974 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
3975 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3976
3977commit 6a002171098e968bd5b362347d2831224fab6048
3978Author: Ben Warren <biggerbadderben@gmail.com>
3979Date: Sat Jul 12 00:17:50 2008 -0700
3980
3981 Moved initialization of SKGE Ethernet driver to board code.
3982
3983 The only board using this driver is the SL8245 board.
3984 Removed initialization for the driver from net/eth.c
3985
3986 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3987
3988commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
3989Author: Ben Warren <biggerbadderben@gmail.com>
3990Date: Sat Jul 12 00:08:45 2008 -0700
3991
3992 Moved conditional compilation to Makefile for SK98 Ethernet driver
3993
3994 Brute-force removal of #ifdefs. Didn't touch the code.
3995 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3996
3997commit 65d3d99c28dc363d15eaee78225ff643df499b97
3998Author: Ben Warren <biggerbadderben@gmail.com>
3999Date: Fri Jul 11 23:42:19 2008 -0700
4000
4001 Moved initialization of ULI526X Ethernet driver to board code.
4002
4003 The only board using this driver is the Freescale MPC8610HPCD board.
4004 Removed initialization for the driver from net/eth.c
4005
4006 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4007
4008commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
4009Author: Ben Warren <biggerbadderben@gmail.com>
4010Date: Fri Jul 11 23:15:28 2008 -0700
4011
4012 Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
4013
4014 Added board_eth_init() function to bf537-stamp board.
4015 Removed initialization for the Blackin EMAC driver from net/eth.c
4016
4017 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4018
4019commit fc363ce35408f348cacced68505f3747a53e3d7c
4020Author: Ben Warren <biggerbadderben@gmail.com>
4021Date: Wed Jul 9 01:04:19 2008 -0700
4022
4023 Moved initialization of GRETH Ethernet driver to CPU directory
4024
4025 Added a cpu_eth_init() function to leon2/leon3 CPU directories and
4026 removed code from net/eth.c
4027
4028 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4029
4030commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
4031Author: Ben Warren <biggerbadderben@gmail.com>
4032Date: Tue Aug 26 22:16:25 2008 -0700
4033
4034 Moved initialization of MCFFEC Ethernet driver to CPU directory
4035
4036 Added a cpu_eth_init() function to coldfire CPU directories and
4037 removed code from net/eth.c
4038
4039 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4040
4041commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
4042Author: Ben Warren <biggerbadderben@gmail.com>
4043Date: Tue Aug 26 22:12:36 2008 -0700
4044
4045 Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
4046
4047 Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
4048 removed code from net/eth.c
4049
4050 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
4051
4052commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
4053Author: Kumar Gala <galak@kernel.crashing.org>
4054Date: Tue Aug 26 15:01:38 2008 -0500
4055
4056 FSL DDR: Remove old SPD support from cpu/mpc86xx
4057
4058 All 86xx boards have been converted to the new code so we can
4059 remove the old SPD DDR setup code.
4060
4061 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4062
4063commit 9bd4e5911b750837515466bc7449087698b88e0e
4064Author: Kumar Gala <galak@kernel.crashing.org>
4065Date: Tue Aug 26 15:01:37 2008 -0500
4066
4067 FSL DDR: Convert SBC8641D to new DDR code.
4068
4069 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4070
4071commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
4072Author: Jon Loeliger <jdl@freescale.com>
4073Date: Tue Aug 26 15:01:36 2008 -0500
4074
4075 FSL DDR: Convert MPC8610HPCD to new DDR code.
4076
4077 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4078 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4079
4080commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
4081Author: Kumar Gala <galak@kernel.crashing.org>
4082Date: Tue Aug 26 15:01:35 2008 -0500
4083
4084 FSL DDR: Convert MPC8641HPCN to new DDR code.
4085
4086 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4087 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4088
4089commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
4090Author: Kumar Gala <galak@kernel.crashing.org>
4091Date: Tue Aug 26 15:01:34 2008 -0500
4092
4093 FSL DDR: Add 86xx specific register setting
4094
4095 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4096
4097commit 233fdd502a6c227f476212b3097653ad48d7e254
4098Author: Kumar Gala <galak@kernel.crashing.org>
4099Date: Tue Aug 26 15:01:32 2008 -0500
4100
4101 FSL DDR: Add DDR2 DIMM paramter support
4102
4103 Compute DIMM parameters based upon the SPD information.
4104
4105 Signed-off-by: James Yang <James.Yang@freescale.com>
4106 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4107 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4108
4109commit 05c05a2363a6ac11e0e405926034546ffad71fad
4110Author: Kumar Gala <galak@kernel.crashing.org>
4111Date: Tue Aug 26 15:01:30 2008 -0500
4112
4113 FSL DDR: Add DDR1 DIMM paramter support
4114
4115 Compute DIMM parameters based upon the SPD information in spd.
4116
4117 Signed-off-by: James Yang <James.Yang@freescale.com>
4118 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4119 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4120
4121commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
4122Author: Kumar Gala <galak@kernel.crashing.org>
4123Date: Tue Aug 26 15:01:29 2008 -0500
4124
4125 FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
4126
4127 The main purpose of this rewrite it to be able to share the same
4128 initialization code on all FSL PowerPC products that have DDR
4129 controllers. (83xx, 85xx, 86xx).
4130
4131 The code is broken up into the following steps:
4132 GET_SPD
4133 COMPUTE_DIMM_PARMS
4134 COMPUTE_COMMON_PARMS
4135 GATHER_OPTS
4136 ASSIGN_ADDRESSES
4137 COMPUTE_REGS
4138 PROGRAM_REGS
4139
4140 This allows us to share more code an easily allow for board specific code
4141 overrides.
4142
4143 Additionally this code base adds support for >4G of DDR and provides a
4144 foundation for supporting interleaving on processors with more than one
4145 controller.
4146
4147 Signed-off-by: James Yang <James.Yang@freescale.com>
4148 Signed-off-by: Jon Loeliger <jdl@freescale.com>
4149 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
4150 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
4151 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4152
4153commit f784e32b4bce0013983506b11af4b85b8ca3d36e
4154Author: Kumar Gala <galak@kernel.crashing.org>
4155Date: Tue Aug 26 15:01:28 2008 -0500
4156
4157 FSL DDR: Provide a generic set_ddr_laws()
4158
4159 Provide a helper function that will setup the last available
4160 LAWs (upto 2) for DDR. Useful for SPD/dyanmic DDR setting code.
4161
4162 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4163
4164commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
4165Author: James Yang <James.Yang@freescale.com>
4166Date: Tue Aug 26 15:01:27 2008 -0500
4167
4168 Add proper SPD definitions for DDR1/2/3
4169
4170 Also adds helper functions for DDR1/2 to verify the checksum.
4171
4172 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4173
4174commit 285db74716c724ae8a0ff177878fd09a74428c7b
4175Author: Wolfgang Denk <wd@denx.de>
4176Date: Wed Aug 27 01:02:48 2008 +0200
4177
4178 Update CHANGELOG
4179
4180 Signed-off-by: Wolfgang Denk <wd@denx.de>
4181
Wolfgang Denk285db742008-08-27 01:02:48 +02004182commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
4183Author: Heiko Schocher <hs@denx.de>
4184Date: Tue Aug 19 10:08:49 2008 +0200
4185
4186 Add support for muas3001 board (MPC8270)
4187
4188 Signed-off-by: Heiko Schocher <hs@denx.de>
4189
4190commit 322098bff32410d2a00031649b47c4ec90a66d9a
4191Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
4192Date: Tue Aug 19 08:31:18 2008 +0530
4193
4194 common/cmd_load.c cleanup - remove unused variables
4195
4196 - Remove unused global variable os_data_count.
4197 - Remove unused variable z.
4198
4199 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
4200
4201commit 306620b762a4f9fa6678568ad2e8772dec145208
4202Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
4203Date: Mon Aug 18 13:35:27 2008 +0200
4204
4205 remove MVS1 board
4206
4207 MVS1 board has reached end-of-life and can be removed completely.
4208
4209 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4210
4211commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
4212Author: Kumar Gala <galak@kernel.crashing.org>
4213Date: Fri Aug 15 08:24:45 2008 -0500
4214
4215 bootm: refactor do_reset and os boot function args
4216
4217 There is no need for each OS specific function to call do_reset() we
4218 can just do it once in bootm. This means its feasible on an error for
4219 the OS boot function to return.
4220
4221 Also, remove passing in cmd_tbl_t as its not needed by the OS boot
4222 functions. flag isn't currently used but might be in the future so
4223 we left it alone.
4224
4225 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4226
4227commit 40afac22a9c602e55c501c800f1c064324711b56
4228Author: Kumar Gala <galak@kernel.crashing.org>
4229Date: Fri Aug 15 08:24:44 2008 -0500
4230
4231 fdt: Added resize command
4232
4233 Resize the fdt to size + padding to 4k boundary
4234
4235 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4236
4237commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
4238Author: Kumar Gala <galak@kernel.crashing.org>
4239Date: Fri Aug 15 08:24:43 2008 -0500
4240
4241 fdt: refactor initrd related code
4242
4243 Created a new fdt_initrd() to deal with setting the initrd properties
4244 in the device tree and fixing up the mem reserve. We can use this
4245 both in the choosen node handling and lets us remove some duplicated
4246 code when we fixup the initrd info in bootm on PPC.
4247
4248 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4249
4250commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
4251Author: Kumar Gala <galak@kernel.crashing.org>
4252Date: Fri Aug 15 08:24:42 2008 -0500
4253
4254 fdt: refactor fdt resize code
4255
4256 Move the fdt resizing code out of ppc specific boot code and into
4257 common fdt support code.
4258
4259 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4260
4261commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
4262Author: Kumar Gala <galak@kernel.crashing.org>
4263Date: Fri Aug 15 08:24:41 2008 -0500
4264
4265 bootm: refactor image detection and os load steps
4266
4267 Created a bootm_start() that handles the parsing and detection of all
4268 the images that will be used by the bootm command (OS, ramdisk, fdt).
4269 As part of this we now tract all the relevant image offsets in the
4270 bootm_headers_t struct. This will allow us to have all the needed
4271 state for future sub-commands and lets us reduce a bit of arch
4272 specific code on SPARC.
4273
4274 Created a bootm_load_os() that deals with decompression and loading
4275 the OS image.
4276
4277 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4278
4279commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
4280Author: Kumar Gala <galak@kernel.crashing.org>
4281Date: Fri Aug 15 08:24:40 2008 -0500
4282
4283 bootm: move lmb into the bootm_headers_t structure
4284
4285 To allow for persistent state between future bootm subcommands we
4286 need the lmb to exist in a global state.
4287 Moving it into the bootm_headers_t allows us to do that.
4288
4289 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4290
4291commit 54f9c86691309b2f919f567f9255b8bcad2c7651
4292Author: Kumar Gala <galak@kernel.crashing.org>
4293Date: Fri Aug 15 08:24:39 2008 -0500
4294
4295 bootm: Set working fdt address as part of the bootm flow
4296
4297 Set the fdt working address so "fdt FOO" commands can be used as part
4298 of the bootm flow. Also set an the environment variable "fdtaddr"
4299 with the value.
4300
4301 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4302
4303commit 06a09918f3903450313e2047a9cc258bf5872f46
4304Author: Kumar Gala <galak@kernel.crashing.org>
4305Date: Fri Aug 15 08:24:38 2008 -0500
4306
4307 bootm: refactor fdt locating and relocation code
4308
4309 Move the code that handles finding a device tree blob and relocating
4310 it (if needed) into common code so all arch's have access to it.
4311
4312 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4313
4314commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
4315Author: Kumar Gala <galak@kernel.crashing.org>
4316Date: Fri Aug 15 08:24:37 2008 -0500
4317
4318 bootm: refactor ramdisk locating code
4319
4320 Move determing if we have a ramdisk and where its located into the
4321 common code. Keep track of the ramdisk start and end in the
4322 bootm_headers_t image struct.
4323
4324 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4325
4326commit c160a9544743e80e8889edb2275538e7764ce334
4327Author: Kumar Gala <galak@kernel.crashing.org>
4328Date: Fri Aug 15 08:24:36 2008 -0500
4329
4330 bootm: refactor entry point code
4331
4332 Move entry point code out of each arch and into common code.
4333 Keep the entry point in the bootm_headers_t images struct.
4334
4335 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4336
4337commit 20220d22b9f41446288588cd2e457e0077a18bed
4338Author: Randy Vinson <rvinson@mvista.com>
4339Date: Wed Aug 13 11:44:57 2008 -0700
4340
4341 mpc7448hpc2: Fix PCI I/O space mapping.
4342
4343 PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
4344 PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
4345 space such that 0xFA000000 in the processor's address space maps to 0
4346 on the PCI I/O bus.
4347
4348 Signed-off-by Randy Vinson <rvinson@mvista.com>
4349 Acked-by: Roy Zang <tie-fei.zang@freescale.com>
4350
4351commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
4352Author: Guennadi Liakhovetski <lg@denx.de>
4353Date: Wed Aug 13 18:10:26 2008 +0200
4354
4355 i.MX31: Specify maintainers for i.MX31-based boards
4356
4357 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4358 Signed-off-by: Wolfgang Denk <wd@denx.de>
4359
4360commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
4361Author: Wolfgang Denk <wd@denx.de>
4362Date: Tue Aug 26 15:01:28 2008 +0200
4363
4364 ADS5121: adjust image addresses in RAM and flash
4365
4366 Use the same mapping in flash as used by Linux
4367
4368 Signed-off-by: Wolfgang Denk <wd@denx.de>
4369
4370commit 19f101412c16edee9fd55db4039e1d68a833b28b
4371Author: Wolfgang Denk <wd@denx.de>
4372Date: Tue Aug 26 13:14:34 2008 +0200
4373
4374 cmd_mem.c: Fix help message alignment
4375
4376 Bug was introced by "Big white-space cleanup" (53677ef1)
4377
4378 Signed-off-by: Wolfgang Denk <wd@denx.de>
4379
4380commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
4381Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
4382Date: Wed Aug 20 11:11:52 2008 +0200
4383
4384 change mvBL-M7 default env and move to vendor subdir
4385
4386 fix mvBL-M7 config and move to matrix_vision subdir
4387
4388 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4389 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4390
4391commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
4392Author: Nick Spence <nick.spence@freescale.com>
4393Date: Fri Aug 22 23:52:40 2008 -0700
4394
4395 MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
4396
4397 This patch adds elements to the 83xx sysconf structure and #define values that are used
4398 by mpc83xx family devices.
4399
4400 Signed-off-by: Nick Spence <nick.spence@freescale.com>
4401 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4402
4403commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
4404Author: Ira W. Snyder <iws@ovro.caltech.edu>
4405Date: Fri Aug 22 11:00:15 2008 -0700
4406
4407 MPC8349EMDS: Add PCI Agent (PCISLAVE) support
4408
4409 Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
4410 PCI card rather than a host computer.
4411
4412 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
4413 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4414
4415commit 4ff9aea9d6b5602683a920951ef896996438af62
4416Author: Ira W. Snyder <iws@ovro.caltech.edu>
4417Date: Fri Aug 22 11:00:14 2008 -0700
4418
4419 mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
4420
4421 This adds a helper function to unlock the PCI configuration bit, so that
4422 any extra PCI setup (such as outbound windows, etc.) can be done after
4423 using the 83XX_GENERIC_PCI code to set up the PCI bus.
4424
4425 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
4426 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4427
4428commit 162338e1fcde231ca4d562e5ebd7859456731691
4429Author: Ira W. Snyder <iws@ovro.caltech.edu>
4430Date: Fri Aug 22 11:00:13 2008 -0700
4431
4432 MPC8349EMDS: use 83XX_GENERIC_PCI setup code
4433
4434 Change the MPC8349EMDS board to use the generic PCI initialization code
4435 for the mpc83xx cpu.
4436
4437 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
4438 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4439
4440commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
4441Author: Kim Phillips <kim.phillips@freescale.com>
4442Date: Mon Aug 25 14:53:09 2008 -0500
4443
4444 fix out of tree building
4445
4446 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4447
4448commit a49d10cf027d059ee15c262010a05cdaec0961e1
4449Author: Wolfgang Denk <wd@denx.de>
4450Date: Mon Aug 25 23:45:41 2008 +0200
4451
4452 Minor coding style cleanup, updte CHANGELOG
4453
4454 Signed-off-by: Wolfgang Denk <wd@denx.de>
4455
Wolfgang Denka49d10c2008-08-25 23:45:41 +02004456commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
4457Author: Stefan Roese <sr@denx.de>
4458Date: Wed Aug 20 20:29:38 2008 +0200
4459
4460 RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
4461
4462 This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
4463 to combine both config options into one line. This even allows defining
4464 both options and not generating the target object twice.
4465
4466 Signed-off-by: Stefan Roese <sr@denx.de>
4467
4468commit 079edb913dbae147b50a488cf02e03f473fc5f28
4469Author: Jens Gehrlein <sew_s@tqs.de>
4470Date: Fri Jul 4 16:50:05 2008 +0200
4471
4472 MX31: fix bit masks in function mx31_decode_pll()
4473
4474 Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
4475
4476 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
4477
4478commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
4479Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
4480Date: Mon Aug 25 11:11:34 2008 +0200
4481
4482 Correct ARM Versatile Timer Initialization
4483
4484 - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
4485 -- Timer Value Register @ TIMER Base + 4 is Read-only.
4486 -- Prescale Value (Bits 3-2 of TIMER Control register)
4487 can only be one of 00,01,10. 11 is undefined.
4488 -- CFG_HZ for Versatile board is set to
4489 #define CFG_HZ (1000000 / 256)
4490 So Prescale bits is set to indicate
4491 - 8 Stages of Prescale, Clock divided by 256
4492 - The Timer Control Register has one Undefined/Shouldn't Use Bit
4493 So we should do read/modify/write Operation
4494
4495 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
4496
4497commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
4498Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
4499Date: Mon Aug 25 11:30:29 2008 +0200
4500
4501 Add ARM AMBA PL031 RTC Support
4502
4503 Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
4504
4505commit e39411674669cc880e1ec4a8ca4794fb15c33a45
4506Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
4507Date: Tue Aug 19 16:21:03 2008 -0400
4508
4509 ARM DaVinci: Removed redundant NAND initialization code.
4510
4511 ARM DaVinci: Removed redundant NAND initialization code.
4512
4513 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
4514
4515commit b3fb663b20d995ca41327db877ddb168279b3f62
4516Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
4517Date: Tue Aug 19 16:21:00 2008 -0400
4518
4519 ARM DaVinci: Fix compilation error with new MTD code.
4520
4521 ARM DaVinci: Fix compilation error with new MTD code.
4522
4523 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
4524
4525commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
4526Author: Gerald Van Baren <vanbaren@cideas.com>
4527Date: Fri Aug 22 14:37:05 2008 -0400
4528
4529 Add note on dereferencing /aliases pointers
4530
4531 Replace the "must quote special characters" note with a hint on
4532 how to dereference /aliases pointers by omitting the leading "/".
4533 This feature was introduced by Kumar Gala as a libfdt enhancement
4534 in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
4535
4536 Example:
4537
4538 => fdt print /aliases
4539 aliases {
4540 ethernet0 = "/qe@e0100000/ucc@2000";
4541 ethernet1 = "/qe@e0100000/ucc@3000";
4542 serial0 = "/soc8360@e0000000/serial@4500";
4543 serial1 = "/soc8360@e0000000/serial@4600";
4544 pci0 = "/pci@e0008500";
4545 };
4546 => fdt print ethernet0
4547 ucc@2000 {
4548 device_type = "network";
4549 compatible = "ucc_geth";
4550 cell-index = <0x1>;
4551 reg = <0x2000 0x200>;
4552 interrupts = <0x20>;
4553 interrupt-parent = <0x2>;
4554 local-mac-address = [00 00 00 00 00 00];
4555 rx-clock-name = "none";
4556 tx-clock-name = "clk9";
4557 phy-handle = <0x3>;
4558 phy-connection-type = "rgmii-id";
4559 pio-handle = <0x4>;
4560 };
4561
4562 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
4563
4564commit feeca3f578b7f53c032ba203698751c982f8bf5a
4565Author: Kumar Gala <galak@kernel.crashing.org>
4566Date: Thu Aug 14 08:28:19 2008 -0500
4567
4568 libfdt: Add support for using aliases in fdt_path_offset()
4569
4570 If the path doesn't start with '/' check to see if it matches some alias
4571 under "/aliases" and substitute the matching alias value in the path
4572 and retry the lookup.
4573
4574 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4575 Acked-by: David Gibson <david@gibson.dropbear.id.au>
4576 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
4577
4578commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
4579Author: David Gibson <david@gibson.dropbear.id.au>
4580Date: Wed Aug 6 14:50:49 2008 +1000
4581
4582 libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
4583
4584 As well as fdt_subnode_offset(), libfdt includes an
4585 fdt_subnode_offset_namelen() function that takes the subnode name to
4586 look up not as a NUL-terminated string, but as a string with an
4587 explicit length. This can be useful when the caller has the name as
4588 part of a longer string, such as a full path.
4589
4590 However, we don't have corresponding 'namelen' versions for
4591 fdt_get_property() and fdt_getprop(). There are less obvious use
4592 cases for these variants on property names, but there are
4593 circumstances where they can be useful e.g. looking up property names
4594 which need to be parsed from a longer string buffer such as user input
4595 or a configuration file, or looking up an alias in a path with
4596 IEEE1275 style aliases.
4597
4598 So, since it's very easy to implement such variants, this patch does
4599 so. The original NUL-terminated variants are, of course, implemented
4600 in terms of the namelen versions.
4601
4602 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4603
4604commit f171746f701ea58bf6a53e835b53d2aaebee0d81
4605Author: David Gibson <david@gibson.dropbear.id.au>
4606Date: Tue Jul 29 14:51:22 2008 +1000
4607
4608 libfdt: Forgot one function when cleaning the namespace
4609
4610 In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
4611 libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
4612 chance of collisions with things from whatever package libfdt is
4613 embedded in, pulled into the libfdt build via that environment's
4614 libfdt_env.h.
4615
4616 Except... I missed one. This patch applies the same treatment to
4617 _stringlist_contains(). While we're at it, also make it static since
4618 it's only used in the same file.
4619
4620 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4621
4622commit 46390da15411351fc3b498bd8c1615f78fe80df0
4623Author: Wolfram Sang <w.sang@pengutronix.de>
4624Date: Wed Jul 9 11:22:44 2008 +0200
4625
4626 libfdt: Improve documentation in libfdt.h
4627
4628 Fix a few typos and mistakes.
4629
4630 Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
4631 Acked-by: David Gibson <david@gibson.dropbear.id.au>
4632
4633commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
4634Author: David Gibson <david@gibson.dropbear.id.au>
4635Date: Wed Jul 9 14:10:24 2008 +1000
4636
4637 libfdt: Increase namespace-pollution paranoia
4638
4639 libfdt is supposed to easy to embed in projects all and sundry.
4640 Often, it won't be practical to separate the embedded libfdt's
4641 namespace from that of the surrounding project. Which means there can
4642 be namespace conflicts between even libfdt's internal/static functions
4643 and functions or macros coming from the surrounding project's headers
4644 via libfdt_env.h.
4645
4646 This patch, therefore, renames a bunch of libfdt internal functions
4647 and macros and makes a few other chances to reduce the chances of
4648 namespace collisions with embedding projects. Specifically:
4649 - Internal functions (even static ones) are now named _fdt_*()
4650
4651 - The type and (static) global for the error table in
4652 fdt_strerror() gain an fdt_ prefix
4653
4654 - The unused macro PALIGN is removed
4655
4656 - The memeq and streq macros are removed and open-coded in the
4657 users (they were only used once each)
4658
4659 - Other macros gain an FDT_ prefix
4660
4661 - To save some of the bulk from the previous change, an
4662 FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
4663 FDT_ALIGN(x, FDT_TAGSIZE)
4664
4665 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4666
4667commit c66830263af19831f2b7db307f79d1943febf7f9
4668Author: David Gibson <david@gibson.dropbear.id.au>
4669Date: Mon Jul 7 10:14:15 2008 +1000
4670
4671 dtc: Enable and fix -Wcast-qual warnings
4672
4673 Enabling -Wcast-qual warnings in dtc shows up a number of places where
4674 we are incorrectly discarding a const qualification. There are also
4675 some places where we are intentionally discarding the 'const', and we
4676 need an ugly cast through uintptr_t to suppress the warning. However,
4677 most of these are pretty well isolated with the *_w() functions. So
4678 in the interests of maximum safety with const qualifications, this
4679 patch enables the warnings and fixes the existing complaints.
4680
4681 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4682 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
4683
4684commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
4685Author: David Gibson <david@gibson.dropbear.id.au>
4686Date: Mon Jul 7 10:10:48 2008 +1000
4687
4688 dtc: Enable and fix -Wpointer-arith warnings
4689
4690 This patch turns on the -Wpointer-arith option in the dtc Makefile,
4691 and fixes the resulting warnings due to using (void *) in pointer
4692 arithmetic. While convenient, pointer arithmetic on void * is not
4693 portable, so it's better that we avoid it, particularly in libfdt.
4694
4695 Also add necessary definition of uintptr_t needed by David Gibson's
4696 changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
4697 comes from stdint.h, which u-boot doesn't have). -- gvb
4698
4699 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
4700 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
4701
4702commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
4703Author: Tirumala R Marri <tmarri@amcc.com>
4704Date: Thu Aug 21 21:54:53 2008 -0700
4705
4706 ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
4707
4708 During recent PCI-E tests it has been found that current
4709 driverl level and de-emphasis values are not set correctly.
4710 After sweeping throgh all de-ephasis values, it was found that
4711 0x130 is a right value. Where 0x13 is driver level and 0 is
4712 de-emphasis.
4713
4714 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
4715 Signed-off-by: Stefan Roese <sr@denx.de>
4716
4717commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
4718Author: Remy Bohmer <linux@bohmer.net>
4719Date: Wed Aug 20 20:46:56 2008 +0200
4720
4721 Make the YAFFS filesystem work
4722
4723 Recently the YAFFS filesystem support has been added to U-boot.
4724 However, just enabling CONFIG_YAFFS2 is not enough to get it working.
4725
4726 ymount will generate an exception (when dereferencing mtd->readoob()), because
4727 the genericDevice is a null pointer. Further, a lot of logging is produced
4728 while using YAFFS fs, so logging should also be disabled.
4729 Both issues are solved by this patch.
4730
4731 With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
4732 in U-boot, as well as in Linux.
4733
4734 Tested on a Atmel AT91SAM9261EK board.
4735
4736 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4737 Acked-by: William Juul <william.juul@tandberg.com>
4738 Signed-off-by: Scott Wood <scottwood@freescale.com>
4739
4740commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
4741Author: Kyungmin Park <kmpark@infradead.org>
4742Date: Tue Aug 19 08:42:53 2008 +0900
4743
4744 Fix OneNAND read_oob/write_oob functions compatability
4745
4746 Also sync with kernel OneNAND codes
4747
4748 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4749 Signed-off-by: Scott Wood <scottwood@freescale.com>
4750
4751commit 8d765456c1d33f2010d2717ee58de7647fdc6346
4752Author: Scott Wood <scottwood@freescale.com>
4753Date: Mon Aug 18 17:11:20 2008 -0500
4754
4755 NAND: Remove delay from nand_boot_fsl_elbc.c.
4756
4757 It was for debugging purposes, and shouldn't have been left in.
4758
4759 Signed-off-by: Scott Wood <scottwood@freescale.com>
4760
4761commit f556483734126793522fb7a8cf36af90da78f084
4762Author: Stefan Roese <sr@denx.de>
4763Date: Thu Aug 21 11:05:03 2008 +0200
4764
4765 ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
4766
4767 This patch fixes some minor issues introduced with the patch:
4768 ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
4769
4770 - Rework memory-queue and PLB arbiter optimization code, that the
4771 local variable is not needed anymore. This removes one #ifdef.
4772 - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
4773 of XXX+ 0x01). This was not introduced by Prodyut, just a
4774 copy-paste problem.
4775
4776 Signed-off-by: Stefan Roese <sr@denx.de>
4777
4778commit 079589bcfb24ba11068460276a3cc9549ab5346f
4779Author: Prodyut Hazarika <phazarika@amcc.com>
4780Date: Wed Aug 20 09:38:51 2008 -0700
4781
4782 ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
4783 PPC405EX and PPC460EX/GT/SX
4784
4785 - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
4786 processors
4787 - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
4788 across processors (405 and 440/460)
4789 - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
4790 processors
4791 - Add register bit definitions for Memory Queue Configuration registers
4792
4793 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
4794 Signed-off-by: Stefan Roese <sr@denx.de>
4795
4796commit ba37aa03287c5483c61c0a3e320c8888bee0143a
4797Author: Kumar Gala <galak@kernel.crashing.org>
4798Date: Tue Aug 19 15:41:18 2008 -0500
4799
4800 fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
4801
4802 Move to using the environment variables 'ethaddr', 'eth1addr', etc..
4803 instead of bd->bi_enetaddr, bi_enet1addr, etc.
4804
4805 This makes the code a bit more flexible to the number of ethernet
4806 interfaces.
4807
4808 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4809
4810commit 4cacf7c64609839f809e2f9c45873f1d65861703
4811Author: Stefan Roese <sr@denx.de>
4812Date: Tue Aug 19 14:57:55 2008 +0200
4813
4814 hush: Fix printf debug macro in hush.c so that it usable in U-Boot
4815
4816 This patch changes the debug_printf() marco for U-Boot in hush.c and
4817 moves the definition of DEBUG_SHELL to a place that is actually compiled
4818 under U-Boot.
4819
4820 Signed-off-by: Stefan Roese <sr@denx.de>
4821
4822commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
4823Author: Heiko Schocher <hs@denx.de>
4824Date: Tue Aug 19 09:57:41 2008 +0200
4825
4826 cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
4827
4828 Commit 00b1883a4cac59d97cd297b1a3a398db85982865
4829 missed a few boards:
4830 include/configs/M5253DEMO.h
4831 include/configs/ml507.h
4832 include/configs/redwood.h
4833
4834 This patch fixes this.
4835
4836 Signed-off-by: Heiko Schocher <hs@denx.de>
4837
4838commit 0768b7a872964085eece8d5e9fec9175e9deb161
4839Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4840Date: Mon Aug 18 13:41:27 2008 +0200
4841
4842 Consolidate strmhz() implementation
4843
4844 ARM, i386, m68k and ppc all have identical implementations of strmhz().
4845 Other architectures don't provide this function at all.
4846
4847 This patch moves strmhz() into lib_generic, reducing code duplication
4848 and providing a more unified API across architectures.
4849
4850 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4851
4852commit a928d0df211f1d829308d335d19be3ca42558dfc
4853Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
4854Date: Mon Aug 18 12:02:51 2008 +0200
4855
4856 fix mvbc_p board build warnings
4857
4858 fix build warnings @ mvBC-P board by using correct types, i.e. change
4859 out_be32 to out_be16 and out_8 accordingly.
4860
4861 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4862
4863commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
4864Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4865Date: Sat Aug 16 18:54:27 2008 +0200
4866
4867 Makefile: fix posix support on find
4868
4869 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4870
4871commit bef92e215d945cc574399c1a1b00a3a76d35aa03
4872Author: Axel Beierlein <belatronix@web.de>
4873Date: Sat Aug 16 00:30:48 2008 +0200
4874
4875 Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
4876
4877 Tested with TQM5200S on STK52XX.200 Board
4878
4879 Signed-off-by: Axel Beierlein <belatronix@web.de>
4880
4881commit 0800707b6d5041a840a65d556032c15c584b55f8
4882Author: Peter Tyser <ptyser@xes-inc.com>
4883Date: Fri Aug 15 14:36:32 2008 -0500
4884
4885 mod_i2c_mem() bugfix
4886
4887 The last used chip, address, and address length were not being
4888 stored for the imm and imn commands.
4889
4890 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4891
4892commit 4afbef967275b2f636abae86f91b81becee7ad03
4893Author: Steven A. Falco <sfalco@harris.com>
4894Date: Fri Aug 15 15:37:31 2008 -0400
4895
4896 Fix typo in spelling of ATAPI.
4897
4898 Correct a small spelling mistake.
4899
4900 Signed-off-by: Steven A. Falco <sfalco@harris.com>
4901
4902commit 36c2d3062ecc6ab85f8e237180eb134464c48418
4903Author: Steven A. Falco <sfalco@harris.com>
4904Date: Fri Aug 15 15:34:10 2008 -0400
4905
4906 Add a hook to allow board-specific PIO mode setting.
4907
4908 This patch adds a hook whereby a board-specific routine can be called to
4909 configure hardware for a PIO mode. The prototype for the board-specific
4910 routine is:
4911
4912 int inline ide_set_piomode(int pio_mode)
4913
4914 ide_set_piomode should be prepared to configure hardware for a pio_mode
4915 between 0 and 6, inclusive. It should return 0 on success or 1 on failure.
4916
4917 Signed-off-by: Steven A. Falco <sfalco@harris.com>
4918
4919commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
4920Author: Steven A. Falco <sfalco@harris.com>
4921Date: Fri Aug 15 15:29:12 2008 -0400
4922
4923 Replace enums in ata.h with an include of libata.h
4924
4925 This patch removes some enums from ata.h and replaces them with an
4926 include of libata.h. This way, we eliminate duplicated code, and
4927 prevent errors whereby the different versions could be out of sync.
4928
4929 Signed-off-by: Steven A. Falco <sfalco@harris.com>
4930
4931commit 0de0afbca865ecf482b4d2b635236746def8518f
4932Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4933Date: Fri Aug 15 18:32:41 2008 +0200
4934
4935 coldfire: fix CFI drivers activation with new macro
4936
4937 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
4938
4939 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4940
4941commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
4942Author: Kumar Gala <galak@kernel.crashing.org>
4943Date: Fri Aug 15 08:24:35 2008 -0500
4944
4945 fdt: fdt addr w/o any args reports back the current working address
4946
4947 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4948
4949commit f953d99fd528a496b400a706b511eaf8e3ea66af
4950Author: Kumar Gala <galak@kernel.crashing.org>
4951Date: Fri Aug 15 08:24:34 2008 -0500
4952
4953 fdt: added the ability to set initrd start/end via chosen command
4954
4955 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4956
4957commit ffa4bafacaef67058463b3d7d0099ced57569dd2
4958Author: Kumar Gala <galak@kernel.crashing.org>
4959Date: Fri Aug 15 08:24:33 2008 -0500
4960
4961 Add command to enable/disable interrupts
4962
4963 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4964
4965commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
4966Author: Nick Spence <nick.spence@freescale.com>
4967Date: Tue Aug 19 22:21:16 2008 -0700
4968
4969 CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
4970
4971 This patch fixes a missing vendor code in the flash_real_protect() function.
4972
4973 Signed-off-by: Nick Spence <nick.spence@freescale.com>
4974 Signed-off-by: Stefan Roese <sr@denx.de>
4975
4976commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
4977Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4978Date: Tue Aug 19 16:53:39 2008 +0000
4979
4980 CFI: Fix AMD Legacy sector protect
4981
4982 New implement sector lock and unlock or softlock commands
4983 do not exist in AMD legacy flash. Thus, causing issue
4984 when erasing AMD legacy flash (such as lv040)
4985
4986 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4987 Signed-off-by: Stefan Roese <sr@denx.de>
4988
4989commit 492671404140f09d5b21b3d2ce4e362c0692c069
4990Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4991Date: Wed Aug 20 09:40:16 2008 +0200
4992
4993 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
4994
4995 CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
4996
4997 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4998
4999commit 33eac2b3d946fc998a09245dfe54d017079b9056
5000Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5001Date: Wed Aug 20 09:28:36 2008 +0200
5002
5003 hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
5004
5005 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5006
5007commit 25da0b84195fdda89a943b2d25757db5afeef5b8
5008Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5009Date: Wed Aug 20 09:27:37 2008 +0200
5010
5011 favr-32-ezkit: Fix printf format warnings
5012
5013 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5014
5015commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
5016Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5017Date: Fri Aug 15 12:04:25 2008 +0200
5018
5019 MAINTAINERS: Sort avr32 section alphabetically
5020
5021 The rest of the MAINTAINERS file appears to be sorted
5022 almost-alphabetically, but entries for the newly added AVR32 boards were
5023 added somewhat randomly. This patch sorts the list alphabetically again.
5024
5025 Also update my e-mail address. The old one still works, but it may not
5026 work forever.
5027
5028 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5029
5030commit 13b50fe3bc065c48911fa373231421280855a9d6
5031Author: Mark Jackson <mpfj@mimc.co.uk>
5032Date: Wed Jul 30 13:07:27 2008 +0100
5033
5034 avr32: Add MIMC200 board
5035
5036 The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
5037 8MByte FLASH and 128KByte FRAM.
5038
5039 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
5040 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5041
5042commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
5043Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5044Date: Wed Jul 9 21:07:34 2008 +0900
5045
5046 rtl8169: add support for RTL8110SCL
5047
5048 This patch fixes a problem that RTL8110SCL started transfer
5049 with an incorrect memory address.
5050
5051 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5052 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5053
5054commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
5055Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5056Date: Wed Jun 25 15:48:52 2008 -0500
5057
5058 Fix dm9000 receive status and len little endian issue
5059
5060 The received status and len was in little endian
5061 format and caused the ethernet unable to proceed
5062 further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
5063
5064 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5065 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5066
5067commit fcd69a1a57fb2af4d26201422095a4be9f36963e
5068Author: Kumar Gala <galak@kernel.crashing.org>
5069Date: Fri Aug 15 08:24:32 2008 -0500
5070
5071 Clean up usage of icache_disable/dcache_disable
5072
5073 There is no point in disabling the icache on 7xx/74xx/86xx parts and not
5074 also flushing the icache. All callers of invalidate_l1_instruction_cache()
5075 call icache_disable() right after. Make it so icache_disable() calls
5076 invalidate_l1_instruction_cache() for us.
5077
5078 Also, dcache_disable() already calls dcache_flush() so there is no point
5079 in the explicit calls of dcache_flush().
5080
5081 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5082
5083commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
5084Author: Kumar Gala <galak@kernel.crashing.org>
5085Date: Fri Aug 15 08:24:31 2008 -0500
5086
5087 Update linux bootm to support ePAPR client interface
5088
5089 The ePAPR spec has some subtle differences from the current device
5090 tree based boot interface to the powerpc linux kernel. The powerpc
5091 linux kernel currently ignores the differences that ePAPR specifies.
5092
5093 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5094
5095commit b734e5556a239b3be5f9693b2f4b4b739683ec16
5096Author: Wolfgang Denk <wd@denx.de>
5097Date: Mon Aug 18 23:50:20 2008 +0200
5098
5099 Minor code cleanup: keep lists sorted.
5100
5101 Signed-off-by: Wolfgang Denk <wd@denx.de>
5102
5103commit d0039d4ed275e6ca09fb417895024ad02be118c4
5104Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
5105Date: Wed Jul 23 19:10:14 2008 +0200
5106
5107 Add support for ADT7460 I2C monitor chip
5108
5109 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
5110
5111commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
5112Author: Michal Simek <monstr@monstr.eu>
5113Date: Mon Jul 14 19:45:45 2008 +0200
5114
5115 video: Clean drivers/video/Makefile
5116
5117 Signed-off-by: Michal Simek <monstr@monstr.eu>
5118
5119commit 871c18dd301752270e1f74328c846c3104be1e2e
5120Author: Michal Simek <monstr@monstr.eu>
5121Date: Mon Jul 14 19:45:37 2008 +0200
5122
5123 rtc: Clean drivers/rtc/Makefile
5124
5125 Signed-off-by: Michal Simek <monstr@monstr.eu>
5126
5127commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
5128Author: Michal Simek <monstr@monstr.eu>
5129Date: Mon Jul 14 19:45:35 2008 +0200
5130
5131 i2c: Clean drivers/i2c/ Makefile
5132
5133 Signed-off-by: Michal Simek <monstr@monstr.eu>
5134
5135commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
5136Author: Harald Welte <laforge@openmoko.org>
5137Date: Wed Jul 9 22:30:30 2008 +0800
5138
5139 Add 'license' command to U-Boot command line
5140
5141 The 'license' command includes the U-Boot license (GPLv2) into the
5142 actual bootloader binary. The license text can be shown interactively
5143 at the U-Boot commandline.
5144
5145 For products where the commandline can actually be accessed by the
5146 end user, this helps to prevent inadvertent GPL violations, since the
5147 GPLv2 license text can no longer be 'forgotten' to be included into
5148 the product.
5149
5150 The 'license' command can be enabled by CONFIG_CMD_LICENSE.
5151
5152 Signed-off-by: Harald Welte <laforge@openmoko.org>
5153
5154commit fe2ce5500ebf43d79d227190bd2370232d5b113d
5155Author: Harald Welte <laforge@gnumonks.org>
5156Date: Sun Jul 6 15:56:38 2008 +0800
5157
5158 add 'unzip' command to u-boot commandline
5159
5160 [PATCH] add new 'unzip' command to u-boot commandline
5161
5162 common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
5163 memory to memory, and option CONFIG_CMD_UNZIP to enable it
5164
5165 Signed-off-by: Werner Almesberger <werner@openmoko.org>
5166 Signed-off-by: Harald Welte <laforge@openmoko.org>
5167
5168commit 07efc9e321619c3dec213310c32e011aa6f02783
5169Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5170Date: Wed Aug 6 19:37:17 2008 -0500
5171
5172 Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
5173
5174 The CFG_ENV_SIZE is not suitable used for SPI flash erase
5175 sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
5176 Add condition check if CFG_ENV_SIZE is larger than
5177 CFG_ENV_SECT_SIZE, calculate the right number of sectors for
5178 erasing.
5179
5180 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5181
5182commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
5183Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5184Date: Mon Aug 11 15:54:25 2008 +0000
5185
5186 ColdFire: Multiple fixes for M5282EVB
5187
5188 Incorrect CFG_HZ value, change 1000000 to 1000.
5189 Rename #waring to #warning. RAMBAR1 uses twice
5190 in start.S, rename the later to FLASHBAR. Insert
5191 nop for DRAM setup. And, env_offset in linker file.
5192
5193 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5194
5195commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
5196Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5197Date: Mon Aug 11 15:26:43 2008 +0000
5198
5199 ColdFire: Move m5282evb from board to board/freescale
5200
5201 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5202
5203commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
5204Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5205Date: Mon Aug 11 15:25:07 2008 +0000
5206
5207 ColdFire: Move m5272c3 from board to board/freescale
5208
5209 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5210
5211commit 659e9bad629a480f606b286d5703aef7159edf98
5212Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5213Date: Mon Aug 11 15:23:16 2008 +0000
5214
5215 ColdFire: Move m5271evb from board to board/freescale
5216
5217 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5218
5219commit 05316f8ece8206339a208ec052f039cd0f7ca922
5220Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5221Date: Mon Aug 11 13:41:49 2008 +0000
5222
5223 ColdFire: Add M54451EVB platform support for MCF5445x
5224
5225 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5226
5227commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
5228Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5229Date: Wed Aug 6 19:14:08 2008 -0500
5230
5231 ColdFire: Add Serial Flash support for M54455EVB
5232
5233 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5234
5235commit 9f751551456828b2d0ff417f10959fb0c7110bd0
5236Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5237Date: Wed Jul 23 20:38:53 2008 -0500
5238
5239 ColdFire: Implement SBF feature for M5445EVB
5240
5241 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5242
5243commit a7323bba229203aae2604afde131ab47bad4eadc
5244Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5245Date: Wed Jul 23 17:53:36 2008 -0500
5246
5247 ColdFire: Add SSPI feature for MCF5445x
5248
5249 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5250
5251commit b2d022d1ac3f59bffa9cec249341e77aea168abc
5252Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5253Date: Wed Jul 23 17:37:10 2008 -0500
5254
5255 ColdFire: Use CFI Flash driver for M54455EVB
5256
5257 Remove non-common flash driver in
5258 board/freescale/m54455evb/flash.c. The non-cfi flash will
5259 use CONFIG_FLASH_CFI_LEGACY to configure the flash
5260 attribute.
5261
5262 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5263
5264commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
5265Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5266Date: Wed Jul 23 17:11:47 2008 -0500
5267
5268 ColdFire: Add M5253DEMO platform support for MCF5253
5269
5270 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5271
5272commit 80ba61fd82569af40e04d4a089257b81881884f2
5273Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5274Date: Wed Aug 6 14:17:09 2008 -0500
5275
5276 ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
5277
5278 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5279
5280commit d361307e73ce1f6fc68760123f37d4876f851f3e
5281Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5282Date: Wed Aug 6 14:11:36 2008 -0500
5283
5284 ColdFire: Fix M5253EVB dram bring up issue
5285
5286 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
5287
5288commit 4b0708093e15b412296328bf81325cf9b69fe512
5289Author: Wolfgang Denk <wd@denx.de>
5290Date: Thu Aug 14 14:41:06 2008 +0200
5291
5292 Coding Style cleanup, update CHANGELOG
5293
5294 Signed-off-by: Wolfgang Denk <wd@denx.de>
5295
Wolfgang Denk4b070802008-08-14 14:41:06 +02005296commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
5297Author: Scott Wood <scottwood@freescale.com>
5298Date: Wed Aug 13 18:24:05 2008 -0500
5299
5300 socrates: Update NAND driver to new API.
5301
5302 Also, fix some minor formatting issues, and simplify the handling of
5303 "state" for writes.
5304
5305 Signed-off-by: Scott Wood <scottwood@freescale.com>
5306
5307commit ba22d10f39eaeedd035e8265616e31ff88e314d5
5308Author: Scott Wood <scottwood@freescale.com>
5309Date: Wed Aug 13 18:03:40 2008 -0500
5310
5311 quad100hd: Update NAND driver to new API.
5312
5313 Signed-off-by: Scott Wood <scottwood@freescale.com>
5314
5315commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
5316Author: Scott Wood <scottwood@freescale.com>
5317Date: Wed Aug 13 17:53:48 2008 -0500
5318
5319 m5373evb: Update NAND driver to new API.
5320
5321 Signed-off-by: Scott Wood <scottwood@freescale.com>
5322
5323commit 1a23a197c8722b805f40895544bbdb1a648c1c82
5324Author: Scott Wood <scottwood@freescale.com>
5325Date: Wed Aug 13 17:04:30 2008 -0500
5326
5327 s3c24x0: Update NAND driver to new API.
5328
5329 Signed-off-by: Scott Wood <scottwood@freescale.com>
5330
5331commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
5332Author: Scott Wood <scottwood@freescale.com>
5333Date: Wed Aug 13 15:56:00 2008 -0500
5334
5335 at91: Update board NAND drivers to current API.
5336
5337 Signed-off-by: Scott Wood <scottwood@freescale.com>
5338
5339commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
5340Author: Kyungmin Park <kmpark@infradead.org>
5341Date: Wed Aug 13 09:11:02 2008 +0900
5342
5343 Fix OneNAND build break
5344
5345 Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
5346 - fix bufferram management at erase operation
5347 This patch includes the NAND/OneNAND state filed too.
5348
5349 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
5350 Signed-off-by: Scott Wood <scottwood@freescale.com>
5351
5352commit 9483df6408c25f16060432de3868901e352e23bc
5353Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5354Date: Wed Aug 13 01:40:43 2008 +0200
5355
5356 drivers/mtd/nand_legacy: Move conditional compilation to Makefile
5357
5358 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5359
5360commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
5361Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5362Date: Wed Aug 13 01:40:43 2008 +0200
5363
5364 drivers/mtd/nand: Move conditional compilation to Makefile
5365
5366 rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
5367
5368 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5369
5370commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
5371Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5372Date: Wed Aug 13 01:40:42 2008 +0200
5373
5374 drivers/mtd/onenand: Move conditional compilation to Makefile
5375
5376 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5377
5378commit 00b1883a4cac59d97cd297b1a3a398db85982865
5379Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5380Date: Wed Aug 13 01:40:42 2008 +0200
5381
5382 drivers/mtd: Move conditional compilation to Makefile
5383
5384 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
5385
5386 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5387
5388commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
5389Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5390Date: Wed Aug 13 01:40:41 2008 +0200
5391
5392 drivers/qe: Move conditional compilation to Makefile
5393
5394 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5395
5396commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
5397Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5398Date: Wed Aug 13 01:40:40 2008 +0200
5399
5400 drivers/pci: Move conditional compilation to Makefile
5401
5402 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5403
5404commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
5405Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5406Date: Wed Aug 13 01:40:40 2008 +0200
5407
5408 drivers/misc: Move conditional compilation to Makefile
5409
5410 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5411
5412commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
5413Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5414Date: Wed Aug 13 01:40:40 2008 +0200
5415
5416 drivers/input: Move conditional compilation to Makefile
5417
5418 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5419
5420commit 88f57e093114a44aa9a858d52b099bcc52034a8c
5421Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5422Date: Wed Aug 13 01:40:39 2008 +0200
5423
5424 drivers/dma: Move conditional compilation to Makefile
5425
5426 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5427
5428commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
5429Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5430Date: Wed Aug 13 01:40:39 2008 +0200
5431
5432 drivers/block: Move conditional compilation to Makefile
5433
5434 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5435
5436commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
5437Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5438Date: Wed Aug 13 01:40:39 2008 +0200
5439
5440 serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
5441
5442 move also conditional compilation to Makefile
5443
5444 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5445
5446commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
5447Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5448Date: Wed Aug 13 01:40:38 2008 +0200
5449
5450 serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
5451
5452 move also conditional compilation to Makefile
5453
5454 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5455
5456commit d6e9ee92e890f67594ab150689510df361133ead
5457Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5458Date: Wed Aug 13 01:40:38 2008 +0200
5459
5460 common: Move conditional compilation to Makefile
5461
5462 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5463
5464commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
5465Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5466Date: Wed Aug 13 01:40:09 2008 +0200
5467
5468 mx31: move freescale's mx31 boards to vendor board dir
5469
5470 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5471
5472commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
5473Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5474Date: Sat Jul 5 23:11:11 2008 +0200
5475
5476 at91: move arch-at91sam9 to arch-at91
5477
5478 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5479
5480commit 195ccfc5991d48764b2519941e3507f693851d5d
5481Author: Fathi BOUDRA <fabo@debian.org>
5482Date: Wed Aug 6 10:06:20 2008 +0200
5483
5484 OneNAND: Fill in MTD function pointers for OneNAND.
5485
5486 onenand_print_device_info():
5487 - Now returns a string to be placed in mtd->name,
5488 rather than calling printf.
5489 - Remove verbose parameter as it becomes useless.
5490
5491 Signed-off-by: Fathi Boudra <fabo@debian.org>
5492 Signed-off-by: Scott Wood <scottwood@freescale.com>
5493
5494commit aa646643b6bc250cb3a4966bf728876e0c10d329
5495Author: Guennadi Liakhovetski <lg@denx.de>
5496Date: Wed Aug 6 21:42:07 2008 +0200
5497
5498 nand_spl: Support page-aligned read in nand_load, use chipselect
5499
5500 Supporting page-aligned reads doesn't incure any sinificant overhead, just
5501 a small change in the algorithm. Also replace in_8 with readb, since there
5502 is no in_8 on ARM.
5503
5504 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5505 Signed-off-by: Scott Wood <scottwood@freescale.com>
5506
5507commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
5508Author: Scott Wood <scottwood@freescale.com>
5509Date: Tue Aug 5 11:15:59 2008 -0500
5510
5511 NAND boot: Update large page support for current API.
5512
5513 Also, remove the ctrl variable in favor of passing the constants
5514 directly, and remove redundant (u8) casts.
5515
5516 Signed-off-by: Scott Wood <scottwood@freescale.com>
5517
5518commit e4c09508545d1c45617ba45391c03c03cbc360b9
5519Author: Scott Wood <scottwood@freescale.com>
5520Date: Mon Jun 30 14:13:28 2008 -0500
5521
5522 NAND boot: MPC8313ERDB support
5523
5524 Note that with older board revisions, NAND boot may only work after a
5525 power-on reset, and not after a warm reset. I don't have a newer board
5526 to test on; if you have a board with a 33MHz crystal, please let me know
5527 if it works after a warm reset.
5528
5529 Signed-off-by: Scott Wood <scottwood@freescale.com>
5530
5531commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
5532Author: Scott Wood <scottwood@freescale.com>
5533Date: Thu Jun 26 14:06:52 2008 -0500
5534
5535 mpc8313erdb: Enable NAND in config.
5536
5537 Signed-off-by: Scott Wood <scottwood@freescale.com>
5538
5539commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
5540Author: Guennadi Liakhovetski <lg@denx.de>
5541Date: Thu Jul 31 12:38:26 2008 +0200
5542
5543 NAND: Do not write or read a whole block if it is larger than the environment
5544
5545 Environment can be smaller than NAND block size, do not need to read a whole
5546 block and minimum for writing is one page. Also remove an unused variable.
5547
5548 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5549 Signed-off-by: Scott Wood <scottwood@freescale.com>
5550
5551commit eafcabd15f00c142156235c519fcc55b10993241
5552Author: Marcel Ziswiler <marcel@ziswiler.com>
5553Date: Sun Jun 22 16:30:06 2008 +0200
5554
5555 NAND: chip->state does not always get set.
5556
5557 Fixes an issue with chip->state not always being set causing troubles.
5558
5559 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
5560 Signed-off-by: Scott Wood <scottwood@freescale.com>
5561
5562commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
5563Author: Ilya Yanok <yanok@emcraft.com>
5564Date: Mon Jun 30 15:34:40 2008 +0200
5565
5566 NAND: Scan bad blocks lazily.
5567
5568 Rather than scanning on boot, scan upon the first attempt to check the
5569 badness of a block. This speeds up boot when not using NAND, and reduces
5570 the likelihood of needing to reflash via JTAG if NAND becomes
5571 nonfunctional.
5572
5573 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
5574 Signed-off-by: Scott Wood <scottwood@freescale.com>
5575
5576commit dfbf617ff055e4216f78d358b0867c548916d14b
5577Author: Scott Wood <scottwood@freescale.com>
5578Date: Thu Jun 12 13:20:16 2008 -0500
5579
5580 NAND read/write fix
5581
5582 Implement block-skipping read/write, based on a patch from
5583 Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
5584
5585 Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
5586 Signed-off-by: Scott Wood <scottwood@freescale.com>
5587
5588commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
5589Author: Scott Wood <scottwood@freescale.com>
5590Date: Thu Jun 12 13:13:23 2008 -0500
5591
5592 NAND: Always skip blocks on read/write/boot.
5593
5594 Use of the non-skipping versions was almost always (if not always)
5595 an error, and no valid use case has been identified.
5596
5597 Signed-off-by: Scott Wood <scottwood@freescale.com>
5598
5599commit e1c3dbada349992875934575c97b328ab2cb33ca
5600Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5601Date: Thu Jun 12 11:10:21 2008 -0500
5602
5603 nand: fsl_upm: convert to updated MTD NAND infrastructure
5604
5605 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5606 Signed-off-by: Scott Wood <scottwood@freescale.com>
5607
5608commit 300253306acc72b1b2e9faf0987f86551151d7cf
5609Author: Scott Wood <scottwood@freescale.com>
5610Date: Thu May 22 15:02:46 2008 -0500
5611
5612 fsl_elbc_nand: Hard-code the FBAR/FPAR split.
5613
5614 The hardware has separate registers for block and page-within-block,
5615 but the division between the two has no apparent relation to the
5616 actual erase block size of the NAND chip.
5617
5618 Signed-off-by: Scott Wood <scottwood@freescale.com>
5619
5620commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
5621Author: Anton Vorontsov <avorontsov@ru.mvista.com>
5622Date: Fri Mar 28 22:10:54 2008 +0300
5623
5624 fsl_elbc_nand: workaround for hangs during nand write
5625
5626 Using current driver elbc sometimes hangs during nand write. Reading back
5627 last byte helps though (thanks to Scott Wood for the idea).
5628
5629 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
5630 Signed-off-by: Scott Wood <scottwood@freescale.com>
5631
5632commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
5633Author: Scott Wood <scottwood@freescale.com>
5634Date: Fri Mar 21 16:12:51 2008 -0500
5635
5636 Freescale eLBC FCM NAND driver
5637
5638 This is a driver for the Flash Control Machine of the enhanched Local Bus
5639 Controller found on some Freescale chips (such as the mpc8313 and the
5640 mpc8379).
5641
5642 Signed-off-by: Scott Wood <scottwood@freescale.com>
5643
5644commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
5645Author: Scott Wood <scottwood@freescale.com>
5646Date: Tue Mar 18 15:29:14 2008 -0500
5647
5648 Don't panic if a controller driver does ecc its own way.
5649
5650 Some hardware, such as the enhanced local bus controller used on some
5651 mpc83xx chips, does ecc transparently when reading and writing data, rather
5652 than providing a generic calculate/correct mechanism that can be exported to
5653 the nand subsystem.
5654
5655 The subsystem should not BUG() when calculate, correct, or hwctl are
5656 missing, if the methods that call them have been overridden.
5657
5658 Signed-off-by: Scott Wood <scottwood@freescale.com>
5659
5660commit e52b34d40a8a646e3d11638ea8797e96398dba13
5661Author: Stefan Roese <sr@denx.de>
5662Date: Thu Jan 10 18:47:33 2008 +0100
5663
5664 NAND: Make NAND driver less verbose per default
5665
5666 This patch turns off printing of bad blocks per default upon bootup.
5667 This can always be shown via the "nand bad" command later.
5668
5669 Signed-off-by: Stefan Roese <sr@denx.de>
5670
5671commit fe56a2772e5c59577df906163d0d4b29b056140e
5672Author: Sergey Kubushyn <ksi@koi8.net>
5673Date: Wed Jan 9 15:36:20 2008 +0100
5674
5675 NAND: Davinci driver updates
5676
5677 Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
5678 don't have hardware handy so I can not test it at the moment but changes are
5679 rather trivial so it should work. It would be nice if somebody with a
5680 hardware checked it anyways.
5681
5682 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
5683
5684commit deac913effd8d80535c9ff4687b6fcdff540c554
5685Author: Stefan Roese <sr@denx.de>
5686Date: Sat Jan 5 16:50:32 2008 +0100
5687
5688 NAND: Fix compilation warning and small coding style issue
5689
5690 Signed-off-by: Stefan Roese <sr@denx.de>
5691
5692commit c568f77acdf896fc3dd6413ce53205b17ba809a3
5693Author: Stefan Roese <sr@denx.de>
5694Date: Sat Jan 5 16:49:37 2008 +0100
5695
5696 NAND: Update nand_spl driver to match updated nand subsystem
5697
5698 This patch changes the NAND booting driver nand_spl/nand_boot.c to match
5699 the new infrastructure from the updated NAND subsystem. This NAND
5700 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
5701 subsystem.
5702
5703 Signed-off-by: Stefan Roese <sr@denx.de>
5704
5705commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
5706Author: Stefan Roese <sr@denx.de>
5707Date: Sat Jan 5 16:47:58 2008 +0100
5708
5709 NAND: Update 4xx NDFC driver to match updated nand subsystem
5710
5711 This patch changes the 4xx NAND driver ndfc.c to match the new
5712 infrastructure from the updated NAND subsystem. This NAND
5713 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
5714 subsystem.
5715
5716 Tested successfully on AMCC Sequoia and Bamboo.
5717
5718 Signed-off-by: Stefan Roese <sr@denx.de>
5719
5720commit 12072264528eba33737bc9674e19f0e925ffda23
5721Author: Stefan Roese <sr@denx.de>
5722Date: Sat Jan 5 16:43:25 2008 +0100
5723
5724 NAND: Change nand_wait_ready() to not call nand_wait()
5725
5726 This patch changes nand_wait_ready() to not just call nand_wait(),
5727 since this will send a new command to the NAND chip. We just want to
5728 wait for the chip to become ready here.
5729
5730 Signed-off-by: Stefan Roese <sr@denx.de>
5731
5732commit 9ad754fef5053144daed3b007adaf1c9bec654c9
5733Author: William Juul <william.juul@datarespons.no>
5734Date: Fri Dec 14 16:33:45 2007 +0100
5735
5736 make nand dump and nand dump.oob work
5737
5738 Signed-off-by: William Juul <william.juul@tandberg.com>
5739 Signed-off-by: Scott Wood <scottwood@freescale.com>
5740
5741commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
5742Author: William Juul <william.juul@datarespons.no>
5743Date: Mon Nov 19 14:46:00 2007 +0100
5744
5745 moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
5746
5747 Signed-off-by: William Juul <william.juul@tandberg.com>
5748
5749commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
5750Author: William Juul <william.juul@tandberg.com>
5751Date: Tue Jun 10 16:18:13 2008 -0500
5752
5753 Clean out unneeded files
5754
5755 Signed-off-by: William Juul <william.juul@tandberg.com>
5756
5757commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
5758Author: William Juul <william.juul@datarespons.no>
5759Date: Fri Nov 16 08:44:27 2007 +0100
5760
5761 Create symlinks from yaffs2/direct to yaffs2
5762
5763 Signed-off-by: William Juul <william.juul@tandberg.com>
5764
5765commit 90ef117b68387d66763291af0117677644166611
5766Author: William Juul <william.juul@datarespons.no>
5767Date: Thu Nov 15 12:23:57 2007 +0100
5768
5769 Incorporate yaffs2 into U-boot
5770
5771 To use YAFFS2 define CONFIG_YAFFS2
5772
5773 Signed-off-by: William Juul <william.juul@tandberg.com>
5774 Signed-off-by: Scott Wood <scottwood@freescale.com>
5775
5776commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
5777Author: William Juul <william.juul@datarespons.no>
5778Date: Thu Nov 15 11:13:05 2007 +0100
5779
5780 YAFFS2 import
5781
5782 Direct import of yaffs as a tarball as of 20071113 from their public
5783 CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
5784
5785 The code can also be imported on the command line with:
5786 export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
5787 (Hit return when asked for a password)
5788 cvs checkout yaffs2
5789
5790 Signed-off-by: William Juul <william.juul@tandberg.com>
5791 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
5792
5793commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
5794Author: William Juul <william.juul@datarespons.no>
5795Date: Wed Nov 14 14:28:11 2007 +0100
5796
5797 Whitespace cleanup and marking broken code.
5798
5799 Changes requested by maintainer Stefan Roese after
5800 posting patch to U-boot mailing list.
5801
5802 Signed-off-by: William Juul <william.juul@tandberg.com>
5803 Signed-off-by: Scott Wood <scottwood@freescale.com>
5804
5805commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
5806Author: William Juul <william.juul@datarespons.no>
5807Date: Fri Nov 9 13:32:30 2007 +0100
5808
5809 Fixing coding style issues
5810
5811 - Fixing leading white spaces
5812 - Fixing indentation where 4 spaces are used instead of tab
5813 - Removing C++ comments (//), wherever I introduced them
5814
5815 Signed-off-by: William Juul <william.juul@tandberg.com>
5816 Signed-off-by: Scott Wood <scottwood@freescale.com>
5817
5818commit 4cbb651b29cb64d378a06729970e1e153bb605b1
5819Author: William Juul <william.juul@datarespons.no>
5820Date: Thu Nov 8 10:39:53 2007 +0100
5821
5822 Remove white space at end.
5823
5824 Signed-off-by: William Juul <william.juul@tandberg.com>
5825 Signed-off-by: Scott Wood <scottwood@freescale.com>
5826
5827commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
5828Author: William Juul <william.juul@datarespons.no>
5829Date: Wed Oct 31 13:53:06 2007 +0100
5830
5831 Update MTD to that of Linux 2.6.22.1
5832
5833 A lot changed in the Linux MTD code, since it was last ported from
5834 Linux to U-Boot. This patch takes U-Boot NAND support to the level
5835 of Linux 2.6.22.1 and will enable support for very large NAND devices
5836 (4KB pages) and ease the compatibility between U-Boot and Linux
5837 filesystems.
5838
5839 This patch is tested on two custom boards with PPC and ARM
5840 processors running YAFFS in U-Boot and Linux using gcc-4.1.2
5841 cross compilers.
5842
5843 MAKEALL ppc/arm has some issues:
5844 * DOC/OneNand/nand_spl is not building (I have not tried porting
5845 these parts, and since I do not have any HW and I am not familiar
5846 with this code/HW I think its best left to someone else.)
5847
5848 Except for the issues mentioned above, I have ported all drivers
5849 necessary to run MAKEALL ppc/arm without errors and warnings. Many
5850 drivers were trivial to port, but some were not so trivial. The
5851 following drivers must be examined carefully and maybe rewritten to
5852 some degree:
5853 cpu/ppc4xx/ndfc.c
5854 cpu/arm926ejs/davinci/nand.c
5855 board/delta/nand.c
5856 board/zylonite/nand.c
5857
5858 Signed-off-by: William Juul <william.juul@tandberg.com>
5859 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
5860 Signed-off-by: Scott Wood <scottwood@freescale.com>
5861
5862commit cd82919e6c8a73b363a26f34b734923844e52d1c
5863Author: Wolfgang Denk <wd@denx.de>
5864Date: Tue Aug 12 16:08:38 2008 +0200
5865
5866 Coding style cleanup, update CHANGELOG, prepare release
5867
5868 Signed-off-by: Wolfgang Denk <wd@denx.de>
5869
Wolfgang Denkcd829192008-08-12 16:08:38 +02005870commit 17e900b8c0f38d922da47073246219dce2a847f2
5871Author: Wolfgang Denk <wd@denx.de>
5872Date: Tue Aug 12 14:54:04 2008 +0200
5873
5874 MVBC_P: fix compile problem
5875
5876 Signed-off-by: Wolfgang Denk <wd@denx.de>
5877
5878commit 52b047ae48219b59bebe37ba743ab103fd4f8316
5879Author: Wolfgang Denk <wd@denx.de>
5880Date: Tue Aug 12 12:10:11 2008 +0200
5881
5882 MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
5883
5884 Signed-off-by: Wolfgang Denk <wd@denx.de>
5885
5886commit c9c101c660b3d1995045c61c7c6041f52b6cf335
5887Author: Wolfgang Denk <wd@denx.de>
5888Date: Tue Aug 12 00:36:53 2008 +0200
5889
5890 ads5121: fix compiler warnings (unused variables)
5891
5892 Signed-off-by: Wolfgang Denk <wd@denx.de>
5893
5894commit 902ca09246039964d59bbcb519b1e1b5aed01308
5895Author: Kumar Gala <galak@kernel.crashing.org>
5896Date: Mon Aug 11 11:29:28 2008 -0500
5897
5898 85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
5899
5900 Use CONFIG_NUM_CPUS to match existing define used by 86xx.
5901
5902 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5903 Acked-by: Jon Loeliger <jdl@freescale.com>
5904
5905commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
5906Author: Kumar Gala <galak@kernel.crashing.org>
5907Date: Mon Aug 11 09:20:53 2008 -0500
5908
5909 Fix fallout from autostart revert
5910
5911 The autostart revert caused a bit of duplicated code as well as
5912 code that was using images->autostart that needs to get removed so
5913 we can build again.
5914
5915 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5916
5917commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
5918Author: Kumar Gala <galak@kernel.crashing.org>
5919Date: Mon Aug 11 09:16:25 2008 -0500
5920
5921 Fix compile error related to r8a66597-hcd & usb
5922
5923 When building the 8544DS board we get this error:
5924
5925 In file included from r8a66597-hcd.c:22:
5926 u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
5927 make[1]: *** [r8a66597-hcd.o] Error 1
5928
5929 The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
5930 is set.
5931
5932 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5933
5934commit 2d0daa03612338a813e3c9d22680e54eabfea378
5935Author: Becky Bruce <becky.bruce@freescale.com>
5936Date: Mon Aug 4 14:02:26 2008 -0500
5937
5938 POWERPC 86xx: Move BAT setup code to C
5939
5940 This is needed because we will be possibly be locating
5941 devices at physical addresses above 32bits, and the asm
5942 preprocessing does not appear to deal with ULL constants
5943 properly. We now call write_bat in lib_ppc/bat_rw.c.
5944
5945 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
5946 Acked-by: Jon Loeliger <jdl@freescale.com>
5947
5948commit 9de67149db576c91b9c2a0a182652331e7e44211
5949Author: Becky Bruce <becky.bruce@freescale.com>
5950Date: Mon Aug 4 14:01:53 2008 -0500
5951
5952 POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
5953
5954 Perform sync/isync as required by the architecture.
5955
5956 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
5957 Acked-by: Jon Loeliger <jdl@freescale.com>
5958
5959commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
5960Author: Becky Bruce <becky.bruce@freescale.com>
5961Date: Mon Aug 4 14:01:16 2008 -0500
5962
5963 POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
5964
5965 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
5966 Acked-by: Jon Loeliger <jdl@freescale.com>
5967
5968commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
5969Author: Magnus Lilja <lilja.magnus@gmail.com>
5970Date: Sun Aug 3 21:44:10 2008 +0200
5971
5972 i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
5973
5974 Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
5975 contacts instead of only the first 256 ones as is the case prior to
5976 this patch.
5977
5978 Add missing MUX_* macros and update board files to use the new macros.
5979
5980 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
5981
5982commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
5983Author: Magnus Lilja <lilja.magnus@gmail.com>
5984Date: Sun Aug 3 21:43:37 2008 +0200
5985
5986 i.MX31: Fix IOMUX related typos
5987
5988 Correct the names of some IOMUX macros.
5989
5990 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
5991
5992commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
5993Author: Steve Sakoman <steve@sakoman.com>
5994Date: Mon Aug 11 20:26:16 2008 +0200
5995
5996 OneNAND: Remove unused parameters to onenand_verify_page
5997
5998 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.
5999
6000 Signed-off-by: Steve Sakoman <steve@sakoman.com>
6001 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
6002
6003commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
6004Author: Anatolij Gustschin <agust@denx.de>
6005Date: Fri Aug 8 18:00:40 2008 +0200
6006
6007 video: fix bug in cfb_console code
6008
6009 FILL_15BIT_555RGB macro extension for pixel swapping
6010 by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
6011 introduced a bug in cfb_console:
6012
6013 Bitmaps with odd-numbered width won't be rendered
6014 correctly and even U-Boot crashes are observed on
6015 some platforms while repeated rendering of such
6016 bitmaps with "bmp display". Also if a bitmap is
6017 rendered to an odd-numbered x starting position,
6018 the same problem occurs. This patch is an attempt
6019 to fix it.
6020
6021 Signed-off-by: Anatolij Gustschin <agust@denx.de>
6022
6023commit d9015f6a50d7258125349ef5c2af836458a0029a
6024Author: Anatolij Gustschin <agust@denx.de>
6025Date: Fri Aug 8 18:00:39 2008 +0200
6026
6027 video: fix bug in logo_plot
6028
6029 If logo_plot() should ever be called with x starting
6030 position other than zero and for pixel depths greater
6031 than 8bpp, logo colors distortion will be observed.
6032 This patch fixes the issue.
6033
6034 Signed-off-by: Anatolij Gustschin <agust@denx.de>
6035
6036commit 406819ae94f79f5b59e01d163380ca7d83709251
6037Author: Wolfgang Denk <wd@denx.de>
6038Date: Mon Aug 11 00:17:52 2008 +0200
6039
6040 MAINTAINERS: sort entries
6041
6042 Signed-off-by: Wolfgang Denk <wd@denx.de>
6043
6044commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
6045Author: Roy Zang <tie-fei.zang@freescale.com>
6046Date: Thu Aug 7 18:19:28 2008 +0800
6047
6048 Add mpc7448hpc2 maintainer information
6049
6050 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
6051
6052commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
6053Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
6054Date: Thu Aug 7 13:13:27 2008 +0530
6055
6056 common/cmd_load.c - Minor code & Coding Style cleanup
6057
6058 - os_data_header Variable is a carry over feature
6059 & unused. So removed all instance of this variable
6060 - Minor Code Style Update
6061
6062 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
6063 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6064
6065commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
6066Author: Magnus Lilja <lilja.magnus@gmail.com>
6067Date: Wed Aug 6 19:32:33 2008 +0200
6068
6069 Update the U-Boot wiki URL.
6070
6071 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
6072
6073commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
6074Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
6075Date: Sun Aug 10 17:56:36 2008 +0200
6076
6077 OneNAND: Remove base address offset usage
6078
6079 While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
6080 using OneNAND and some using NAND, we found some differences in OneNAND and
6081 NAND command address handling.
6082
6083 As this might confuse users (it already confused us), we like to align OneNAND
6084 and NAND address handling.
6085
6086 The issue is that cmd_onenand.c subtracts the onenand base address from the
6087 addresses you type into the u-boot command line so, unlike nand, you can't
6088 use addresses relative to the start of the onenand part e.g. this won't work:
6089
6090 onenand read 82000000 280000 400000
6091
6092 you have to use:
6093
6094 onenand read 82000000 20280000 400000
6095
6096 Looking at recent git, the only board currently using OneNAND is Apollon, and
6097 for this the OneNAND base address is 0 (apollon.h)
6098
6099 #define CFG_ONENAND_BASE 0x00000000
6100
6101 so patch below won't break any existing boards and will align OneNAND and NAND
6102 handling on boards where OneNAND base address is != 0.
6103
6104 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
6105 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
6106 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
6107
6108commit c11528083ef6e55e76df742228c26e39d151813d
6109Author: Kumar Gala <galak@kernel.crashing.org>
6110Date: Thu Aug 7 09:28:20 2008 -0500
6111
6112 mpc85xx: workaround old binutils bug
6113
6114 The recent change to move the .bss outside of the image gives older
6115 binutils (ld from eldk4.1/binutils-2.16) some headache:
6116
6117 ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
6118 ppc_85xx-ld: final link failed: Bad value
6119
6120 We workaround it by being explicit about the program headers and not
6121 assigning the .bss to a program header.
6122
6123 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6124
6125commit 0bf202ec586d4466c900e987720fa635c594d689
6126Author: Wolfgang Denk <wd@denx.de>
6127Date: Sun Aug 10 01:26:26 2008 +0200
6128
6129 Revert "[new uImage] Add autostart flag to bootm_headers structure"
6130
6131 This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
6132
6133 The commit was based on a misunderstanding of the (documented)
6134 meaning of the 'autostart' environment variable. It might cause
6135 boards to hang if 'autostart' was used, with the potential to brick
6136 them. Go back to the documented behaviour.
6137
6138 Conflicts:
6139
6140 common/cmd_bootm.c
6141 common/image.c
6142 include/image.h
6143
6144 Signed-off-by: Wolfgang Denk <wd@denx.de>
6145
6146commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
6147Author: Wolfgang Denk <wd@denx.de>
6148Date: Sat Aug 9 23:17:32 2008 +0200
6149
6150 TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
6151
6152 - enable CFI driver where this was forgotten
6153 - enable mtdparts support
6154 - adjust default environment
6155 etc.
6156
6157 Signed-off-by: Wolfgang Denk <wd@denx.de>
6158
6159commit 41266c9b5a5f873df3ec891bb0907616958b5602
6160Author: Peter Tyser <ptyser@xes-inc.com>
6161Date: Tue Aug 5 10:51:57 2008 -0500
6162
6163 FIT: Fix handling of images without ramdisks
6164
6165 boot_get_ramdisk() should not treat the case when a FIT image does
6166 not contain a ramdisk as an error.
6167
6168 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6169 Acked-by: Michal Simek <monstr@monstr.eu>
6170
6171commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
6172Author: Sergey Lapin <slapin@ossfans.org>
6173Date: Sat Aug 9 01:39:09 2008 +0400
6174
6175 DataFlash: AT45DB021 fix and AT45DB081 support
6176
6177 Fix for page size of AT45DB021. Also adding bigger AT45DB081
6178 which comes with some newer boards.
6179
6180 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
6181
6182commit ba9324451b662dd393afa53e5cc36fc5d3d10966
6183Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6184Date: Fri Aug 8 16:30:23 2008 +0900
6185
6186 sh: Update sh7763rdp config
6187
6188 Add sh_eth support to sh7763rdp.
6189
6190 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6191
6192commit 21f971ec265f6042ec21636d55d06a6bc0751077
6193Author: Wolfgang Denk <wd@denx.de>
6194Date: Mon Jul 7 01:22:29 2008 +0200
6195
6196 TQM823L: re-enable logo support; update LCD_INFO text
6197
6198 Signed-off-by: Wolfgang Denk <wd@denx.de>
6199
6200commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
6201Author: Wolfgang Denk <wd@denx.de>
6202Date: Fri Aug 8 16:41:56 2008 +0200
6203
6204 TQM8xxL: fix support for second flash bank
6205
6206 When switching the TQM8xxL modules to use the CFI flash driver,
6207 support for the second flash bank was broken because the CFI driver
6208 did not support dynamically sized banks. This gets fixed now.
6209
6210 Signed-off-by: Wolfgang Denk <wd@denx.de>
6211
6212commit 2a112b234d879f6390503a5f4e38246acce9d0b0
6213Author: Wolfgang Denk <wd@denx.de>
6214Date: Fri Aug 8 16:39:54 2008 +0200
6215
6216 CFI: allow for dynamically determined flash sizes and addresses
6217
6218 The CFI driver allowed only for static initializers in the
6219 CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
6220 several flash banks contiguously if the bank sizes were not known in
6221 advance, which kind of violates U-Boot's design philosophy.
6222
6223 (will be used for example by the TQM8xxL boards)
6224
6225 Signed-off-by: Wolfgang Denk <wd@denx.de>
6226
6227commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
6228Author: Ben Warren <biggerbadderben@gmail.com>
6229Date: Thu Aug 7 23:26:35 2008 -0700
6230
6231 QE UEC: Fix compiler warnings
6232
6233 Moved static functions earlier in file so forward declarations are not needed.
6234
6235 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6236
6237commit d5d28fe4aad5f4535400647a5617c11039506467
6238Author: David Saada <David.Saada@ecitele.com>
6239Date: Mon Mar 31 02:37:38 2008 -0700
6240
6241 QE UEC: Add MII Commands
6242
6243 Add MII commands to the UEC driver. Note that once a UEC device is selected,
6244 any device on its MDIO bus can be addressed.
6245
6246 Signed-off-by: David Saada <david.saada@ecitele.com>
6247 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6248
6249commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
6250Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
6251Date: Wed Jul 9 21:07:38 2008 +0900
6252
6253 usb: add support for R8A66597 usb controller
6254
6255 add support for Renesas R8A66597 usb controller.
6256 This patch supports USB Host mode.
6257
6258 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
6259 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
6260
6261commit 1d10dcd041aaeae9fd7c821005692898a0303382
6262Author: Hunter, Jon <jon-hunter@ti.com>
6263Date: Sat Jul 26 18:59:16 2008 -0500
6264
6265 Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
6266
6267 Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
6268
6269 Signed-off-by: Jon Hunter <jon-hunter@ti.com>
6270 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
6271
6272commit eab1007334b93a6209f1ec33615e26ef5311ede7
6273Author: Steven A. Falco <sfalco@harris.com>
6274Date: Wed Aug 6 15:42:52 2008 -0400
6275
6276 ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
6277
6278 The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
6279 configuration to match the schematic, and also sets the SDR0_PFC1 register to
6280 select the corresponding mode for the UARTs.
6281
6282 Signed-off-by: Steven A. Falco <sfalco@harris.com>
6283 Signed-off-by: Stefan Roese <sr@denx.de>
6284
Wolfgang Denka49d10c2008-08-25 23:45:41 +02006285commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
6286Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
6287Date: Wed Aug 6 14:42:13 2008 +0200
6288
6289 avr32: add support for EarthLCD Favr-32 board
6290
6291 This patch adds support for the Favr-32 board made by EarthLCD.
6292
6293 This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
6294 has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
6295 Ethernet, audio out, USB device, SD-card slot, USART and various other
6296 connectors for cennecting stuff to SPI, I2C, GPIO, etc.
6297
6298 Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
6299 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6300
6301commit bc9019e19758a19a388fb20ef18dc771cd39fdda
6302Author: Rafael Campos <rafael.campos@hanscan.com>
6303Date: Thu Jul 31 10:22:20 2008 +0200
6304
6305 cfi-flash: Added support to flash_real_protect for Atmel flash devices
6306
6307 Some of the flash memories produced by ATMEL start in read-only mode.
6308 We need to unprotect it. This patch allows the AT49BV6416 to work with
6309 cfi_flash memories. Tested in the at91rm9200ek board.
6310
6311 Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
6312 Signed-off-by: Stefan Roese <sr@denx.de>
6313
6314commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
6315Author: Guennadi Liakhovetski <lg@denx.de>
6316Date: Tue Aug 5 15:36:39 2008 +0200
6317
6318 cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
6319
6320 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
6321 Signed-off-by: Stefan Roese <sr@denx.de>
6322
Wolfgang Denk4b070802008-08-14 14:41:06 +02006323commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
6324Author: Stefan Roese <sr@denx.de>
6325Date: Wed Aug 6 14:06:03 2008 +0200
6326
6327 Fix merge problems
6328
6329 Signed-off-by: Stefan Roese <sr@denx.de>
6330
6331commit f2302d4430e7f3f48308d6a585320fe96af8afbd
6332Author: Stefan Roese <sr@denx.de>
6333Date: Wed Aug 6 14:05:38 2008 +0200
6334
6335 Fix merge problems
6336
6337 Signed-off-by: Stefan Roese <sr@denx.de>
6338
Wolfgang Denkcd829192008-08-12 16:08:38 +02006339commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
6340Author: Kenneth Johansson <kenneth@southpole.se>
6341Date: Tue Jul 15 12:13:38 2008 +0200
6342
6343 mpc5121: Move iopin features from board specific to common files.
6344
6345 And in the process eliminate some duplicate register defines.
6346
6347 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
6348
6349commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
6350Author: John Rigby <jrigby@freescale.com>
6351Date: Tue Aug 5 17:38:57 2008 -0600
6352
6353 mpc5121: squash some fdt fixup errors
6354
6355 On ADS5121 when booting linux the following errors are seen:
6356 Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
6357 Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
6358 Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
6359
6360 This is caused by ft_cpu_setup trying to deal with
6361 both old and new soc node naming. This patch
6362 fixes this by being smarter about what to
6363 fixup.
6364
6365 Also do soc node fixups by compatible instead of by path.
6366 A new board config called OF_SOC_COMPAT defined
6367 to be "fsl,mpc5121-immr" replaces the old
6368 OF_SOC node path that was defined to be "soc@80000000".
6369
6370 Old device trees still work, but the compatiblity
6371 is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
6372 which is on by default in include/configs/ads5121.h.
6373
6374 Signed-off-by: John Rigby <jrigby@freescale.com>
6375
6376commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
6377Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6378Date: Sat Aug 2 23:48:30 2008 +0200
6379
6380 drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
6381
6382 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6383
6384commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
6385Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6386Date: Sat Aug 2 23:48:32 2008 +0200
6387
6388 nios2/sysid: fix printf warning
6389
6390 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6391
6392commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
6393Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6394Date: Sat Aug 2 23:48:33 2008 +0200
6395
6396 Fix remaining build issues with MPC8xx FADS boards.
6397
6398 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6399
6400commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
6401Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6402Date: Sat Aug 2 23:48:31 2008 +0200
6403
6404 nios2: fix phys_addr_t and phys_size_t support
6405
6406 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6407
6408commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
6409Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6410Date: Sat Aug 2 23:48:34 2008 +0200
6411
6412 mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
6413
6414 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6415
6416commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
6417Author: Mark Jackson <mpfj@mimc.co.uk>
6418Date: Fri Aug 1 09:48:29 2008 +0100
6419
6420 Fix bitmap display for atmel lcd controller
6421
6422 The current lcd_display_bitmap() function does not work properly
6423 for the Atmel LCD controller.
6424
6425 2 fixes need to be done:-
6426
6427 (a) when setting the colour map, use the lcd_setcolreg() function
6428 as provided by the Atmel driver
6429 (b) the data is never actually written to the lcd framebuffer !!
6430
6431 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
6432
6433commit 2a433c66b1e2770349fe4911be23c375f053ebd8
6434Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6435Date: Fri Aug 1 08:40:34 2008 +0200
6436
6437 qemu_mips: update README to follow qemu update about default machine
6438
6439 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6440
6441commit ac169d645f5f0e0b9a232563099209e92a355d8e
6442Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6443Date: Thu Jul 31 19:53:21 2008 -0500
6444
6445 ColdFire: Fix compilation issue caused by a missing function
6446
6447 Implement usec2ticks() which is used by fsl_i2c.c in
6448 lib_m68k/time.c
6449
6450 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6451
6452commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
6453Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6454Date: Thu Jul 31 19:53:06 2008 -0500
6455
6456 Fix compilation error for TASREG
6457
6458 TASREG is ColdFire platform, the include ppc4xx.h in
6459 board/esd/common/flash.c causes conflict.
6460
6461 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6462
6463commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
6464Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6465Date: Thu Jul 31 19:52:36 2008 -0500
6466
6467 Fix compilation error for MCF5275
6468
6469 Rename OBJ to COBJ in board/platform/Makefile
6470
6471 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6472
6473commit 5c40548f01218360a1f1395198c50ff45f3035b5
6474Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6475Date: Thu Jul 31 19:52:28 2008 -0500
6476
6477 Fix compile error caused by incorrect function return type
6478
6479 Rename int mii_init(void) to void mii_init(void) for idmr
6480 ColdFire platform
6481
6482 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6483
6484commit a58c78067c928976c082c758d3987e89ead5b191
6485Author: Wolfgang Denk <wd@denx.de>
6486Date: Fri Aug 1 12:06:22 2008 +0200
6487
6488 Fix build issues with MPC8xx FADS boards.
6489
6490 Signed-off-by: Wolfgang Denk <wd@denx.de>
6491
6492commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
6493Author: Wolfgang Denk <wd@denx.de>
6494Date: Thu Jul 31 17:54:03 2008 +0200
6495
6496 Prepare v1.3.4-rc2: update CHANGELOG
6497
6498 Signed-off-by: Wolfgang Denk <wd@denx.de>
6499
Wolfgang Denk4b50cd12008-07-31 17:54:03 +02006500commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
6501Author: Mark Jackson <mpfj@mimc.co.uk>
6502Date: Thu Jul 31 16:09:00 2008 +0100
6503
6504 Add gzipped logo support
6505
6506 The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
6507
6508 If this option is set, additionally to standard BMP
6509 images, gzipped BMP images can be displayed via the
6510 splashscreen support or the bmp command.
6511
6512 However, the splashscreen function *only* supports standard BMP images.
6513
6514 This patch adds the documented gzip support.
6515
6516 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
6517
6518commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
6519Author: Mark Jackson <mpfj@mimc.co.uk>
6520Date: Thu Jul 31 15:56:48 2008 +0100
6521
6522 Fix Atmel LCD controller endianess for AVR32 processors
6523
6524 The Atmel lcd controller is used on Atmel's AT91 (little endian) and
6525 AVR32 (big endian) platforms.
6526
6527 As such, the controller can handle both big and little endian memory.
6528
6529 This patch fixes the driver for the AVR32 platform.
6530
6531 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
6532
6533commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
6534Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6535Date: Thu Jul 31 15:56:01 2008 +0200
6536
6537 apollon: fix build out of tree
6538
6539 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6540
6541commit 2e752be39d3e398d4ab89ffa6634c397df298297
6542Author: Guennadi Liakhovetski <lg@denx.de>
6543Date: Thu Jul 31 12:35:04 2008 +0200
6544
6545 Uncompressed images loaded to their start address shall set load_end too
6546
6547 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
6548 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
6549
6550commit c37207d7f51e19c17f859966f314e27cc1231801
6551Author: Wolfgang Denk <wd@denx.de>
6552Date: Wed Jul 16 16:38:59 2008 +0200
6553
6554 Fix printf() format problems with configurable prompts
6555
6556 U-Boot allows for configurable prompt strings using the
6557 CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
6558 the assumption was that any such user defined problts would contain
6559 exactly one "%d" format specifier. But some boards did not.
6560
6561 To allow for flexible boot prompts without adding too complex code we
6562 now allow to specify the whole list of printf() arguments in the user
6563 definition. This is powerful, but requires a responsible user who
6564 really understands what he is doing, as he needs to know for exanple
6565 which variables are available in the respective context.
6566
6567 Signed-off-by: Wolfgang Denk <wd@denx.de>
6568
6569commit 54754120637b6a7f4ff774fb199fc550bcfea1da
6570Author: Wolfgang Denk <wd@denx.de>
6571Date: Thu Jul 31 17:02:14 2008 +0200
6572
6573 TQM85xx: fix typo introduce by commit ffbb5cb9
6574
6575 Signed-off-by: Wolfgang Denk <wd@denx.de>
6576
6577commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
6578Author: Wolfgang Denk <wd@denx.de>
6579Date: Thu Jul 31 15:27:01 2008 +0200
6580
6581 mvbc_p board: fix most build warnings.
6582
6583 Signed-off-by: Wolfgang Denk <wd@denx.de>
6584
6585commit c4ec6db074051d2f6fc76a66411c60621b22bc02
6586Author: Wolfgang Denk <wd@denx.de>
6587Date: Thu Jul 31 13:57:20 2008 +0200
6588
6589 E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
6590
6591 Avoid "integer constant is too large for 'long' type" warnings.
6592 And simplify the code.
6593
6594 Signed-off-by: Wolfgang Denk <wd@denx.de>
6595
6596commit 9196b44334c330cc13de2464c59181e4db71f549
6597Author: Matvejchikov Ilya <matvejchikov@gmail.com>
6598Date: Wed Jul 30 23:21:19 2008 +0400
6599
6600 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
6601
6602 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
6603
6604commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
6605Author: Matvejchikov Ilya <matvejchikov@gmail.com>
6606Date: Wed Jul 30 23:20:32 2008 +0400
6607
6608 PPC: Add pci_clk in the global_data for CPM2 processors
6609
6610 This patch adds pci_clk field to the global_data structure for the
6611 processors which have CPM2 module in case the CONFIG_PCI is defined.
6612
6613 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
6614
6615commit f0ff885ca64655bee6540eb8a25eed90b1152686
6616Author: Kumar Gala <galak@kernel.crashing.org>
6617Date: Wed Jul 30 14:13:30 2008 -0500
6618
6619 mpc85xx: Update linker scripts for Freescale boards
6620
6621 * Move to using absolute addressing always. Makes the scripts a bit more
6622 portable and common
6623 * Moved .bss after the end of the image. These allows us to have more
6624 room in the resulting binary image for code and data.
6625 * Removed .text object files that aren't really needed
6626 * Make sure _end is 4-byte aligned as the .bss init code expects this.
6627 (Its possible that the end of .bss isn't 4-byte aligned)
6628
6629 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6630
6631commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
6632Author: Kumar Gala <galak@kernel.crashing.org>
6633Date: Wed Jul 30 08:01:15 2008 -0500
6634
6635 Fix compile warnings in dlmalloc
6636
6637 The origional code was using on odd reference to get to the first
6638 real element in av_[]. The first two elements of the array are
6639 not used for actual bins, but for house keeping. If we are more
6640 explicit about how use the first few elements we can get rid of the
6641 warnings:
6642
6643 dlmalloc.c: In function 'malloc_extend_top':
6644 dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
6645 dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
6646 dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
6647 ...
6648
6649 The logic of how this code came to be is:
6650 bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
6651
6652 SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
6653 bin_at(0) = &(av_[0])
6654
6655 Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
6656
6657 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6658
6659commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
6660Author: Stefan Roese <sr@denx.de>
6661Date: Wed Jul 30 10:21:01 2008 +0200
6662
6663 ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
6664
6665 Signed-off-by: Stefan Roese <sr@denx.de>
6666
6667commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
6668Author: Stefan Roese <sr@denx.de>
6669Date: Wed Jul 30 09:59:51 2008 +0200
6670
6671 cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
6672
6673 A recent patch used '#if (CONFIG_CMD_USB)' instead of
6674 '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
6675 common/bootm.c compile again.
6676
6677 Signed-off-by: Stefan Roese <sr@denx.de>
6678 Acked-by: Markus Klotzbuecher <mk@denx.de>
6679
6680commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
6681Author: Kyungmin Park <kmpark@infradead.org>
6682Date: Tue Jul 22 08:01:43 2008 +0900
6683
6684 Remove unused I2C at apollon board
6685
6686 There are no I2C devices on this board.
6687
6688 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
6689
6690commit 3c95960e526b3b026da20201db64526f46faf14b
6691Author: Wolfgang Denk <wd@denx.de>
6692Date: Thu Jul 31 10:12:09 2008 +0200
6693
6694 at91rm9200dk, csb637: fix NAND related build problems
6695
6696 Tried fixing NAND support for the at91rm9200dk board; untested.
6697 Disabled NAND support in the csb637 board config file.
6698
6699 Signed-off-by: Wolfgang Denk <wd@denx.de>
6700
Wolfgang Denk4b070802008-08-14 14:41:06 +02006701commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
6702Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6703Date: Wed Jul 30 12:39:28 2008 +0200
6704
6705 ppc4xx: ML507: Environment in flash and MTD Support
6706
6707 - Relocate the location of U-Boot in the flash
6708 - Save the environment in one sector of the flash memory
6709 - MTD Support
6710
6711 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6712 Signed-off-by: Stefan Roese <sr@denx.de>
6713
6714commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
6715Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6716Date: Tue Jul 29 17:16:10 2008 +0200
6717
6718 ppc4xx: ML507: Use of get_ram_size in board ml507
6719
6720 - Change suggested by WD
6721
6722 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6723 Signed-off-by: Stefan Roese <sr@denx.de>
6724
6725commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
6726Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6727Date: Mon Jul 21 20:30:07 2008 +0200
6728
6729 ppc4xx: ML507: U-Boot in flash and System ACE
6730
6731 This patch allows booting from FLASH the ML507 board by Xilinx.
6732 Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
6733
6734 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
6735 Signed-off-by: Stefan Roese <sr@denx.de>
6736
Wolfgang Denka49d10c2008-08-25 23:45:41 +02006737commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
6738Author: Julien May <mailinglist@miromico.ch>
6739Date: Mon Jun 23 13:57:52 2008 +0200
6740
6741 Add support for the hammerhead (AVR32) board
6742
6743 The Hammerhead platform is built around a AVR32 32-bit microcontroller
6744 from Atmel. It offers versatile peripherals, such as ethernet, usb
6745 device, usb host etc.
6746
6747 The board also incooperates a power supply and is a Power over Ethernet
6748 (PoE) Powered Device (PD).
6749
6750 Additonally, a Cyclone III FPGA from Altera is integrated on the board.
6751 The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
6752 DDR2 SDRAM interfaces, which will cover even the most exceptional need
6753 of memory bandwidth. Together with the onboard video decoder the board
6754 is ready for video processing.
6755
6756 For more information see: http:///www.miromico.com/hammerhead
6757
6758 Signed-off-by: Julien May <mailinglist@miromico.ch>
6759 [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
6760 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6761
Wolfgang Denk4b50cd12008-07-31 17:54:03 +02006762commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
6763Author: Kumar Gala <galak@kernel.crashing.org>
6764Date: Tue Jul 29 12:23:49 2008 -0500
6765
6766 fsl_i2c: Use timebase timer functions instead of get_timer()
6767
6768 The current implementation of get_timer() is only really useful after we
6769 have relocated u-boot to memory. The i2c code is used before that as part
6770 of the SPD DDR setup.
6771
6772 We actually have a bug when using the get_timer() code before relocation
6773 because the .bss hasn't been setup and thus we could be reading/writing
6774 a random location (probably in flash).
6775
6776 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6777
6778commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
6779Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
6780Date: Tue Jul 29 14:49:31 2008 +0200
6781
6782 Adder8xx: Fix CFG_MONITOR_LEN
6783
6784 Due to increased space usage, U-Boot can no longer be stored in three sectors.
6785 The current U-Boot use just over three flash sectors (197k), and U-Boot will
6786 become corrupt after saving environment variables. This patch adds another 64k
6787 to CFG_MONITOR_LEN.
6788
6789 Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
6790
6791commit a4c59ad4a21140550ada6f97690d2527c4146ce5
6792Author: Kyungmin Park <kmpark@infradead.org>
6793Date: Tue Jul 29 08:47:57 2008 +0900
6794
6795 Add OneNAND IPL related files to gitignore
6796
6797 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
6798
6799commit 8d87589e8e874df7120a3d9667f051bc33bac250
6800Author: Rafal Jaworowski <raj@semihalf.com>
6801Date: Mon Jul 28 20:38:25 2008 +0200
6802
6803 API: Teach the storage layer about SATA and MMC options.
6804
6805 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6806 Acked-by: Rafal Jaworowski <raj@semihalf.com>
6807
6808commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
6809Author: Rafal Jaworowski <raj@semihalf.com>
6810Date: Mon Jul 28 20:37:48 2008 +0200
6811
6812 API: Dump contents of sector 0 in the demo application.
6813
6814 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6815 Acked-by: Rafal Jaworowski <raj@semihalf.com>
6816
6817commit 13ca6305f2eba49c175f6370c35286141059c789
6818Author: Rafal Jaworowski <raj@semihalf.com>
6819Date: Mon Jul 28 20:37:10 2008 +0200
6820
6821 API: Correct storage enumeration routine, other minor fixes in API storage area.
6822
6823 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6824 Acked-by: Rafal Jaworowski <raj@semihalf.com>
6825
6826commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
6827Author: Rafal Jaworowski <raj@semihalf.com>
6828Date: Mon Jul 28 20:36:19 2008 +0200
6829
6830 API: Fix compilation warnings in api_examples/demo.c.
6831
6832 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
6833
6834commit c14eefcc48212af2f3314809605698dd8393a90a
6835Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6836Date: Sun Jul 27 17:09:43 2008 +0200
6837
6838 Fix more printf() format warnings
6839
6840 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6841
6842commit 936897d4d1365452bbbdf8430db5e7769ef08d38
6843Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6844Date: Fri Jul 25 15:18:16 2008 +0200
6845
6846 Fix remaining CFG_CMD_ define, ifdef and comments
6847
6848 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6849
6850commit 5d1d00fb36005482e1803a00ddc46efa11d719af
6851Author: Stefano Babic <sbabic@denx.de>
6852Date: Fri Jul 25 08:57:40 2008 +0200
6853
6854 Add include for config.h in command.h.
6855
6856 Because the cmd_tbl_s structure depends on the configuration file, it
6857 must be assured that config.h is included before the structure is
6858 evaluated by the compiler. If this is not certain, it could happen
6859 that the compiler generates structures of different size, depending
6860 on the fact if the source file includes <config.h> before or after
6861 <command.h>.
6862
6863 The effect is that u-boot crashes when tries to relocate the command
6864 table (for ppc) or try to access to the command table for other
6865 architectures.
6866
6867 The problem can happen on board-depending commands. All general
6868 commands under /common are unaffected, because they include already
6869 config.h before command.h.
6870
6871 Signed-off-by: Stefano Babic <sbabic@denx.de>
6872
6873commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
6874Author: Scott Wood <scottwood@freescale.com>
6875Date: Wed Jul 23 13:16:06 2008 -0500
6876
6877 NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
6878
6879 This fixes building out-of-tree.
6880
6881 Signed-off-by: Scott Wood <scottwood@freescale.com>
6882
6883commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
6884Author: Heiko Schocher <hs@denx.de>
6885Date: Wed Jul 23 07:30:46 2008 +0200
6886
6887 Fix warnings if compiling with IDE support.
6888
6889 cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
6890 cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
6891
6892 Signed-off-by: Heiko Schocher <hs@denx.de>
6893
6894commit 7610db17fd4d59c51d825488526d85ede2f06767
6895Author: Adrian Filipi <adrian.filipi@eurotech.com>
6896Date: Tue Jul 22 14:28:11 2008 -0400
6897
6898 Removed support for the adsvix board.
6899
6900 Support for the adsvix was originally provided by Applied Data
6901 Systems (ADS), inc., now EuroTech, Inc.
6902 The board never shipped aside from some sample boards.
6903
6904 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
6905
6906commit f96b44cef897bd372beb86dde1b33637c119d84d
6907Author: Remy Bohmer <linux@bohmer.net>
6908Date: Tue Jul 22 16:22:11 2008 +0200
6909
6910 ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
6911
6912 If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
6913 never set, because relocation to RAM is actually never done by U-boot
6914 itself. However, several pieces of code check if this flag is set at
6915 some time.
6916
6917 So, to make sure this flag is set on boards skipping relocation, this
6918 is added to the initialisation of U-boot at a moment where it is safe
6919 to do so.
6920
6921 Signed-off-by: Remy Bohmer <linux@bohmer.net>
6922
6923commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
6924Author: Timur Tabi <timur@freescale.com>
6925Date: Mon Jul 21 14:26:23 2008 -0500
6926
6927 fsl-i2c: fix writes to data segment before relocation
6928
6929 Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
6930 relocation. Commit d8c82db4 added the ability for i2c_init() to program the
6931 I2C bus speed and save the value in i2c_bus_speed[], which is a global
6932 variable. It is an error to write to the data segment before relocation,
6933 which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
6934
6935 Signed-off-by: Timur Tabi <timur@freescale.com>
6936
6937commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
6938Author: Wolfgang Ocker <weo@reccoware.de>
6939Date: Mon Jul 28 16:56:51 2008 +0200
6940
6941 mips: Fix baudrate divisor computation on alchemy cpus
6942
6943 Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
6944 on alchemy cpus.
6945
6946 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
6947 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
6948
Wolfgang Denka49d10c2008-08-25 23:45:41 +02006949commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
6950Author: Ben Warren <biggerbadderben@gmail.com>
6951Date: Sat Jul 5 00:08:48 2008 -0700
6952
6953 Moved initialization of AVR32 Ethernet controllers to board_eth_init()
6954
6955 Renamed initialization functions for atngw100 and atstk1000.
6956 Removed initializations for these boards from net/eth.c
6957
6958 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6959 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6960
Wolfgang Denk4b50cd12008-07-31 17:54:03 +02006961commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
6962Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6963Date: Wed Jul 23 10:55:46 2008 +0200
6964
6965 spi flash: Fix printf() format warnings
6966
6967 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6968
6969commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
6970Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6971Date: Wed Jul 23 10:55:31 2008 +0200
6972
6973 atmel_mci: Fix printf() format warnings
6974
6975 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6976
6977commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
6978Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6979Date: Wed Jul 23 10:55:15 2008 +0200
6980
6981 avr32: Fix printf() format warnings
6982
6983 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6984
6985commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
6986Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6987Date: Wed Jul 23 10:52:19 2008 +0200
6988
6989 avr32: asm/io.h needs asm/types.h
6990
6991 map_physmem() takes a phys_addr_t as parameter. This type is defined in
6992 asm/types.h, so we need to include that file.
6993
6994 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6995
6996commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
6997Author: Michal Simek <monstr@monstr.eu>
6998Date: Thu Jul 17 12:25:46 2008 +0200
6999
7000 microblaze: Fix printf() format issues
7001
7002 Signed-off-by: Michal Simek <monstr@monstr.eu>
7003
7004commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
7005Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
7006Date: Thu Jul 17 07:27:51 2008 +0530
7007
7008 Remove unused code from lib_arm/bootm.c
7009
7010 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
7011
7012commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
7013Author: Detlev Zundel <dzu@denx.de>
7014Date: Wed Jul 16 18:56:45 2008 +0200
7015
7016 tqm85xx: Demystify 'DK: !!!' comment
7017
7018 Signed-off-by: Detlev Zundel <dzu@denx.de>
7019
7020commit b2f44ba570f3a01113bbb745daf46f3858d22f53
7021Author: Detlev Zundel <dzu@denx.de>
7022Date: Wed Jul 16 18:56:44 2008 +0200
7023
7024 83xx/85xx/86xx: Add LTEDR local bus definitions
7025
7026 Signed-off-by: Detlev Zundel <dzu@denx.de>
7027
7028commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
7029Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7030Date: Wed Jul 16 16:22:32 2008 +0200
7031
7032 serial_xuartlite.c: fix compiler warnings
7033
7034 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7035 Acked-by: Grant Likely <grant.likely@secretlab.ca>
7036
7037commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
7038Author: Stefan Roese <sr@denx.de>
7039Date: Fri Jul 18 11:03:35 2008 +0200
7040
7041 POST: Add disable interrupts in some of the missing CPU POST tests
7042
7043 Some CPU POST tests did not disable the interrupts while running. This
7044 seems to be necessary to protect this self modifying code.
7045
7046 Signed-off-by: Stefan Roese <sr@denx.de>
7047
7048commit 97a3bf268d096e0e97e54048448c35114edcf557
7049Author: Stefan Roese <sr@denx.de>
7050Date: Fri Jul 18 10:43:24 2008 +0200
7051
7052 ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
7053
7054 This is needed for boards that define CFG_64BIT_STRTOUL but don't define
7055 CFG_64BIT_LBA.
7056
7057 Signed-off-by: Stefan Roese <sr@denx.de>
7058
7059commit 0043ac55024963295fc79b39af85b6dc3b261e17
7060Author: Niklaus Giger <niklaus.giger@netstal.com>
7061Date: Fri Jul 18 11:22:23 2008 +0200
7062
7063 POST PPC4xx/spr IVPR only if PPC440
7064
7065 The SPR IVPR register is only present (as far as I know) for
7066 processors with a PPC440 core.
7067
7068 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
7069 Acked-by: Stefan Roese <sr@denx.de>
7070
7071commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
7072Author: Stefan Roese <sr@denx.de>
7073Date: Fri Jul 18 10:42:29 2008 +0200
7074
7075 ppc4xx: Enable 64bit printf format on 440/460 platforms
7076
7077 This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
7078 440/460 platforms. This may be needed since those platforms support
7079 36bit physical address space.
7080
7081 Signed-off-by: Stefan Roese <sr@denx.de>
7082
7083commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
7084Author: Stefan Roese <sr@denx.de>
7085Date: Fri Jul 18 15:57:23 2008 +0200
7086
7087 ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
7088
7089 This patch fixes a problem with incorrect MODTx (On Die Termination)
7090 setup for a configuration with multiple DIMM's and multiple ranks.
7091 Without this change Katmai was unable to boot Linux with DDR2 frequency
7092 >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
7093 with DDR2 frequency = 640MHz and mem=4GB.
7094
7095 Signed-off-by: Stefan Roese <sr@denx.de>
7096
Wolfgang Denk4b070802008-08-14 14:41:06 +02007097commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
7098Author: Stefan Roese <sr@denx.de>
7099Date: Fri Jul 18 12:24:41 2008 +0200
7100
7101 ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
7102
7103 Signed-off-by: Stefan Roese <sr@denx.de>
7104
7105commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
7106Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7107Date: Thu Jul 17 12:47:09 2008 +0200
7108
7109 ppc4xx: ML507 Board Support
7110
7111 The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
7112 among others:
7113 -Virtex 5 FX FPGA (With a ppc440x5 in it)
7114 -256MB of SDRAM2
7115 -32MB of Flash
7116 -I2C Eeprom
7117 -System ACE chip
7118 -Serial ATA connectors
7119 -RS232 Level Conversors
7120 -Ethernet Transceiver
7121
7122 This patch gives support to a standard design produced by EDK for this
7123 board: ppc440, uartlite, xilinx_int and flash
7124
7125 - Includes Changes propossed by Stefan Roese and Michal Simek
7126
7127 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7128 Acked-by: Stefan Roese <sr@denx.de>
7129
7130commit d865fd09809a3a18669f35f970781820af40e4de
7131Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7132Date: Thu Jul 17 11:44:12 2008 +0200
7133
7134 ppc4xx: CPU PPC440x5 on Virtex5 FX
7135
7136 -This patchs gives support for the embbedded ppc440
7137 on the Virtex5 FPGAs
7138 -interrupts.c divided in uic.c and interrupts.c
7139 -xilinx_irq.c for xilinx interrupt controller
7140 -Include modifications propossed by Stefan Roese
7141
7142 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7143 Acked-by: Stefan Roese <sr@denx.de>
7144
Wolfgang Denk4b50cd12008-07-31 17:54:03 +02007145commit 340ccb260f21516be360745d5c5e3bd0657698df
7146Author: Sebastian Siewior <bigeasy@linutronix.de>
7147Date: Wed Jul 16 20:04:49 2008 +0200
7148
7149 cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
7150
7151 This got broken by commits 93c56f212c
7152 [cfi_flash: support of long cmd in U-boot.]
7153
7154 That command needs to be in little endian format on BE machines
7155 with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
7156 gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
7157 the cmdbuf in case portwidth = chipwidth = 8bit.
7158
7159 Cc: Alexey Korolev <akorolev@infradead.org>
7160 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
7161 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
7162
Wolfgang Denk4b070802008-08-14 14:41:06 +02007163commit 11188d55bc16dd907451c00282e00a038f73dd62
7164Author: Stefan Roese <sr@denx.de>
7165Date: Thu Jul 17 10:40:51 2008 +0200
7166
7167 ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
7168
7169 Signed-off-by: Stefan Roese <sr@denx.de>
7170
Wolfgang Denk285db742008-08-27 01:02:48 +02007171commit 021f6df6e96af5b387810cf96d24848da1faa55c
7172Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7173Date: Thu Jul 10 17:20:51 2008 +0400
7174
7175 83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
7176
7177 The thinko was quite silly indeed, I messed with !ptr. Normally this
7178 would trigger some fault, but in U-Boot NULL pointer is equal to phys
7179 0, so the code was working still, just didn't actually test mpc8315erdb
7180 environment variable value. Heh.
7181
7182 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7183 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7184
7185commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
7186Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7187Date: Tue Jul 8 21:00:04 2008 +0400
7188
7189 83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
7190
7191 Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
7192 support, or without TSEC1 but with USB ULPI PHY support in addition.
7193 With this patch user can specify desired USB PHY.
7194
7195 Also, it seems that we can't distinguish the two boards in software, so
7196 user have to set `mpc8315erdb' environment variable to either 'tsec1'
7197 (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
7198 Linux will not probe for TSEC1.
7199
7200 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7201 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7202
7203commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
7204Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7205Date: Tue Jul 8 20:59:43 2008 +0400
7206
7207 fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
7208
7209 Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
7210 MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
7211 (connected to the four-ports hub, usb host only).
7212
7213 This patch implements support for passing Dual-Role USB controller's
7214 device tree property phy_type through the usb_phy_type environment
7215 variable.
7216
7217 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
7218 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7219 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7220
Wolfgang Denk4b50cd12008-07-31 17:54:03 +02007221commit 699f05125509249072a0b865c8d35520d97cd501
7222Author: Wolfgang Denk <wd@denx.de>
7223Date: Tue Jul 15 22:22:44 2008 +0200
7224
7225 Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
7226
7227 Signed-off-by: Wolfgang Denk <wd@denx.de>
7228
Wolfgang Denk699f0512008-07-15 22:22:44 +02007229commit bcab74baa6b1b1c969038ab6f64a186239180405
7230Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7231Date: Tue Jul 15 11:23:02 2008 -0400
7232
7233 Round the serial port clock divisor value returned by calc_divisor()
7234
7235 Round the serial port clock divisor value returned by
7236 calc_divisor()
7237
7238 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7239 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7240
7241commit 0328ef0edfe950f0b7b8b368dae482531506b74a
7242Author: Robin Getz <rgetz@blackfin.uclinux.org>
7243Date: Tue Jul 15 21:44:46 2008 +0200
7244
7245 Fix DHCP protocol so U-Boot does not respond too early
7246 on the network with it's offered IP number; it should not reply until
7247 after it has received a DHCP ACK message. Also ensures that U-Boot
7248 does it's DHCPREQUEST as broadcast (per RFC 2131).
7249
7250 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
7251 Acked-by: Ben Warren <biggerbadderben@gmail.com>
7252 Signed-off-by: Wolfgang Denk <wd@denx.de>
7253
7254commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
7255Author: Sebastian Siewior <bigeasy@linutronix.de>
7256Date: Tue Jul 15 13:35:23 2008 +0200
7257
7258 cfi_flash: make the command u32 only
7259
7260 This got changed by commit 93c56f212c
7261 [cfi_flash: support of long cmd in U-boot.]
7262
7263 Long is the wrong type because it will behave differently on 64bit
7264 machines in a way that is probably not expected. u32 should be
7265 enough.
7266
7267 Cc: Alexey Korolev <akorolev@infradead.org>
7268 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
7269 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
7270
7271commit 31cfe57491b183acae575d486729e158f016c27b
7272Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7273Date: Mon Jul 14 23:48:41 2008 +0200
7274
7275 tools/gitignore: update to all generated files
7276
7277 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7278
7279commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
7280Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
7281Date: Wed Jul 9 18:30:44 2008 +0200
7282
7283 mpc5xxx: Add MVBC_P board support
7284
7285 The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
7286 controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
7287
7288 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
7289 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
7290
7291commit e2d31fb3450653115452144363d5bde4e5e3e693
7292Author: Timur Tabi <timur@freescale.com>
7293Date: Thu Jun 19 17:56:11 2008 -0500
7294
7295 Update Freescale sys_eeprom.c to handle CCID formats
7296
7297 Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats. The
7298 NXID format replaces the older CCID format, but it's important to support both
7299 since most boards out there still use the CCID format. This change is in
7300 preparation for using one file to handle both formats. This will also unify
7301 EEPROM support for all Freescale 85xx and 86xx boards.
7302
7303 Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
7304 instead of ID_EEPROM_ADDR.
7305
7306 Signed-off-by: Timur Tabi <timur@freescale.com>
7307
7308commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
7309Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7310Date: Fri Jul 11 17:22:43 2008 +0900
7311
7312 pci: sh: Add pci_skip_dev and pci_print_dev function
7313
7314 Add function of new PCI, pci_skip_dev and pci_print_dev.
7315
7316 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7317 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7318
7319commit 1107014e835ec9d46c0333f4211d104f77442db0
7320Author: Andy Fleming <afleming@freescale.com>
7321Date: Mon Jul 14 20:29:07 2008 -0500
7322
7323 Clean up INIT_RAM options
7324
7325 The L2_INIT_RAM option was unused, and recent changes to the TLB code
7326 meant that the INIT_RAM TLBs weren't being cleared out. In order to reduce
7327 the amount of mapped space attached to nothing, we change things so the TLBs
7328 get cleared.
7329
7330 Signed-off-by: Andy Fleming <afleming@freescale.com>
7331
7332commit 4524561820a9327e89107854b3a7187800ccf719
7333Author: Andy Fleming <afleming@freescale.com>
7334Date: Mon Jul 14 20:26:57 2008 -0500
7335
7336 Remove fake flash bank from 8544 DS
7337
7338 The fake flash bank was generating errors for anyone who didn't have a
7339 PromJET hooked up to the board. As that constitutes the vast majority of
7340 users, we remove it.
7341
7342 Signed-off-by: Andy Fleming <afleming@freescale.com>
7343
7344commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
7345Author: Kumar Gala <galak@kernel.crashing.org>
7346Date: Mon Jul 14 14:07:03 2008 -0500
7347
7348 MPC8544DS: Add ATI Video card support
7349
7350 Add support for using a PCIe ATI Video card on PCIe2.
7351
7352 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7353
7354commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
7355Author: Kumar Gala <galak@kernel.crashing.org>
7356Date: Mon Jul 14 14:07:02 2008 -0500
7357
7358 85xx: Add some L1/L2 SPR register definitions
7359
7360 Add new L1/L2 SPRs related to e500mc cache config and control.
7361
7362 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7363
7364commit e5852787f0c3c442a276262f13d91ca450605ac0
7365Author: Kumar Gala <galak@kernel.crashing.org>
7366Date: Mon Jul 14 14:07:01 2008 -0500
7367
7368 MPC8544DS: Report board id, board version and fpga version.
7369
7370 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7371
7372commit 73f15a060f67a2462551c334215bd20fac6b81d1
7373Author: Kumar Gala <galak@kernel.crashing.org>
7374Date: Mon Jul 14 14:07:00 2008 -0500
7375
7376 85xx: Cleanup L2 cache size detection
7377
7378 The L2 size detection code was a bit confusing and we kept having to add
7379 code to it to handle new processors. Change the sense of detection so we
7380 look for the older processors that aren't changing.
7381
7382 Also added support for 1M cache size on 8572.
7383
7384 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7385
7386commit c3ca7e5e00a24451f20df3bded9a61ba541921df
7387Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7388Date: Fri Jul 11 15:33:08 2008 -0400
7389
7390 sbc8560: enable CONFIG_OF_LIBFDT by default
7391
7392 Make the default build for the sbc8560 board be powerpc
7393 capable with libfdt support.
7394
7395 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7396
7397commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
7398Author: Andy Fleming <afleming@freescale.com>
7399Date: Mon Jul 14 20:04:40 2008 -0500
7400
7401 Fix indentation for default boot environment variables
7402
7403 This was proposed by Paul Gortmaker in response to Wolfgang's comments on
7404 similar #defines in sbc8560.h.
7405
7406 Signed-off-by: Andy Fleming <afleming@freescale.com>
7407
7408commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
7409Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7410Date: Fri Jul 11 15:33:07 2008 -0400
7411
7412 sbc8560: add default fdt values
7413
7414 Add in the default fdt settings and the typical EXTRA_ENV
7415 settings as borrowed from the mpc8560ads. Fix a couple
7416 of stale references to the mpc8560ads dating back to the
7417 original clone/fork.
7418
7419 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7420 Signed-off-by: Andy Fleming <afleming@freescale.com>
7421
7422commit d04e76edf92f7f89696989e8702b97e020455af3
7423Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7424Date: Fri Jul 11 15:33:06 2008 -0400
7425
7426 sbc8560: add in ft_board_setup()
7427
7428 Add in for the sbc8560, the ft_board_setup() routine, based on what is
7429 in use for the Freescale MPC8560ADS board.
7430
7431 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7432
7433commit c158bcaca3b31cbe38c4143812e6170e38a57393
7434Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7435Date: Fri Jul 11 15:33:05 2008 -0400
7436
7437 sbc8560: define eth0 and eth1 instead of eth1 and eth2
7438
7439 The existing config doesn't define CONFIG_HAS_ETH0, and so the
7440 fdt support doesn't update the zeros in the dtb local-mac with
7441 real data from the u-boot env. Since the existing config is
7442 tailored to just two interfaces, get rid of the ETH2 definitions
7443 at the same time.
7444
7445 Also don't include any end user specific data into the environment
7446 by default -- things like MAC address, network parameters etc. need
7447 to come from the end user.
7448
7449 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7450 Signed-off-by: Andy Fleming <afleming@freescale.com>
7451
7452commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
7453Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7454Date: Fri Jul 11 15:33:04 2008 -0400
7455
7456 sbc8560: properly set cs0_bnds for 512MB
7457
7458 The sbc8560 board ships with 512MB of memory installed,
7459 but the current cs0_bnds is hard coded for 256MB. Set the
7460 value based on CFG_SDRAM_SIZE.
7461
7462 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7463
7464commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
7465Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7466Date: Fri Jul 11 15:33:03 2008 -0400
7467
7468 sbc8560: proper definitions for TSEC.
7469
7470 The definitions for the TSEC have become out of date. There is no
7471 longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
7472 Update to match those of other boards, like the MPC8560ADS.
7473
7474 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7475 Acked-by: Ben Warren <biggerbadderben@gmail.com>
7476
7477commit 71074abbe0c76429577aff58aeff0a24ad210b23
7478Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7479Date: Wed Jul 9 13:23:05 2008 -0400
7480
7481 8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
7482
7483 Some boards that have external 16550 UARTs don't have a direct
7484 tie between bi_busfreq and the clock used for the UARTs. Boards
7485 that do have such a tie should set CFG_NS16550_CLK to be
7486 get_bus_freq(0) -- which most of them do already.
7487
7488 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7489 Acked-by: Kim Phillips <kim.phillips@freescale.com>
7490
7491commit 24ef76f320fbadf074105229826514db140f939f
7492Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
7493Date: Wed Jul 2 07:03:53 2008 -0700
7494
7495 Change the temp map to ROM to align addresses to page size.
7496
7497 With a page size of BOOKE_PAGESZ_16M, both the real and effective
7498 addresses must be multiples of 16MB. The hardware silently truncates
7499 them so the code happens to work. This patch clarifies the situation
7500 by establishing addresses that the hardware doesn't need to truncate.
7501
7502 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
7503 Signed-off-by: Andy Fleming <afleming@freescale.com>
7504
7505commit 06b4186c10204b6683edb047ac5f506fb0ce0937
7506Author: Kim Phillips <kim.phillips@freescale.com>
7507Date: Tue Jun 17 17:45:22 2008 -0500
7508
7509 mpc85xx: use IS_E_PROCESSOR macro
7510
7511 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7512
7513commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
7514Author: Kim Phillips <kim.phillips@freescale.com>
7515Date: Mon Jun 16 15:55:53 2008 -0500
7516
7517 fdt: add crypto node handling for MPC8{3, 5}xxE processors
7518
7519 Delete the crypto node if not on an E-processor. If on 8360 or 834x family,
7520 check rev and up-rev crypto node (to SEC rev. 2.4 property values)
7521 if on an 'EA' processor, e.g. MPC8349EA.
7522
7523 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7524
7525commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
7526Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7527Date: Fri Jul 11 15:10:11 2008 -0400
7528
7529 ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
7530
7531 ARM DaVinci: Remove extern phy_t declaration by moving
7532 code to proper place.
7533
7534 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7535
7536commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
7537Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7538Date: Fri Jul 11 15:10:10 2008 -0400
7539
7540 ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
7541
7542 ARM DaVinci: Remove duplicate definitions of MACH_TYPE
7543 and prototype of i2c_init().
7544
7545 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7546
7547commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
7548Author: Kumar Gala <galak@kernel.crashing.org>
7549Date: Mon Jul 14 14:03:02 2008 -0500
7550
7551 Fix some more printf() format problems.
7552
7553 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7554
7555commit 45b16d22c64674ccd8c4637456a987463609141c
7556Author: Wolfgang Denk <wd@denx.de>
7557Date: Mon Jul 14 22:38:42 2008 +0200
7558
7559 Fix coding style; make code better parsable by external tools
7560
7561 Signed-off-by: Wolfgang Denk <wd@denx.de>
7562
7563commit b880cbf207b1c109d3a661417a8feddcbd729a9d
7564Author: Wolfgang Denk <wd@denx.de>
7565Date: Mon Jul 14 21:19:08 2008 +0200
7566
7567 cpu/i386/serial.c: Fix syntax errors
7568
7569 Signed-off-by: Wolfgang Denk <wd@denx.de>
7570
7571commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
7572Author: Wolfgang Denk <wd@denx.de>
7573Date: Mon Jul 14 20:41:35 2008 +0200
7574
7575 elppc board: Coding style cleanup.
7576
7577 Signed-off-by: Wolfgang Denk <wd@denx.de>
7578
7579commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
7580Author: Wolfgang Denk <wd@denx.de>
7581Date: Mon Jul 14 20:40:22 2008 +0200
7582
7583 elppc board: fix syntax error.
7584
7585 Signed-off-by: Wolfgang Denk <wd@denx.de>
7586
7587commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
7588Author: Wolfgang Denk <wd@denx.de>
7589Date: Mon Jul 14 20:38:26 2008 +0200
7590
7591 EB+MCF-EV123 board: fix coding style (alingment)
7592
7593 Signed-off-by: Wolfgang Denk <wd@denx.de>
7594
7595commit 6841785a0bb0f38175456a923edd634fb7dd6947
7596Author: Wolfgang Denk <wd@denx.de>
7597Date: Mon Jul 14 20:36:44 2008 +0200
7598
7599 EB+MCF-EV123 board: fix syntx error
7600
7601 Signed-off-by: Wolfgang Denk <wd@denx.de>
7602
7603commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
7604Author: Andy Fleming <afleming@freescale.com>
7605Date: Mon Jul 7 18:02:08 2008 -0500
7606
7607 Remove LBC_CACHE_BASE from 8544 DS
7608
7609 The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping
7610 space for some anyway, we were allowing speculative loads into unmapped space,
7611 which would cause an exception (annoying, even if ultimately harmless).
7612 Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
7613 problem.
7614
7615 Signed-off-by: Andy Fleming <afleming@freescale.com>
7616
7617commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
7618Author: Wolfgang Denk <wd@denx.de>
7619Date: Mon Jul 14 15:19:07 2008 +0200
7620
7621 Code cleanup: fix old style assignment ambiguities like "=-" etc.
7622
7623 Signed-off-by: Wolfgang Denk <wd@denx.de>
7624
7625commit d7854223c5c85b5849fbf422cc8ac0efef461c37
7626Author: Wolfgang Denk <wd@denx.de>
7627Date: Mon Jul 14 15:10:53 2008 +0200
7628
7629 AmigaOneG3SE: remove dead and incomplete files
7630
7631 Signed-off-by: Wolfgang Denk <wd@denx.de>
7632
7633commit b64f190b7a34224df09b559ca111eb1b733f00ad
7634Author: Wolfgang Denk <wd@denx.de>
7635Date: Mon Jul 14 15:06:35 2008 +0200
7636
7637 Fix printf() format issues with sizeof_t types by using %zu
7638
7639 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7640 Signed-off-by: Wolfgang Denk <wd@denx.de>
7641
7642commit f354b73e16a86f9e9085471a830605f74f84ea5d
7643Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7644Date: Mon Jul 14 14:11:45 2008 +0200
7645
7646 vsprintf: add z and t options
7647
7648 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7649
7650commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
7651Author: Wolfgang Denk <wd@denx.de>
7652Date: Sun Jul 13 23:07:35 2008 +0200
7653
7654 Fix some more printf() format issues.
7655
7656 Signed-off-by: Wolfgang Denk <wd@denx.de>
7657
7658commit d5996dd555edf52721b7691a4c59de016251ed39
7659Author: Wolfgang Denk <wd@denx.de>
7660Date: Sun Jul 13 19:51:00 2008 +0200
7661
7662 Fix some more printf() format problems.
7663
7664 Signed-off-by: Wolfgang Denk <wd@denx.de>
7665
7666commit 0f9d5f6d6e814907794995c6a22af752040c35d9
7667Author: Wolfgang Denk <wd@denx.de>
7668Date: Sun Jul 13 19:48:26 2008 +0200
7669
7670 ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
7671
7672 Signed-off-by: Wolfgang Denk <wd@denx.de>
7673
7674commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
7675Author: Anatolij Gustschin <agust@denx.de>
7676Date: Sat Jul 12 17:31:36 2008 +0200
7677
7678 Fix bug in Lime video driver
7679
7680 We need to wait while drawing engine clears frame
7681 buffer before any further software accesses to frame
7682 buffer will be initiated. Otherwise software drawn
7683 parts could be partially destroyed by the drawing
7684 engine or even GDC chip freeze could occur (as
7685 observed on socrates board).
7686
7687 Signed-off-by: Anatolij Gustschin <agust@denx.de>
7688
7689commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
7690Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7691Date: Sat Jul 12 14:36:34 2008 +0200
7692
7693 Fix some more printf() format issues.
7694
7695 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7696
7697commit 18c8a28aad49803780bd8d52432ded528e37e701
7698Author: Michal Simek <monstr@monstr.eu>
7699Date: Fri Jul 11 15:11:57 2008 +0200
7700
7701 hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
7702
7703 Signed-off-by: Michal Simek <monstr@monstr.eu>
7704 Acked-by: Stefan Roese <sr@denx.de>
7705
7706commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
7707Author: Michal Simek <monstr@monstr.eu>
7708Date: Fri Jul 11 11:50:53 2008 +0200
7709
7710 hwmon: Cleaning hwmon devices
7711
7712 Clean Makefile
7713 Move device specific values to driver for better reading
7714
7715 Signed-off-by: Michal Simek <monstr@monstr.eu>
7716 Acked-by: Stefan Roese <sr@denx.de>
7717
7718commit c78fce699c7ff467ecd841da6a79f065180bf578
7719Author: Michal Simek <monstr@monstr.eu>
7720Date: Fri Jul 11 10:43:13 2008 +0200
7721
7722 FIS: repare incorrect return value with ramdisk handling
7723
7724 Microblaze and PowerPC use boot_get_ramdisk for loading
7725 ramdisk to memory with checking return value.
7726 Return 0 means success. Return 1 means failed.
7727 Here is correspond part of code from bootm.c which check
7728 return code.
7729
7730 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
7731 &rd_data_start, &rd_data_end);
7732 if (ret)
7733 goto error;
7734
7735 Signed-off-by: Michal Simek <monstr@monstr.eu>
7736
7737commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
7738Author: Michal Simek <monstr@monstr.eu>
7739Date: Fri Jul 11 10:10:32 2008 +0200
7740
7741 microblaze: Remove useless ancient headers
7742
7743 Signed-off-by: Michal Simek <monstr@monstr.eu>
7744
7745commit 53ea981c3124b13c137c2d10e975b7c6672266e0
7746Author: Michal Simek <monstr@monstr.eu>
7747Date: Fri Jul 11 10:10:31 2008 +0200
7748
7749 microblaze: Clean uartlite driver
7750
7751 Redesign uartlite driver to in_be32 and out_be32 macros
7752 Fix missing header in io.h
7753
7754 Signed-off-by: Michal Simek <monstr@monstr.eu>
7755 Acked-by: Grant Likely <grant.likely@secretlab.ca>
7756
7757commit dbf3dfb386a2d5d2381814e39985ab2e21894550
7758Author: Marcel Ziswiler <marcel@ziswiler.com>
7759Date: Fri Jul 11 02:39:14 2008 +0200
7760
7761 Enable passing of ATAGs required by latest Linux kernel.
7762
7763commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
7764Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7765Date: Fri Jul 11 10:24:15 2008 -0400
7766
7767 Fix integer overflow warning in calc_divisor()
7768
7769 which happened when rounding the serial port clock divisor
7770
7771 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7772
7773commit 6b760189d77f001684e3160b355c185ca3804961
7774Author: Marcel Ziswiler <marcel@ziswiler.com>
7775Date: Fri Jul 11 01:09:59 2008 +0200
7776
7777 Fix build time warnings in function mmc_decode_csd()
7778
7779 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
7780
7781commit c15947d6ce0d59925c97fdfac692476af6e262d0
7782Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7783Date: Thu Jul 10 10:46:33 2008 -0400
7784
7785 ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
7786
7787 caused by missing dcache status/enable/disable functions.
7788
7789 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7790
7791commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
7792Author: Stefan Roese <sr@denx.de>
7793Date: Thu Jul 10 13:53:31 2008 +0200
7794
7795 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
7796
7797 This patch removes some ft_board_setup() functions from some 4xx boards.
7798 This can be done since we now have a default weak implementation for this
7799 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
7800 implementation like canyonlands need their own version.
7801
7802 Signed-off-by: Stefan Roese <sr@denx.de>
7803
7804commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
7805Author: Wolfgang Denk <wd@denx.de>
7806Date: Sun Jul 13 14:58:16 2008 +0200
7807
7808 Add last known maintainer for orphaned boards; reformat.
7809
7810 Signed-off-by: Wolfgang Denk <wd@denx.de>
7811
7812commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
7813Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7814Date: Thu Jul 10 13:16:04 2008 +0200
7815
7816 Remove kharris@nexus-tech.net from MAINTAINERS
7817
7818 Mail to kharris@nexus-tech.net bounces because the user doesn't exist
7819 anymore. You can't be a maintainer without a valid e-mail address, so
7820 move all boards that used to be maintained by Kyle Harris to the
7821 "orphaned" list.
7822
7823 Currently, only PowerPC has a list of orphaned boards, so this patch
7824 creates one for ARM as well.
7825
7826 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7827
7828commit 17bd17071463b0cde391ac4a0863d600474b4ea1
7829Author: Anatolij Gustschin <agust@denx.de>
7830Date: Thu Jul 10 01:15:10 2008 +0200
7831
7832 at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
7833
7834 On the at91sam9260ep development board there is an EEPROM
7835 connected to the TWI interface (PA23, PA24 Peripheral A
7836 multiplexing), so we cannot use these pins as ETX2, ETX3.
7837 This patch configures PA10, PA11 pins for ETX2, ETX3
7838 instead of PA23, PA24 pins.
7839
7840 Signed-off-by: Anatolij Gustschin <agust@denx.de>
7841 Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
7842
7843commit f889265753ddf4465d9d580827bb9289bfac55d6
7844Author: Kenneth Johansson <kenneth@southpole.se>
7845Date: Sat Jul 12 13:18:34 2008 -0600
7846
7847 fix DIU for small screens
7848
7849 The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
7850 so it was not possible to set a slow pixel clock and thus prevented
7851 display on small screens.
7852
7853 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
7854 Acked-by: John Rigby <jrigby@freescale.com>
7855
7856commit b60b8573875e650e4c69be667bfc88d3ed474a7c
7857Author: John Rigby <jrigby@freescale.com>
7858Date: Fri Jul 11 14:44:09 2008 -0600
7859
7860 ADS5121 cleanup compile warnings
7861
7862 board/ads5121/iopin.c
7863 Replace bit fields in struct iopin_t with a single
7864 field and intialize it via plain old macros.
7865 This fixes the type pun warnings and makes the code
7866 more readable.
7867
7868 board/ads5121/ads5121.c
7869 Add include iopin.h to ads5121.c for the iopin_initialize
7870 prototype.
7871
7872 Add an extern void ads5121_diu_init(void)
7873
7874 Signed-off-by: John Rigby <jrigby@freescale.com>
7875
7876commit bde63587622c4b830a27d1ddf7265843de9e994f
7877Author: Wolfgang Denk <wd@denx.de>
7878Date: Fri Jul 11 22:56:11 2008 +0200
7879
7880 Fix some more printf() format issues.
7881
7882 Signed-off-by: Wolfgang Denk <wd@denx.de>
7883
7884commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
7885Author: Wolfgang Denk <wd@denx.de>
7886Date: Fri Jul 11 22:55:31 2008 +0200
7887
7888 Fixed some out-of-tree build issues
7889
7890 Signed-off-by: Wolfgang Denk <wd@denx.de>
7891
7892commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
7893Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7894Date: Wed Jul 9 16:20:23 2008 -0500
7895
7896 ColdFire: Fix FB CS not setup properly for Mcf5282
7897
7898 Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
7899 CFG_CSn_RO is defined as 0, the chipselect will not
7900 be assigned.
7901
7902 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7903
7904commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
7905Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7906Date: Wed Jul 9 15:47:27 2008 -0500
7907
7908 ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
7909
7910 Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
7911 clock module in cpu/<cf arch>/cpu_init.c
7912
7913 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7914
7915commit f94945b517f10e01927101679c62361e03d4e837
7916Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7917Date: Wed Jul 9 15:25:01 2008 -0500
7918
7919 ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
7920
7921 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7922
7923commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
7924Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7925Date: Wed Jul 9 15:21:44 2008 -0500
7926
7927 Fix compile error caused by missing timer function
7928
7929 Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
7930
7931 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7932
7933commit c37ea031175b807c54e6bad9b270e9bede6c0078
7934Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7935Date: Wed Jul 9 15:14:25 2008 -0500
7936
7937 Fix compile error caused by incorrect function return type
7938
7939 Rename int mii_init(void) to void mii_init(void)
7940
7941 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7942
7943commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
7944Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7945Date: Wed Jun 18 19:27:23 2008 -0500
7946
7947 ColdFire: Fix power up issue for MCF5235
7948
7949 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7950
7951commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
7952Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7953Date: Wed Jun 18 19:19:07 2008 -0500
7954
7955 ColdFire: Fix compiling error for MCF5275
7956
7957 The compiling error was caused by missing a closed parentheses
7958 in speed.c
7959
7960 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7961
7962commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
7963Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7964Date: Wed Jun 18 19:14:01 2008 -0500
7965
7966 ColdFire: Fix timer issue for MCF5272
7967
7968 The timer was assigned to wrong timer memory mapped which
7969 caused udelay() and timer() not working properly.
7970
7971 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7972
7973commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
7974Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7975Date: Wed Jun 18 19:12:13 2008 -0500
7976
7977 ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
7978
7979 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
7980
7981commit 8371dc2066136be21e10b7b9293e469297d77298
7982Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7983Date: Wed Jun 18 19:05:23 2008 -0500
7984
7985 ColdFire: Add -got=single param for new linux v4e toolchains
7986
7987 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
7988
7989commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
7990Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7991Date: Wed Jun 18 13:21:19 2008 -0500
7992
7993 ColdFire: Fix code flash configuration for M547x/M548x boards
7994
7995 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
7996
7997commit 6e37091afc07fdcc15590093fd066b0cb7399f85
7998Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7999Date: Tue Jun 24 12:12:16 2008 -0500
8000
8001 ColdFire: Fix warning messages by passing correct data type in board.c
8002
8003 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8004
8005commit 81cc32322acb1b3225ee45606ced48e2a14824dc
8006Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8007Date: Thu May 29 12:21:54 2008 -0500
8008
8009 ColdFire: Fix UART baudrate formula
8010
8011 The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
8012 can generate the wrong divisor due to integer division truncation.
8013 Round the calculated divisor value by adding 1/2 the baudrate
8014 before dividing by the baudrate.
8015
8016 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8017 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
8018
8019commit b578fb471444cbd7db1285701ba51343baaf73fb
8020Author: Stefan Roese <sr@denx.de>
8021Date: Thu Jul 10 11:38:26 2008 +0200
8022
8023 ppc4xx: Fix include sequence in 4xx_pcie.c
8024
8025 This patch now moves common.h to the top of the inlcude list. This
8026 is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
8027 the phys_size_t/phys_addr_t are defined to the correct size in this
8028 driver.
8029
8030 Signed-off-by: Stefan Roese <sr@denx.de>
8031
Wolfgang Denk4b070802008-08-14 14:41:06 +02008032commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
8033Author: Stefan Roese <sr@denx.de>
8034Date: Fri Jul 11 13:10:56 2008 +0200
8035
8036 ppc4xx: Fix compile warning in 44x_spd_ddr2.c
8037
8038 Signed-off-by: Stefan Roese <sr@denx.de>
8039
8040commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
8041Author: Stefan Roese <sr@denx.de>
8042Date: Fri Jul 11 11:40:13 2008 +0200
8043
8044 ppc4xx: Fix small korat merge problem
8045
8046 Signed-off-by: Stefan Roese <sr@denx.de>
8047
8048commit 1d0554736a0a1dd59718acda660871ce56b69e18
8049Author: Stefan Roese <sr@denx.de>
8050Date: Fri Jul 11 11:34:52 2008 +0200
8051
8052 ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
8053
8054 Signed-off-by: Stefan Roese <sr@denx.de>
8055
8056commit 3a82113ed5934d498f25080441a8261fc9454b15
8057Author: Stefan Roese <sr@denx.de>
8058Date: Thu Jul 10 16:37:09 2008 +0200
8059
8060 ppc4xx: Add 460SX UIC defines
8061
8062 Only the really needed ones are added (cascading and EMAC/MAL).
8063
8064 Signed-off-by: Stefan Roese <sr@denx.de>
8065
8066commit 26173fc6f60521c2a8072f652f863617fc11ba9a
8067Author: Stefan Roese <sr@denx.de>
8068Date: Mon Jun 30 14:11:07 2008 +0200
8069
8070 ppc4xx: Continue cleanup of ppc440.h
8071
8072 This patch continues the ppc440.h cleanup by removing some of the unused
8073 defines.
8074
8075 Signed-off-by: Stefan Roese <sr@denx.de>
8076
8077commit d9056b7913ed6a228d2f33671d916efedee541dd
8078Author: Stefan Roese <sr@denx.de>
8079Date: Mon Jun 30 14:05:05 2008 +0200
8080
8081 ppc4xx: Cleanup Katmai & Yucca PCIe register usage
8082
8083 This patch cleans up the 440SPe PCIe register usage. Now only defines
8084 from the include/asm-ppc/4xx_pcie.h are used.
8085
8086 Signed-off-by: Stefan Roese <sr@denx.de>
8087
8088commit 5de851403b01489b493fa83137ad990b8ce60d1c
8089Author: Stefan Roese <sr@denx.de>
8090Date: Thu Jun 26 17:36:39 2008 +0200
8091
8092 ppc4xx: Rework 440GX UIC handling
8093
8094 This patch reworks the 440GX interrupt handling so that the common 4xx
8095 code can be used. The 440GX is an exception to all other 4xx variants
8096 by having the cascading interrupt vectors not on UIC0 but on a special
8097 UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
8098 the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
8099 handling is simpler without any 440GX special cases.
8100
8101 Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
8102
8103 Signed-off-by: Stefan Roese <sr@denx.de>
8104
8105commit d1631fe1a05b063ccaf62ea892a8887b829847d1
8106Author: Stefan Roese <sr@denx.de>
8107Date: Thu Jun 26 13:40:57 2008 +0200
8108
8109 ppc4xx: Consolidate PPC4xx UIC defines
8110
8111 This 2nd patch now removes all UIC mask bit definition. They should be
8112 generated from the vectors by using the UIC_MASK() macro from now on.
8113 This way only the vectors need to get defined for new PPC's.
8114
8115 Also only the really used interrupt vectors are now defined. This makes
8116 definitions for new PPC versions easier and less error prone.
8117
8118 Another part of this patch is that the 4xx emac driver got a little
8119 cleanup, since now the usage of the interrupts is clearer.
8120
8121 Signed-off-by: Stefan Roese <sr@denx.de>
8122
8123commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
8124Author: Stefan Roese <sr@denx.de>
8125Date: Wed Jun 25 10:59:22 2008 +0200
8126
8127 ppc4xx: Consolidate PPC4xx UIC defines
8128
8129 This patch is the first step to consolidate the UIC related defines in the
8130 4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
8131 asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
8132 steps.
8133
8134 Signed-off-by: Stefan Roese <sr@denx.de>
8135
8136commit 7ee2619c20ccecd57966d74d844e6329e141261c
8137Author: Stefan Roese <sr@denx.de>
8138Date: Tue Jun 24 17:18:50 2008 +0200
8139
8140 ppc4xx: Consolidate PPC4xx EBC defines
8141
8142 This patch removes all EBC related defines from the PPC4xx headers
8143 ppc405.h and ppc440.h and introduces a new header
8144
8145 include/asm-ppc/ppc4xx-ebc.h
8146
8147 with all those defines.
8148
8149 Signed-off-by: Stefan Roese <sr@denx.de>
8150
8151commit e321801bed5a6d896d298c00fd20046f039d5d66
8152Author: Stefan Roese <sr@denx.de>
8153Date: Thu Jul 10 13:52:44 2008 +0200
8154
8155 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
8156
8157 This patch removes some ft_board_setup() functions from some 4xx boards.
8158 This can be done since we now have a default weak implementation for this
8159 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
8160 implementation like canyonlands need their own version.
8161
8162 Signed-off-by: Stefan Roese <sr@denx.de>
8163
8164commit 08250eb2edbd96514d049602d9e134110ac3185f
8165Author: Stefan Roese <sr@denx.de>
8166Date: Thu Jul 10 15:32:32 2008 +0200
8167
8168 ppc4xx: Fix merge problems in 44x_spd_ddr2.c
8169
8170 Signed-off-by: Stefan Roese <sr@denx.de>
8171
8172commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
8173Author: Grant Erickson <gerickson@nuovations.com>
8174Date: Tue Jul 8 08:35:00 2008 -0700
8175
8176 ppc4xx: Add MII mode support to the EMAC RGMII Bridge
8177
8178 This patch adds support for placing the RGMII bridge on the
8179 PPC405EX(r) into MII/GMII mode and allows a board-specific
8180 configuration to specify the bridge mode at compile-time.
8181
8182 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8183 Signed-off-by: Stefan Roese <sr@denx.de>
8184
8185commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
8186Author: Grant Erickson <gerickson@nuovations.com>
8187Date: Wed Jul 9 16:46:35 2008 -0700
8188
8189 ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
8190
8191 This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
8192 controller registers (MODT and INITPLR) used by the
8193 PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
8194 peer values used for the INITPLR MR and EMR registers,
8195 respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
8196
8197 With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
8198 Kilauea are replaced by equivalent mnemonics to make it easier to
8199 compare and contrast other 405EX(r)-based boards (e.g. during board
8200 bring-up).
8201
8202 Finally, unified the SDRAM controller register dump routine such that
8203 it can be used across all processor variants that utilize the IBM DDR2
8204 SDRAM controller core. It produces output of the form:
8205
8206 PPC4xx IBM DDR2 Register Dump:
8207 ...
8208 SDRAM_MB0CF[40] = 0x00006701
8209 ...
8210
8211 which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
8212 since it is not uncommon that the DCR values in header files get mixed
8213 up and it helps to validate, at a glance, they match what is printed
8214 in the user manual.
8215
8216 Tested on:
8217 AMCC Kilauea/Haleakala:
8218 - NFS Linux Boot: PASSED
8219 - NAND Linux Boot: PASSED
8220
8221 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8222 Signed-off-by: Stefan Roese <sr@denx.de>
8223
8224commit ad7382d828982e9c1bafc4313ef1b666f6145f58
8225Author: Grant Erickson <gerickson@nuovations.com>
8226Date: Wed Jul 9 16:31:59 2008 -0700
8227
8228 ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
8229
8230 Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
8231 revision ID DCR based on 405EX, and add field mnemonics for bus error
8232 status and ECC error status registers.
8233
8234 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8235 Signed-off-by: Stefan Roese <sr@denx.de>
8236
8237commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
8238Author: Grant Erickson <gerickson@nuovations.com>
8239Date: Wed Jul 9 16:31:36 2008 -0700
8240
8241 ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
8242
8243 This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
8244
8245 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8246 Signed-off-by: Stefan Roese <sr@denx.de>
8247
8248commit 5b457d00730d4aa0c6450d21a9104723e606fb98
8249Author: Grant Erickson <gerickson@nuovations.com>
8250Date: Wed Jul 9 11:55:46 2008 -0700
8251
8252 PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
8253
8254 While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
8255 controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
8256 the 405EX(r), SDRAM_MCSTAT has a different DCR value.
8257
8258 Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
8259 which causes SDRAM initialization to periodically fail since it can
8260 prematurely indicate SDRAM ready status.
8261
8262 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
8263 Signed-off-by: Stefan Roese <sr@denx.de>
8264
8265commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
8266Author: Feng Kan <fkan@amcc.com>
8267Date: Tue Jul 8 22:48:42 2008 -0700
8268
8269 ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
8270
8271 Add AMCC Redwood reference board that uses the latest
8272 PPC 464 CPU processor combined with a rich mix of peripheral
8273 controllers. The board will support PCIe, mutiple Gig ethernet
8274 ports, advanced hardware RAID assistance and IEEE 1588.
8275
8276 Signed-off-by: Feng Kan <fkan@amcc.com>
8277 Signed-off-by: Stefan Roese <sr@denx.de>
8278
8279commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
8280Author: Feng Kan <fkan@amcc.com>
8281Date: Tue Jul 8 22:48:07 2008 -0700
8282
8283 ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
8284
8285 Signed-off-by: Feng Kan <fkan@amcc.com>
8286 Signed-off-by: Stefan Roese <sr@denx.de>
8287
8288commit 7d30793685efcada183891c78fc892e6c9ba50c7
8289Author: Feng Kan <fkan@amcc.com>
8290Date: Tue Jul 8 22:47:31 2008 -0700
8291
8292 ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
8293
8294 Signed-off-by: Feng Kan <fkan@amcc.com>
8295 Signed-off-by: Stefan Roese <sr@denx.de>
8296
Wolfgang Denk699f0512008-07-15 22:22:44 +02008297commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
8298Author: Wolfgang Denk <wd@denx.de>
8299Date: Fri Jul 11 01:16:00 2008 +0200
8300
8301 Fix some more print() format errors.
8302
8303 Signed-off-by: Wolfgang Denk <wd@denx.de>
8304
8305commit fdd70d1921b87287d9a99d1be99bc35226c2b412
8306Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8307Date: Thu Jul 10 20:57:54 2008 +0200
8308
8309 MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
8310
8311 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8312
8313commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
8314Author: Sergey Lapin <slapin@ossfans.org>
8315Date: Thu Jun 5 11:06:29 2008 +0400
8316
8317 DataFlash AT45DB021 support
8318
8319 Some boards based on AT91SAM926X-EK use smaller DF chips to keep
8320 bootstrap, u-boot and its environment, using NAND or other external
8321 storage for kernel and rootfs. This patch adds support for
8322 small 1024x263 chip.
8323
8324 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
8325
8326commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
8327Author: Kim Phillips <kim.phillips@freescale.com>
8328Date: Thu Jul 10 14:00:15 2008 -0500
8329
8330 silence misc printf formatting compiler warnings
8331
8332 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8333
8334commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
8335Author: Markus Klotzbücher <mk@denx.de>
8336Date: Thu Jul 10 14:47:09 2008 +0200
8337
8338 USB: shutdown USB before booting
8339
8340 This patch fixes a potentially serious issue related to USB which was
8341 discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
8342 ARM920T. Martin wrote:
8343
8344 Turn off USB to prevent the host controller from writing to the
8345 SDRAM while Linux is booting. This could happen, because the HCCA
8346 (Host Controller Communication Area) lies within the SDRAM and the
8347 host controller writes continously to this area (as busmaster!), for
8348 example to increase the HccaFrameNumber variable, which happens
8349 every 1 ms.
8350
8351 This is a slightly modified version of the patch in order to shutdown
8352 USB when booting on all architectures.
8353
8354 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
8355
8356commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
8357Author: Martha Marx <mmarx@silicontkx.com>
8358Date: Thu May 29 14:23:25 2008 -0400
8359
8360 Configuration changes for ADS5121 Rev 3
8361
8362 ADS5121 Rev 3 board is now the default config
8363
8364 config targets are now
8365
8366 ads5121_config
8367 Rev 3 board with
8368 PCI
8369 M41T62 on board RTC
8370 512MB DRAM
8371
8372 ads5121_rev2_config
8373 Rev 2 board with
8374 No PCI
8375 256MB DRAM
8376
8377 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
8378 Acked-by: Grant Likely <grant.likely@secretlab.ca>
8379 Acked-by: John Rigby <jrigby@freescale.com>
8380
8381commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
8382Author: Martha Marx <mmarx@silicontkx.com>
8383Date: Thu May 29 15:37:21 2008 -0400
8384
8385 Consolidate ADS5121 IO Pin configuration
8386
8387 Consolidate ADS5121 IO Pin configuration to one file
8388 board/ads5121/iopin.c.
8389
8390 Remove pin config from cpu/mpc512x/fec.c
8391
8392 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
8393 Acked-by: Grant Likely <grant.likely@secretlab.ca>
8394 Acked-by: John Rigby <jrigby@freescale.com>
8395
8396commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
8397Author: Christian Eggers <christian@p2400.wgnetz.xx>
8398Date: Fri Jun 27 19:46:51 2008 +0200
8399
8400 Fix "usb part" command
8401
8402 Only print partition for selected device if user supplied the <dev>
8403 arg with the "usb part [dev]" command.
8404
8405 Signed-off-by: Christian Eggers <ceggers@gmx.de>
8406 Acked-by: Markus Klotzbuecher <mk@denx.de>
8407
8408commit cc83b27217f7380041fea386ddb6d6d9b261617d
8409Author: Harald Welte <laforge@gnumonks.org>
8410Date: Mon Jul 7 00:58:05 2008 +0800
8411
8412 fix USB devices with multiple configurations
8413
8414 This patch fixes bugs in usbdcore*.c related to the use of devices
8415 with multiple configurations.
8416
8417 The original code made mistakes about the meaning of configuration value and
8418 configuration index, and the resulting off-by-one errors resulted in:
8419
8420 * SET_CONFIGURATION always selected the first configuration, no matter what
8421 wValue is being passed.
8422 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
8423 configuration (index 0).
8424
8425 Signed-off-by: Harald Welte <laforge@openmoko.org>
8426 Acked-by: Markus Klotzbuecher <mk@denx.de>
8427
8428commit 06c53beae1a726e707971c555613f09b270a2461
8429Author: Wolfgang Denk <wd@denx.de>
8430Date: Thu Jul 10 13:16:09 2008 +0200
8431
8432 Fix some more print() format errors.
8433
8434 Signed-off-by: Wolfgang Denk <wd@denx.de>
8435
8436commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
8437Author: Christian Eggers <christian@p2400.wgnetz.xx>
8438Date: Fri Jun 27 19:46:51 2008 +0200
8439
8440 Fix "usb part" command
8441
8442 Only print partition for selected device if user supplied the <dev>
8443 arg with the "usb part [dev]" command.
8444
8445 Signed-off-by: Christian Eggers <ceggers@gmx.de>
8446 Acked-by: Markus Klotzbuecher <mk@denx.de>
8447
8448commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
8449Author: Harald Welte <laforge@gnumonks.org>
8450Date: Mon Jul 7 00:58:05 2008 +0800
8451
8452 fix USB devices with multiple configurations
8453
8454 This patch fixes bugs in usbdcore*.c related to the use of devices
8455 with multiple configurations.
8456
8457 The original code made mistakes about the meaning of configuration value and
8458 configuration index, and the resulting off-by-one errors resulted in:
8459
8460 * SET_CONFIGURATION always selected the first configuration, no matter what
8461 wValue is being passed.
8462 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
8463 configuration (index 0).
8464
8465 Signed-off-by: Harald Welte <laforge@openmoko.org>
8466 Acked-by: Markus Klotzbuecher <mk@denx.de>
8467
8468commit e870690bdca154943ecadd5212d2d59c1b9d391b
8469Author: Stefan Roese <sr@denx.de>
8470Date: Thu Jul 10 10:10:54 2008 +0200
8471
8472 MTD/NAND: Fix printf format warning in nand code
8473
8474 This patch fixes NAND related printf format warning. Those warnings are
8475 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
8476 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
8477 really helpful.
8478
8479 Signed-off-by: Stefan Roese <sr@denx.de>
8480
8481commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
8482Author: Stefan Roese <sr@denx.de>
8483Date: Thu Jul 10 10:00:45 2008 +0200
8484
8485 rtc: Fix printf format warning in m41t60.c
8486
8487 Signed-off-by: Stefan Roese <sr@denx.de>
8488
8489commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
8490Author: Stefan Roese <sr@denx.de>
8491Date: Tue Jul 8 12:01:47 2008 +0200
8492
8493 pci: Move PCI device configuration check into a separate weak function
8494
8495 This patch moves the check, if a device should be skipped in PCI PNP
8496 configuration into the function pci_skip_dev(). This function is defined
8497 as weak so that it can be overwritten by a platform specific one if
8498 needed. The check if the device should get printed in the PCI summary upon
8499 bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
8500 pci_print_dev() which is also defined as weak too.
8501
8502 Signed-off-by: Stefan Roese <sr@denx.de>
8503
8504commit b002144e1dc21374b1ef5281fe6b5d014af96650
8505Author: Stefan Roese <sr@denx.de>
8506Date: Thu Jul 10 09:58:06 2008 +0200
8507
8508 ppc4xx: Fix printf format warnings now visible with the updated format check
8509
8510 This patch fixes ppc4xx related printf format warning. Those warnings are
8511 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
8512 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
8513 really helpful.
8514
8515 Signed-off-by: Stefan Roese <sr@denx.de>
8516
8517commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
8518Author: Stefan Roese <sr@denx.de>
8519Date: Wed Jul 9 17:33:57 2008 +0200
8520
8521 ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
8522
8523 Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
8524 To support such configurations, we "only" map the first 2GB via the TLB's. We
8525 need some free virtual address space for the remaining peripherals like, SoC
8526 devices, FLASH etc.
8527
8528 Note that ECC is currently not supported on configurations with more than 2GB
8529 SDRAM. This is because we only map the first 2GB on such systems, and therefore
8530 the ECC parity byte of the remaining area can't be written.
8531
8532 Signed-off-by: Stefan Roese <sr@denx.de>
8533
8534commit cf1c2ed91df26903b956948f37f82de9e1158a89
8535Author: Larry Johnson <lrj@acm.org>
8536Date: Sat Jun 14 17:02:49 2008 -0400
8537
8538 ppc4xx: Remove implementation of testdram() from Korat board support
8539
8540 Signed-off-by: Larry Johnson <lrj@acm.org>
8541 Signed-off-by: Stefan Roese <sr@denx.de>
8542
8543commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
8544Author: Larry Johnson <lrj@acm.org>
8545Date: Sat Jun 14 16:53:02 2008 -0400
8546
8547 ppc4xx: Update and add FDT to Korat board support
8548
8549 Signed-off-by: Larry Johnson <lrj@acm.org>
8550 Signed-off-by: Stefan Roese <sr@denx.de>
8551
8552commit 4188f0491886b3b486164e819c0a83fdb97efd7d
8553Author: Wolfgang Denk <wd@denx.de>
8554Date: Thu Jul 10 01:13:30 2008 +0200
8555
8556 Minor coding style cleanup; update CHANGELOG
8557
8558 Signed-off-by: Wolfgang Denk <wd@denx.de>
8559
Wolfgang Denk4188f042008-07-10 01:13:30 +02008560commit 8915f1189c1d29d8be7f4de325702d90a8988219
8561Author: Paul Gortmaker <paul.gortmaker@windriver.com>
8562Date: Wed Jul 9 17:50:45 2008 -0400
8563
8564 e1000: add support for 82545GM 64bit PCI-X copper variant
8565
8566 This PCI-X e1000 variant works by just adding in the correct
8567 PCI IDs in the appropriate places.
8568
8569 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
8570
8571commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
8572Author: Daniel Hellstrom <daniel@gaisler.com>
8573Date: Wed Jul 9 12:34:11 2008 +0000
8574
8575 SPARC: Build error fix
8576
8577 (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
8578
8579 This patch makes SPARC targets build again. It is caused by
8580 phys_addr_t and phys_size_t being defined in the wrong header
8581 file. include/lmb.h need those typedefs to build.
8582
8583 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
8584
8585commit 11ccc33fa21acce108f6b4a6936e3271af904c64
8586Author: Marcel Ziswiler <marcel@ziswiler.com>
8587Date: Wed Jul 9 08:17:15 2008 +0200
8588
8589 Many spelling fixes in README.
8590
8591 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
8592
8593commit dbab0691d2533560f7e91b92ae844046a9ad1df3
8594Author: Marcel Ziswiler <marcel@ziswiler.com>
8595Date: Wed Jul 9 08:17:06 2008 +0200
8596
8597 Minor spelling fix in comment.
8598
8599 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
8600
8601commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
8602Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8603Date: Tue Jul 8 14:54:58 2008 -0400
8604
8605 Round the serial port clock divisor value returned by calc_divisor()
8606
8607 Round the serial port clock divisor value returned by
8608 calc_divisor().
8609
8610 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8611 Signed-off-by: John Roberts <john.roberts@pwav.com>
8612
8613commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
8614Author: Scott Wood <scottwood@freescale.com>
8615Date: Wed Jul 9 17:47:52 2008 -0500
8616
8617 NAND: ifdef-protect most of nand.h when using legacy NAND.
8618
8619 Some macros such as NAND_CTL_SETALE conflict between current and legacy
8620 NAND, being defined by the subsystem in the former case and the board
8621 config file in the latter.
8622
8623 Signed-off-by: Scott Wood <scottwood@freescale.com>
8624
8625commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
8626Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8627Date: Tue Jul 8 11:02:05 2008 -0400
8628
8629 ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
8630
8631 ARM: Fix for incorrect version of patch applied when
8632 adding support for the Lyrtech SFF-SDR board.
8633
8634 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8635 Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
8636
8637commit 47042b363ee5022b8180c65d3f4558e7972c79cd
8638Author: Kyungmin Park <kmpark@infradead.org>
8639Date: Tue Jul 8 09:08:40 2008 +0900
8640
8641 Remove useless print message at apollon
8642
8643 Remove useless print message at apollon
8644
8645 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
8646
8647commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
8648Author: Andy Fleming <afleming@freescale.com>
8649Date: Mon Jul 7 14:24:39 2008 -0500
8650
8651 Fix LMB type issues
8652
8653 The LMB code now uses phys_addr_t and phys_size_t. Also, there were a couple
8654 of casting problems in the bootm code that called the LMB functions.
8655
8656 Signed-off-by: Andy Fleming <afleming@freescale.com>
8657
8658commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
8659Author: Kumar Gala <galak@kernel.crashing.org>
8660Date: Mon Jul 7 09:39:06 2008 -0500
8661
8662 Fix compiler warnings
8663
8664 gcc-4.3.x generates the following:
8665
8666 bootm.c: In function 'do_bootm_linux':
8667 bootm.c:208: warning: cast from pointer to integer of different size
8668 bootm.c:215: warning: cast from pointer to integer of different size
8669
8670 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8671
8672commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
8673Author: Harald Welte <laforge@gnumonks.org>
8674Date: Mon Jul 7 15:40:39 2008 +0800
8675
8676 Remove code duplication for setting the default environment
8677
8678 common/env_common.c (default_env): new function that resets the environment to
8679 the default value
8680 common/env_common.c (env_relocate): use default_env instead of own copy
8681 common/env_nand.c (env_relocate_spec): use default_env instead of own copy
8682 include/environment.h: added default_env prototype
8683
8684 Signed-off-by: Werner Almesberger <werner@openmoko.org>
8685 Signed-off-by: Harald Welte <laforge@openmoko.org>
8686
8687commit 99c2b434d37863df5dda5207a53760c6506fc2be
8688Author: Marcel Ziswiler <marcel@ziswiler.com>
8689Date: Sun Jun 22 16:13:46 2008 +0200
8690
8691 NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
8692
8693 The writeenv() and readenv() calls introduced by the recently added bad block
8694 management for environment variables were missing casts therefore producing
8695 compile time warnings.
8696 While at it fixing some typo in a comment and indentation.
8697
8698 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
8699 Signed-off-by: Scott Wood <scottwood@freescale.com>
8700
8701commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
8702Author: Scott Wood <scottwood@freescale.com>
8703Date: Fri Jun 20 12:38:57 2008 -0500
8704
8705 NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
8706
8707 This is particularly problematic now that non-NAND-specific code is
8708 including <nand.h>, and thus all debugging code is being compiled
8709 regardless of whether it was requested, as reported by Scott McNutt
8710 <smcnutt@psyent.com>.
8711
8712 Signed-off-by: Scott Wood <scottwood@freescale.com>
8713
8714commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
8715Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8716Date: Thu Jun 12 19:27:58 2008 +0200
8717
8718 mmc: Move atmel_mci driver into drivers/mmc
8719
8720 This makes it easier to use the driver on other platforms.
8721
8722 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8723 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8724
8725commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
8726Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8727Date: Thu Jun 12 19:27:57 2008 +0200
8728
8729 avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
8730
8731 After we move the atmel_mci driver into drivers/mmc, we can't select
8732 it with CONFIG_MMC anymore. Introduce a new symbol specifically for
8733 this driver so that there's no ambiguity.
8734
8735 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8736 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8737
8738commit 5ce13051a48c62bda9723df3b4778c492fb47f36
8739Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8740Date: Thu Jun 12 19:27:56 2008 +0200
8741
8742 Create drivers/mmc subdirectory
8743
8744 In order to consolidate more of the various MMC drivers around the
8745 tree, we must first have a common place to put them.
8746
8747 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8748 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8749
8750commit b502611b51f02718c2d1117d4981dabceb5af6de
8751Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
8752Date: Sun Jul 6 12:30:09 2008 +0200
8753
8754 Change env_get_char from a global function ptr to a function
8755
8756 This avoids an early global data reference.
8757
8758 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
8759
8760commit 27269417ade432189b234d9fbac98b54e37b978c
8761Author: Matvejchikov Ilya <matvejchikov@gmail.com>
8762Date: Sun Jul 6 13:57:58 2008 +0400
8763
8764 Some copy-n-paste fixes in printf usage
8765
8766 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
8767
8768commit 0e6989b9faf1588e8723535539e88a0df3c71356
8769Author: Matvejchikov Ilya <matvejchikov@gmail.com>
8770Date: Sun Jul 6 13:57:00 2008 +0400
8771
8772 FDT memory and pci node fixes for MPC8260ADS
8773
8774 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
8775
8776commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
8777Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
8778Date: Mon Jul 7 06:41:14 2008 -0700
8779
8780 Fix printf errors.
8781
8782 The compiler will help find mismatches between printf formats and
8783 arguments if you let it. This patch adds the necessary attributes to
8784 declarations in include/common.h, then begins to correct the resulting
8785 compiler warnings. Some of these were bugs, e.g., "$d" instead of
8786 "%d" and incorrect arguments. Others were just annoying, like
8787 int-long mismatches on a system where both are 32 bits. It's worth
8788 fixing the annoying errors to catch the real ones.
8789
8790 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
8791
8792commit 417faf285b2527acb2de24c5cd3e2621d385408c
8793Author: Becky Bruce <becky.bruce@freescale.com>
8794Date: Wed Jul 9 11:09:41 2008 -0500
8795
8796 Allow print_size to print in GB
8797
8798 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8799
8800commit e7c374529c87525c9aa463e0557c287887ae4e9e
8801Author: Jason McMullan <mcmullan@netapp.com>
8802Date: Sun Jun 8 23:56:00 2008 -0400
8803
8804 mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
8805
8806 Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
8807 they are set in the U-Boot environment.
8808
8809 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
8810 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
8811
8812commit 0192d7d56e9320819dea262f49789ae18fdd2c72
8813Author: Stefan Roese <sr@denx.de>
8814Date: Tue Jul 8 12:57:14 2008 +0200
8815
8816 jedec_flash: Fix AM29DL800BB device ID
8817
8818 As pointed out by Jerry Hicks, this patch corrects the device ID of
8819 the Spansion AM29DL800BB NOR device. Verified against latest Spansion
8820 datasheet (rev C4 from Dezember 2006).
8821
8822 Signed-off-by: Stefan Roese <sr@denx.de>
8823
8824commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
8825Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8826Date: Mon Jul 7 11:22:37 2008 +0900
8827
8828 sh: Fix compile error sh7763rdp board
8829
8830 Disable SH ether driver.
8831
8832 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8833
8834commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
8835Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8836Date: Tue Jul 8 12:03:24 2008 +0900
8837
8838 sh: Fix SH-boards compile error
8839
8840 By Cleanup out-or-tree building for some boards (.depend)
8841 (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
8842 because filse ware changed, some SH-boards have compile error.
8843 I revised this problem.
8844
8845 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8846
Wolfgang Denk699f0512008-07-15 22:22:44 +02008847commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
8848Author: Jason Jin <Jason.jin@freescale.com>
8849Date: Tue May 13 11:50:36 2008 +0800
8850
8851 Feed the watchdog in u-boot for 8610 board.
8852
8853 The watchdog on 8610 board is enabled by setting sw[6]
8854 to on. Once enabled, the watchdog can not be disabled
8855 by software. So feed the dog in u-boot is necessary for
8856 normal operation.
8857
8858 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
8859
Wolfgang Denk4188f042008-07-10 01:13:30 +02008860commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
8861Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8862Date: Wed Jun 18 12:10:33 2008 -0400
8863
8864 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
8865
8866 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
8867
8868 Remove duplicate code in a if/else block in
8869 cpu/arm926ejs/davinci/lxt972.c.
8870 Fixed style issues.
8871
8872 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8873 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8874
8875commit fec61431a003f5778bafa2624073a571af8bec9f
8876Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8877Date: Wed Jun 18 12:10:31 2008 -0400
8878
8879 Remove duplicate definitions in include/lxt971a.h.
8880
8881 Remove duplicate definitions in include/lxt971a.h.
8882
8883 Remove duplicate registers and bits definitions in
8884 include/lxt971a.h for standard MII registers, and
8885 use values in include/miiphy.h instead.
8886
8887 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
8888 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8889
8890commit 9751ee0990f467941da0b095a4e995f863672d7a
8891Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8892Date: Wed Jun 11 21:05:00 2008 +0900
8893
8894 net: sh: Renesas SH7763 Ethernet device support
8895
8896 Renesas SH7763 has 2 channel Ethernet device.
8897 This is 10/100/1000 Base support.
8898 But this patch check 10/100 Base only.
8899
8900 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8901 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8902
8903commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
8904Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8905Date: Tue Jun 17 16:28:05 2008 +0900
8906
8907 sh: Update Renesas R2DPlus board
8908
8909 New NOR Flash board support and remove old type flash board config.
8910 And Remove network setting from config file.
8911
8912 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8913 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8914
8915commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
8916Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8917Date: Tue Jun 17 16:28:01 2008 +0900
8918
8919 sh: Update Renesas R7780MP board
8920
8921 New NOR Flash board support and remove network setting from config file.
8922
8923 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8924 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8925
8926commit c001cd604e9f133743effbddb1c215b48e761c5a
8927Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8928Date: Tue Jun 17 16:27:56 2008 +0900
8929
8930 sh: Update Renesas Migo-R board
8931
8932 Remove network setting from config file.
8933
8934 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8935 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8936
8937commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
8938Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8939Date: Tue Jun 17 16:27:52 2008 +0900
8940
8941 sh: Update Hitachi MS7722SE board
8942
8943 Remove network setting from config file.
8944
8945 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8946 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8947
8948commit 26209e48e8791670c93108029a5c31a30016c6df
8949Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8950Date: Tue Jun 17 16:27:48 2008 +0900
8951
8952 sh: Cleanup source code of SH7763RDP
8953
8954 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8955 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8956
8957commit 5cd5b2c96ef0025762931349d350287aec03ab47
8958Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8959Date: Tue Jun 17 16:27:44 2008 +0900
8960
8961 sh: Cleanup source code of R2DPlus
8962
8963 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8964 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8965
8966commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
8967Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8968Date: Tue Jun 17 16:27:41 2008 +0900
8969
8970 sh: Cleanup source code of R7780MP
8971
8972 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8973 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8974
8975commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
8976Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8977Date: Tue Jun 17 16:27:38 2008 +0900
8978
8979 sh: Cleanup source code of MS7722SE
8980
8981 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8982 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8983
8984commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
8985Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8986Date: Tue Jun 17 16:27:34 2008 +0900
8987
8988 sh: Cleanup source code of MS7720SE
8989
8990 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8991 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8992
8993commit 3ab4827cbe409488ebea1a2ee5094783f2672214
8994Author: Wolfgang Denk <wd@denx.de>
8995Date: Mon Jul 7 00:45:03 2008 +0200
8996
8997 SH: fix out of tree building
8998
8999 Signed-off-by: Wolfgang Denk <wd@denx.de>
9000
9001commit 9047bfa1e737d787be460387dd6f45737eeceb10
9002Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9003Date: Thu Jul 3 23:16:06 2008 +0900
9004
9005 net: smc911x: Fix typo
9006
9007 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9008
9009commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
9010Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9011Date: Wed Jul 2 18:54:08 2008 +0200
9012
9013 update mvBL-M7 board config
9014
9015 update mvBL-M7 config file to use UBOOT_VERSION and define
9016 CONFIG_HIGH_BATS.
9017
9018 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9019
9020commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
9021Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9022Date: Mon Jun 30 17:45:01 2008 +0900
9023
9024 net: fix compile problem in smc911x driver.
9025
9026 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9027 Acked-by: Ben Warren <biggerbadderben@gmail.com>
9028
9029commit 9fea65a6c469b1b474b27446feb58738baba2d31
9030Author: Michal Simek <monstr@monstr.eu>
9031Date: Tue Jun 24 09:54:09 2008 +0200
9032
9033 ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
9034
9035 This change helps with better handling with others
9036 Xilinx based platform.
9037
9038 Signed-off-by: Michal Simek <monstr@monstr.eu>
9039 Acked-by: Stefan Roese <sr@denx.de>
9040
9041commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
9042Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9043Date: Tue Jun 17 13:07:11 2008 +0900
9044
9045 net: ne2000: Move dev_addr variable from grobal to local.
9046
9047 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9048 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9049
9050commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
9051Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9052Date: Tue Jun 17 13:07:15 2008 +0900
9053
9054 net: ne2000: Fix compile error of NE2000
9055
9056 If enable DEBUG, can not compile ne2000 driver.
9057
9058 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9059 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9060
9061commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
9062Author: Ben Warren <biggerbadderben@gmail.com>
9063Date: Mon Jun 23 22:57:27 2008 -0700
9064
9065 Add mechanisms for CPU and board-specific Ethernet initialization
9066
9067 This patch is the first step in cleaning up net/eth.c, by moving Ethernet
9068 initialization to CPU or board-specific code. Initial implementation is
9069 only on the Freescale TSEC controller, but others will be added soon.
9070
9071 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9072
9073commit 7754f2be5d1835d263aad21b5a629526f3e680b0
9074Author: Wolfgang Denk <wd@denx.de>
9075Date: Sun Jul 6 01:21:46 2008 +0200
9076
9077 include/sha256.h: fix file permissions.
9078
9079 Signed-off-by: Wolfgang Denk <wd@denx.de>
9080
9081commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
9082Author: Patrice Vilchez <patrice.vilchez@atmel.com>
9083Date: Tue May 27 11:15:29 2008 +0200
9084
9085 [AT91SAM9] Fix NAND FLASH timings
9086
9087 Fix NAND FLASH timings for at91sam9x evaluation kits.
9088
9089 New timings are based on application note
9090 "NAND Flash Support on AT91SAM9 Microcontrollers" available at
9091 http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
9092
9093 Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
9094 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9095 Acked-by: Stelian Pop <stelian@popies.net>
9096
9097commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
9098Author: Stelian Pop <stelian@popies.net>
9099Date: Thu May 22 00:15:40 2008 +0200
9100
9101 Fix boot from NOR due to incorrect reset delay.
9102
9103 AT91 RSTC registers are battery-backuped, so their values
9104 are not reset across power cycles. One of those registers,
9105 the AT91_RSTC_MR register, is being modified by U-Boot, in
9106 the ethernet initialisation routine, to generate a 500ms
9107 user reset.
9108
9109 Unfortunately, this value is not being restored afterwards,
9110 causing subsequent resets to also last for 500ms.
9111
9112 This long reset sequence causes problems (at least) in the
9113 boot sequence from NOR: by the time the CPU tries to load
9114 a program from the NOR flash, the latter is still in reset
9115 and not yet available.
9116
9117 Additionaly, this patch fixes a bug in the original code which
9118 caused the reset delay to last for 2s instead of 500ms.
9119
9120 Signed-off-by: Stelian Pop <stelian@popies.net>
9121 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9122
9123commit f492dd636fbbae529e17533995bc6e5813c007f6
9124Author: Wolfgang Denk <wd@denx.de>
9125Date: Fri Jul 4 20:11:49 2008 +0200
9126
9127 Update CHANGELOG
9128
9129 Signed-off-by: Wolfgang Denk <wd@denx.de>
9130
Wolfgang Denkf492dd62008-07-04 20:11:49 +02009131commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
9132Author: Wolfgang Denk <wd@denx.de>
9133Date: Fri Jul 4 20:07:35 2008 +0200
9134
9135 CCM/SCM boards: fix out of tree building
9136
9137 Signed-off-by: Wolfgang Denk <wd@denx.de>
9138
9139commit ab4c3a490df9a964711556d2a05b0c787db45fde
9140Author: Wolfgang Denk <wd@denx.de>
9141Date: Thu Jul 3 23:22:27 2008 +0200
9142
9143 SCM board: fix build errors.
9144
9145 Signed-off-by: Wolfgang Denk <wd@denx.de>
9146
9147commit a566466f17ba0e2d2b6c250e77da678fb932470d
9148Author: Wolfgang Denk <wd@denx.de>
9149Date: Thu Jul 3 23:06:36 2008 +0200
9150
9151 IAD210 board: fix ``"ALIGN" redefined'' warning.
9152
9153 Signed-off-by: Wolfgang Denk <wd@denx.de>
9154
9155commit ad756314797c16fa5dca23e115aab881011f164f
9156Author: Wolfgang Denk <wd@denx.de>
9157Date: Thu Jul 3 23:00:24 2008 +0200
9158
9159 CCM board: fix build errors.
9160
9161 Signed-off-by: Wolfgang Denk <wd@denx.de>
9162
Wolfgang Denk4188f042008-07-10 01:13:30 +02009163commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
9164Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9165Date: Wed Jul 2 18:54:08 2008 +0200
9166
9167 update mvBL-M7 board config
9168
9169 update mvBL-M7 config file to use UBOOT_VERSION.
9170
9171 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9172 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9173
Wolfgang Denkf492dd62008-07-04 20:11:49 +02009174commit ced209c50e80c25f13c083099b05044048d21f4f
9175Author: Wolfgang Denk <wd@denx.de>
9176Date: Thu Jul 3 22:39:21 2008 +0200
9177
9178 sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
9179
9180 Signed-off-by: Wolfgang Denk <wd@denx.de>
9181
9182commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
9183Author: Wolfgang Denk <wd@denx.de>
9184Date: Thu Jul 3 22:34:08 2008 +0200
9185
9186 Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
9187
9188 Signed-off-by: Wolfgang Denk <wd@denx.de>
9189
9190commit 730f298485984b011b6ee8f4acb511cb45a843dd
9191Author: Wolfgang Denk <wd@denx.de>
9192Date: Thu Jul 3 22:04:17 2008 +0200
9193
9194 lmb: fix "implicit declaration of function 'lmb_free'" warning
9195
9196 Signed-off-by: Wolfgang Denk <wd@denx.de>
9197
9198commit 322ef5e28d2dc62571afc699b00add22a8e006e4
9199Author: Wolfgang Denk <wd@denx.de>
9200Date: Wed Jul 2 23:53:23 2008 +0200
9201
9202 Cleanup: remove redundant deleting on *~ files
9203
9204 Signed-off-by: Wolfgang Denk <wd@denx.de>
9205
9206commit c8a3b109f07f02342d097b30908965f7261d9f15
9207Author: Wolfgang Denk <wd@denx.de>
9208Date: Wed Jul 2 23:49:18 2008 +0200
9209
9210 Cleanup out-or-tree building for some boards (.depend)
9211
9212 Signed-off-by: Wolfgang Denk <wd@denx.de>
9213
9214commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
9215Author: Wolfgang Denk <wd@denx.de>
9216Date: Wed Jul 2 23:38:50 2008 +0200
9217
9218 Cleanup: fix out-of-tree building for some boards
9219
9220 Signed-off-by: Wolfgang Denk <wd@denx.de>
9221
9222commit 461fa68d20861811487944d22291db5a13410e20
9223Author: Wolfgang Denk <wd@denx.de>
9224Date: Wed Jul 2 23:00:14 2008 +0200
9225
9226 Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
9227
9228 Signed-off-by: Wolfgang Denk <wd@denx.de>
9229
9230commit 5981ebd32017e062b08aa6747cf591276f2db779
9231Author: Detlev Zundel <dzu@denx.de>
9232Date: Fri Jun 20 22:26:24 2008 +0200
9233
9234 fdt: Fix typo in variable name.
9235
9236 Signed-off-by: Detlev Zundel <dzu@denx.de>
9237
9238commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
9239Author: Gary Jennejohn <garyj@denx.de>
9240Date: Thu Jun 19 11:11:19 2008 +0200
9241
9242 Add logos for RRvision board
9243
9244 Signed-off-by: Gary Jennejohn <garyj@denx.de>
9245
9246commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
9247Author: Esben Haabendal <EsbenHaabendal@gmail.com>
9248Date: Wed Jun 18 11:03:57 2008 +0200
9249
9250 mpc8260: add fdt_fixup_ethernet support
9251
9252 Add support for updating mac-address and local-mac-address in fdt for
9253 all MPC8260 targets.
9254
9255 Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
9256
9257commit f6a69559d64498a04e1e0b087a9b920e5775f866
9258Author: Steven A. Falco <sfalco@harris.com>
9259Date: Thu Jun 12 13:24:42 2008 -0400
9260
9261 cmd_nvedit.c: clean up syntax highlighting
9262
9263 My text-editor (vim) has a bit of trouble syntax-highlighting the
9264 cmd_nvedit.c file, because it apparently does not parse C
9265 ifdef/else/endif. The following patch does not change the behavior of
9266 the code at all, but does allow the editor to properly
9267 syntax-highlight the file.
9268
9269 Signed-off-by: Steve Falco <sfalco@harris.com>
9270
9271commit 75678c807a6272ecc5541eb32898c93887f08400
9272Author: Steven A. Falco <sfalco@harris.com>
9273Date: Thu Jun 12 13:22:12 2008 -0400
9274
9275 Make setenv() return status
9276
9277 Currently, the setenv function does not return an error code.
9278 This patch allows to test for errors.
9279
9280 Signed-off-by: Steve Falco <sfalco@harris.com>
9281
9282commit 4928e97c8531283ca9b368b7c29a8a12e726562a
9283Author: Kumar Gala <galak@kernel.crashing.org>
9284Date: Wed Jun 11 10:14:06 2008 -0500
9285
9286 PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
9287
9288 fls64, __ilog2_u64, ffs64 are variants that work on an u64,
9289 and fls is used to implement them.
9290
9291 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9292
9293commit 83002a77cbdf383015ca384eff5fa31722d8e571
9294Author: Magnus Lilja <lilja.magnus@gmail.com>
9295Date: Mon Jun 9 22:58:48 2008 +0200
9296
9297 i.MX31: Cleanup comments in lowlevel_init.S.
9298
9299 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
9300
9301commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
9302Author: Ben Warren <biggerbadderben@gmail.com>
9303Date: Sun Jun 8 23:28:33 2008 -0700
9304
9305 Move conditional compilation of MPC8XXX SPI driver to Makefile
9306
9307 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9308
9309commit d92ea21bafb674ee2bf27447970b047845e7b0a2
9310Author: Juergen Kilb <J.Kilb@gmx.de>
9311Date: Sun Jun 8 17:59:53 2008 +0200
9312
9313 i.MX31: fixed CTRL-C detection
9314
9315 The Register URXD contains status information in bits [15..8].
9316 With status bit 15 set, CTRL-C was reported as 0x8003 instead
9317 of 0x03. Therefore CTRL-C was not detected.
9318 To solve this, bits [15..8] were masked out now.
9319
9320 Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
9321 Acked-by: Felix Radensky <felix@embedded-sol.com>
9322
Wolfgang Denk699f0512008-07-15 22:22:44 +02009323commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
9324Author: Stefan Roese <sr@denx.de>
9325Date: Tue Jul 1 17:03:19 2008 +0200
9326
9327 ppc4xx: Fix 460EX/GT PCIe port initialization
9328
9329 This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
9330 configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
9331 this out.
9332
9333 Signed-off-by: Stefan Roese <sr@denx.de>
9334
Wolfgang Denkf492dd62008-07-04 20:11:49 +02009335commit b571afde0295b007a45055ee49f8822c753a5651
9336Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9337Date: Sat Jun 7 12:29:52 2008 +0200
9338
9339 add SHA256 support
9340
9341 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9342 Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
9343
9344commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
9345Author: Marian Balakowicz <m8@semihalf.com>
9346Date: Fri Jun 6 23:07:40 2008 +0200
9347
9348 Delay FIT format check on sector based devices
9349
9350 Global FIT image operations like format check cannot be performed on
9351 a first sector data, defer them to the point when whole FIT image was
9352 uploaded to a system RAM.
9353
9354 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
9355 Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
9356 NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
9357
9358commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
9359Author: Dave Liu <r63238@freescale.com>
9360Date: Tue Jun 3 17:38:19 2008 +0800
9361
9362 sata: wait for device updating signature to host
9363
9364 The driver need wait for the device updating signature to host.
9365 If we don't wait for it, the driver can not detect the device(disk)
9366 when the system powers up.
9367
9368 Signed-off-by: Dave Liu <daveliu@freescale.com>
9369
Wolfgang Denk4188f042008-07-10 01:13:30 +02009370commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
9371Author: Stefan Roese <sr@denx.de>
9372Date: Sat Jun 28 14:56:17 2008 +0200
9373
9374 ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
9375
9376 This patch implements a fix provided by AMCC so that the lockup upon
9377 simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
9378 anymore:
9379
9380 Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
9381 (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
9382 USB 2.0 host and SATA.
9383
9384 This errata is not officially available yet. I'll update the comment
9385 to add the errata number later.
9386
9387 Signed-off-by: Stefan Roese <sr@denx.de>
9388
Wolfgang Denkf492dd62008-07-04 20:11:49 +02009389commit 8b616edb118e37d05f6401389eaee1c636b22828
9390Author: Stuart Wood <stuart.wood@labxtechnologies.com>
9391Date: Mon Jun 2 16:42:19 2008 -0400
9392
9393 serial_pl010.c: add watchdog support
9394
9395 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
9396
9397commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
9398Author: Stuart Wood <stuart.wood@labxtechnologies.com>
9399Date: Mon Jun 2 16:40:08 2008 -0400
9400
9401 jffs2_1pass.c: add watchdog support
9402
9403 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
9404
9405commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
9406Author: Sascha Laue <sascha.laue@liebherr.com>
9407Date: Fri May 30 09:48:14 2008 +0200
9408
9409 Configure DSP POST; add watchdog reset to diag command
9410
9411 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
9412
9413commit f13526517859bf6b573e23ff47199e107d1009b5
9414Author: Tor Krill <tor@excito.com>
9415Date: Thu May 29 10:40:17 2008 +0200
9416
9417 Add sata sil3114 support
9418
9419 Signed-off-by: Tor Krill <tor@excito.com>
9420
9421commit e093a247628228100f405b6d7f6b1bfc16141938
9422Author: Wolfgang Denk <wd@denx.de>
9423Date: Sat Jun 28 23:34:37 2008 +0200
9424
9425 Coding Style Cleanup
9426
9427 Signed-off-by: Wolfgang Denk <wd@denx.de>
9428
9429commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
9430Author: Wolfgang Denk <wd@denx.de>
9431Date: Sat Jun 28 23:16:01 2008 +0200
9432
9433 Update CHANGELOG
9434
9435 Signed-off-by: Wolfgang Denk <wd@denx.de>
9436
Wolfgang Denk01db2322008-06-28 23:16:01 +02009437commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
9438Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9439Date: Wed May 21 13:58:41 2008 -0400
9440
9441 ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
9442
9443 This patch adds support for the Lyrtech SFF-SDR board,
9444 based on the TI DaVinci architecture (ARM926EJS).
9445
9446 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9447 Signed-off-by: Philip Balister <philip@balister.org>
9448 Signed-off-by: Wolfgang Denk <wd@denx.de>
9449
9450commit 341188b9ccaa8d4462d772cc067aca8d7618633a
9451Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9452Date: Thu May 22 11:09:59 2008 +0200
9453
9454 MMC: Consolidate MMC/SD command definitions
9455
9456 This moves the MMC and SD Card command definitions from
9457 include/asm/arch/mmc.h into include/mmc.h. These definitions are
9458 given by the MMC and SD Card standards, not by any particular
9459 architecture.
9460
9461 There's a lot more room for consolidation in the MMC drivers which
9462 I'm hoping to get done eventually, but this patch is a start.
9463
9464 Compile-tested for all avr32 boards as well as lpc2292sodimm and
9465 lubbock. This should cover all three mmc drivers in the tree.
9466
9467 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9468
9469commit fa60edfc4c952626e048c0e065f654b3c1822fa5
9470Author: Kyungmin Park <kmpark@infradead.org>
9471Date: Wed May 21 14:38:08 2008 +0900
9472
9473 Use better Ethernet timings for apollon board
9474
9475 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9476
9477commit 41c5eaa7253ed82bbae1eda5667755872c615164
9478Author: Andy Fleming <afleming@freescale.com>
9479Date: Mon Jun 16 13:58:56 2008 -0500
9480
9481 Resize device tree to allow space for board changes and the chosen node
9482
9483 Current code requires that a compiled device tree have space added to the end to
9484 leave room for extra nodes added by board code (and the chosen node). This
9485 requires that device tree creators anticipate how much space U-Boot will add to
9486 the tree, which is absurd. Ideally, the code would resize and/or relocate the
9487 tree when it needed more space, but this would require a systemic change to the
9488 fdt code, which is non-trivial. Instead, we resize the tree inside
9489 boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
9490 where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
9491
9492 Signed-off-by: Andy Fleming <afleming@freescale.com>
9493
9494commit 7570a9941fc565922078679a72d246fe208d696d
9495Author: Andy Fleming <afleming@freescale.com>
9496Date: Mon Jun 16 13:58:55 2008 -0500
9497
9498 Fix an underflow bug in __lmb_alloc_base
9499
9500 __lmb_alloc_base can underflow if it fails to find free space. This was fixed
9501 in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc. This patch
9502 merely updates __lmb_alloc_base to resemble the current version in Linux.
9503
9504 Signed-off-by: Andy Fleming <afleming@freescale.com>
9505
9506commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
9507Author: Andy Fleming <afleming@freescale.com>
9508Date: Mon Jun 16 13:58:54 2008 -0500
9509
9510 Add lmb_free
9511
9512 lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
9513 lmb_reserve to temporarily reserve some memory.
9514
9515 Signed-off-by: Andy Fleming <afleming@freescale.com>
9516
9517commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
9518Author: Andy Fleming <afleming@freescale.com>
9519Date: Mon Jun 16 13:58:53 2008 -0500
9520
9521 Add ALIGN() macro
9522
9523 ALIGN() returns the smallest aligned value greater than the passed
9524 in address or size. Taken from Linux.
9525
9526 Signed-off-by: Andy Fleming <afleming@freescale.com>
9527
Wolfgang Denk4188f042008-07-10 01:13:30 +02009528commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
9529Author: Stefan Roese <sr@denx.de>
9530Date: Tue Jun 24 17:15:22 2008 +0200
9531
9532 ppc4xx: Fix compilation problems with phys_size_t
9533
9534 This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
9535 board specific files where it has been missing.
9536
9537 Signed-off-by: Stefan Roese <sr@denx.de>
9538
Wolfgang Denk01db2322008-06-28 23:16:01 +02009539commit 28eab0d77352b84885f938759bf2612b7bf0bc44
9540Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
9541Date: Mon May 19 12:26:38 2008 +0200
9542
9543 Conditionally add -fno-stack-protector to CFLAGS
9544
9545 When compile-testing on powerpc, I get errors like this:
9546
9547 net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
9548
9549 This seems to be because -fstack-protector is on by default, so
9550 let's explicitly disable it on all architectures that support the
9551 option.
9552
9553 The Ubuntu toolchain is affected by this problem, and according to
9554 Mike Frysinger, Gentoo has been running with SSP enabled for years.
9555 More and more distros are turning SSP on by default, so this problem
9556 is likely to get worse in the future.
9557
9558 Also, powerpc just happens to be one of the arches I do
9559 compile-testing on. There may be other arches affected by this too.
9560
9561 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
9562
9563commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
9564Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9565Date: Sun May 18 19:09:52 2008 +0200
9566
9567 pcmcia/ti_pci1410a: Move compile condition to the Makefile
9568
9569 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9570
9571commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
9572Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9573Date: Sun May 18 19:09:51 2008 +0200
9574
9575 pxa_pcmcia: Move compile condition to the Makefile
9576
9577 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9578
9579commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
9580Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9581Date: Sun May 18 19:09:50 2008 +0200
9582
9583 marabun_pcmcia: Move compile condition to the Makefile
9584
9585 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9586
Wolfgang Denk4188f042008-07-10 01:13:30 +02009587commit 6a19c46cae43c16c528eddefae3db97134f1915d
9588Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9589Date: Mon Jun 23 13:25:34 2008 +0200
9590
9591 fix non-working mvBL-M7
9592
9593 Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
9594
9595 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9596 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9597
9598commit 846f1574ddddeda2bc227655e687308695f41cdc
9599Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9600Date: Mon Jun 23 11:40:56 2008 +0200
9601
9602 fix system config overwrite @ MPC834x and MPC8313
9603
9604 During 83xx setup the "System I/O configuration register high" gets
9605 overwritten with user defined value if CFG_SICRH is defined.
9606
9607 Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
9608 must keep their reset value regardless of configuration.
9609
9610 On my board (using RGMII) those bits are set after reset - yet it's
9611 unclear where they come from.
9612
9613 The patch keeps both bits on MPC834x and MPC8313.
9614
9615 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9616 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9617
9618commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
9619Author: Kim Phillips <kim.phillips@freescale.com>
9620Date: Tue Jun 17 17:45:27 2008 -0500
9621
9622 mpc83xx: move CPU_TYPE_ENTRY over to processor.h
9623
9624 to avoid this:
9625
9626 cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
9627 In file included from cpu.c:33:
9628 /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
9629
9630 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9631
9632commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
9633Author: Stefan Roese <sr@denx.de>
9634Date: Mon Jun 23 11:15:09 2008 +0200
9635
9636 ppc4xx: Fix problem in gpio_config()
9637
9638 As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
9639 left by one. So the additional shift is bogus.
9640
9641 Signed-off-by: Stefan Roese <sr@denx.de>
9642
9643commit 40777812316fc252c941665c0f60c148fd79d50f
9644Author: Detlev Zundel <dzu@denx.de>
9645Date: Fri Jun 20 22:24:05 2008 +0200
9646
9647 fdt: Fix typo in variable name.
9648
9649 Signed-off-by: Detlev Zundel <dzu@denx.de>
9650
9651commit 5f723a3b98c630bde33de74351f2121691fdef14
9652Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9653Date: Fri Jun 20 10:41:05 2008 +0200
9654
9655 avr32: Enable SPI flash support on ATNGW100
9656
9657 The ATNGW100 has 8MB DataFlash on board. Give users access to it through
9658 the new SPI flash framework.
9659
9660 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9661
9662commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
9663Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9664Date: Fri Jun 20 12:44:28 2008 +0200
9665
9666 avr32: Fix SPI portmux initialization
9667
9668 Use the new GPIO manipulation functions to set up the chip select lines,
9669 and make sure both busses use GPIO for chip select control.
9670
9671 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9672
9673commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
9674Author: Peter Ma <pma@mediamatech.com>
9675Date: Sun Jun 1 22:59:24 2008 -0700
9676
9677 avr32: Add GPIO manipulation functions
9678
9679 Adds GPIO manipulation functions for AVR32 AP7 platform.
9680
9681 Signed-off-by: Peter Ma <pma@mediamatech.com>
9682 [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
9683 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9684
Wolfgang Denk01db2322008-06-28 23:16:01 +02009685commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
9686Author: Wolfgang Grandegger <wg@grandegger.com>
9687Date: Thu Jun 5 13:02:30 2008 +0200
9688
9689 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
9690
9691 This patch is based on the following patch sent a few minutes ago:
9692 "NAND FSL UPM: driver re-write using the hwcontrol callback"
9693 It is untested, of course. Anton, could you please give it a try.
9694
9695 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
9696 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9697
9698commit 96026d42fa4e646d28318c0a1438aac4b2017909
9699Author: Anatolij Gustschin <agust@denx.de>
9700Date: Thu Jun 12 12:40:11 2008 +0200
9701
9702 Fix 4xx build issue
9703
9704 Building for 4xx doesn't work since commit 4dbdb768:
9705
9706 In file included from 4xx_pcie.c:28:
9707 include/asm/processor.h:971: error: expected ')' before 'ver'
9708 make[1]: *** [4xx_pcie.o] Error 1
9709
9710 This patch fixes the problem.
9711
9712 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9713 Acked-by: Stefan Roese <sr@denx.de>
9714 Acked-by: Kumar Gala <galak@kernel.crashing.org>
9715
Wolfgang Denk699f0512008-07-15 22:22:44 +02009716commit a036b0443657fe0f4773786de9092251869f08ac
9717Author: Kumar Gala <galak@kernel.crashing.org>
9718Date: Thu Jun 19 01:45:50 2008 -0500
9719
9720 MPC8610HPCD: Report board id, board version and fpga version.
9721
9722 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9723
9724commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
9725Author: Kumar Gala <galak@kernel.crashing.org>
9726Date: Thu Jun 19 01:45:27 2008 -0500
9727
9728 MPC8641HPCN: Report board id, board version and fpga version.
9729
9730 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9731
Wolfgang Denk01db2322008-06-28 23:16:01 +02009732commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
9733Author: Stefan Roese <sr@denx.de>
9734Date: Mon Jun 16 10:40:02 2008 +0200
9735
9736 cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
9737
9738 This patch simplifies flash_toggle() (AMD commandset), which is used to
9739 detect if a FLASH device is still busy with erase/program operations. On
9740 800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
9741 did not detect the busy state reliably, resulting in non erased sectors
9742 etc. This patch now simplifies this function by "just" comparing the
9743 complete data-word instead of ANDing it with the command-word (0x40)
9744 before the compatison. It is done the same way in the Linux implementation
9745 chip_ready() in cfi_cmdset_0002.c.
9746
9747 Signed-off-by: Stefan Roese <sr@denx.de>
9748
9749commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
9750Author: Philip Balister <philip@balister.org>
9751Date: Mon Jun 16 08:58:07 2008 -0400
9752
9753 NAND: Add missing declaration to non-redundant saveenv().
9754
9755 Signed-off-by: Scott Wood <scottwood@freescale.com>
9756
9757commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
9758Author: Wolfgang Grandegger <wg@grandegger.com>
9759Date: Mon Jun 2 15:09:55 2008 +0200
9760
9761 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
9762
9763 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
9764 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9765 Signed-off-by: Scott Wood <scottwood@freescale.com>
9766
9767commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
9768Author: Stefan Roese <sr@denx.de>
9769Date: Tue Jun 10 15:34:11 2008 +0200
9770
9771 ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
9772
9773 This patch disables the square wave output of the M41T62 RTC used on
9774 Canyonlands & Glacier. Here the explanation:
9775
9776 The serial real-time clock part used in the design is an
9777 STMicro M41T62. This part has a full-time 32KHz square wave
9778 output that is connected to the TmrClk input to the
9779 processor. The default state for this square wave output is
9780 enabled so the output runs continuously when the board is
9781 powered normally and also from the battery. The TmrClk input
9782 to the processor goes to ground when the power is removed
9783 from the board/processor, and therefore the running square
9784 wave output is driving ground which drains the battery quickly.
9785
9786 Signed-off-by: Stefan Roese <sr@denx.de>
9787
9788commit a94f22f08f280905926219e568568964cb9eeb9d
9789Author: Andy Fleming <afleming@freescale.com>
9790Date: Wed Jun 11 18:10:20 2008 -0500
9791
9792 Fix build issue with string.h and linux/string.h
9793
9794 This commit:
9795 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
9796 Author: Wolfgang Denk <wd@denx.de>
9797 Date: Fri Jun 6 14:28:14 2008 +0200
9798
9799 tools/mkimage: fix compiler warnings on some systems.
9800
9801 Broke building on some systems, because the host's string.h was interfering
9802 with u-boot's linux/string.h. It doesn't look like we need the u-boot one if
9803 we're building for the host, so now we only include when building inside
9804 u-boot.
9805
9806 Signed-off-by: Andy Fleming <afleming@freescale.com>
9807
9808commit 9973e3c614721bbf169882ffc3be266a6611cd60
9809Author: Becky Bruce <becky.bruce@freescale.com>
9810Date: Mon Jun 9 16:03:40 2008 -0500
9811
9812 Change initdram() return type to phys_size_t
9813
9814 This patch changes the return type of initdram() from long int to phys_size_t.
9815 This is required for a couple of reasons: long int limits the amount of dram
9816 to 2GB, and u-boot in general is moving over to phys_size_t to represent the
9817 size of physical memory. phys_size_t is defined as an unsigned long on almost
9818 all current platforms.
9819
9820 This patch *only* changes the return type of the initdram function (in
9821 include/common.h, as well as in each board's implementation of initdram). It
9822 does not actually modify the code inside the function on any of the platforms;
9823 platforms which wish to support more than 2GB of DRAM will need to modify
9824 their initdram() function code.
9825
9826 Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
9827 MPC8641HPCN.
9828
9829 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9830
9831commit 391fd93ab23e15ab3dd58a54f5b609024009c378
9832Author: Becky Bruce <becky.bruce@freescale.com>
9833Date: Mon Jun 9 20:37:18 2008 -0500
9834
9835 Change lmb to use phys_size_t/phys_addr_t
9836
9837 This updates the lmb code to use phys_size_t
9838 and phys_addr_t instead of unsigned long. Other code
9839 which interacts with this code, like getenv_bootm_size()
9840 is also updated.
9841
9842 Booted on MPC8641HPCN, build-tested ppc, arm, mips.
9843
9844 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9845
9846commit 61b09fc2952dc636017df4e7970e3de132276ba1
9847Author: Becky Bruce <becky.bruce@freescale.com>
9848Date: Mon Jun 9 20:37:17 2008 -0500
9849
9850 Change print_size to take phys_size_t
9851
9852 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9853
9854commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
9855Author: Becky Bruce <becky.bruce@freescale.com>
9856Date: Mon Jun 9 20:37:16 2008 -0500
9857
9858 Change bd/gd memsize/ram_size to be phys_size_t.
9859
9860 Currently, both are defined as an unsigned long, but
9861 should be phys_size_t. This should result in no real change,
9862 since phys_size_t is currently an unsigned long for all the
9863 default configs. Also add print_lnum to cmd_bdinfo to deal
9864 with the potentially wider memsize.
9865
9866 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9867
9868commit ba04f7010958e88a8910f2a123fee53fdc72e013
9869Author: Kumar Gala <galak@kernel.crashing.org>
9870Date: Tue Jun 10 16:16:02 2008 -0500
9871
9872 FSL LAW: Add new interface to use the last free LAW
9873
9874 LAWs have the concept of priority so its useful to be able to allocate
9875 the lowest (highest number) priority. We will end up using this with the
9876 new DDR code.
9877
9878 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9879
9880commit 859a86a25c569d3665ff413d1d923394b8a961f3
9881Author: Kumar Gala <galak@kernel.crashing.org>
9882Date: Wed Jun 11 00:51:45 2008 -0500
9883
9884 85xx/86xx: Move to dynamic mgmt of LAWs
9885
9886 With the new LAW interface (set_next_law) we can move to letting the
9887 system allocate which LAWs are used for what purpose. This makes life
9888 a bit easier going forward with the new DDR code.
9889
9890 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9891 Signed-off-by: Andy Fleming <afleming@freescale.com>
9892 Acked-by: Jon Loeliger <jdl@freescale.com>
9893 Acked-by: Becky Bruce <becky.bruce@freescale.com>
9894
9895commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
9896Author: Kumar Gala <galak@kernel.crashing.org>
9897Date: Wed Jun 11 00:44:10 2008 -0500
9898
9899 FSL LAW: Keep track of LAW allocations
9900
9901 Make it so we keep track of which LAWs have allocated and provide
9902 a function (set_next_law) which can allocate a LAW for us if one is
9903 free.
9904
9905 In the future we will move to doing more "dynamic" LAW allocation
9906 since the majority of users dont really care about what LAW number
9907 they are at.
9908
9909 Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
9910
9911 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9912 Signed-off-by: Andy Fleming <afleming@freescale.com>
9913
9914commit ddde74a159caa6e18b481fec01d40b885aebb566
9915Author: Kumar Gala <galak@kernel.crashing.org>
9916Date: Mon Jun 9 22:31:57 2008 -0500
9917
9918 85xx: remove dummy board_early_init_f
9919
9920 A number of board ports have empty version of board_early_init_f
9921 for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
9922
9923 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9924
9925commit 81e56e9af0d43712db8efb843606a8d62eab454f
9926Author: Kumar Gala <galak@kernel.crashing.org>
9927Date: Mon Jun 9 18:55:38 2008 -0500
9928
9929 MPC8544DS: Update config.h
9930
9931 * Enable flash progress
9932 * remove CLEAR_LAW0 since we dont really use it
9933
9934 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9935
9936commit 978e81604c1b28526ed580df0fbe64eb8384e94f
9937Author: Kumar Gala <galak@kernel.crashing.org>
9938Date: Mon Jun 9 13:37:24 2008 -0500
9939
9940 85xx: Remove unused and unconfigured memory test code.
9941
9942 Remove unused and unconfigured DDR test code from FSL 85xx boards.
9943 Besides, other common code exists.
9944
9945 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9946
9947commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
9948Author: Sergei Poselenov <sposelenov@emcraft.com>
9949Date: Fri Jun 6 15:42:45 2008 +0200
9950
9951 Socrates: Added FPGA base address update in FDT.
9952
9953 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9954
9955commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
9956Author: Sergei Poselenov <sposelenov@emcraft.com>
9957Date: Fri Jun 6 15:42:44 2008 +0200
9958
9959 Socrates: NAND support added. Changed the U-Boot base address and
9960
9961 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9962
9963commit 248ae5cfc8bf69074d1da099dc495d8e06070547
9964Author: Sergei Poselenov <sposelenov@emcraft.com>
9965Date: Fri Jun 6 15:42:43 2008 +0200
9966
9967 NAND: Added support for 128-bit OOB, adapted
9968
9969 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9970
9971commit 31ca0208612f2eb57690110d7c2815953650e47b
9972Author: Sergei Poselenov <sposelenov@emcraft.com>
9973Date: Fri Jun 6 15:42:42 2008 +0200
9974
9975 Socrates: added missed file with UPMA configuration data.
9976
9977 Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
9978
9979commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
9980Author: Sergei Poselenov <sposelenov@emcraft.com>
9981Date: Fri Jun 6 15:42:41 2008 +0200
9982
9983 Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
9984
9985 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9986
9987commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
9988Author: Sergei Poselenov <sposelenov@emcraft.com>
9989Date: Fri Jun 6 15:42:40 2008 +0200
9990
9991 Added the upmconfig() function for 85xx.
9992
9993 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
9994 Signed-off-by: Andy Fleming <afleming@freescale.com>
9995
9996commit d39e68514ff943930ee692cff3fde03532eb7fec
9997Author: Sergei Poselenov <sposelenov@emcraft.com>
9998Date: Fri Jun 6 15:42:39 2008 +0200
9999
10000 Socrates: config file cleanup.
10001
10002 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
10003
10004commit e8cc3f04b124f757af4528206e60d8eb715ae083
10005Author: Wolfgang Grandegger <wg@grandegger.com>
10006Date: Thu Jun 5 13:12:10 2008 +0200
10007
10008 TQM85xx: Change memory map to support Flash memory > 128 MiB
10009
10010 Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
10011 memory. The current memory map only supports up to 128 MiB Flash.
10012 This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
10013 set, up to 1 GiB flash is supported. To achieve this, the memory
10014 map has to be adjusted in great parts (for example the CCSRBAR is
10015 moved from 0xE0000000 to 0xA0000000).
10016
10017 If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
10018 memory map also has to be considered in the kernel (changed
10019 CCSRBAR address, changed PCI IO base address, ...). Please use
10020 an appropriate Flat Device Tree blob (tqm8548.dtb).
10021
10022 Signed-off-by: Martin Krause <martin.krause@tqs.de>
10023 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10024
10025commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
10026Author: Wolfgang Grandegger <wg@grandegger.com>
10027Date: Thu Jun 5 13:12:09 2008 +0200
10028
10029 TQM85xx: NAND support via local bus UPMB
10030
10031 This patch adds support for NAND FLASH on the TQM8548. It is disabled by
10032 default and can be enabled for the TQM8548 modules. It is now based on
10033 the re-written FSL NAND UPM driver. A patch has been posted earlier today
10034 with the subject:
10035
10036 "NAND FSL UPM: driver re-write using the hwcontrol callback"
10037
10038 Note that the R/B pin is not supported by that module requiring to use
10039 the specified maximum delay time.
10040
10041 Note: With NAND support enabled the size of the U-Boot image exceeds
10042 256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
10043 doubling the image size :-(.
10044
10045 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
10046 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10047
10048commit b9e8078bb3f3c48111a7081e27279938c3a445e1
10049Author: Wolfgang Grandegger <wg@grandegger.com>
10050Date: Thu Jun 5 13:12:08 2008 +0200
10051
10052 TQM8548: PCI express support
10053
10054 This patch adds support for PCI express cards. The board support
10055 now uses common FSL PCI init code, for both, PCI and PCIe on all
10056 TQM85xx modules.
10057
10058 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
10059 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10060
10061commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
10062Author: Wolfgang Grandegger <wg@grandegger.com>
10063Date: Thu Jun 5 13:12:07 2008 +0200
10064
10065 TQM8548: Basic support for the TQM8548 modules
10066
10067 This patch adds basic support for the TQM8548 module from TQ-Components
10068 (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
10069 eTSEC 3 and 4
10070
10071 Furthermore Flash buffer write has been enabled to speed up output to
10072 the Flash by approx. a factor of 10.
10073
10074 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
10075 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10076
10077commit 25991353204c78b094c3c1fec90182dcd607ab8f
10078Author: Wolfgang Grandegger <wg@grandegger.com>
10079Date: Thu Jun 5 13:12:06 2008 +0200
10080
10081 TQM85xx: Support for Flat Device Tree
10082
10083 This patch adds support for Linux kernels using the Flat Device Tree.
10084 It also re-defines the default environment settings for booting Linux
10085 with the FDT blob.
10086
10087 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10088
10089commit d9ee843d54c54776e1fdb86336ce554906a87331
10090Author: Wolfgang Grandegger <wg@grandegger.com>
10091Date: Thu Jun 5 13:12:05 2008 +0200
10092
10093 TQM85xx: Support for Intel 82527 compatible CAN controller
10094
10095 This patch adds initialization of the UPMC RAM to support up to two
10096 Intel 82527 compatible CAN controller on the TQM85xx modules.
10097
10098 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
10099 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10100
10101commit 518d5cfe72916323c746af1647764459914f555f
10102Author: Wolfgang Grandegger <wg@grandegger.com>
10103Date: Thu Jun 5 13:12:04 2008 +0200
10104
10105 TQM85xx: Bugfix in the SDRAM initialisation
10106
10107 The CS0_BNDS register is now set according to the detected
10108 memory size.
10109
10110 Signed-off-by Martin Krause <martin.krause@tqs.de>
10111
10112commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
10113Author: Wolfgang Grandegger <wg@grandegger.com>
10114Date: Thu Jun 5 13:12:03 2008 +0200
10115
10116 TQM85xx: Fix chip select configuration for second FLASH bank
10117
10118 This patch fixes the re-calculation of the automatic chip select
10119 configuration for boards with two populated FLASH banks.
10120
10121 Signed-off-by: Martin Krause <martin.krause@tqs.de>
10122
10123commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
10124Author: Wolfgang Grandegger <wg@grandegger.com>
10125Date: Thu Jun 5 13:12:02 2008 +0200
10126
10127 TQM85xx: Support for Spansion 'N' type flashes added
10128
10129 The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
10130 than the formerly used 'M' types (S29GLxxxM series), so the flash layout
10131 needs to be changed -> new start address of the environment. The macro
10132 definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
10133 defined for boards with 'N' type flashes.
10134
10135 Signed-off-by: Martin Krause <martin.krause@tqs.de>
10136 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10137
10138commit 5d5bd838f76eade22c0ea40a500389f924d0da36
10139Author: Wolfgang Grandegger <wg@grandegger.com>
10140Date: Thu Jun 5 13:12:01 2008 +0200
10141
10142 TQM85xx: Fix CPM port pin configuration
10143
10144 Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
10145 board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
10146 as serial interface anyway. Worse, on some board variants configuring the
10147 pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
10148
10149 Signed-off-by: Martin Krause <martin.krause@tqs.de>
10150
10151commit b99ba1679e8cd51b023e67098c89e606e47137d2
10152Author: Wolfgang Grandegger <wg@grandegger.com>
10153Date: Thu Jun 5 13:12:00 2008 +0200
10154
10155 TQM85xx: Various coding style fixes
10156
10157 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10158
10159commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
10160Author: Gerald Van Baren <vanbaren@cideas.com>
10161Date: Tue Jun 10 22:15:58 2008 -0400
10162
10163 libfdt: Move the working_fdt pointer to cmd_fdt.c
10164
10165 The working_fdt pointer was declared in common/fdt_support.c but was
10166 not used there. Move it to common/cmd_fdt.c where it is used (it is
10167 also used in lib_ppc/bootm.c).
10168
10169 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10170
10171commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
10172Author: Kim Phillips <kim.phillips@freescale.com>
10173Date: Tue Jun 10 11:06:17 2008 -0500
10174
10175 fdt: unshadow global working fdt variable
10176
10177 differentiate with local variables of the same name by renaming the
10178 global 'fdt' variable 'working_fdt'.
10179
10180 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10181
10182commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
10183Author: Andy Fleming <afleming@freescale.com>
10184Date: Tue Jun 10 18:49:34 2008 -0500
10185
10186 socrates: Fix PCI clk fix patch
10187
10188 The submitted patch seems to have been more up-to-date, but an older patch was
10189 already in the repository. This patch encompasses the differences
10190
10191 Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
10192
10193 Signed-off-by: Andy Fleming <afleming@freescale.com>
10194
10195commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
10196Author: Wolfgang Grandegger <wg@grandegger.com>
10197Date: Thu Jun 5 13:02:29 2008 +0200
10198
10199 NAND FSL UPM: driver re-write using the hwcontrol callback
10200
10201 This is a re-write of the NAND FSL UPM driver using the more universal
10202 hwcontrol callback (instead of the cmdfunc callback). Here is a brief
10203 list of furher modifications:
10204
10205 - For the time being, the UPM setup writing the UPM array has been
10206 removed from the driver and must now be done by the board specific
10207 code.
10208
10209 - The bus width definition in "struct fsl_upm_nand" is now in bits to
10210 comply with the corresponding Linux driver and 8, 16 and 32 bit
10211 accesses are supported.
10212
10213 - chip->dev_read is only set if fun->dev_ready != NULL, which is
10214 required for boards not connecting the R/B pin.
10215
10216 - A few issue have been fixed with MxMR bit manipulation like in the
10217 corresponding Linux driver.
10218
10219 Note: I think the "io_addr" field of "struct fsl_upm" could be removed
10220 as well, because the address is already determined by
10221 "nand->IO_ADDR_[RW]", but I'm not 100% sure.
10222
10223 This patch has been tested on a TQM8548 modules with the NAND chip
10224 Micron MT29F8G08FABWP.
10225
10226 This patch is based on the following patches posted to this list a few
10227 minutes ago:
10228
10229 PPC: add accessor macros to clear and set bits in one shot
10230 83xx/85xx/86xx: add more MxMR local bus definitions
10231
10232 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10233 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10234
10235commit 6beecfbb542992eede5831240cd58678274683a9
10236Author: Wolfgang Grandegger <wg@grandegger.com>
10237Date: Thu Jun 5 13:11:59 2008 +0200
10238
10239 MPC85xx: Beautify boot output of L2 cache configuration
10240
10241 The boot output is now aligned poperly with other boot output
10242 lines, e.g.:
10243
10244 FLASH: 128 MB
10245 L2: 512 KB enabled
10246
10247 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10248
10249commit 398415114f0a705163a14543e9fef03f734b1ffa
10250Author: Wolfgang Grandegger <wg@grandegger.com>
10251Date: Wed Jun 4 12:45:22 2008 +0200
10252
10253 PPC: add accessor macros to clear and set bits in one shot
10254
10255 PPC: add accessor macros to clear and set bits in one shot
10256
10257 This patch adds macros from linux/include/asm-powerpc/io.h to clear and
10258 set bits in one shot using the in_be32, out_be32, etc. accessor functions.
10259 They are very handy to manipulate bits it I/O registers.
10260
10261 This patch is required for my forthcoming FSL NAND UPM driver re-write and
10262 the support for the TQM8548 module.
10263
10264 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10265
10266commit 4677988c7edc070c3786d3db7994abeca3ab82a0
10267Author: Wolfgang Grandegger <wg@grandegger.com>
10268Date: Wed Jun 4 13:52:17 2008 +0200
10269
10270 TQM: move TQM boards to board/tqc
10271
10272 Move all TQM board directories to the vendor specific directory "tqc"
10273 for modules from TQ-Components GmbH (http://www.tqc.de).
10274
10275 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10276
10277commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
10278Author: Wolfgang Grandegger <wg@grandegger.com>
10279Date: Mon Jun 2 12:09:30 2008 +0200
10280
10281 83xx/85xx/86xx: add more MxMR local bus definitions
10282
10283 83xx/85xx/86xx: add more MxMR local bus definitions
10284
10285 This patch adds more macro definitions for the UPM Machine Mode Registers
10286 They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
10287 common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
10288 required for my forthcoming FSL NAND UPM driver re-write and the support
10289 for the TQM8548 module.
10290
10291 This patch is based on the following two patches from Anton Vorontsov:
10292
10293 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
10294 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
10295
10296 I leave coding style violation fixes, code beautification and name
10297 corrections to somebody else ;-(.
10298
10299 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
10300
10301commit c8c5fc266e4499e283c293ccb972863156aa4134
10302Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10303Date: Thu May 29 18:14:56 2008 +0400
10304
10305 83xx/85xx: further localbus cleanups
10306
10307 Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
10308 from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
10309
10310 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10311
10312commit 42dbd667c88d496882d53e22656e89b654205492
10313Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10314Date: Wed May 28 18:20:15 2008 +0400
10315
10316 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
10317
10318 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
10319 use it on MPC85xx and MPC86xx processors.
10320
10321 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10322
10323commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
10324Author: Kumar Gala <galak@kernel.crashing.org>
10325Date: Thu May 29 11:22:06 2008 -0500
10326
10327 85xx: Add setting of cache props in the device tree.
10328
10329 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10330
10331commit 4dbdb7681e243431530df0725627192a0c4aefda
10332Author: Kumar Gala <galak@kernel.crashing.org>
10333Date: Tue Jun 10 16:53:46 2008 -0500
10334
10335 85xx: expose cpu identification
10336
10337 The current cpu identification code is used just to return the name
10338 of the processor at boot. There are some other locations that the name
10339 is useful (device tree setup). Expose the functionality to other bits
10340 of code.
10341
10342 Also, drop the 'E' suffix and add it on by looking at the SVR version
10343 when we print this out. This is mainly to allow the most flexible use
10344 of the name. The device tree code tends to not care about the 'E' suffix.
10345
10346 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10347
10348commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
10349Author: Kim Phillips <kim.phillips@freescale.com>
10350Date: Tue Jun 10 13:25:24 2008 -0500
10351
10352 mpc83xx: MVBLM7: minor build fixups
10353
10354 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10355
10356commit a1293e549b56da135ef32ffca5b9d35a16aa6802
10357Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
10358Date: Tue Jun 10 09:14:05 2008 +0200
10359
10360 add MPC8343 based board mvBlueLYNX-M7 (board+make files)
10361
10362 Add MPC8343 based board mvBlueLYNX-M7.
10363 It's a single board stereo camera system.
10364 Please read doc/README.mvblm7 for details.
10365
10366 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
10367 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10368
10369commit c005b93925ba49f07da2aa748527996d927e172f
10370Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
10371Date: Tue Jun 10 09:13:16 2008 +0200
10372
10373 add MPC8343 based board mvBlueLYNX-M7 (doc+config)
10374
10375 Add MPC8343 based board mvBlueLYNX-M7.
10376 It's a single board stereo camera system.
10377 Please read doc/README.mvblm7 for details.
10378
10379 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
10380 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10381
10382commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
10383Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10384Date: Thu May 29 18:14:56 2008 +0400
10385
10386 83xx/85xx: further localbus cleanups
10387
10388 move the BRx_* and ORx_* left behind in mpc85xx.h
10389
10390 The same is needed for mpc8xx.h and mpc8260.h (defines are almost
10391 the same, just few differences which needs some attention though).
10392
10393 But the bad news for mpc8xx and mpc8260 is that there are a lot of users
10394 of these defines. So this cleanup I'll leave for the "better times".
10395
10396 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10397 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10398
10399commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
10400Author: Anton Vorontsov <avorontsov@ru.mvista.com>
10401Date: Wed May 28 18:20:15 2008 +0400
10402
10403 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
10404
10405 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
10406 use it on MPC85xx and MPC86xx processors.
10407
10408 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
10409 Acked-by: Andy Fleming <afleming@freescale.com>
10410 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10411
10412commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
10413Author: Tor Krill <tor@excito.com>
10414Date: Mon Jun 2 15:09:30 2008 +0200
10415
10416 Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
10417
10418 Signed-off-by: Tor Krill <tor@excito.com>
10419 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10420
10421commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
10422Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10423Date: Mon Jun 9 23:37:44 2008 +0900
10424
10425 net: Conditional COBJS inclusion of network drivers
10426
10427 Replace COBJS-y with appropriate driver config names.
10428
10429 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10430 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10431
10432commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
10433Author: Gerald Van Baren <vanbaren@cideas.com>
10434Date: Mon Jun 9 21:02:17 2008 -0400
10435
10436 Use strncmp() for the fdt command
10437
10438 Cleaner than doing multiple conditionals on characters.
10439
10440 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10441
10442commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
10443Author: Gerald Van Baren <vanbaren@cideas.com>
10444Date: Sat Jun 7 12:25:05 2008 -0400
10445
10446 The fdt boardsetup command criteria was not unique
10447
10448 It was checking just for "b", which is not unique with respect to the
10449 "boot" command. Change to check for "boa"[rdsetup].
10450
10451 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10452
10453commit 2f08bfa9526bae4f461e043530cfb903fec0d273
10454Author: David Gibson <david@gibson.dropbear.id.au>
10455Date: Tue May 20 17:19:11 2008 +1000
10456
10457 libfdt: Several cleanups to parameter checking
10458
10459 This patch makes a couple of small cleanups to parameter checking of
10460 libfdt functions.
10461
10462 - In several functions which take a node offset, we use an
10463 idiom involving fdt_next_tag() first to check that we have indeed been
10464 given a node offset. This patch adds a helper function
10465 _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
10466
10467 - In fdt_rw.c in several places we have the expanded version
10468 of the RW_CHECK_HEADER() macro for no particular reason. This patch
10469 replaces those instances with an invocation of the macro; that's what
10470 it's for.
10471
10472 - In fdt_sw.c we rename the check_header_sw() function to
10473 sw_check_header() to match the analgous function in fdt_rw.c, and we
10474 provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
10475 functions in fdt_rw.c
10476
10477 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
10478
10479commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
10480Author: Gerald Van Baren <vanbaren@cideas.com>
10481Date: Tue Jun 3 20:34:45 2008 -0400
10482
10483 Remove the deprecated CONFIG_OF_FLAT_TREE
10484
10485 Use CONFIG_OF_LIBFDT instead to support flattened device trees. It is
10486 cleaner, has better functionality, and is better supported.
10487
10488 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10489
10490commit 62bcdda293efa752f8281fbd9da03822b27ce82f
10491Author: Gerald Van Baren <vanbaren@cideas.com>
10492Date: Tue Jun 3 20:26:29 2008 -0400
10493
10494 Change the stxxst to CONFIG_OF_LIBFDT
10495
10496 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
10497 to CONFIG_OF_LIBFDT.
10498
10499 WARNING: It appears that this board lost its ability to boot via a
10500 flattened device tree prior to this changeset.
10501
10502 WARNING: This conversion was untested because I do not have a board to
10503 test it on.
10504
10505 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10506
10507commit 589c04271d129729a8b01391453851ab9cc4069c
10508Author: Gerald Van Baren <vanbaren@cideas.com>
10509Date: Tue Jun 3 20:24:58 2008 -0400
10510
10511 Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
10512
10513 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
10514 to CONFIG_OF_LIBFDT.
10515
10516 WARNING: This conversion is untested because I do not have a board to
10517 test it on.
10518
10519 NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
10520 /aliases/ethernet1 property for the ethernet to work.
10521
10522 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
10523
10524commit ee1e35bede91debc8bff9b02f75574486033b652
10525Author: Kumar Gala <galak@kernel.crashing.org>
10526Date: Thu May 29 01:21:24 2008 -0500
10527
10528 85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
10529
10530 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10531
10532commit 3b9519fc50802436e417c839e69df7b2016cade5
10533Author: Becky Bruce <becky.bruce@freescale.com>
10534Date: Wed May 14 13:10:04 2008 -0500
10535
10536 MPC85xx: Change traps.c to not reference non-addressable memory
10537
10538 Currently, END_OF_RAM is used by the trap code to determine if
10539 we should attempt to access the stack pointer or not. However,
10540 on systems with a lot of RAM, only a subset of the RAM is
10541 guaranteed to be mapped in and accessible. Change END_OF_RAM
10542 to use get_effective_memsize() instead of using the raw ram
10543 size out of the bd.
10544
10545 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
10546
10547commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
10548Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10549Date: Mon Jun 9 13:39:57 2008 +0900
10550
10551 sh: Renesas Solutions SH7763RDP board support
10552
10553 SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
10554 In this patch, support SCIF, NOR Flash, and Ethernet.
10555
10556 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10557 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10558
10559commit 60179098a95eaa972007d7ec58e4c1588029720f
10560Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10561Date: Fri Jun 6 16:24:13 2008 +0900
10562
10563 sh: Add support Renesas SH7763
10564
10565 Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
10566 This patch supprts CPU register's header file.
10567
10568 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10569 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10570
10571commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
10572Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10573Date: Fri Jun 6 16:16:08 2008 +0900
10574
10575 sh: SH7763 SCIF support
10576
10577 SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
10578 but only SCIF2 is different. This patch work all SCIF channel.
10579
10580 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10581 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10582
10583commit 79b51ff8205f0354d5300570614c1d2db499679c
10584Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10585Date: Sat Jun 7 20:51:59 2008 +0900
10586
10587 [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
10588
10589 Also get rid of some #ifdefs in *.c files.
10590
10591 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10592
10593commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
10594Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10595Date: Sat Jun 7 20:51:56 2008 +0900
10596
10597 [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
10598
10599 CONFIG_SOC_AU1X00
10600
10601 Common Alchemy Au1x00 stuff. All Alchemy processor based machines
10602 need to have this config as a system type specifier.
10603
10604 CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
10605 CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
10606
10607 Machine type specifiers. Each port should have one of aboves.
10608
10609 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10610
10611commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
10612Author: Stuart Wood <stuart.wood@labxtechnologies.com>
10613Date: Fri May 30 16:05:28 2008 -0400
10614
10615 env_nand.c: Added bad block management for environment variables
10616
10617 Modified to check for bad blocks and to skipping over them when
10618 CFG_ENV_RANGE has been defined.
10619 CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
10620 flash block size.
10621
10622 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
10623 Signed-off-by: Scott Wood <scottwood@freescale.com>
10624
10625commit 279726bd00558e80263d44581c44167625b7fb9a
10626Author: Becky Bruce <becky.bruce@freescale.com>
10627Date: Wed May 14 13:09:58 2008 -0500
10628
10629 MPC86xx: Change traps.c to not reference non-addressable memory
10630
10631 Currently, END_OF_RAM is used by the trap code to determine if
10632 we should attempt to access the stack pointer or not. However,
10633 on systems with a lot of RAM, only a subset of the RAM is
10634 guaranteed to be mapped in and accessible. Change END_OF_RAM
10635 to use get_effective_memsize() instead of using the raw ram
10636 size out of the bd to prevent us from trying to access
10637 non-mapped memory.
10638
10639 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
10640
10641commit 338cc038461a6c7709c5b86fd9a240209338a1ae
10642Author: Wolfgang Denk <wd@denx.de>
10643Date: Fri Jun 6 14:28:14 2008 +0200
10644
10645 tools/mkimage: fix compiler warnings on some systems.
10646
10647 Signed-off-by: Wolfgang Denk <wd@denx.de>
10648
10649commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
10650Author: Stefan Roese <sr@denx.de>
10651Date: Fri Jun 6 16:10:41 2008 +0200
10652
10653 ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
10654
10655 We use upper case letters for the AMCC processor defines (like
10656 CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
10657 not CONFIG_440SPe. This patch fixes the last misspelled config options.
10658
10659 Signed-off-by: Stefan Roese <sr@denx.de>
10660
10661commit 72675dc6c06a48846d180106161d49dd714383cc
10662Author: Stefan Roese <sr@denx.de>
10663Date: Fri Jun 6 15:55:21 2008 +0200
10664
10665 ppc4xx: Unify AMCC's board config files (part 3/3)
10666
10667 This patch series unifies the AMCC eval board ports by introducing
10668 a common include header for all AMCC eval boards:
10669
10670 include/configs/amcc-common.h
10671
10672 This header now includes all common configuration options/defines which
10673 are removed from the board specific headers.
10674
10675 The reason for this is ease of maintenance and unified look and feel
10676 of all AMCC boards.
10677
10678 Signed-off-by: Stefan Roese <sr@denx.de>
10679
10680commit 490f204096d6e2c9940f67816f154a8125bab116
10681Author: Stefan Roese <sr@denx.de>
10682Date: Fri Jun 6 15:55:03 2008 +0200
10683
10684 ppc4xx: Unify AMCC's board config files (part 2/3)
10685
10686 This patch series unifies the AMCC eval board ports by introducing
10687 a common include header for all AMCC eval boards:
10688
10689 include/configs/amcc-common.h
10690
10691 This header now includes all common configuration options/defines which
10692 are removed from the board specific headers.
10693
10694 The reason for this is ease of maintenance and unified look and feel
10695 of all AMCC boards.
10696
10697 Signed-off-by: Stefan Roese <sr@denx.de>
10698
10699commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
10700Author: Stefan Roese <sr@denx.de>
10701Date: Fri Jun 6 15:54:31 2008 +0200
10702
10703 ppc4xx: Unify AMCC's board config files (part 1/3)
10704
10705 This patch series unifies the AMCC eval board ports by introducing
10706 a common include header for all AMCC eval boards:
10707
10708 include/configs/amcc-common.h
10709
10710 This header now includes all common configuration options/defines which
10711 are removed from the board specific headers.
10712
10713 The reason for this is ease of maintenance and unified look and feel
10714 of all AMCC boards.
10715
10716 Signed-off-by: Stefan Roese <sr@denx.de>
10717
10718commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
10719Author: Remy Bohmer <linux@bohmer.net>
10720Date: Thu Jun 5 13:03:36 2008 +0200
10721
10722 DM9000 fix status check fail 0x6d error for trizeps board
10723
10724 According to the Application Notes of the DM9000, only the 2 bits 0:1 of
10725 the status byte need to be checked to identify a valid packet in the fifo
10726
10727 But, The several different Application Notes do not all speak the same
10728 language on these bits. They do not disagree, but only 1 Application Note
10729 noted explicitly that only these 2 bits need to be checked.
10730 Even the datasheets do not mention anything about these 2 bits.
10731
10732 Because the old code, and the kernel check the whole byte, I left this piece
10733 untouched.
10734
10735 However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
10736 it should work.
10737
10738 Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
10739 in the fifo) is much shorter now, compared to the older U-boot driver code,
10740 so that we can maybe run into a hardware condition now that was never seen
10741 before, or maybe was seen very unfrequently.
10742
10743 Additionaly added a cleanup of a stack variable.
10744
10745 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10746 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10747
10748commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
10749Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10750Date: Thu Jun 5 22:29:00 2008 +0900
10751
10752 [MIPS] Update <asm/addrspace.h> header
10753
10754 - Fix traditional KSEG names
10755 - Replace PHYSADDR with CPHYSADDR
10756
10757 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10758
10759commit f0d5a6f060d00358b85c62a921a423ea8df71184
10760Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10761Date: Thu Jun 5 22:29:00 2008 +0900
10762
10763 [MIPS] mips_config.mk: Misc fixes
10764
10765 - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
10766 - Modify comments
10767
10768 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10769
10770commit 5f64d21c9a2998794f255b469165b91f092dfc2d
10771Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10772Date: Thu Jun 5 22:29:00 2008 +0900
10773
10774 [MIPS] Kill unused <version.h> inclusions
10775
10776 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10777
10778commit a55d48174cfd1a5bc184159513f48dcbbe409c83
10779Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10780Date: Thu Jun 5 22:29:00 2008 +0900
10781
10782 [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
10783
10784 MIPS port has two problems in timer routines. One is now we assume CFG_HZ
10785 equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
10786 in the U-Boot system.
10787
10788 The other is we don't have a proper time management counter like timestamp
10789 other ARCHs have. We need the 32-bit millisecond clock counter.
10790
10791 This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
10792 32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
10793 of calculated CP0 counter cycles in a CFG_HZ.
10794
10795 STRATEGY:
10796
10797 * Fix improper CFG_HZ value to have 1000
10798
10799 * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
10800
10801 * timer_init: initialize timestamp and set up the first timer expiration.
10802 Note that we don't need to initialize CP0 count/compare registers here
10803 as they have been already zeroed out on the system reset. Leave them as
10804 they are.
10805
10806 * get_timer: calculate how many timestamps have been passed, then return
10807 base-relative timestamp. Make sure we can easily count missed timestamps
10808 regardless of CP0 count/compare value.
10809
10810 * get_ticks: return the current timestamp, that is get_timer(0).
10811
10812 Most parts are from good old Linux v2.6.16 kernel.
10813
10814 v2:
10815 - Remove FIXME comments as they turned out to be trivial.
10816 - Use CP0 compare register as a global variable for expirelo.
10817 - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
10818 instead.
10819
10820 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10821
10822commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
10823Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10824Date: Thu Jun 5 22:29:00 2008 +0900
10825
10826 [MIPS] lib_mips/time.c: Fix udelay
10827
10828 What we have to do is just to wait for given micro-seconds. No need to
10829 take into account current time, get_timer and CFG_HZ.
10830
10831 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10832
10833commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
10834Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10835Date: Thu Jun 5 22:28:59 2008 +0900
10836
10837 [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
10838
10839 We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
10840 This patch replaces mips_{compare,count}_set and mips_count_get with
10841 existing macros.
10842
10843 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
10844
10845commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
10846Author: Remy Bohmer <linux@bohmer.net>
10847Date: Tue Jun 3 15:48:17 2008 +0200
10848
10849 Get rid of annoying/superfluous bad-checksum warning message
10850
10851 U-boot can complain a lot about 'checksum bad' when it is attached to the network.
10852 It is annoying for ordinary users who start to doubt the network connection
10853 in general when they see messages like this.
10854
10855 This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
10856 than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
10857 now before checking the checksum.
10858
10859 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10860 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10861
10862commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
10863Author: Remy Bohmer <linux@bohmer.net>
10864Date: Wed Jun 4 10:47:25 2008 +0200
10865
10866 Fix order for reading rx-status registers in 32bit mode of DM9000
10867
10868 A last minute cleanup before submitting the DM9000A patch series yesterday introduced
10869 a bug in reading the rx-status registers in 32bit mode only.
10870 This patch repairs this.
10871
10872 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10873 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10874
10875commit 98291e2e689096420465074cce926b226d2e71b4
10876Author: Remy Bohmer <linux@bohmer.net>
10877Date: Tue Jun 3 15:26:26 2008 +0200
10878
10879 DM9000: Some minor code cleanups
10880
10881 Some lines of the U-boot DM9000x driver are longer than 80 characters, or
10882 need some other minor cleanup.
10883
10884 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10885 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10886
10887commit 850ba7555dbd4ca8d14fc475b864d534797adab3
10888Author: Remy Bohmer <linux@bohmer.net>
10889Date: Tue Jun 3 15:26:25 2008 +0200
10890
10891 DM9000: Make driver work properly for DM9000A
10892
10893 The DM9000A network controller does not work with the U-boot DM9000x driver.
10894 Analysis showed that many incoming packets are lost.
10895
10896 The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
10897 check for a valid rx packet be done on the interrupt status register, not
10898 directly by performing the dummy read and the rx status check as is currently
10899 the case in the u-boot driver.
10900
10901 When the recommended poll is done as suggested the driver starts working
10902 correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
10903 can be more than 1 package in the fifo at the same time.
10904
10905 The driver must perform the rx-status check in a loop and read and handle all
10906 packages until there is no more left _after_ the interrupt RX flag is set.
10907
10908 This change has been tested with DM9000A, DM9000E, DM9000EP.
10909
10910 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10911 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10912
10913commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
10914Author: Remy Bohmer <linux@bohmer.net>
10915Date: Tue Jun 3 15:26:24 2008 +0200
10916
10917 DM9000: Improve eth_reset() routine
10918
10919 According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
10920 reset procedure must be done twice to properly reset the DM9000 by means of software.
10921 This errata is not needed anymore for the DM9000A, but it does not bother it.
10922
10923 This change has been tested with DM9000A, DM9000E, DM9000EP.
10924
10925 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10926 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10927
10928commit acba31847fad9ae40708cc2c9f3a634ec35f3416
10929Author: Remy Bohmer <linux@bohmer.net>
10930Date: Tue Jun 3 15:26:23 2008 +0200
10931
10932 DM9000: improve eth_send() routine
10933
10934 The eth_send routine of the U-boot DM9000x driver does not match the
10935 DM9000 or DM9000A application notes/programming guides.
10936
10937 This change improves the stability of the DM9000A network controller.
10938
10939 This change has been tested with DM9000A, DM9000E, DM9000EP.
10940
10941 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10942 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10943
10944commit 134e266253c02a7832560da59d394989c4f64453
10945Author: Remy Bohmer <linux@bohmer.net>
10946Date: Tue Jun 3 15:26:22 2008 +0200
10947
10948 DM9000: repair debug logging
10949
10950 It seems that the debugging code of the DM9000x driver in U-boot has not been
10951 compiled for a long time, because it cannot compile...
10952
10953 Also rearranged some loglines to get more useful info while debugging.
10954
10955 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10956 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10957
10958commit a101361bfe23c120321e45d114c0603b8e0763e9
10959Author: Remy Bohmer <linux@bohmer.net>
10960Date: Tue Jun 3 15:26:21 2008 +0200
10961
10962 DM9000: Add data bus-width auto detection.
10963
10964 The U-boot DM9000x driver contains a compile time bus-width definition for
10965 the databus connected to the network controller.
10966
10967 This compile check makes the code unclear, inflexible and is unneccessary.
10968 It can be asked to the network controller what its bus-width is by reading bits
10969 6 and 7 of the interrupt status register.
10970
10971 The linux kernel already uses a runtime mechanism to determine this bus-width,
10972 so the implementation below looks somewhat like that implementation.
10973
10974 This change has been tested with DM9000A, DM9000E, DM9000EP.
10975
10976 Signed-off-by: Remy Bohmer <linux@bohmer.net>
10977 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10978
10979commit 63a0afa0c32e5f4ea98a9439542870072437404d
10980Author: Stefan Roese <sr@denx.de>
10981Date: Wed Jun 4 19:19:20 2008 +0200
10982
10983 ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
10984
10985 This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
10986 introduced by the commit:
10987
10988 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
10989
10990 With this patch SDRAM will get initialized again and booting from NAND
10991 is working again.
10992
10993 Signed-off-by: Stefan Roese <sr@denx.de>
10994 Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
10995
10996commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
10997Author: Wolfgang Denk <wd@denx.de>
10998Date: Tue May 27 14:19:30 2008 +0200
10999
11000 Socrates: Fix PCI bus frequency report
11001
11002 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
11003
11004commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
11005Author: Tor Krill <tor@excito.com>
11006Date: Thu May 29 11:10:30 2008 +0200
11007
11008 Fix incorrect switch for IF_TYPE in part.c
11009
11010 Use correct field in block_dev_desc_t when writing interface type in
11011 dev_print. Error introduced in 574b3195.
11012
11013 Also added fix from Martin Krause
11014
11015 Signed-off-by: Tor Krill <tor@excito.com>
11016
11017commit b64b8a0bd310935b70af69ac970952f2b364ae56
11018Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
11019Date: Tue May 27 10:25:39 2008 +0200
11020
11021 Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
11022
11023 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
11024
11025commit 35ef877f0a8f6232cdef748f442fed5accb2b641
11026Author: Peter Tyser <ptyser@xes-inc.com>
11027Date: Thu May 22 18:56:52 2008 -0500
11028
11029 Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
11030
11031 Removed unneeded command line history initialization. Also, the original
11032 code would access the 'initted' variable before relocation to SDRAM
11033 which resulted in erratic behavior since the bss is not initialized when
11034 executing from flash.
11035
11036 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11037
11038commit 22f371b63038a4ecab04068877c1089e51a01ba1
11039Author: Grant Erickson <gerickson@nuovations.com>
11040Date: Wed May 21 13:28:30 2008 -0700
11041
11042 PPC4xx: Simplified post_word_{load, store}
11043
11044 This patch simplifies post_word_{load,store} by using the preprocessor
11045 to eliminate redundant, copy-and-pasted code.
11046
11047 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
11048
11049commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
11050Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
11051Date: Wed May 7 21:25:33 2008 +0400
11052
11053 cfi_flash: enable M18 flash chips family support.
11054
11055 Added new command set ID. Buffered write command processing is changed
11056 in order to support M18 flash chips family.
11057
11058 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
11059 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
11060
11061commit 93c56f212ccdadc182018f0769cb284426b88f1d
11062Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
11063Date: Wed May 7 21:24:44 2008 +0400
11064
11065 cfi_flash: support of long cmd in U-boot.
11066
11067 Some NOR flash chips needs support of commands with length grether than max
11068 value size of uchar. For example all M18 family chips use 0x1ff command in
11069 buffered write mode as value of program loops count.
11070
11071 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
11072 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
11073
11074commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
11075Author: Stefan Roese <sr@denx.de>
11076Date: Fri May 16 11:06:06 2008 +0200
11077
11078 DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
11079
11080 On AD7414 the first value upon bootup is not read correctly.
11081 This is most likely because of the 800ms update time of the
11082 temp register in normal update mode. To get current values
11083 each time we issue the "dtt" command including upon powerup
11084 we switch into one-short mode.
11085
11086 This patch fixes the problem on AD7414 equipped boards (Sequoia,
11087 Canyonlands etc), that temp value printed in the bootup log was
11088 incorrect.
11089
11090 Signed-off-by: Stefan Roese <sr@denx.de>
11091
11092commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
11093Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11094Date: Fri May 30 16:55:06 2008 +0200
11095
11096 ppc4xx: Cleanup CPCI405 variant's config file
11097
11098 This patch removes some dead code from CPCI405 board's
11099 config files. JFFS2 support is also removed. It's not used and
11100 CPCI4052 does not build anymore without some size reduction.
11101
11102 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11103
11104commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
11105Author: Kenneth Johansson <kenneth@southpole.se>
11106Date: Thu May 29 16:32:33 2008 +0200
11107
11108 Remove shell variable UNDEF_SYM.
11109
11110 UNDEF_SYM is a shell variable in the main Makefile used to force the
11111 linker to add all u-boot commands to the final image. It has no use here.
11112
11113 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
11114
11115commit 8c66497e06bf803489c589df58ee591d71033274
11116Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11117Date: Fri May 16 11:10:35 2008 +0200
11118
11119 Add support for environment in SPI flash
11120
11121 This is pretty incomplete...it doesn't handle reading the environment
11122 before relocation, it doesn't support redundant environment, and it
11123 doesn't support embedded environment. But apart from that, it does
11124 seem to work.
11125
11126 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11127
11128commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
11129Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11130Date: Fri May 16 11:10:34 2008 +0200
11131
11132 SPI Flash: Add "sf" command
11133
11134 This adds a new command, "sf" which can be used to manipulate SPI
11135 flash. Currently, initialization, reading, writing and erasing is
11136 supported.
11137
11138 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11139
11140commit d25ce7d24cc0f93881559f4009175ea305af65e8
11141Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11142Date: Fri May 16 11:10:33 2008 +0200
11143
11144 SPI Flash subsystem
11145
11146 This adds a new SPI flash subsystem.
11147
11148 Currently, only AT45 DataFlash in non-power-of-two mode is supported,
11149 but some preliminary support for other flash types is in place as
11150 well.
11151
11152 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11153
11154commit 60445cb5c3eb77ed1a07f2d908eef09174483698
11155Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
11156Date: Fri May 16 11:10:32 2008 +0200
11157
11158 atmel_spi: Driver for the Atmel SPI controller
11159
11160 This adds a driver for the SPI controller found on most AT91 and AVR32
11161 chips, implementing the new SPI API.
11162
11163 Changed in v4:
11164 - Update to new API
11165 - Handle zero-length transfers appropriately. The user may send a
11166 zero-length SPI transfer with SPI_XFER_END set in order to
11167 deactivate the chip select after a series of transfers with chip
11168 select active. This is useful e.g. when polling the status
11169 register of DataFlash.
11170
11171 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
11172
11173commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
11174Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
11175Date: Fri May 16 11:10:31 2008 +0200
11176
11177 SPI API improvements
11178
11179 This patch gets rid of the spi_chipsel table and adds a handful of new
11180 functions that makes the SPI layer cleaner and more flexible.
11181
11182 Instead of the spi_chipsel table, each board that wants to use SPI
11183 gets to implement three hooks:
11184 * spi_cs_activate(): Activates the chipselect for a given slave
11185 * spi_cs_deactivate(): Deactivates the chipselect for a given slave
11186 * spi_cs_is_valid(): Determines if the given bus/chipselect
11187 combination can be activated.
11188
11189 Not all drivers may need those extra functions however. If that's the
11190 case, the board code may just leave them out (assuming they know what
11191 the driver needs) or rely on the linker to strip them out (assuming
11192 --gc-sections is being used.)
11193
11194 To set up communication parameters for a given slave, the driver needs
11195 to call spi_setup_slave(). This returns a pointer to an opaque
11196 spi_slave struct which must be passed as a parameter to subsequent SPI
11197 calls. This struct can be freed by calling spi_free_slave(), but most
11198 driver probably don't want to do this.
11199
11200 Before starting one or more SPI transfers, the driver must call
11201 spi_claim_bus() to gain exclusive access to the SPI bus and initialize
11202 the hardware. When all transfers are done, the driver must call
11203 spi_release_bus() to make the bus available to others, and possibly
11204 shut down the SPI controller hardware.
11205
11206 spi_xfer() behaves mostly the same as before, but it now takes a
11207 spi_slave parameter instead of a spi_chipsel function pointer. It also
11208 got a new parameter, flags, which is used to specify chip select
11209 behaviour. This may be extended with other flags in the future.
11210
11211 This patch has been build-tested on all powerpc and arm boards
11212 involved. I have not tested NIOS since I don't have a toolchain for it
11213 installed, so I expect some breakage there even though I've tried
11214 fixing up everything I could find by visual inspection.
11215
11216 I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
11217 DataFlash drivers posted as a follow-up. I'd like some help testing
11218 other boards that use the existing SPI API.
11219
11220 But most of all, I'd like some comments on the new API. Is this stuff
11221 usable for everyone? If not, why?
11222
11223 Changed in v4:
11224 - Build fixes for various boards, drivers and commands
11225 - Provide common struct spi_slave definition that can be extended by
11226 drivers
11227 - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
11228 - Make default bus and mode build-time configurable
11229 - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
11230
11231 Changed in v3:
11232 - Add opaque struct spi_slave for controller-specific data associated
11233 with a slave.
11234 - Add spi_claim_bus() and spi_release_bus()
11235 - Add spi_free_slave()
11236 - spi_setup() is now called spi_setup_slave() and returns a
11237 struct spi_slave
11238 - soft_spi now supports four SPI modes (CPOL|CPHA)
11239 - Add bus parameter to spi_setup_slave()
11240 - Convert the new i.MX32 SPI driver
11241 - Convert the new MC13783 RTC driver
11242
11243 Changed in v2:
11244 - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
11245 new API.
11246
11247 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
11248 Tested-by: Guennadi Liakhovetski <lg@denx.de>
11249
11250commit 289011207d999b2e4085150d2aa30d547ad9b800
11251Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11252Date: Fri May 16 11:10:30 2008 +0200
11253
11254 Move definition of container_of() to common.h
11255
11256 AVR32 and AT91SAM9 both have their own identical definitions of
11257 container_of() taken from the Linux kernel. Move it to common.h so
11258 that all architectures can use it.
11259
11260 container_of() is already used by some drivers, and will be used
11261 extensively by the new and improved SPI API.
11262
11263 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11264
11265commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
11266Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11267Date: Fri May 16 11:08:11 2008 +0200
11268
11269 soft_i2c: Pull SDA high before reading
11270
11271 Spotted by Dean Capindale.
11272
11273 Systems that support open-drain GPIO properly are allowed provide an
11274 empty I2C_TRISTATE define. However, this means that we need to be
11275 careful not to drive SDA low when the slave is expected to respond.
11276
11277 This patch adds a missing I2C_SDA(1) to read_byte() required to
11278 tristate the SDA line on systems that support open-drain GPIO.
11279
11280 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11281
11282commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
11283Author: Stefan Roese <sr@denx.de>
11284Date: Mon May 19 11:34:53 2008 +0200
11285
11286 ppc4xx: Remove implementations of testdram()
11287
11288 This patch removes the used testdram() implementations of the board
11289 that are maintained by myself.
11290
11291 Signed-off-by: Stefan Roese <sr@denx.de>
11292
11293commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
11294Author: Stefan Roese <sr@denx.de>
11295Date: Mon Jun 2 17:37:28 2008 +0200
11296
11297 ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
11298
11299 Historically the 405 U-Boot port had a dram_init() call in early init
11300 stage. This function was still called from start.S and most of the time
11301 coded in assembler. This is not needed anymore (since a long time) and
11302 boards should implement the common initdram() function in C instead.
11303
11304 This patch now removed the dram_init() call from start.S and removes the
11305 empty implementations that are scattered through most of the 405 board
11306 ports. Some older board ports really implement this dram_init() though.
11307 These are:
11308
11309 csb272
11310 csb472
11311 ERIC
11312 EXBITGEN
11313 W7OLMC
11314 W7OLMG
11315
11316 I changed those boards to call this assembler dram_init() function now
11317 from their board specific initdram() instead. This *should* work, but please
11318 test again on those platforms. And it is perhaps a good idea that those
11319 boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
11320 some time. So further patches welcome here.
11321
11322 Signed-off-by: Stefan Roese <sr@denx.de>
11323
11324commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
11325Author: Stefan Roese <sr@denx.de>
11326Date: Mon Jun 2 17:22:11 2008 +0200
11327
11328 ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
11329
11330 Signed-off-by: Stefan Roese <sr@denx.de>
11331
11332commit 39b32be18cd33b53a84065edcd4e465165cc5564
11333Author: Stefan Roese <sr@denx.de>
11334Date: Mon Jun 2 17:20:03 2008 +0200
11335
11336 ppc4xx: Fix common ECC generation code for 440GP style platforms
11337
11338 This patch makes the common 4xx ECC code really usable on 440GP style
11339 platforms.
11340
11341 Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
11342 compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
11343 we need to make some processor dependant defines used later on by the
11344 driver.
11345
11346 Signed-off-by: Stefan Roese <sr@denx.de>
11347
11348commit ec724f883ee3f3925e6c55027e8ffa70ada83303
11349Author: Stefan Roese <sr@denx.de>
11350Date: Mon Jun 2 17:13:55 2008 +0200
11351
11352 ppc4xx: Change Kilauea to use the common DDR2 init function
11353
11354 This patch changes the kilauea and kilauea_nand (for NAND booting)
11355 board port to not use a board specific DDR2 init routine anymore. Now
11356 the common code from cpu/ppc4xx is used.
11357
11358 Thanks to Grant Erickson for all his basic work on this 405EX early
11359 bootup.
11360
11361 Signed-off-by: Stefan Roese <sr@denx.de>
11362
11363commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
11364Author: Stefan Roese <sr@denx.de>
11365Date: Mon Jun 2 14:59:21 2008 +0200
11366
11367 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
11368
11369 This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
11370 ppc4xx related SDRAM/DDR/DDR2 controller defines.
11371
11372 Signed-off-by: Stefan Roese <sr@denx.de>
11373
11374commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
11375Author: Stefan Roese <sr@denx.de>
11376Date: Mon Jun 2 14:57:41 2008 +0200
11377
11378 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
11379
11380 This patch removes all SDRAM related defines from the PPC4xx headers
11381 ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
11382 the same SDRAM controller as 440 systems do (like 405EX and 440SP).
11383
11384 It also introduces new defines for the equipped SDRAM controller based on
11385 which PPC variant is used. There new defines are:
11386
11387 used on 405GR/CR/EP and some Xilinx Virtex boards.
11388
11389 used on 440GP/GX/EP/GR.
11390
11391 used on 440EPx/GRx.
11392
11393 used on 405EX/r/440SP/SPe/460EX/GT.
11394
11395 Signed-off-by: Stefan Roese <sr@denx.de>
11396
11397commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
11398Author: Stefan Roese <sr@denx.de>
11399Date: Mon Jun 2 14:35:44 2008 +0200
11400
11401 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
11402
11403 This patch consolidates the 405 and 440 parts of the NAND booting code
11404 selected via CONFIG_NAND_SPL. Now common code is used to initialize the
11405 SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
11406 Only *after* running from this location, nand_boot() is called.
11407
11408 Please note that the initsdram() call is now moved from nand_boot.c
11409 to start.S. I experienced problems with some boards like Kilauea
11410 (405EX), which don't have internal SRAM (OCM) and relocation needs to
11411 be done to SDRAM before the NAND controller can get accessed. When
11412 initdram() is called later on in nand_boot(), this can lead to problems
11413 with variables in the bss sections like nand_ecc_pos[].
11414
11415 Signed-off-by: Stefan Roese <sr@denx.de>
11416 Acked-by: Scott Wood <scottwood@freescale.com>
11417
11418commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
11419Author: Grant Erickson <gerickson@nuovations.com>
11420Date: Thu May 22 14:44:24 2008 -0700
11421
11422 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
11423
11424 This patch (Part 2 of 2):
11425
11426 * Rolls up a suite of changes to enable correct primordial stack and
11427 global data handling when the data cache is used for such a purpose
11428 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
11429
11430 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
11431 eliminating redundant ECC initialization implementations and moving
11432 redundant SDRAM initialization out of board code into shared 4xx
11433 code.
11434
11435 * Enables MCSR visibility on the 405EX(r).
11436
11437 * Enables the use of the data cache for initial RAM on
11438 both AMCC's Kilauea and Makalu and removes a redundant
11439 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
11440
11441 - Removed, per Stefan Roese's request, defunct memory.c file for
11442 Makalu and rolled sdram_init from it into makalu.c.
11443
11444 With respect to the 4xx DDR initialization and ECC unification, there
11445 is certainly more work that can and should be done (file renaming,
11446 etc.). However, that can be handled at a later date on a second or
11447 third pass. As it stands, this patch moves things forward in an
11448 incremental yet positive way for those platforms that utilize this
11449 code and the features associated with it.
11450
11451 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
11452 Signed-off-by: Stefan Roese <sr@denx.de>
11453
11454commit c821b5f120bedf73867513466412587c6912a8f8
11455Author: Grant Erickson <gerickson@nuovations.com>
11456Date: Thu May 22 14:44:14 2008 -0700
11457
11458 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
11459
11460 This patch (Part 1 of 2):
11461
11462 * Rolls up a suite of changes to enable correct primordial stack and
11463 global data handling when the data cache is used for such a purpose
11464 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
11465
11466 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
11467 eliminating redundant ECC initialization implementations and moving
11468 redundant SDRAM initialization out of board code into shared 4xx
11469 code.
11470
11471 * Enables MCSR visibility on the 405EX(r).
11472
11473 * Enables the use of the data cache for initial RAM on
11474 both AMCC's Kilauea and Makalu and removes a redundant
11475 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
11476
11477 - Removed, per Stefan Roese's request, defunct memory.c file for
11478 Makalu and rolled sdram_init from it into makalu.c.
11479
11480 With respect to the 4xx DDR initialization and ECC unification, there
11481 is certainly more work that can and should be done (file renaming,
11482 etc.). However, that can be handled at a later date on a second or
11483 third pass. As it stands, this patch moves things forward in an
11484 incremental yet positive way for those platforms that utilize this
11485 code and the features associated with it.
11486
11487 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
11488 Signed-off-by: Stefan Roese <sr@denx.de>
11489
11490commit a439680019e06171d4a5694b7992accce87f590e
11491Author: Grant Erickson <gerickson@nuovations.com>
11492Date: Wed May 21 13:28:30 2008 -0700
11493
11494 PPC4xx: Simplified post_word_{load, store}
11495
11496 This patch simplifies post_word_{load,store} by using the preprocessor
11497 to eliminate redundant, copy-and-pasted code.
11498
11499 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
11500
11501commit f979690ee337450b2030aba128f95b7a8d9881c0
11502Author: Kumar Gala <galak@kernel.crashing.org>
11503Date: Thu May 15 15:13:08 2008 -0500
11504
11505 Fix warnings from gcc-4.3.0 build on a ppc host
11506
11507 * The cfi_flash.c memset fix actual allows the board to boot so there is
11508 a bit more going on here than just resolving warnings associated with
11509 uninitialized variables.
11510
11511 * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
11512 inline function 'ext2_find_next_zero_bit' which is not static
11513
11514 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11515
11516commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
11517Author: Becky Bruce <becky.bruce@freescale.com>
11518Date: Wed May 14 13:09:51 2008 -0500
11519
11520 MPC512x: Change traps.c to not reference non-addressable memory
11521
11522 Currently, END_OF_RAM is used by the trap code to determine if
11523 we should attempt to access the stack pointer or not. However,
11524 on systems with a lot of RAM, only a subset of the RAM is
11525 guaranteed to be mapped in and accessible. Change END_OF_RAM
11526 to use get_effective_memsize() instead of using the raw ram
11527 size out of the bd.
11528
11529 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11530
11531commit 81673e9ae14b771cd13faf19947192599cae3959
11532Author: Kumar Gala <galak@kernel.crashing.org>
11533Date: Tue May 13 19:01:54 2008 -0500
11534
11535 Make sure common.h is the first include.
11536
11537 If common.h isn't first we can get CONFIG_ options defined in the
11538 board config file ignored. This can cause an issue if any of those
11539 config options impact the size of types of data structures
11540 (eg CONFIG_PHYS_64BIT).
11541
11542 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11543
11544commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
11545Author: Marian Balakowicz <m8@semihalf.com>
11546Date: Tue May 13 15:53:29 2008 +0200
11547
11548 Avoid initrd and logbuffer area overlaps
11549
11550 Add logbuffer to reserved LMB areas to prevent initrd allocation
11551 from overlaping with it.
11552
11553 Make sure to use correct logbuffer base address.
11554
11555 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
11556
11557commit 6956d53d9934862507f83f0e3255dfd4662e7482
11558Author: Sascha Laue <sascha.laue@liebherr.com>
11559Date: Tue May 13 13:29:54 2008 +0200
11560
11561 lwmon5: add memory-pattern-test to FPGA POST.
11562
11563commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
11564Author: Becky Bruce <becky.bruce@freescale.com>
11565Date: Thu May 8 19:02:51 2008 -0500
11566
11567 PPC: 86xx Add bat registers to reginfo command
11568
11569 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11570
11571commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
11572Author: Becky Bruce <becky.bruce@freescale.com>
11573Date: Fri May 9 15:41:35 2008 -0500
11574
11575 PPC: Add print_bats() to lib_ppc/bat_rw.c
11576
11577 This function prints the values of all the BAT register
11578 pairs - I needed this for debug earlier this week; adding it to
11579 lib_ppc so others can use it (and add it to reginfo commands
11580 if so desired).
11581
11582 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11583
11584commit c148f24c15743a02e855636e6bed013bd121f7f2
11585Author: Becky Bruce <becky.bruce@freescale.com>
11586Date: Thu May 15 21:29:04 2008 -0500
11587
11588 PPC: Change lib_ppc/bat_rw.c to use high bats
11589
11590 Currently, this code only deals with BATs 0-3, which makes
11591 it useless on systems that support BATs 4-7. Add the
11592 support for these registers.
11593
11594 Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
11595
11596commit 31d826722434931e1152a09d140187dcf72f8aac
11597Author: Becky Bruce <becky.bruce@freescale.com>
11598Date: Thu May 8 19:02:12 2008 -0500
11599
11600 PPC: Create and use CONFIG_HIGH_BATS
11601
11602 Change all code that conditionally operates on high bat
11603 registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
11604 instead of the myriad ways this is done now. Define the option
11605 for every config for which high bats are supported (and
11606 enabled by early boot, on parts where they're not always
11607 enabled)
11608
11609 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11610
11611commit aa3b8bf9c30065bb2ea852799d32db5020598495
11612Author: Wolfgang Grandegger <wg@grandegger.com>
11613Date: Wed May 28 19:55:19 2008 +0200
11614
11615 E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
11616
11617 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
11618 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11619
11620commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
11621Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11622Date: Wed May 28 13:06:25 2008 -0500
11623
11624 ColdFire: Add 10 base ethernet support for mcf5445x
11625
11626 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
11627 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11628
11629commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
11630Author: Jason McMullan <mcmullan@netapp.com>
11631Date: Fri May 30 00:53:38 2008 +0900
11632
11633 mips: Add an 'include/asm/errno.h', like all other architectures
11634
11635 All other u-boot architectures have an include/asm/errno.h, so
11636 this change adds it to the mips include/asm-mips headers also.
11637
11638 Stolen from Linux 2.6.25.
11639
11640 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
11641
11642commit e2ad8426624bac457acc6925b6ff408e9bf20466
11643Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11644Date: Fri May 30 00:53:38 2008 +0900
11645
11646 [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
11647
11648 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11649
11650commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
11651Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11652Date: Fri May 30 00:53:38 2008 +0900
11653
11654 [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
11655
11656 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11657
11658commit bf462ae450a7f2eeeddc699ed345b391e3263540
11659Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11660Date: Fri May 30 00:53:37 2008 +0900
11661
11662 [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
11663
11664 No functional changes.
11665
11666 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11667
11668commit 89a1550ec6b74452274a7a23127936e2c7eec711
11669Author: Jason McMullan <mcmullan@netapp.com>
11670Date: Fri May 30 00:53:37 2008 +0900
11671
11672 mips: If CONFIG_CMD_SPI is defined, call spi_init()
11673
11674 The mips architecture currently does not call 'spi_init()' in the generic
11675 board initialization routine is CONFIG_CMD_SPI is defined.
11676
11677 This patch rectifies that problem.
11678
11679 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
11680 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11681
11682commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
11683Author: Jason McMullan <mcmullan@netapp.com>
11684Date: Fri May 30 00:53:37 2008 +0900
11685
11686 [MIPS] lib_mips/board.c: Add nand_init
11687
11688 This patch adds the standard 'nand_init()' call to the mips generic
11689 'board_init_r()' call, bringing MIPS in line with the other architectures.
11690
11691 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
11692 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11693
11694commit d6ac2ed893c2168738aee01579d6283af8d37045
11695Author: Scott Wood <scottwood@freescale.com>
11696Date: Thu May 22 10:49:46 2008 -0500
11697
11698 Remove prototypes of nand_init() in favor of including nand.h.
11699
11700 Likewise with onenand_init().
11701
11702 Signed-off-by: Scott Wood <scottwood@freescale.com>
11703
11704commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
11705Author: Scott Wood <scottwood@freescale.com>
11706Date: Thu May 22 10:49:00 2008 -0500
11707
11708 Make onenand_uboot.h self-sufficient.
11709
11710 Don't assume types are provided by previously included headers.
11711
11712 Signed-off-by: Scott Wood <scottwood@freescale.com>
11713
11714commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
11715Author: Dirk Behme <dirk.behme@gmail.com>
11716Date: Wed Jan 16 14:26:59 2008 +0100
11717
11718 nand: Correct NAND erase percentage output
11719
11720 For NAND erase sizes smaller than one NAND erase block, erase
11721 percentage output becomes grater than 100% e.g.
11722
11723 -- cut --
11724 > nand info
11725 Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
11726 > nand erase 0x100000 0x2000
11727 NAND erase: device 0 offset 0x100000, size 0x2000
11728 Erasing at 0x100000 -- 200% complete.
11729 OK
11730 >
11731 -- cut --
11732
11733 Correct this and give user a warning that more is erased than specified:
11734
11735 -- cut --
11736 > nand erase 0x100000 0x2000
11737 NAND erase: device 0 offset 0x100000, size 0x2000
11738 Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
11739 Erasing 0x00004000 instead
11740 Erasing at 0x100000 -- 100% complete.
11741 OK
11742 >
11743 -- cut --
11744
11745 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
11746
11747commit 5922db6c0948506be91e0de44e7a6863a18a417f
11748Author: Stelian Pop <stelian@popies.net>
11749Date: Tue May 13 17:31:24 2008 +0200
11750
11751 Cleanup nand_info[] declaration.
11752
11753 The nand_info array is declared as extern in several .c files.
11754 Those days, nand.h contains a reference to the array, so there is
11755 no need to declare it elsewhere.
11756
11757 Signed-off-by: Stelian Pop <stelian@popies.net>
11758 Signed-off-by: Scott Wood <scottwood@freescale.com>
11759
11760commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
11761Author: Scott Wood <scottwood@freescale.com>
11762Date: Mon May 19 09:30:43 2008 -0500
11763
11764 NAND: Provide a sane default for NAND_MAX_CHIPS.
11765
11766 This allows the header to be included regardless of whether a board's
11767 config file provides NAND-related defininitions.
11768
11769 Signed-off-by: Scott Wood <scottwood@freescale.com>
11770
11771commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
11772Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11773Date: Mon May 26 12:19:10 2008 +0200
11774
11775 avr32: Fix theoretical race in udelay()
11776
11777 If the specified delay is very short, the cycle counter may go past the
11778 "end" time we are waiting for before we get around to reading it.
11779
11780 Fix it by checking the different between the cycle count "now" and the
11781 cycle count at the beginning. This will work as long as the delay
11782 measured in number of cycles is below 2^31.
11783
11784 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11785
11786commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
11787Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11788Date: Wed May 21 13:01:09 2008 +0200
11789
11790 avr32: Compile atmel_mci.o conditionally
11791
11792 Remove #ifdef CONFIG_MMC from the source file and use conditional
11793 compilation in the Makefile instead.
11794
11795 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11796
11797commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
11798Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11799Date: Thu May 22 12:28:25 2008 +0200
11800
11801 avr32: Fix wrong error flags in atmel_mci driver
11802
11803 Make sure we check for CRC errors when sending commands that use CRC
11804 checking.
11805
11806 Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
11807 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11808
11809commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
11810Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11811Date: Wed May 21 11:10:59 2008 +0200
11812
11813 avr32: Fix two warnings in atmel_mci.c
11814
11815 The warnings are harmless but annoying. Let's fix them.
11816
11817 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11818
11819commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
11820Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11821Date: Mon May 19 11:36:28 2008 +0200
11822
11823 avr32: Rework SDRAM initialization code
11824
11825 This cleans up the SDRAM initialization and related code a bit, and
11826 allows faster booting.
11827
11828 * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
11829 * Remove memory test from sdram_init() and make caller responsible
11830 for verifying the SDRAM and determining its size.
11831 * Remove base_address member from struct sdram_config (was sdram_info)
11832 * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
11833 * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
11834
11835 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11836
11837commit 95107b7c028806919630bf02c653aa8f4f867c94
11838Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11839Date: Mon May 19 11:27:37 2008 +0200
11840
11841 avr32: Do stricter stack checking in the exception handler
11842
11843 Don't do a stack dump if the stack pointer is outside the memory area
11844 reserved for stack.
11845
11846 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11847
11848commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
11849Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11850Date: Fri May 2 15:32:57 2008 +0200
11851
11852 avr32: Use the same entry point for reset and exception handling
11853
11854 Since the reset vector is always aligned to a very large boundary, we
11855 can save a couple of KB worth of alignment padding by placing the
11856 exception vectors at the same address.
11857
11858 Deciding which one it is is easy: If we're handling an exception, the
11859 CPU is in Exception mode. If we're starting up after reset, the CPU is
11860 in Supervisor mode. So this adds a very minimal overhead to the reset
11861 path (only executed once) and the exception handling path (normally
11862 never executed at all.)
11863
11864 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11865
11866commit 0c16eed2189a190bd5655b33c029f809a9b31128
11867Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11868Date: Fri May 2 15:24:22 2008 +0200
11869
11870 avr32: Put memset in its own section
11871
11872 All C code is compiled with -ffunction-sections -fdata-sections.
11873 Assembly functions should get their own sections as well so that
11874 everything looks consistent.
11875
11876 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11877
11878commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
11879Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11880Date: Fri May 2 15:21:40 2008 +0200
11881
11882 avr32: Rename pm_init() as clk_init() and make SoC-specific
11883
11884 pm_init() was always more about clock initialization than anything
11885 else. Dealing with PLLs, clock gating and such is also inherently
11886 SoC-specific, so move it into a SoC-specific directory.
11887
11888 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11889
11890commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
11891Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11892Date: Wed Apr 30 16:15:57 2008 +0200
11893
11894 avr32: Use new-style Makefile for the at32ap platform
11895
11896 This makes it easier to avoid compiling certain files later.
11897
11898 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11899
11900commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
11901Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11902Date: Wed Apr 30 14:36:47 2008 +0200
11903
11904 avr32: Remove unused file cpu/at32ap/pm.c
11905
11906 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11907
11908commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
11909Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11910Date: Wed Apr 30 14:19:28 2008 +0200
11911
11912 avr32: Clean up the HMATRIX code
11913
11914 Rework the HMATRIX configuration interface so that it becomes easier
11915 to configure the HMATRIX for boards with special needs, and add new
11916 parts.
11917
11918 The HMATRIX header file has been split into a general,
11919 chip-independent part with register definitions, etc. and a
11920 chip-specific part with SFR bitfield definitions and master/slave
11921 identifiers.
11922
11923 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11924
11925commit 0a2e48792dd372c90b80059f3235e67a567e16fc
11926Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11927Date: Thu Nov 22 12:14:11 2007 +0100
11928
11929 avr32: Add support for the ATSTK1006 board
11930
11931 This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
11932 board. It's currently in production and will be available soon.
11933
11934 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11935
11936commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
11937Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11938Date: Tue Apr 29 12:53:05 2008 +0200
11939
11940 avr32: Get rid of the .flashprog section
11941
11942 The .flashprog section was only needed back when we were running
11943 directly from flash, and it's even more useless on NGW100 since it
11944 uses the CFI flash driver which never used this workaround in the
11945 first place.
11946
11947 Remove it on STK1000 as well, and get rid of all the associated code and
11948 annotations.
11949
11950 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11951
11952commit cdd42c0c7a5205fc380912d83229069a71ea3abf
11953Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11954Date: Wed Apr 30 13:09:56 2008 +0200
11955
11956 avr32: Use correct condition around macb clock accessors
11957
11958 get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
11959 the chip has a MACB controller, not when it has a USART.
11960
11961 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11962
11963commit f793a3581901ff39c2abb94012d9bbc8573ccf02
11964Author: David Brownell <david-b@pacbell.net>
11965Date: Wed Apr 16 22:57:58 2008 -0700
11966
11967 avr32: Disable the AP7000 internal watchdog on startup
11968
11969 This patch forces the watchdog off in all cases. That will at least
11970 get rid of the constant reboot cycle, though it won't let the watchdog
11971 actually run in the new kernels: its probe() comes up with a polite
11972 warning.
11973
11974 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11975
11976commit 55ac7a7490b55da56659f95d82a0c83b9756df27
11977Author: David Brownell <david-b@pacbell.net>
11978Date: Fri Feb 22 12:54:39 2008 -0800
11979
11980 avr32: stk1002 and ngw100 convergence
11981
11982 Make STK1002 and NGW100 boards act more alike:
11983 - STK boards can use as many arguments as NGW
11984 - STK boards don't need to manage FPGAs either
11985 - NGW commands should match STK ones
11986
11987 Also spell U-Boot right in prompts for STK1002 and NGW100.
11988
11989 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
11990 [haavard.skinnemoen@atmel.com: update STK100[34] as well]
11991 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11992
11993commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
11994Author: Sergei Poselenov <sposelenov@emcraft.com>
11995Date: Tue May 27 13:47:00 2008 +0200
11996
11997 Socrates: Fix PCI bus frequency report
11998
11999 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12000
12001commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
12002Author: Sergei Poselenov <sposelenov@emcraft.com>
12003Date: Tue May 27 11:49:13 2008 +0200
12004
12005 Socrates: Added USB support.
12006
12007 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12008
12009commit 5a904e5637cff1d708dc67098004f83ba9e84c54
12010Author: Sergei Poselenov <sposelenov@emcraft.com>
12011Date: Tue May 27 11:35:02 2008 +0200
12012
12013 USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
12014
12015 In case of several PCI USB controllers on a board this variable
12016 specifys which controller to use.
12017 See doc/README.generic_usb_ohci for details.
12018
12019 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12020
12021commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
12022Author: Sergei Poselenov <sposelenov@emcraft.com>
12023Date: Tue May 27 10:36:07 2008 +0200
12024
12025 Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
12026
12027 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12028
12029commit 83e9d7a2614d4006b92690afa3390c291734267e
12030Author: Sergei Poselenov <sposelenov@emcraft.com>
12031Date: Mon May 26 18:16:04 2008 +0200
12032
12033 Socrates: Config file cleanup.
12034
12035 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12036
12037commit 602cac1389b755b223272f2328a47e6f8c240848
12038Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12039Date: Sat May 24 12:47:46 2008 +0200
12040
12041 MAKEALL: add at91 list
12042
12043 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12044
12045commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
12046Author: Ron Madrid <ron_madrid@sbcglobal.net>
12047Date: Fri May 23 15:37:05 2008 -0700
12048
12049 Add Marvell 88E1118 support for TSEC
12050
12051 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
12052 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12053
12054commit 557b377d8bfc8b833b6e749457bcdfa298331a24
12055Author: Jens Gehrlein <sew_s@tqs.de>
12056Date: Mon May 5 14:06:11 2008 +0200
12057
12058 smc911x: add 16 bit support
12059
12060 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
12061 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
12062
Wolfgang Denkcd829192008-08-12 16:08:38 +020012063commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
12064Author: Christian Eggers <ceggers@gmx.de>
12065Date: Wed May 21 21:29:10 2008 +0200
12066
12067 Fix endianess conversion in usb_ohci.c
12068
12069 Sorry, I forgot this line:
12070
12071 Signed-off-by: Christian Eggers <ceggers@gmx.de>
12072
12073 I think this must be swapped (result may be equal).
12074
Wolfgang Denk01db2322008-06-28 23:16:01 +020012075commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
12076Author: Christian Eggers <ceggers@gmx.de>
12077Date: Wed May 21 22:12:00 2008 +0200
12078
12079 USB: replace old swap_ with proper endianess conversion macros
12080
12081 Signed-off-by: Christian Eggers <ceggers@gmx.de>
12082 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
12083
12084commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
12085Author: Christian Eggers <ceggers@gmx.de>
12086Date: Wed May 21 21:29:10 2008 +0200
12087
12088 Fix endianess conversion in usb_ohci.c
12089
12090 Signed-off-by: Christian Eggers <ceggers@gmx.de>
12091 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
12092
12093commit 477434c63c2ea5baa5c6c4e43500786f436511ff
12094Author: Sergei Poselenov <sposelenov@emcraft.com>
12095Date: Thu May 22 01:15:53 2008 +0200
12096
12097 USB: add support for multiple PCI OHCI controllers
12098
12099 Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
12100 In case of several PCI USB controllers on a board this variable
12101 specifys which controller to use.
12102
12103 Also add USB support for sokrates board.
12104
12105 See doc/README.generic_usb_ohci for details.
12106
12107 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12108 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
12109
12110commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
12111Author: Wolfgang Denk <wd@denx.de>
12112Date: Wed May 21 16:56:08 2008 +0200
12113
12114 Fix some whitespace issues
12115
12116 introduced by 53677ef18 "Big white-space cleanup."
12117
12118 Signed-off-by: Wolfgang Denk <wd@denx.de>
12119
12120commit 4416603aeb06861b468b06a981e52c3ff805db7b
12121Author: York Sun <yorksun@freescale.com>
12122Date: Mon May 12 14:36:39 2008 -0500
12123
12124 Make ads5121 out-of-tree compiling safe
12125
12126 Reuse the existing DIU driver in board/freescale/common.
12127
12128 Signed-off-by: York Sun <yorksun@freescale.com>
12129
12130commit 0e1bad47cd345c76c91a64caf41011e431b62599
12131Author: York Sun <yorksun@freescale.com>
12132Date: Mon May 5 10:20:01 2008 -0500
12133
12134 Adding DIU support for Freescale 5121ADS
12135
12136 Add DIU and cfb console support to FSL 5121ADS board.
12137
12138 Use #define CONFIG_VIDEO in config file to enable fb console.
12139
12140 Signed-off-by: York Sun <yorksun@freescale.com>
12141
12142commit a48ff68d235e671176f6b496c44246dbe5e0a93f
12143Author: York Sun <yorksun@freescale.com>
12144Date: Mon May 5 10:20:00 2008 -0500
12145
12146 Replace DPRINTF with debug
12147
12148 Remove DPRINTF macro and replace it with generic debug macro.
12149
12150 Signed-off-by: York Sun <yorksun@freescale.com>
12151
12152commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
12153Author: York Sun <yorksun@freescale.com>
12154Date: Mon May 5 10:19:59 2008 -0500
12155
12156 Move pixel clock setting to board file
12157
12158 The clock divider has different format in 5121 and 8610. This patch moves it to
12159 board specific code.
12160
12161 Signed-off-by: York Sun <yorksun@freescale.com>
12162
12163commit 53677ef18e25c97ac613349087c5cb33ae5a2741
12164Author: Wolfgang Denk <wd@denx.de>
12165Date: Tue May 20 16:00:29 2008 +0200
12166
12167 Big white-space cleanup.
12168
12169 This commit gets rid of a huge amount of silly white-space issues.
12170 Especially, all sequences of SPACEs followed by TAB characters get
12171 removed (unless they appear in print statements).
12172
12173 Also remove all embedded "vim:" and "vi:" statements which hide
12174 indentation problems.
12175
12176 Signed-off-by: Wolfgang Denk <wd@denx.de>
12177
12178commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
12179Author: Sergei Poselenov <sposelenov@emcraft.com>
12180Date: Thu May 8 17:46:23 2008 +0200
12181
12182 socrates: fix second TSEC configuration (it is actually TSEC3)
12183
12184 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12185
12186commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
12187Author: Sergei Poselenov <sposelenov@emcraft.com>
12188Date: Thu May 8 14:17:08 2008 +0200
12189
12190 Fixed reset for socrates
12191
12192 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12193
12194commit e18575d5f589a62e19c70d471d4b4e27cad3af56
12195Author: Sergei Poselenov <sposelenov@emcraft.com>
12196Date: Wed May 7 15:10:49 2008 +0200
12197
12198 socrates: changes to support FDT
12199
12200 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12201 Signed-off-by: Wolfgang Denk <wd@denx.de>
12202
12203commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
12204Author: Sergei Poselenov <sposelenov@emcraft.com>
12205Date: Wed Apr 30 11:42:50 2008 +0200
12206
12207 Initial support for "Socrates" board
12208
12209 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12210
12211commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
12212Author: Yuri Tikhonov <yur@emcraft.com>
12213Date: Thu May 8 15:46:42 2008 +0200
12214
12215 POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
12216
12217 This way we become able to utilize the full post_log_word for POST
12218 activities (overwise, POST ECC, which has 0x8000 ID, could be
12219 erroneously treated as started in post_output_backlog() even if there
12220 was actually no POST ECC run (because of OCM POST failure, for
12221 example).
12222
12223 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
12224
12225commit 7845d49094c81321021b50a4dbb8864d2f3777e4
12226Author: Yuri Tikhonov <yur@emcraft.com>
12227Date: Thu May 8 15:46:02 2008 +0200
12228
12229 POST: mark OCM test as POST_STOP
12230
12231 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12232
12233commit 28a385065882d6cb6ac5f443311ff87887ed7c13
12234Author: Yuri Tikhonov <yur@emcraft.com>
12235Date: Thu May 8 15:45:26 2008 +0200
12236
12237 POST: add POST_STOP flag
12238
12239 Don't run futher tests in case of a test fails that is marked as
12240 POST_STOP.
12241
12242 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12243 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
12244
12245commit a525145d8110d15b4389d23c3ea8a78f22509d3f
12246Author: Yuri Tikhonov <yur@emcraft.com>
12247Date: Thu May 8 15:44:16 2008 +0200
12248
12249 POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
12250
12251 Switch the OCM testid with the codec one. The reason is that current
12252 implementation requires the POST_ROM testid to fit into lower 16
12253 bits, and the codec test will never run with POST_ROM hopefully.
12254
12255 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12256
12257commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
12258Author: Yuri Tikhonov <yur@emcraft.com>
12259Date: Thu May 8 15:43:28 2008 +0200
12260
12261 lwmon5: enable OCM post test on lwmon5 board
12262
12263 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12264
12265commit 6e8ec682268493b8d098f99e17b1ce71b4448977
12266Author: Yuri Tikhonov <yur@emcraft.com>
12267Date: Thu May 8 15:42:47 2008 +0200
12268
12269 POST: OCM test added.
12270
12271 Added OCM test to POST layer. This version runs before all other tests
12272 but doesn't yet interrupt post sequence on failure.
12273
12274 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12275 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
12276
12277commit 6891260bdd935a382c95d9fa333922b0dfded68a
12278Author: Yuri Tikhonov <yur@emcraft.com>
12279Date: Thu May 8 15:40:39 2008 +0200
12280
12281 POST: typo fix
12282
12283 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
12284
12285commit 727f63334676e760877d43bfb8f0e9331ac8b101
12286Author: Hebbar <gururajakr@sanyo.co.in>
12287Date: Tue May 20 02:16:36 2008 -0700
12288
12289 common/usb.c: fix incorrect escape sequence
12290
12291 Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
12292
12293commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
12294Author: York Sun <yorksun@freescale.com>
12295Date: Thu May 15 15:26:27 2008 -0500
12296
12297 Fix 8313ERDB board configuration
12298
12299 Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
12300 Correct TSEC1 vs TSEC2 assignment.
12301 Define ETHADDR and ETH1ADDR always.
12302
12303 Signed-off-by: York Sun <yorksun@freescale.com>
12304 Signed-off-by: Timur Tabi <timur@freescale.com>
12305
12306commit 2c289e320dcfb3760e99cf1d765cb067194a1202
12307Author: Jon Loeliger <jdl@freescale.com>
12308Date: Mon May 19 09:47:25 2008 -0500
12309
12310 mpc86xx: Removed unused and unconfigured memory test code.
12311
12312 Besides, other common code exists.
12313
12314 Signed-off-by: Jon Loeliger <jdl@freescale.com>
12315
12316commit 180a90abdae72587c0f679edf8991455e559440d
12317Author: Wolfgang Denk <wd@denx.de>
12318Date: Mon May 19 12:47:11 2008 +0200
12319
12320 Release v1.3.3
12321
12322 Update CHANGELOG for release.
12323
12324 Signed-off-by: Wolfgang Denk <wd@denx.de>
12325
Wolfgang Denk180a90a2008-05-19 12:47:11 +020012326commit 16bedc661de0dae767b1377d8413373a3fbcfa79
12327Author: Stefan Roese <sr@denx.de>
12328Date: Mon May 19 07:14:38 2008 +0200
12329
12330 ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
12331
12332 When SATA is selected (via jumper J6) we need to disable the first PCIe
12333 node in the device tree, so that Linux doesn't initialize it. Otherwise
12334 the Linux SATA driver will fail to detect the devices.
12335
12336 The same goes the other way around too. So if PCIe is selected we need
12337 to disable the SATA node in the device tree.
12338
12339 This is because PCIe port 0 and SATA on 460EX share the same pins
12340 (multiplexed) and we have to configure in U-Boot which peripheral is
12341 enabled.
12342
12343 Signed-off-by: Stefan Roese <sr@denx.de>
12344
12345commit 3cc27b426aeefe2930f911692e9df3143fb2565f
12346Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12347Date: Sun May 18 19:09:58 2008 +0200
12348
12349 i386: Fix multiple definitions of __show_boot_progress
12350
12351 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12352
12353commit 311f3446930c1e64c12026c1cfd00500b05be52d
12354Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12355Date: Sun May 18 19:09:57 2008 +0200
12356
12357 sc530_spunk: add missing SOBJS entry
12358
12359 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12360
12361commit a559317143b4f95927b08cd388707e6f077e95fa
12362Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12363Date: Sun May 18 19:09:56 2008 +0200
12364
12365 sc520_spunk: Fix flash
12366
12367 flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
12368 flash.c:398: error: label at end of compound statement
12369
12370 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12371
12372commit 91f221317af64191ee8caf303ea9305943158691
12373Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12374Date: Sun May 18 19:09:49 2008 +0200
12375
12376 drivers/pcmcia: add missing i82365
12377
12378 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12379
12380commit dd223944132f97ffa52977ea95e5a52428f5cc2f
12381Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12382Date: Sun May 18 19:09:47 2008 +0200
12383
12384 i386/bootm: remove unused var
12385
12386 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12387
12388commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
12389Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12390Date: Sun May 18 19:09:45 2008 +0200
12391
12392 example/gitignore: update with all generated examples
12393
12394 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12395
12396commit a38dc3ea8614f8b0c41e432b445a9959b9711295
12397Author: Wolfgang Denk <wd@denx.de>
12398Date: Thu May 15 00:42:45 2008 +0200
12399
12400 TQM8272: fix out-of-tree building
12401
12402 ...and add to MAKEALL script
12403
12404 Signed-off-by: Wolfgang Denk <wd@denx.de>
12405
12406commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
12407Author: Wolfgang Denk <wd@denx.de>
12408Date: Wed May 14 23:34:53 2008 +0200
12409
12410 environment: fix bug introduced by commit a8409f4f1ac8
12411
12412 env_get_char is not a function, but a pointer to one.
12413
12414 Signed-off-by: Wolfgang Denk <wd@denx.de>
12415
Wolfgang Denk01db2322008-06-28 23:16:01 +020012416commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
12417Author: Gary Jennejohn <garyj@denx.de>
12418Date: Wed May 14 13:39:22 2008 +0200
12419
12420 ppc4xx: QUAD100HD: Allow the environment to be put into flash.
12421
12422 After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect. Also
12423 use a redundant environment.
12424
12425 Signed-off-by: Gary Jennejohn <garyj@denx.de>
12426
Wolfgang Denk180a90a2008-05-19 12:47:11 +020012427commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
12428Author: Wolfgang Denk <wd@denx.de>
12429Date: Wed May 14 13:55:30 2008 +0200
12430
12431 Fix config files for out-of-tree building
12432
12433 Several board/<...>/config.mk files include dynamically built (by
12434 the Makefile) config files but used the wrong file name of
12435 $(TOPDIR)/board/$(BOARDDIR)/config.tmp
12436 instead if the correct
12437 $(OBJTREE)/board/$(BOARDDIR)/config.tmp
12438
12439 The bug is nasty because the build result is correct for the (normal)
12440 in-tree builds, and because 'sinclude' is used no errors get raised
12441 even for out-of-tree build tests. But out-of-tree builds use an
12442 incomplete and thus usually incorrect configuration...
12443
12444 Signed-off-by: Wolfgang Denk <wd@denx.de>
12445
12446commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
12447Author: Stefan Roese <sr@denx.de>
12448Date: Wed May 14 13:40:03 2008 +0200
12449
12450 ppc4xx: Fix bogus Canyonlands config.mk
12451
12452 This patch fixes the canyonlands config.mk file to enable correct
12453 out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
12454
12455 Signed-off-by: Stefan Roese <sr@denx.de>
12456
12457commit fdd1247a66d788a3446244f6fde9955a93c26322
12458Author: Stefan Roese <sr@denx.de>
12459Date: Wed May 14 10:32:32 2008 +0200
12460
12461 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
12462
12463 Canyonlands has a file ddr2_fixed.c which needs special treatment when
12464 building in separate directory. It has to be linked to build directory
12465 otherwise it is not seen.
12466
12467 Signed-off-by: Stefan Roese <sr@denx.de>
12468
12469commit a8409f4f1ac84c36273c1a1e341189662521bcfb
12470Author: Wolfgang Denk <wd@denx.de>
12471Date: Wed May 14 12:22:49 2008 +0200
12472
12473 environment: cleanup prototype declarations of env functions.
12474
12475 Signed-off-by: Wolfgang Denk <wd@denx.de>
12476
12477commit cf39b07948015c480b72a6e732cf7d839aa93a9e
12478Author: Wolfgang Denk <wd@denx.de>
12479Date: Wed May 14 12:21:48 2008 +0200
12480
12481 linkstation_HGLAN: Fix out of tree building.
12482
12483 Signed-off-by: Wolfgang Denk <wd@denx.de>
12484
12485commit 085551c05ca09e6c491ea11a1c6727a36776a545
12486Author: Stefan Roese <sr@denx.de>
12487Date: Wed May 14 10:32:32 2008 +0200
12488
12489 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
12490
12491 Canyonlands has a file ddr2_fixed.c which needs special treatment when
12492 building in separate directory. It has to be linked to build directory
12493 otherwise it is not seen.
12494
12495 Signed-off-by: Stefan Roese <sr@denx.de>
12496
12497commit 1510b82d50615f344e89d42533e8224cce067dc0
12498Author: Wolfgang Denk <wd@denx.de>
12499Date: Tue May 13 23:15:52 2008 +0200
12500
12501 Makefile: fix "error: version_autogenerated.h: No such file or directory"
12502
12503 Signed-off-by: Wolfgang Denk <wd@denx.de>
12504
Wolfgang Denk01db2322008-06-28 23:16:01 +020012505commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
12506Author: Stelian Pop <stelian@popies.net>
12507Date: Tue May 13 17:31:24 2008 +0200
12508
12509 Cleanup nand_info[] declaration.
12510
12511 The nand_info array is declared as extern in several .c files.
12512 Those days, nand.h contains a reference to the array, so there is
12513 no need to declare it elsewhere.
12514
12515 Signed-off-by: Stelian Pop <stelian@popies.net>
12516 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12517
Wolfgang Denk180a90a2008-05-19 12:47:11 +020012518commit 70fab1908fc1734a403711eaabbef546bc4b77dc
12519Author: Stefan Roese <sr@denx.de>
12520Date: Tue May 13 20:22:01 2008 +0200
12521
12522 ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
12523
12524 Signed-off-by: Stefan Roese <sr@denx.de>
12525
12526commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
12527Author: Wolfgang Denk <wd@denx.de>
12528Date: Mon May 12 01:11:21 2008 +0200
12529
12530 Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
12531
12532 This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
12533 which broke many PowerPC boards.
12534
12535commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
12536Author: Wolfgang Denk <wd@denx.de>
12537Date: Mon May 12 00:56:28 2008 +0200
12538
12539 Revert "Avoid initrd and logbuffer area overlaps"
12540
12541 This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
12542 which breaks building on all PPC boards that don't use a log buffer.
12543
12544commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
12545Author: Nick Spence <nick.spence@freescale.com>
12546Date: Sat May 10 14:02:04 2008 -0700
12547
12548 Fix offset calculation for multi-type legacy images.
12549
12550 Calculation of tail was incorrect when size % 4 == 0.
12551
12552 New code removes the conditional and does the same thing but with arithmetic
12553
12554 Signed-off-by: Nick Spence <nick.spence@freescale.com>
12555
12556commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
12557Author: Wolfgang Denk <wd@denx.de>
12558Date: Mon May 12 00:40:58 2008 +0200
12559
12560 Revert "Change env_get_char from a global function ptr to a function."
12561
12562 This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
12563 which is known to break booting from dataflash and NAND.
12564
12565commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
12566Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12567Date: Sun May 11 23:13:57 2008 +0200
12568
12569 API: remove duplicate syscall check
12570
12571 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12572
Wolfgang Denk01db2322008-06-28 23:16:01 +020012573commit 67e3beb52c320b0a31cf030716c99392cde2d532
12574Author: Stelian Pop <stelian@popies.net>
12575Date: Fri May 9 21:46:51 2008 +0200
12576
12577 AT91: Cleanup unused config header file definitions.
12578
12579 CONFIG_ENV_OVERWRITE is commented out in the config header files,
12580 so let's cleanup the files by removing the whole definition.
12581
12582 Signed-off-by: Stelian Pop <stelian@popies.net>
12583 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12584
12585commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
12586Author: Stelian Pop <stelian@popies.net>
12587Date: Thu May 8 14:52:34 2008 +0200
12588
12589 Support AT91CAP9 revC CPUs
12590
12591 The AT91CAP9 revC CPU has a few differences over the previous,
12592 revB CPU which was distributed in small quantities only (revA was
12593 an internal Atmel product only).
12594
12595 The revC silicon needs a special initialisation sequence to
12596 switch from the internal (imprecise) RC oscillator to the
12597 external 32k clock.
12598
12599 Signed-off-by: Stelian Pop <stelian@popies.net>
12600 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12601
12602commit 098b7b4b441b12c2a64dd517930f43c793542759
12603Author: Stelian Pop <stelian@popies.net>
12604Date: Thu May 8 14:52:33 2008 +0200
12605
12606 Use custom logo for Atmel boards
12607
12608 This patch adds a custom vendor logo for the Atmel AT91 boards.
12609
12610 Signed-off-by: Stelian Pop <stelian@popies.net>
12611 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12612
12613commit 761c70b80cdd3bead40146b96a8e713d6ae01632
12614Author: Stelian Pop <stelian@popies.net>
12615Date: Thu May 8 14:52:32 2008 +0200
12616
12617 AT91SAM9RLEK: hook up the ATMEL LCD driver
12618
12619 This patch makes the necessary adaptations (PIO configurations and
12620 defines in config header file) to hook up the Atmel LCD driver to the
12621 AT91SAM9RLEK board.
12622
12623 Signed-off-by: Stelian Pop <stelian@popies.net>
12624 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12625
12626commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
12627Author: Stelian Pop <stelian@popies.net>
12628Date: Thu May 8 14:52:31 2008 +0200
12629
12630 AT91SAM9263EK: hook up the ATMEL LCD driver
12631
12632 This patch makes the necessary adaptations (PIO configurations and
12633 defines in config header file) to hook up the Atmel LCD driver to the
12634 AT91SAM9263EK board.
12635
12636 Signed-off-by: Stelian Pop <stelian@popies.net>
12637 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12638
12639commit 820f2a958325061a446115f3035e48e4726b3390
12640Author: Stelian Pop <stelian@popies.net>
12641Date: Thu May 8 14:52:30 2008 +0200
12642
12643 AT91SAM9261EK: hook up the ATMEL LCD driver
12644
12645 This patch makes the necessary adaptations (PIO configurations and
12646 defines in config header file) to hook up the Atmel LCD driver to the
12647 AT91SAM9261EK board.
12648
12649 Signed-off-by: Stelian Pop <stelian@popies.net>
12650 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12651
12652commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
12653Author: Stelian Pop <stelian@popies.net>
12654Date: Thu May 8 14:52:29 2008 +0200
12655
12656 AT91CAP9ADK: hook up the ATMEL LCD driver
12657
12658 This patch makes the necessary adaptations (PIO configurations and
12659 defines in config header file) to hook up the Atmel LCD driver to the
12660 AT91CAP9ADK board.
12661
12662 Signed-off-by: Stelian Pop <stelian@popies.net>
12663 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12664
12665commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
12666Author: Stelian Pop <stelian@popies.net>
12667Date: Fri May 9 21:57:18 2008 +0200
12668
12669 Add ATMEL LCD driver
12670
12671 This patch adds support for the ATMEL LCDC driver which is used on some
12672 AT91 and AVR platforms.
12673
12674 Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
12675 AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
12676
12677 Signed-off-by: Stelian Pop <stelian@popies.net>
12678 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12679
12680commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
12681Author: Stelian Pop <stelian@popies.net>
12682Date: Thu May 8 18:52:25 2008 +0200
12683
12684 AT91SAM9RLEK support
12685
12686 This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
12687 board.
12688
12689 Signed-off-by: Stelian Pop <stelian@popies.net>
12690 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12691
12692commit 8e429b3eee23927c1222679f6b6f53667b21595c
12693Author: Stelian Pop <stelian@popies.net>
12694Date: Thu May 8 18:52:23 2008 +0200
12695
12696 AT91SAM9263EK support
12697
12698 This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
12699 board.
12700
12701 Signed-off-by: Stelian Pop <stelian@popies.net>
12702 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12703
12704commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
12705Author: Stelian Pop <stelian@popies.net>
12706Date: Thu May 8 20:52:22 2008 +0200
12707
12708 AT91SAM9261EK support
12709
12710 This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
12711 board.
12712
12713 Signed-off-by: Stelian Pop <stelian@popies.net>
12714 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12715
12716commit 86c8c8a414988c50104a3b02c29f50af2be738c0
12717Author: Stelian Pop <stelian@popies.net>
12718Date: Thu May 8 20:52:21 2008 +0200
12719
12720 AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
12721
12722 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
12723 in order to cope with the changes in DataFlash partitionning scheme
12724 (cset c3a60cb3).
12725
12726 Signed-off-by: Stelian Pop <stelian@popies.net>
12727 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12728
12729commit 96996ac25d5222611a8888968db6e53a6d3726da
12730Author: Stelian Pop <stelian@popies.net>
12731Date: Thu May 8 20:52:20 2008 +0200
12732
12733 AT91SAM9260EK: Normalize BOOTARGS
12734
12735 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
12736 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
12737 variable.
12738
12739 Signed-off-by: Stelian Pop <stelian@popies.net>
12740 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12741
12742commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
12743Author: Stelian Pop <stelian@popies.net>
12744Date: Thu May 8 20:52:19 2008 +0200
12745
12746 AT91SAM9260EK: Normalize SPI timings
12747
12748 This patch changes the SPI timings to closely match the ones
12749 used by the Linux kernel and the Atmel's own bootstrap project.
12750
12751 Signed-off-by: Stelian Pop <stelian@popies.net>
12752 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12753
12754commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
12755Author: Stelian Pop <stelian@popies.net>
12756Date: Thu May 8 20:52:18 2008 +0200
12757
12758 AT91SAM9260EK: Handle 8 or 16 bit NAND
12759
12760 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
12761 makes the support configurable in the board config header file
12762 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
12763
12764 Signed-off-by: Stelian Pop <stelian@popies.net>
12765 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12766
12767commit ab52640fc01624e208424e527af0b7b3a5a65a12
12768Author: Stelian Pop <stelian@popies.net>
12769Date: Thu May 8 20:52:17 2008 +0200
12770
12771 AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
12772
12773 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
12774 in order to cope with the changes in DataFlash partitionning scheme
12775 (cset c3a60cb3).
12776
12777 Signed-off-by: Stelian Pop <stelian@popies.net>
12778 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12779
12780commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
12781Author: Stelian Pop <stelian@popies.net>
12782Date: Thu May 8 20:52:16 2008 +0200
12783
12784 AT91CAP9ADK: Normalize BOOTARGS
12785
12786 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
12787 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
12788 variable.
12789
12790 Signed-off-by: Stelian Pop <stelian@popies.net>
12791 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12792
12793commit 93da48b910511911ce110656e17ed733c8ac4c45
12794Author: Stelian Pop <stelian@popies.net>
12795Date: Thu May 8 20:52:15 2008 +0200
12796
12797 AT91CAP9ADK: Normalize SPI timings
12798
12799 This patch changes the SPI timings to closely match the ones
12800 used by the Linux kernel and the Atmel's own bootstrap project.
12801
12802 Signed-off-by: Stelian Pop <stelian@popies.net>
12803 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12804
12805commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
12806Author: Stelian Pop <stelian@popies.net>
12807Date: Thu May 8 20:52:14 2008 +0200
12808
12809 AT91CAP9ADK: Handle 8 or 16 bit NAND
12810
12811 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
12812 makes the support configurable in the board config header file
12813 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
12814
12815 Signed-off-by: Stelian Pop <stelian@popies.net>
12816 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12817
12818commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
12819Author: Stelian Pop <stelian@popies.net>
12820Date: Thu May 8 20:52:13 2008 +0200
12821
12822 Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
12823
12824 All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
12825 below avoids the duplication of u-boot.lds by putting the file in the
12826 cpu directory instead of the board one.
12827
12828 Signed-off-by: Stelian Pop <stelian@popies.net>
12829 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12830
12831commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
12832Author: Stelian Pop <stelian@popies.net>
12833Date: Thu May 8 20:52:12 2008 +0200
12834
12835 Add proper copyright notices in Atmel boards Makefiles
12836
12837 The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
12838 copyright notice. This patch adds the missing pieces.
12839
12840 Signed-off-by: Stelian Pop <stelian@popies.net>
12841 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12842
12843commit e817a042cef6164bf26fee86f90326f2ec9e6745
12844Author: Stelian Pop <stelian@popies.net>
12845Date: Thu May 8 20:52:11 2008 +0200
12846
12847 Add copyright information in Atmel boards partition.c
12848
12849 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
12850 the new created files. This patch fixes the problem.
12851
12852 Signed-off-by: Stelian Pop <stelian@popies.net>
12853 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12854
12855commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
12856Author: Stelian Pop <stelian@popies.net>
12857Date: Thu May 8 20:52:10 2008 +0200
12858
12859 Update origin and copyright information in arch-at91sam9 header files
12860
12861 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
12862 copied from the Linux kernel sources. This patch explicitly specifies
12863 this origin for all the copied headers, and for those missing copyright
12864 information, adds it.
12865
12866 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
12867 in the latest kernel sources by 'at91sam9_smc.h'.
12868
12869 The copyright information has been confirmed by the AT91 Linux kernel
12870 maintainer, Andrew Victor <avictor.za@gmail.com>.
12871
12872 Signed-off-by: Stelian Pop <stelian@popies.net>
12873 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12874
Wolfgang Denk180a90a2008-05-19 12:47:11 +020012875commit 79dd1712689d6a5031d7cbff54957049680751c7
12876Author: Markus Klotzbücher <mk@denx.de>
12877Date: Thu May 8 16:00:55 2008 +0200
12878
12879 ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
12880
12881 When using dhcp/bootp the "netmask" environment variable is not set
12882 because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
12883 desireable, so the following patch adds this this option to the board
12884 config.
12885
12886 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
12887 Signed-off-by: Stefan Roese <sr@denx.de>
12888
12889commit 869d14b4cc2e47de2ddcb117bad0407a44436684
12890Author: Stefan Roese <sr@denx.de>
12891Date: Sat May 10 10:30:36 2008 +0200
12892
12893 ppc4xx: Update Makalu defconfig to use device-tree booting as default
12894
12895 This patch reworks the default environment on Makalu. Now "net_nfs" for
12896 example uses the device-tree style booting formerly know as "net_nfs_fdt".
12897 Also the addresses in RAM were changed because of the new image booting
12898 support, which check for image overwriting. So the addresses needed to
12899 get adjusted.
12900
12901 Signed-off-by: Stefan Roese <sr@denx.de>
12902
12903commit f3612a7b199cab3942f60d9c1392eb39d58cc699
12904Author: Becky Bruce <bgill@freescale.com>
12905Date: Wed May 7 13:28:16 2008 -0500
12906
12907 PPC: fix map_physmem build warning
12908
12909 map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
12910 enabled. This quiets the warning.
12911
12912 Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
12913
12914commit 36f32675f40292002ee1fed252c180a43022d2d4
12915Author: Becky Bruce <bgill@freescale.com>
12916Date: Wed May 7 13:24:57 2008 -0500
12917
12918 Update pci code to use phys_addr_t
12919
12920 Physical addrs need to be represented by phys_addr_t, not
12921 unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT
12922 are going to fail mightily.
12923
12924 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12925
12926commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
12927Author: Nick Spence <nick.spence@freescale.com>
12928Date: Thu May 8 22:32:22 2008 -0700
12929
12930 Support legacy multi-type images without FDT section.
12931
12932 This patch enables legacy multi-type images containing only a Linux kernel
12933 and root file system to be loaded, maintaining compatibility with previous
12934 versions of u-boot.
12935
12936 This is required when using old image files such as a Linux 2.4 kernel /
12937 filesystem.
12938
12939 Signed-off-by: Nick Spence <nick.spence@freescale.com>
12940 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
12941
12942commit 881031d9732783b7aeae2198fc7eb480ae8974a6
12943Author: Wolfgang Denk <wd@denx.de>
12944Date: Sat May 10 00:38:02 2008 +0200
12945
12946 Update CHANGELOG.
12947
12948 Signed-off-by: Wolfgang Denk <wd@denx.de>
12949
Wolfgang Denk881031d2008-05-10 00:38:02 +020012950commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
12951Author: Wolfgang Denk <wd@denx.de>
12952Date: Sat May 10 00:36:09 2008 +0200
12953
12954 post/cpu/ppc4xx/Makefile: line length cleanup
12955
12956 Signed-off-by: Wolfgang Denk <wd@denx.de>
12957
12958commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
12959Author: Stelian Pop <stelian@popies.net>
12960Date: Thu May 8 22:52:09 2008 +0200
12961
12962 Fix @ -> <at> substitution
12963
12964 When applying the AT91CAP9 patches upstream, something transformed
12965 the '@' character into the ' <at> ' sequence.
12966
12967 The patch below restores the original form in all the places where
12968 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
12969 were copied from AT91CAP9, and a couple of other files where the
12970 ' <at> ' sequence was present).
12971
12972 Signed-off-by: Stelian Pop <stelian@popies.net>
12973
12974commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
12975Author: Stelian Pop <stelian@popies.net>
12976Date: Thu May 8 22:52:10 2008 +0200
12977
12978 Update origin and copyright information in arch-at91sam9 header files
12979
12980 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
12981 copied from the Linux kernel sources. This patch explicitly specifies
12982 this origin for all the copied headers, and for those missing copyright
12983 information, adds it.
12984
12985 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
12986 in the latest kernel sources by 'at91sam9_smc.h'.
12987
12988 The copyright information has been confirmed by the AT91 Linux kernel
12989 maintainer, Andrew Victor <avictor.za@gmail.com>.
12990
12991 Signed-off-by: Stelian Pop <stelian@popies.net>
12992
12993commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
12994Author: Stelian Pop <stelian@popies.net>
12995Date: Thu May 8 22:52:11 2008 +0200
12996
12997 Add copyright information in Atmel boards partition.c
12998
12999 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
13000 the new created files. This patch fixes the problem.
13001
13002 Signed-off-by: Stelian Pop <stelian@popies.net>
13003
13004commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
13005Author: Guennadi Liakhovetski <lg@denx.de>
13006Date: Thu May 8 10:09:27 2008 +0200
13007
13008 mx31ads: fix 32kHz clock handling
13009
13010 According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
13011 oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
13012 Also fix a typo when verifying a jumper configuration. While at it, make
13013 two needlessly global functions static.
13014
13015 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
13016
13017commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
13018Author: Marian Balakowicz <m8@semihalf.com>
13019Date: Wed May 7 13:10:04 2008 +0200
13020
13021 Avoid initrd and logbuffer area overlaps
13022
13023 Add logbuffer to reserved LMB areas to prevent initrd allocation
13024 from overlaping with it.
13025
13026 Make sure to use correct logbuffer base address.
13027
13028 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
13029
13030commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
13031Author: Marian Balakowicz <m8@semihalf.com>
13032Date: Wed May 7 13:08:54 2008 +0200
13033
13034 ppc: Cleanup get_effective_memsize() use
13035
13036 Removed duplicated effective memory size calculation code.
13037
13038 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
13039
13040commit 273c37d843d5b581090378016cd12dd9c586907b
13041Author: Marian Balakowicz <m8@semihalf.com>
13042Date: Wed May 7 09:03:53 2008 +0200
13043
13044 Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
13045
13046 Recent modifcations to LOGBUFFER handling code were incorrecly
13047 introduced to fit_check_kernel() routine during
13048 "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
13049 commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
13050
13051 This patch cleans up this merge issue.
13052
13053 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
13054
13055commit bc11756daff89a3de09ca80adac962b88cf06e6e
13056Author: Grant Erickson <gerickson@nuovations.com>
13057Date: Tue May 6 20:16:15 2008 -0700
13058
13059 Propagate Error Status to the Shell on fw_printenv Errors
13060
13061 Changed implementation such that fw_printenv returns failure status
13062 when one or more specified variables do not exist or when incorrect
13063 command syntax is used.
13064
13065 This aids scripting fw_printenv such that the script can key of the
13066 return status rather than relying on standard error "scraping".
13067
13068 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13069 Signed-off-by: Wolfgang Denk <wd@denx.de>
13070
13071commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
13072Author: Grant Erickson <gerickson@nuovations.com>
13073Date: Tue May 6 16:18:00 2008 -0700
13074
13075 Fix Compilation Errors with 'tools/env/fw_printenv'
13076
13077 In the current top-of-tree, 1.3.3.-rc2, the optional tool
13078 'tools/env/fw_printenv' fails to compile for two reasons:
13079
13080 1) The header watchdog.h cannot be found.
13081 2) The header zlib.h is picked up from the tool chain rather than the
13082 project causing a prototype conflict for crc32.
13083
13084 This patch addresses both of these issues.
13085
13086 Platforms Tested On:
13087 - AMCC "Kilauea"
13088
13089 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13090
13091commit 597f6c26a18b389903a64692bacbf9a1ca69355b
13092Author: James Yang <James.Yang@freescale.com>
13093Date: Mon May 5 10:22:53 2008 -0500
13094
13095 Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
13096
13097 When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
13098 work before relocating to RAM because command history is written into
13099 a global array that is not writable before relocation. This patch
13100 defers to the no-editing and no-history code in readline_into_buffer()
13101 if it is called before relocation.
13102
13103 Signed-off-by: James Yang <James.Yang@freescale.com>
13104 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13105
13106commit 726c0f1e5f108dccea052965123b95837d2bd402
13107Author: Detlev Zundel <dzu@denx.de>
13108Date: Mon May 5 16:11:22 2008 +0200
13109
13110 cosmetic: Adjust coding style for switch statements to be consistent
13111
13112 Signed-off-by: Detlev Zundel <dzu@denx.de>
13113
13114commit 574b319512b13e10800f0045e39b993f4ca25e42
13115Author: Detlev Zundel <dzu@denx.de>
13116Date: Mon May 5 16:11:21 2008 +0200
13117
13118 Fix disk type output in disk/part.c
13119
13120 Signed-off-by: Detlev Zundel <dzu@denx.de>
13121
13122commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
13123Author: Vlad Lungu <vlad.lungu@windriver.com>
13124Date: Mon May 5 14:20:03 2008 +0300
13125
13126 Mail address change, documentation modified
13127
13128 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
13129
13130commit 4d49b28038e2819088e8356a77212fc95a89ce5a
13131Author: Michal Simek <monstr@monstr.eu>
13132Date: Sun May 4 15:42:41 2008 +0200
13133
13134 microblaze: Repare intc handling
13135
13136 Signed-off-by: Michal Simek <monstr@monstr.eu>
13137
13138commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
13139Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13140Date: Sun May 4 15:17:52 2008 +0200
13141
13142 include/gitignore: update to all architectures
13143
13144 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13145
13146commit 1df368aed3b8bc240fe1595d290b0e91b22961da
13147Author: Marcel Ziswiler <marcel@ziswiler.com>
13148Date: Mon May 5 02:12:06 2008 +0200
13149
13150 ide: Remove spurious second include of io.h
13151
13152 Removed the second include, with all the #ifdef around as suggested by Wolfgang.
13153
13154 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13155
13156commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
13157Author: Adrian Filipi <adrian.filipi@eurotech.com>
13158Date: Tue May 6 16:46:37 2008 -0400
13159
13160 Fix some typos
13161
13162 This patch fixes three typos.
13163 The first is a repetition of CONFIG_CMD_BSP.
13164 The second makes the #endif comment match its #if.
13165 The third is a spelling error.
13166
13167 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
13168
13169commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
13170Author: Grant Erickson <gerickson@nuovations.com>
13171Date: Sun May 4 16:45:01 2008 -0700
13172
13173 Recognize 'powerpc' As an Alias for IH_ARCH_PPC
13174
13175 Add support for the recognition of 'powerpc' as an alias for the PowerPC
13176 architecture type since Linux is already trending in that direction,
13177 preferring 'powerpc' to 'ppc'.
13178
13179 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13180
13181commit f5a24259190c388c2527bdc49fee34577d862cc7
13182Author: Wheatley Travis <Travis.Wheatley@freescale.com>
13183Date: Fri May 2 13:35:15 2008 -0700
13184
13185 7450 and 86xx L2 cache invalidate bug corrections
13186
13187 The 7610 and related parts have an L2IP bit in the L2CR that is
13188 monitored to signal when the L2 cache invalidate is complete whereas the
13189 7450 and related parts utilize L2I for this purpose. However, the
13190 current code does not account for this difference. Additionally the 86xx
13191 L2 cache invalidate code used an "andi" instruction where an "andis"
13192 instruction should have been used.
13193
13194 This patch addresses both of these bugs.
13195
13196 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
13197 Acked-By: Jon Loeliger <jdl@freescale.com>
13198
13199commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
13200Author: Wolfgang Denk <wd@denx.de>
13201Date: Fri May 9 10:16:13 2008 +0200
13202
13203 Avoid infinite loop "Generating include/autoconf.mk"
13204
13205 Fix a bogus circular dependency that caused an infinite loop of
13206 "Generating include/autoconf.mk" again and again.
13207
13208 Signed-off-by: Wolfgang Denk <wd@denx.de>
13209
Wolfgang Denk01db2322008-06-28 23:16:01 +020013210commit 567fb852178dbf59529d7301620a3f3732a4b02d
13211Author: Stelian Pop <stelian@popies.net>
13212Date: Thu May 8 22:52:09 2008 +0200
13213
13214 Fix @ -> <at> substitution
13215
13216 When applying the AT91CAP9 patches upstream, something transformed
13217 the '@' character into the ' <at> ' sequence.
13218
13219 The patch below restores the original form in all the places where
13220 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
13221 were copied from AT91CAP9, and a couple of other files where the
13222 ' <at> ' sequence was present).
13223
13224 Signed-off-by: Stelian Pop <stelian@popies.net>
13225 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13226
13227commit 73ccb3410a0785593cda7aee455dfc51f790e281
13228Author: Gary Jennejohn <gary.jennejohn@freenet.de>
13229Date: Mon Apr 28 14:04:32 2008 +0200
13230
13231 ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
13232
13233 Signed-off-by: Gary Jennejohn <garyj@denx.de>
13234 Signed-off-by: Stefan Roese <sr@denx.de>
13235
Wolfgang Denk881031d2008-05-10 00:38:02 +020013236commit ef2642625cbfb1c3695e3478d08ae515052a4950
13237Author: Stefan Roese <sr@denx.de>
13238Date: Thu May 8 11:10:46 2008 +0200
13239
13240 ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
13241
13242 Signed-off-by: Stefan Roese <sr@denx.de>
13243
13244commit a00eccfebc954ad9485161efeca7d9aaf626d530
13245Author: Stefan Roese <sr@denx.de>
13246Date: Thu May 8 11:05:15 2008 +0200
13247
13248 ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
13249
13250 This patch adds fdt (flattened device tree) support to all remaining AMCC
13251 eval boards. Most newer boards already support device tree. With this patch,
13252 all AMCC boards now enable device tree passing from U-Boot to Linux
13253 arch/powerpc kernels.
13254
13255 Signed-off-by: Stefan Roese <sr@denx.de>
13256
13257commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
13258Author: Stefan Roese <sr@denx.de>
13259Date: Thu May 8 11:01:09 2008 +0200
13260
13261 ppc4xx: Add weak default ft_board_setup() routine
13262
13263 This patch adds a default ft_board_setup() routine to the 4xx fdt code.
13264 This routine is defined as weak and can be overwritten by a board specific
13265 one if needed.
13266
13267 Signed-off-by: Stefan Roese <sr@denx.de>
13268
13269commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
13270Author: Stefan Roese <sr@denx.de>
13271Date: Thu May 8 10:48:58 2008 +0200
13272
13273 ppc4xx: acadia: Add fdt support and fix section overlap problem
13274
13275 This patch adds fdt (flattened device tree) support to the AMCC
13276 Acadia eval board. This increases the image size and it doesn't
13277 fit anymore into 256kByte. Since we didn't want to remove features
13278 from the configuration, we decided to increase the U-Boot image size
13279 (add one flash sector).
13280
13281 Also changed the default environment definition to make it
13282 independent of such changes.
13283
13284 Signed-off-by: Stefan Roese <sr@denx.de>
13285
13286commit 4adb3023de75bc150f088c8935db340930ad38c8
13287Author: Ira Snyder <iws@ovro.caltech.edu>
13288Date: Tue Apr 29 11:18:54 2008 -0700
13289
13290 ppc4xx: Add device tree support to AMCC Yosemite
13291
13292 Add support for booting with a device tree blob. This is needed to boot
13293 ARCH=powerpc kernels. Also add support for setting the eth0 mac address
13294 via the ethaddr variable.
13295
13296 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
13297 Signed-off-by: Stefan Roese <sr@denx.de>
13298
13299commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
13300Author: Dave Mitchell <dmitchell@amcc.com>
13301Date: Wed May 7 09:00:23 2008 -0700
13302
13303 ppc4xx: Fix typos in 460GT/EX FBDV array
13304
13305 Corrected two typos in the 460GT/EX FBDV array.
13306
13307 Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
13308 Signed-off-by: Stefan Roese <sr@denx.de>
13309
13310commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
13311Author: Andy Fleming <afleming@freescale.com>
13312Date: Wed May 7 16:54:31 2008 -0500
13313
13314 85xx: Limit CPU2 workaround to parts that have the errata
13315
13316 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
13317 Signed-off-by: Andy Fleming <afleming@freescale.com>
13318
13319commit a5fe514e8ace564300d2c1d73846ddff49654243
13320Author: Lee Nipper <lee.nipper@freescale.com>
13321Date: Fri Apr 25 15:44:45 2008 -0500
13322
13323 mpc83xx: system performance settings for MPC8349EMDS.
13324
13325 These same settings are used on MPC8349ITX, and
13326 improve performance on MPC8349EMDS.
13327
13328 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
13329 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13330
13331commit 49387dba910e485640b575e920ee463b7e611dc3
13332Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13333Date: Tue May 6 13:22:52 2008 +0900
13334
13335 [MIPS] cpu/mips/cache.S: Fix build warning
13336
13337 Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
13338 warns illegal global symbol references by bal (and jal also) instruction.
13339 This does not happen with the latest binutils v2.18.
13340
13341 Here's an example on gth2_config:
13342
13343 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
13344 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
13345 c -EB -c -o cache.o cache.S
13346 cache.S: Assembler messages:
13347 cache.S:243: Warning: Pretending global symbol used as branch target is local.
13348 cache.S:250: Warning: Pretending global symbol used as branch target is local.
13349
13350 In principle, gas might be sensitive to global symbol references in PIC
13351 code because they should be processed through GOT (global offset table).
13352 But if `bal' instruction is used, it results in PC-based offset jump.
13353 This is the cause of this warning.
13354
13355 In practice, we know it doesn't matter whether PC-based reference or GOT-
13356 based. As for this case, both will work before/after relocation. But let's
13357 fix the code.
13358
13359 This patch explicitly sets up a target address, then jump there.
13360 Here's an example of disassembled code with/without this patch.
13361
13362 90000668: 1485ffef bne a0,a1,90000628 <mips_cache_reset+0x20>
13363 9000066c: ac80fffc sw zero,-4(a0)
13364 90000670: 01402821 move a1,t2
13365 -90000674: 0411ffba bal 90000560 <mips_init_icache>
13366 -90000678: 01803021 move a2,t4
13367 -9000067c: 01602821 move a1,t3
13368 -90000680: 0411ffcc bal 900005b4 <mips_init_dcache>
13369 -90000684: 01a03021 move a2,t5
13370 -90000688: 03000008 jr t8
13371 -9000068c: 00000000 nop
13372 +90000674: 01803021 move a2,t4
13373 +90000678: 8f8f83ec lw t7,-31764(gp)
13374 +9000067c: 01e0f809 jalr t7
13375 +90000680: 00000000 nop
13376 +90000684: 01602821 move a1,t3
13377 +90000688: 01a03021 move a2,t5
13378 +9000068c: 8f8f81e0 lw t7,-32288(gp)
13379 +90000690: 01e0f809 jalr t7
13380 +90000694: 00000000 nop
13381 +90000698: 03000008 jr t8
13382 +9000069c: 00000000 nop
13383
13384 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13385
13386commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
13387Author: Vlad Lungu <vlad.lungu@windriver.com>
13388Date: Mon May 5 14:04:00 2008 +0300
13389
13390 Allow building mips versions with ELDK 3.1.1
13391
13392 .gpword works only with local symbols on certain binutils versions
13393
13394 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
13395
13396commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
13397Author: Wolfgang Denk <wd@denx.de>
13398Date: Mon May 5 12:52:36 2008 +0200
13399
13400 MAKEALL: add inka4x0 board
13401
13402 Signed-off-by: Wolfgang Denk <wd@denx.de>
13403
13404commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
13405Author: Wolfgang Denk <wd@denx.de>
13406Date: Sun May 4 21:34:23 2008 +0200
13407
13408 kb9202 board: fix build problem.
13409
13410 Signed-off-by: Wolfgang Denk <wd@denx.de>
13411
13412commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
13413Author: Wolfgang Denk <wd@denx.de>
13414Date: Sun May 4 12:10:33 2008 +0200
13415
13416 Prepare for v1.3.3-rc3
13417
13418 Update ChNAGELOG, minor white space cleanup.
13419
13420 Signed-off-by: Wolfgang Denk <wd@denx.de>
13421
Wolfgang Denk6adf61d2008-05-04 12:10:33 +020013422commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
13423Author: Wolfgang Denk <wd@denx.de>
13424Date: Sun May 4 00:35:15 2008 +0200
13425
13426 drivers/net/tsec.c: Fix typo.
13427
13428 Signed-off-by: Wolfgang Denk <wd@denx.de>
13429
13430commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
13431Author: Mike Frysinger <vapier@gentoo.org>
13432Date: Fri May 2 21:45:12 2008 -0400
13433
13434 version_autogenerated.h: use printf rather than echo -n
13435
13436 Some systems are dumb and do not implement the -n flag to echo (like OS X).
13437 Convert the Makefile to use printf as this should work everywhere.
13438
13439 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13440 Signed-off-by: Wolfgang Denk <wd@denx.de>
13441
13442commit 4acc2a108ad0a669165924704a6cb083f9138242
13443Author: Mike Frysinger <vapier@gentoo.org>
13444Date: Fri May 2 18:17:50 2008 -0400
13445
13446 fix building when saveenv is disabled in some setups
13447
13448 If you enable environment in the flash, but disable the embedded
13449 option, and you disable the saveenv command, then the #if nested
13450 logic will trigger a compile failure:
13451 env_flash.c: In function 'env_relocate_spec':
13452 env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
13453 The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
13454
13455 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13456
13457commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
13458Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
13459Date: Fri May 2 16:10:04 2008 -0400
13460
13461 SBC8548: fix address mask to allow 64M flash
13462
13463 Fix incorrect mask to enable all 64MB of onboard flash.
13464 Previously U-Boot incorrectly mapped only 8MB of flash, this
13465 patch correctly maps all the available flash.
13466
13467 Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
13468
13469commit 3648085c464c8c22ef76fab006ca4344d3796124
13470Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13471Date: Fri May 2 19:48:56 2008 +0200
13472
13473 qemu_mips: add README
13474
13475 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13476
13477commit 6fdd002689190a0022c7b3dbab37fcba724580ce
13478Author: Marcel Ziswiler <marcel@ziswiler.com>
13479Date: Fri May 2 02:35:59 2008 +0200
13480
13481 Fix misspelled comment
13482
13483 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13484
13485commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
13486Author: Mike Frysinger <vapier@gentoo.org>
13487Date: Thu May 1 04:13:05 2008 -0400
13488
13489 mkimage: make mmap() checks consistent
13490
13491 The mmap() related code is full of inconsistent casts/constants when
13492 it comes to error checking, and may break when building on some
13493 systems (like ones that do not implicitly define the caddr_t type).
13494 Let's just avoid the whole mess by writing the code nice and clean in
13495 the first place.
13496
13497 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13498
13499commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
13500Author: Marcel Ziswiler <marcel@ziswiler.com>
13501Date: Thu May 1 09:05:34 2008 +0200
13502
13503 Fix defined but not used build warning
13504
13505 - warning: 'srom' defined but not used
13506
13507 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13508
13509commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
13510Author: Marcel Ziswiler <marcel@ziswiler.com>
13511Date: Thu May 1 09:05:26 2008 +0200
13512
13513 Fix implicit declaration build warnings
13514
13515 - warning: implicit declaration of function ‘serial_initialize’
13516
13517 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
13518
13519commit 9acde129cc3f9c1b3bc11a821480dd446774d618
13520Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
13521Date: Tue Apr 29 19:18:32 2008 +0200
13522
13523 TSEC: add config options for VSC8601 RGMII PHY
13524
13525 The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
13526 and Tx clock lines. They are configured using 2 bits in extended
13527 register 0x17.
13528 Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
13529 been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
13530
13531 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
13532 Acked-by: Andy Fleming <afleming@freescale.com>
13533 Acked-by: Ben Warren <biggerbadderben@gmail.com>
13534 --
13535
13536 drivers/net/tsec.c | 6 ++++++
13537 drivers/net/tsec.h | 3 +++
13538 2 files changed, 9 insertions(+), 0 deletions(-)
13539
13540commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
13541Author: Wolfgang Denk <wd@denx.de>
13542Date: Sat May 3 23:07:15 2008 +0200
13543
13544 Revert "ColdFire: Get information from the correct GCC"
13545
13546 This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
13547 (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
13548
13549commit c4e5f52a58d278eebb87f476e353972c5dacea40
13550Author: Wolfgang Denk <wd@denx.de>
13551Date: Sat May 3 22:25:00 2008 +0200
13552
13553 config.mk: use correct (cross) compiler
13554
13555 Some config.mk files reference $(CC) to test for specific tool chain
13556 features, so make sure $(CC) gets set before including any such
13557 config files.
13558
13559 This patch replaces commit b7166e05a5 ("ColdFire: Get information from
13560 the correct GCC").
13561
13562 Signed-off-by: Wolfgang Denk <wd@denx.de>
13563
13564commit 27c38689d0cfde0e444239345f97b5eecc9f4067
13565Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13566Date: Thu May 1 02:13:44 2008 +0200
13567
13568 pxa: fix previous definition on cpu init
13569
13570 start.S:183:1: warning: "ICMR" redefined
13571 In file included from start.S:33:
13572 include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
13573 start.S:187:1: warning: "RCSR" redefined
13574 ...
13575
13576 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13577
13578commit 6d12e697de794d700767f22f950e3026ccf4daf6
13579Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13580Date: Thu May 1 02:13:43 2008 +0200
13581
13582 pxa: fix pcmcia operation on 'i' may be undefined
13583
13584 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13585 Signed-off-by: Wolfgang Denk <wd@denx.de>
13586
13587commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
13588Author: Kumar Gala <galak@kernel.crashing.org>
13589Date: Wed Apr 30 16:24:35 2008 -0500
13590
13591 MPC8610HPCD: Drop -O2 from the build flags
13592
13593 Make the flags use -Os like all other boards
13594
13595 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13596
13597commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
13598Author: Stefan Roese <sr@denx.de>
13599Date: Wed Apr 30 15:50:39 2008 +0200
13600
13601 RTC: Fix month offset by one problem in M41T62 RTC driver
13602
13603 This patch fixes a problem with the month being read and written
13604 incorrectly (offset by one). This only gets visible by also using
13605 the Linux driver (rtc-m41t80).
13606
13607 Tested on AMCC Canyonlands.
13608
13609 Signed-off-by: Stefan Roese <sr@denx.de>
13610
13611commit 141ba1cad8e6598a2466e7e2976c6a12285df619
13612Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13613Date: Sat May 3 13:51:44 2008 +0900
13614
13615 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
13616
13617 Current trick to pick up GNU assembler minor version uses a dot(.) as a
13618 delimiter, and take the second field to obtain minor version number. But
13619 as can be expected, this doesn't work with a version string which has
13620 dots more than needs.
13621
13622 Here's an example:
13623
13624 $ mips-linux-gnu-as --version | grep 'GNU assembler'
13625 GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
13626 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
13627 2-129) 2
13628 $
13629
13630 This patch restricts the version format to 2.XX.XX... This will work
13631 in most cases.
13632
13633 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
13634 2.18.50.20080215
13635 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
13636 18
13637 $
13638
13639 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13640
13641commit ea638951acead7f1086c908c0b9f086beab82a22
13642Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13643Date: Sat May 3 13:51:28 2008 +0900
13644
13645 [MIPS] cpu/mips/cache.S: Add dcache_enable
13646
13647 Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
13648 "allow ports to override bootelf behavior") requires ports to have this
13649 function.
13650
13651 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13652 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13653
13654commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
13655Author: Wolfgang Denk <wd@denx.de>
13656Date: Thu May 1 21:30:16 2008 +0200
13657
13658 onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
13659
13660 Onenand needs a version of memcpy() which performs 16 bit accesses
13661 only; make sure the name does not conflict with the standard
13662 function.
13663
13664 Signed-off-by: Wolfgang Denk <wd@denx.de>
13665
13666commit 12bc4e94251c369c529ffa505cf58b148c372f7f
13667Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13668Date: Wed Apr 30 22:38:17 2008 +0200
13669
13670 cmd_nand: fix warning: str2long ncompatible pointer type
13671
13672 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13673
13674commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
13675Author: Timur Tabi <timur@freescale.com>
13676Date: Fri Apr 4 11:16:11 2008 -0500
13677
13678 Fix calculation of I2C clock for some 86xx chips
13679
13680 Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
13681 There is no pattern that can be used to determine which chips use which
13682 frequency, so the only way to determine is to look up the actual SOC
13683 designation and use the right value for that SOC.
13684
13685 Signed-off-by: Timur Tabi <timur@freescale.com>
13686
13687commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
13688Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13689Date: Wed Apr 30 12:11:19 2008 -0500
13690
13691 ColdFire: Fix ethernet hang issue for mcf547x_8x
13692
13693 The ethernet hang is caused by receiving buffer in DRAM is not
13694 yet ready due to access cycles require longer time in DRAM.
13695 Relocate DMA buffer descriptors from DRAM to internal SRAM.
13696
13697 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13698
13699commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
13700Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13701Date: Wed Apr 30 12:10:47 2008 -0500
13702
13703 ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
13704
13705 Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
13706 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13707
13708commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
13709Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13710Date: Wed Apr 30 12:10:23 2008 -0500
13711
13712 ColdFire: Get information from the correct GCC
13713
13714 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
13715 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
13716
13717commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
13718Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
13719Date: Wed Apr 30 18:02:59 2008 +0200
13720
13721 Fix warning in env_nand.c if compiled for DaVinci Schmoogie
13722
13723 Fix warnings
13724
13725 nv_nand.c: In function 'saveenv':
13726 env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
13727 env_nand.c: In function 'env_relocate_spec':
13728 env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
13729
13730 if compiled for davinci_schmoogie_config.
13731
13732 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
13733 Ack by: Sergey Kubushyn <ksi@koi8.net>
13734
13735commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
13736Author: Anatolij Gustschin <agust@denx.de>
13737Date: Wed Apr 30 13:34:40 2008 +0200
13738
13739 Fix warnings while compiling net/net.c for MPC8610HPCD board
13740
13741 MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
13742 causing overriding default -Os option. New gcc (ver. 4.2.2)
13743 produces warnings while compiling net/net.c file with -O2
13744 option. The patch is an attempt to fix this.
13745
13746 Signed-off-by: Anatolij Gustschin <agust@denx.de>
13747
13748commit 58b575e575c25fdf8c88141e145db201f3092149
13749Author: Sascha Laue <Sascha.Laue@gmx.biz>
13750Date: Wed Apr 30 15:23:38 2008 +0200
13751
13752 lwmon5: fix offset error in sysmon0 POST
13753
13754 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
13755 Signed-off-by: Wolfgang Denk <wd@denx.de>
13756
13757commit e7419b243a373de4ee042f7d4f45f66de787240d
13758Author: Sascha Laue <Sascha.Laue@gmx.biz>
13759Date: Wed Apr 30 15:16:35 2008 +0200
13760
13761 lwmon5: fix manual merge error in POST
13762
13763 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
13764
13765commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
13766Author: Wolfgang Denk <wd@denx.de>
13767Date: Wed Apr 30 17:46:26 2008 +0200
13768
13769 cmd_nand.c: fix another 'incompatible pointer type' warning.
13770
13771 Signed-off-by: Wolfgang Denk <wd@denx.de>
13772
13773commit de109d909707e2dfe806be5efc3cdb103b47c8ad
13774Author: Wolfgang Denk <wd@denx.de>
13775Date: Wed Apr 30 17:25:07 2008 +0200
13776
13777 Makefile: fix parallel builds
13778
13779 This problem shows up with parallel builds only; it results in
13780 somewhat cryptic error messages like
13781
13782 $ JOBS=-j6 MAKEALL netstar
13783 Configuring for netstar board...
13784 arm-linux-ld: cannot find -lgeneric
13785 make[1]: *** [eeprom.srec] Error 1
13786
13787 A few boards (like netstar and voiceblue) need some libraries for
13788 building; however, the board Makefile does not contain any such
13789 dependencies which may cause problems with parallel builds. Adding
13790 such dependencies is difficult as we would also have to provide build
13791 rules, which already exist in the respective library Makefiles.
13792
13793 To solve this, we make sure that all libraries get built before the
13794 board code.
13795
13796 Signed-off-by: Wolfgang Denk <wd@denx.de>
13797
13798commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
13799Author: Stefan Roese <sr@denx.de>
13800Date: Wed Apr 30 14:51:36 2008 +0200
13801
13802 ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
13803
13804 This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
13805 used for NAND booting to match the values needed for the new 512MB
13806 DIMM modules shipped with the productions boards:
13807
13808 Crucial: CT6464AC667.8FB
13809
13810 Signed-off-by: Stefan Roese <sr@denx.de>
13811
13812commit ea9202a659dc75996facf1475f1866a19a9d3129
13813Author: Stefan Roese <sr@denx.de>
13814Date: Wed Apr 30 10:49:43 2008 +0200
13815
13816 ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
13817
13818 This patch fixes a problem with DIMMs that have 8 banks. Now the
13819 MCIF0_MBxCF register will be setup correctly for this setup too.
13820
13821 This was noticed with the 512MB DIMM on Canyonlands/Glacier.
13822
13823 Signed-off-by: Stefan Roese <sr@denx.de>
13824
13825commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
13826Author: Wolfgang Denk <wd@denx.de>
13827Date: Tue Apr 29 23:41:06 2008 +0200
13828
13829 Prepare v1.3.3-rc2, again.
13830
13831 Signed-off-by: Wolfgang Denk <wd@denx.de>
13832
Wolfgang Denk76617292008-04-29 23:41:06 +020013833commit b7fcc4c13993782342cf5cd20d237a6281648a0b
13834Author: Wolfgang Denk <wd@denx.de>
13835Date: Tue Apr 29 23:35:24 2008 +0200
13836
13837 Prepare v1.3.3-rc2
13838
13839 Signed-off-by: Wolfgang Denk <wd@denx.de>
13840
Wolfgang Denkb7fcc4c2008-04-29 23:35:24 +020013841commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
13842Author: Wolfgang Denk <wd@denx.de>
13843Date: Tue Apr 29 23:32:20 2008 +0200
13844
13845 common/env_nand.c: fix one more incompatible pointer type issue
13846
13847 Signed-off-by: Wolfgang Denk <wd@denx.de>
13848
13849commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
13850Author: Wolfgang Denk <wd@denx.de>
13851Date: Tue Apr 29 21:33:08 2008 +0200
13852
13853 post/board/lwmon5/sysmon.c: fix manual merge error.
13854
13855 Signed-off-by: Wolfgang Denk <wd@denx.de>
13856
13857commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
13858Author: Kumar Gala <galak@kernel.crashing.org>
13859Date: Tue Apr 29 12:54:59 2008 -0500
13860
13861 85xx: Add -mno-spe to e500/85xx builds
13862
13863 Newer gcc's might be configured to enable autovectorization by default.
13864 If we happen to build with one of those compilers we will get SPE
13865 instructions in random code.
13866
13867 -mno-spe disables the compiler for automatically generating SPE
13868 instructions without our knowledge.
13869
13870 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13871
13872commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
13873Author: Kumar Gala <galak@kernel.crashing.org>
13874Date: Tue Apr 29 10:18:34 2008 -0500
13875
13876 Update .gitignore for zlib.h
13877
13878 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13879
13880commit 45239cf4152109caa925145ccd433529902df887
13881Author: Kumar Gala <galak@kernel.crashing.org>
13882Date: Tue Apr 29 10:27:08 2008 -0500
13883
13884 85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
13885
13886 All the 85xx and 86xx UM describe the register as timing_cfg_3
13887 not as ext_refrec.
13888
13889 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13890
13891commit ef7d30b14394e4c4a153118f5845760cadada02a
13892Author: Kumar Gala <galak@kernel.crashing.org>
13893Date: Tue Apr 29 10:28:34 2008 -0500
13894
13895 85xx/86xx: Rename DDR init address and init extended address register
13896
13897 Rename init_addr and init_ext_addr to match the docs between
13898 85xx and 86xx. Both now use 'init_addr' and 'init_ext_addr'.
13899
13900 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13901
13902commit cf6cc014270549684873a5972d2595052c468cb6
13903Author: Kumar Gala <galak@kernel.crashing.org>
13904Date: Mon Apr 28 02:24:04 2008 -0500
13905
13906 85xx: Additional fixes and cleanup of MP code
13907
13908 * adjust __spin_table alignment to match ePAPR v0.94 spec
13909 * loop over all cpus when determing who is up. This fixes an issue if
13910 the "boot cpu" isn't core0. The "boot cpu" will already be in the
13911 cpu_up_mask so there is no harm
13912 * Added some protection in the code to ensure proper behavior. These
13913 changes are explicitly needed but don't hurt:
13914 - Added eieio to ensure the "hot word" of the table is written after
13915 all other table updates have occurred.
13916 - Added isync to ensure we don't prefetch loading of table entries
13917 until we a released
13918
13919 These issues we raised by Dave Liu.
13920
13921 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13922
13923commit b2d527a8b9fb50afccbaf79b5540952585cdc760
13924Author: Yuri Tikhonov <yur@emcraft.com>
13925Date: Tue Apr 29 15:06:41 2008 +0200
13926
13927 lwmon5: minor clean-up to include/configs/lwmon5.h
13928
13929 LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
13930 the CFG_DSPIC_TEST_ADDR definition more readable.
13931
13932 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
13933
13934commit f4c4d21a885ccc222fd0acdf653b683249e85117
13935Author: Stefan Roese <sr@denx.de>
13936Date: Tue Apr 29 16:08:05 2008 +0200
13937
13938 ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
13939
13940 Signed-off-by: Stefan Roese <sr@denx.de>
13941
13942commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
13943Author: Yuri Tikhonov <yur@emcraft.com>
13944Date: Tue Apr 29 13:32:45 2008 +0200
13945
13946 ppc flush_cache: add watch-dog triggering into the loops.
13947
13948 Some boards (e.g. lwmon5) need rather a frequent watch-dog
13949 kicking. Since the time it takes for the flush_cache() function
13950 to complete its job depends on the size of data being flushed, one
13951 may encounter watch-dog resets on such boards when, for example,
13952 download big files over ethernet.
13953
13954 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
13955
13956commit cab99d6f3281ab6784feccf98b9b425daa58418a
13957Author: Stefan Roese <sr@denx.de>
13958Date: Tue Apr 29 14:44:54 2008 +0200
13959
13960 ppc4xx: Fix compilation warning in denali_spd_ddr2.c
13961
13962 Signed-off-by: Stefan Roese <sr@denx.de>
13963
13964commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
13965Author: Stefan Roese <sr@denx.de>
13966Date: Tue Apr 29 14:12:07 2008 +0200
13967
13968 ppc4xx: Fix Katmai CFG_MONITOR_LEN
13969
13970 Signed-off-by: Stefan Roese <sr@denx.de>
13971
13972commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
13973Author: Stefan Roese <sr@denx.de>
13974Date: Tue Apr 29 13:57:07 2008 +0200
13975
13976 ppc4xx: Complete remove bogus dflush()
13977
13978 Since the current dflush() implementation is know to have some problems
13979 (as seem on lwmon5 ECC init) this patch removes it completely and replaces
13980 it by using clean_dcache_range().
13981
13982 Tested on Katmai with ECC DIMM.
13983
13984 Signed-off-by: Stefan Roese <sr@denx.de>
13985
13986commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
13987Author: Stefan Roese <sr@denx.de>
13988Date: Tue Apr 29 13:36:51 2008 +0200
13989
13990 ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
13991
13992 As it seems the "old" ECC initialization routine by using dflush() didn't
13993 write all lines in the dcache back to memory on lwmon5. This could lead
13994 to ECC error upon Linux booting. This patch changes the program_ecc()
13995 routine to now use clean_dcache_range() instead of dflush().
13996 clean_dcache_range() uses dcbst which is exactly what we want in this
13997 case.
13998
13999 Since dflush() is known is cause problems, this routine will be
14000 removed completely and replaced by clean_dcache_range() with an
14001 additional patch.
14002
14003 Signed-off-by: Stefan Roese <sr@denx.de>
14004
14005commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
14006Author: Yuri Tikhonov <yur@emcraft.com>
14007Date: Mon Apr 28 18:19:34 2008 +0200
14008
14009 POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
14010
14011 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14012
14013commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
14014Author: Markus Brunner <super.firetwister@googlemail.com>
14015Date: Mon Apr 28 08:47:47 2008 +0200
14016
14017 ppc4xx: Fixup ebc clock in FDT for 405GP/EP
14018
14019 On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
14020 and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
14021 doesn't exist.
14022
14023 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
14024
Wolfgang Denk76617292008-04-29 23:41:06 +020014025commit 2ef7503a593c77a80c2a054011970227c4b62774
14026Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14027Date: Thu Apr 24 07:57:17 2008 +0200
14028
14029 NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
14030
14031 Move non-inlied functions into specific drivers file
14032 Set get_prom as weak
14033
14034 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14035 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
14036 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14037
14038commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
14039Author: Guennadi Liakhovetski <lg@denx.de>
14040Date: Thu Apr 3 17:04:19 2008 +0200
14041
14042 net: make ARP timeout configurable
14043
14044 Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
14045 On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
14046 to the boards get lost, which typically are ARP replies. By configuring
14047 the timeout to a lower value we significantly improve the first network
14048 transfer time on this board. The timeout is specified in milliseconds,
14049 later internally it is converted to deciseconds, because it has to be
14050 converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
14051 different boards.
14052
14053 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14054 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14055
14056commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
14057Author: Guennadi Liakhovetski <lg@denx.de>
14058Date: Thu Apr 3 13:36:18 2008 +0200
14059
14060 minor cs8900 driver clean up
14061
14062 Remove a redundant register definition, clean up some coding style
14063 violations.
14064
14065 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14066 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14067
Wolfgang Denkb7fcc4c2008-04-29 23:35:24 +020014068commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
14069Author: Wolfgang Denk <wd@denx.de>
14070Date: Mon Apr 28 22:01:04 2008 +0200
14071
14072 jffs2_1pass.c: fix incompatible pointer type warning
14073
14074 Signed-off-by: Wolfgang Denk <wd@denx.de>
14075
14076commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
14077Author: Sascha Laue <Sascha.Laue@gmx.biz>
14078Date: Tue Apr 1 10:10:18 2008 +0200
14079
14080 lwmon5: update dsPIC POST spezification
14081
14082 The specification for the lwmon5 board dsPIC POST got changed.
14083 Also add defines for the temperatures and voltages.
14084
14085 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
14086
14087commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
14088Author: Sascha Laue <Sascha.Laue@gmx.biz>
14089Date: Tue Apr 1 15:13:03 2008 +0200
14090
14091 Fix watchdog POST for lwmon5
14092
14093 If the hardware watchdog detects a voltage error, the watchdog sets
14094 GPIO62 to low. The watchdog POST has to detect this low level.
14095
14096 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
14097 Signed-off-by: Wolfgang Denk <wd@denx.de>
14098
14099commit dd5748bcd669f46aeb6686c1b341323843738ccc
14100Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14101Date: Mon Apr 28 14:37:14 2008 +0200
14102
14103 rtl8169: fix compiler warnings
14104
14105 Fix multiple compiler warnings related to argument type mismatch.
14106
14107 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14108
14109commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
14110Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14111Date: Mon Apr 28 14:36:06 2008 +0200
14112
14113 IDE: fix compiler warnings
14114
14115 The IDE driver can use 32-bit addresses in LBA mode, in which case it
14116 spits multiple warnings during compilation. Fix them.
14117
14118 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14119
14120commit db9084de28c46ac81c8f681722cb0d7411be4d7f
14121Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14122Date: Mon Apr 28 14:35:57 2008 +0200
14123
14124 LinkStation: fix compiler warning, add a maintainer
14125
14126 out_8 wants a pointer to an unsigned as the first argument. Add a
14127 maintainer for Linkstation boards.
14128
14129 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
14130
14131commit c71abba3cb67b063f789f17abf6c7447727c0cd5
14132Author: Wolfgang Denk <wd@denx.de>
14133Date: Mon Apr 28 14:55:12 2008 +0200
14134
14135 cmd_nand.c: fix "differ in signedness" problem
14136
14137 Signed-off-by: Wolfgang Denk <wd@denx.de>
14138
14139commit f2c288a35341ad02ac03b1563d786763c9c8f159
14140Author: Wolfgang Denk <wd@denx.de>
14141Date: Mon Apr 28 12:48:47 2008 +0200
14142
14143 pcnet.c: fix a merge issue
14144
14145 Signed-off-by: Wolfgang Denk <wd@denx.de>
14146
14147commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
14148Author: Wolfgang Denk <wd@denx.de>
14149Date: Mon Apr 28 12:08:18 2008 +0200
14150
14151 NAND: fix some strict-aliasing compiler warnings
14152
14153 Signed-off-by: Wolfgang Denk <wd@denx.de>
14154
14155commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
14156Author: Stefan Roese <sr@denx.de>
14157Date: Mon Apr 28 11:37:14 2008 +0200
14158
14159 ppc4xx: Fix compile warning of hcu4 board
14160
14161 Signed-off-by: Stefan Roese <sr@denx.de>
14162
14163commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
14164Author: Wolfgang Denk <wd@denx.de>
14165Date: Mon Apr 28 11:31:23 2008 +0200
14166
14167 MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
14168
14169 Signed-off-by: Wolfgang Denk <wd@denx.de>
14170
14171commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
14172Author: Guennadi Liakhovetski <lg@denx.de>
14173Date: Mon Apr 28 00:25:32 2008 +0200
14174
14175 mx31ads: fix loadaddr environment variable define
14176
14177 Arithmetic expressions do not get evaluated under stringification. Remove
14178 default network configuration, add DHCP command support. Thanks to Felix
14179 Radensky for reporting.
14180
14181 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14182
14183commit 144eec777ac07bcb12bd38245a5a289f694a7f98
14184Author: Wolfgang Denk <wd@denx.de>
14185Date: Mon Apr 28 10:55:24 2008 +0200
14186
14187 katmai: fix section overlap problem
14188
14189 Since we didn't want to remove features from the configuration, we
14190 decided to increase the U-Boot image size (add one flash sector).
14191
14192 Also changed the default environment definition to make it
14193 independent of such changes.
14194
14195 Signed-off-by: Wolfgang Denk <wd@denx.de>
14196 Acked-by: Stefan Roese <sr@denx.de>
14197
14198commit 941d696d25624e3cc65ebf924199541acf52d74e
14199Author: Wolfgang Denk <wd@denx.de>
14200Date: Mon Apr 28 10:55:24 2008 +0200
14201
14202 katmai: fix section overlap problem
14203
14204 Since we didn't want to remove features from the configuration, we
14205 decided to increase the U-Boot image size (add one flash sector).
14206
14207 Also changed the default environment definition to make it
14208 independent of such changes.
14209
14210 Signed-off-by: Wolfgang Denk <wd@denx.de>
14211 Acked-by: Stefan Roese <sr@denx.de>
14212
14213commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
14214Author: Kumar Gala <galak@kernel.crashing.org>
14215Date: Sat Apr 26 11:44:44 2008 -0500
14216
14217 post: Fix building with O=
14218
14219 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14220
14221commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
14222Author: Wolfgang Denk <wd@denx.de>
14223Date: Sat Apr 26 01:55:00 2008 +0200
14224
14225 Prepare v1.3.3-rc1
14226
14227 Signed-off-by: Wolfgang Denk <wd@denx.de>
14228
Wolfgang Denkfd7531c2008-04-26 01:55:00 +020014229commit 19cf2ec90d8ce52da60c1693693c4048cb810967
14230Author: Wolfgang Denk <wd@denx.de>
14231Date: Sat Apr 26 01:25:39 2008 +0200
14232
14233 post/Makefile: make sure to use the correct flags
14234
14235 ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
14236 messages to be printed.
14237
14238 Signed-off-by: Wolfgang Denk <wd@denx.de>
14239
14240commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
14241Author: Wolfgang Denk <wd@denx.de>
14242Date: Sat Apr 26 00:34:42 2008 +0200
14243
14244 Coding Style cleanup, update CHANGELOG
14245
14246 Signed-off-by: Wolfgang Denk <wd@denx.de>
14247
Wolfgang Denk7ed40112008-04-26 00:34:42 +020014248commit f9204e15173834ff8d123e36279ce49c3c6c74fc
14249Author: Magnus Lilja <lilja.magnus@gmail.com>
14250Date: Sun Apr 20 10:38:12 2008 +0200
14251
14252 i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
14253
14254 This patch enables SPI and MC13783/RTC support for the Litekit board.
14255
14256 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
14257
14258commit f97abbfb47d9e407354e157cae3f6369e460cd37
14259Author: Ed Swarthout <Ed.Swarthout@freescale.com>
14260Date: Fri Apr 25 01:08:32 2008 -0500
14261
14262 MPC8544DS: decode pcie3 end-point configuration correctly.
14263
14264 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
14265 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14266
14267commit 292188e15523c165c4269403fdcd33c26d89176e
14268Author: Roy Zang <tie-fei.zang@freescale.com>
14269Date: Fri Apr 25 00:55:09 2008 -0500
14270
14271 MPC8544DS: Removes the unknown flash message information
14272
14273 This patch removes the unknown flash message information:
14274 '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
14275 This unknown flash message is caused by PromJet.
14276 Some of the board user is unhappy with this information.
14277
14278 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
14279 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14280
14281commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
14282Author: Kim Phillips <kim.phillips@freescale.com>
14283Date: Thu Apr 24 14:07:38 2008 -0500
14284
14285 mpc83xx: bump loadaddr over fdtaddr to 0x500000
14286
14287 this seems as a good compromise between human memory, typing,
14288 and last but not least, to accommodate for current and future kernel bloat.
14289
14290 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14291 Acked-by: Dave Liu <daveliu@freescale.com>
14292
14293commit be5a7190265a34d968578ff266549c60f6f57654
14294Author: Dave Liu <r63238@freescale.com>
14295Date: Tue Apr 15 13:12:23 2008 +0800
14296
14297 mpc83xx: clean up the readme for 83xx boards
14298
14299 1. correct the typo
14300 2. correct the memory map for 837xerdb board
14301
14302 Signed-off-by: Dave Liu <daveliu@freescale.com>
14303
14304commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
14305Author: Dave Liu <r63238@freescale.com>
14306Date: Tue Apr 15 13:11:11 2008 +0800
14307
14308 mpc83xx: remove the unused CPM's stuff
14309
14310 The MPC83xx family never have CPM block, so remove it from 83xx.
14311
14312 Signed-off-by: Dave Liu <daveliu@freescale.com>
14313
14314commit c63ad6325a8ac0097a54b418a3288926b0484b18
14315Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14316Date: Fri Apr 18 16:29:40 2008 +0200
14317
14318 cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
14319
14320 This patch adds a configurable flash auto protection list that can be used
14321 to make U-Boot protect flash regions in flash_init().
14322
14323 The idea has been discussed on the u-boot mailing list starting
14324 on Nov 18th, 2007.
14325
14326 Even this patch brings a new feature it is used as a bugfix for 4xx
14327 platforms where flash_init() does not completely protect the
14328 monitor's flash range in all situations.
14329
14330 U-Boot protects the flash range from CFG_MONITOR_BASE to
14331 (CFG_MONITOR_BASE + monitor_flash_len - 1) by default. This does not
14332 include the reset vector at 0xfffffffc.
14333
14334 Example:
14335 #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
14336
14337 This config option will auto protect the last 512k of flash that
14338 contains the bootloader on board like APC405 and PMC405.
14339
14340 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14341
14342commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
14343Author: Stefan Roese <sr@denx.de>
14344Date: Fri Apr 25 13:59:03 2008 +0200
14345
14346 ppc4xx: Remove double defines in lwmon5.h
14347
14348 introduced with latest lwmon5/POST merge
14349
14350 Signed-off-by: Stefan Roese <sr@denx.de>
14351
14352commit 7590378fb9c686709492ceb142825cd058255956
14353Author: Bartlomiej Sieka <tur@semihalf.com>
14354Date: Fri Apr 25 13:54:02 2008 +0200
14355
14356 Use watchdog-aware functions when calculating hashes of images - take two
14357
14358 Some files didn't get updated properly with the "Use watchdog-aware
14359 functions when calculating hashes of images" commit, this commit
14360 fixes this.
14361
14362 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
14363 Signed-off-by: Wolfgang Denk <wd@denx.de>
14364
14365commit 8e048c438e20ec89b49da5f085f8f756eba6e587
14366Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14367Date: Fri Apr 25 12:01:39 2008 +0200
14368
14369 ppc4xx: Add bootcount limit handling for APC405 boards
14370
14371 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14372
14373commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
14374Author: Bartlomiej Sieka <tur@semihalf.com>
14375Date: Fri Apr 25 12:10:09 2008 +0200
14376
14377 Use watchdog-aware functions when calculating hashes of images
14378
14379 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
14380
14381commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
14382Author: Wolfgang Denk <wd@denx.de>
14383Date: Fri Apr 25 12:44:08 2008 +0200
14384
14385 USB: fix more GCC 4.2.x aliasing warnings
14386
14387 Signed-off-by: Wolfgang Denk <wd@denx.de>
14388 Acked-by: Markus Klotzbuecher <mk@denx.de>
14389
14390commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
14391Author: Wolfgang Denk <wd@denx.de>
14392Date: Fri Apr 25 12:41:53 2008 +0200
14393
14394 lib_generic/crc32.c: add missing #include <watchdog.h>
14395
14396 Signed-off-by: Wolfgang Denk <wd@denx.de>
14397
14398commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
14399Author: Wolfgang Denk <wd@denx.de>
14400Date: Fri Apr 25 11:52:21 2008 +0200
14401
14402 lib_generic/crc32.c: fix compile problem
14403
14404 Signed-off-by: Wolfgang Denk <wd@denx.de>
14405
14406commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
14407Author: Stefan Roese <sr@denx.de>
14408Date: Tue Apr 22 12:20:32 2008 +0200
14409
14410 ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
14411
14412 The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
14413 environment variable will now get passed to the Linux kernel by setting
14414 the device_type property of the PCIe device tree node. For normal root-
14415 complex configuration it will keep its defaults value of "pci" and for
14416 endpoint configuration it will get changed to "pci-endpoint".
14417
14418 Signed-off-by: Stefan Roese <sr@denx.de>
14419
14420commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
14421Author: Yuri Tikhonov <yur@emcraft.com>
14422Date: Thu Apr 24 10:30:53 2008 +0200
14423
14424 lwmon5: watchdog POST fix
14425
14426 Use the GPT0_MASKx registers as the temporary storage for watch-dog
14427 timer POST test instead of GPT0_COMPx. The latter
14428 (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
14429
14430 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14431 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14432
14433commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
14434Author: Kim Phillips <kim.phillips@freescale.com>
14435Date: Mon Apr 21 18:10:14 2008 -0500
14436
14437 lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
14438
14439 This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
14440 proven problematic getting right from the start at least on 83xx and
14441 4xx.
14442
14443 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14444
14445commit a99715b8ebfc500f3f40e01b36b64d473938443d
14446Author: Detlev Zundel <dzu@denx.de>
14447Date: Fri Apr 18 14:50:01 2008 +0200
14448
14449 Realining some header definitions.
14450
14451 Signed-off-by: Detlev Zundel <dzu@denx.de>
14452
14453commit 4acbc6c7f993cae409c424615415a3e76820f13d
14454Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14455Date: Thu Apr 24 07:57:16 2008 +0200
14456
14457 NE2000: coding style cleanup
14458
14459 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14460
14461commit b4aff1ffaf7120032c653357c007faa14f74d29d
14462Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14463Date: Wed Apr 23 00:11:47 2008 +0900
14464
14465 qemu-mips.h: Add CFI support
14466
14467 CONFIG_ENV_OVERWRITE is also added.
14468
14469 This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
14470
14471 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14472 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14473
14474commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
14475Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14476Date: Tue Apr 22 22:47:27 2008 +0900
14477
14478 doc/README.mips: Add MIPS notes
14479
14480 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14481
14482commit 215b01bba8bc662d35f72b084700b192d367dfb4
14483Author: Bartlomiej Sieka <tur@semihalf.com>
14484Date: Tue Apr 22 12:27:56 2008 +0200
14485
14486 Add support for calculating hashes with watchdog triggering
14487
14488 Implement watchodg-aware variants of hash calculation functions:
14489 - crc32_wd()
14490 - md5_wd()
14491 - sha1_csum_wd()
14492 The above functions calculate the hash of the input buffer in chunks,
14493 triggering the watchdog after processing each chunk. The chunk size
14494 is given as a function call parameter.
14495
14496 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
14497
14498commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
14499Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
14500Date: Wed Apr 23 11:02:12 2008 +0900
14501
14502 qemu-mips: Cleanup whitespace, indentation, etc.
14503
14504 No functional change.
14505
14506 This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
14507 Then I re-created from scratch, and changed more lines than the original.
14508
14509 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14510 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14511
14512commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
14513Author: Vlad Lungu <vlad@comsys.ro>
14514Date: Wed Oct 10 23:02:09 2007 +0300
14515
14516 Fixed pcnet io_base
14517
14518 Bus and phys address are not always the same
14519
14520 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
14521
14522commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
14523Author: Wolfgang Denk <wd@denx.de>
14524Date: Thu Apr 24 23:44:26 2008 +0200
14525
14526 drivers/net/pcnet.c: Coding Style cleanup.
14527
14528 Signed-off-by: Wolfgang Denk <wd@denx.de>
14529
14530commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
14531Author: Vlad Lungu <vlad@comsys.ro>
14532Date: Wed Oct 10 23:04:23 2007 +0300
14533
14534 Added Am79C970A chip id to pcnet
14535
14536 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
14537
14538commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
14539Author: Magnus Lilja <lilja.magnus@gmail.com>
14540Date: Sun Apr 20 10:35:03 2008 +0200
14541
14542 i.MX31: Fix architecture numbers for ADS and Litekit boards
14543
14544 Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
14545
14546 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
14547
14548commit e7ae84d6c7288790e88639f57cb60daf89c11369
14549Author: Magnus Lilja <lilja.magnus@gmail.com>
14550Date: Sun Apr 20 10:36:36 2008 +0200
14551
14552 i.MX31: Use symbolic names for Litekit membases.
14553
14554 Use symbolic names instead of hard coded addresses for Litekit membases.
14555
14556 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
14557
14558commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
14559Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14560Date: Sat Apr 19 17:59:20 2008 +0200
14561
14562 Fix show_boot_progress prototype
14563
14564 in commit fad634071 "make show_boot_progress () weak."
14565 show_boot_progress is supposed to be declared as weak but declared as
14566 inline instead.
14567
14568 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14569
14570commit edbed247a14d70b94958010f736621212285de91
14571Author: Bartlomiej Sieka <tur@semihalf.com>
14572Date: Fri Apr 18 12:39:23 2008 +0200
14573
14574 Memory footprint optimizations
14575
14576 As suggested by Wolfgang Denk:
14577 - image printing functions:
14578 - remove wrappers
14579 - remove indentation prefix from functions' signatures
14580 - merge getenv_verify and getenv_autostart into one parametrized function
14581
14582 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
14583
14584commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
14585Author: Guennadi Liakhovetski <lg@denx.de>
14586Date: Tue Apr 15 13:33:11 2008 +0200
14587
14588 MX31ADS environment variable update, spi and rtc support
14589
14590 Update MX31ADS default environment to better match the flash layout and
14591 the memory map, support SPI and RTC.
14592
14593 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14594
14595commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
14596Author: Kumar Gala <galak@kernel.crashing.org>
14597Date: Mon Apr 21 09:28:36 2008 -0500
14598
14599 85xx: Round up frequency calculations to get reasonable output
14600
14601 eg. because of rounding error we can get 799Mhz instead of 800Mhz.
14602
14603 Introduced DIV_ROUND_UP and roundup taken from linux kernel.
14604
14605 Signed-off-by: Dejan Minic <minic@freescale.com>
14606 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14607 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14608 Acked-by: Andy Fleming <afleming@freescale.com>
14609
14610commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
14611Author: Kumar Gala <galak@kernel.crashing.org>
14612Date: Wed Apr 23 16:58:04 2008 -0500
14613
14614 fsl_pci: Only modify registers if we have them
14615
14616 pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
14617
14618 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14619
14620commit 83fe32334337def160b302aa9d152d808bfcc68e
14621Author: Markus Klotzbücher <mk@denx.de>
14622Date: Wed Apr 23 10:57:33 2008 +0200
14623
14624 USB: remove a cpu bug workaround for an unsupported architecture.
14625
14626 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
14627
14628commit f957576cb53e6cfab412709cfc8db1afd39d21c3
14629Author: Markus Klotzbücher <mk@denx.de>
14630Date: Wed Apr 23 10:53:23 2008 +0200
14631
14632 USB: fix those pesky aliasing warnings issued by gcc-4.2
14633
14634 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
14635 Signed-off-by: Detlev Zundel <dzu@denx.de>
14636
14637commit 89cdab788f3716b335fefb60b836ebcf975aceab
14638Author: Mike Frysinger <vapier@gentoo.org>
14639Date: Mon Mar 31 11:02:01 2008 -0400
14640
14641 crc32: use uint32_t rather than unsigned long
14642
14643 The envcrc.c does sizeof(unsigned long) when calculating the crc, but
14644 this is done with the build toolchain instead of the target tool
14645 chain, so if the build is a 64bit system but the target is 32bits,
14646 the size will obviously be wrong. This converts all unsigned long
14647 stuff related to crc32 to uint32_t types. Compile tested only: output
14648 of ./tools/envcrc when run on a 32bit build system matches that of a
14649 64bit build system.
14650
14651 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14652 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14653
14654commit 80c40b765b3642ddb9f3392b7898715aab44a29c
14655Author: Dirk Behme <dirk.behme@googlemail.com>
14656Date: Wed Mar 26 09:53:29 2008 +0100
14657
14658 ARM: Davinci: Fix DM644x timer overflow handling and cleanup
14659
14660 Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
14661
14662 Changes:
14663
14664 - Remove *_masked() functions as noted by Wolfgang
14665
14666 - Adapt register naming to recent TI spec (sprue26, March 2007)
14667
14668 - Fix reset_timer() handling
14669
14670 - 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.
14671
14672 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
14673
14674 - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
14675
14676 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
14677
14678 Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
14679
14680 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
14681 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
14682
14683commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
14684Author: Sergei Poselenov <sposelenov@emcraft.com>
14685Date: Wed Apr 9 16:09:41 2008 +0200
14686
14687 Added watchdog triggering calls in the "mtest" test function.
14688
14689 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14690
14691commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
14692Author: Yuri Tikhonov <yur@emcraft.com>
14693Date: Sun Apr 6 19:19:14 2008 +0200
14694
14695 lwmon5 watchdog: limit trigger rate
14696
14697 Limit the rate of h/w watch-dog triggering on the LWMON5 board by
14698 the CONFIG_WD_MAX_RATE value.
14699
14700 Note that an earlier version of this patch which used microseconds
14701 instead of ticks dis not work. The problem was that we used
14702 usec2ticks() to convert microseconds into ticks. usec2ticks() uses
14703 get_tbclk(), which in turn calls get_sys_info(). It turns out that
14704 this function does a lot of prolonged operations (like divisions)
14705 which take too much time so we do not trigger the watchdog in time,
14706 and it resets the system.
14707
14708 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14709
14710commit 2d2b994a30bb100774dc747ae9865b7f95285a88
14711Author: Yuri Tikhonov <yur@emcraft.com>
14712Date: Mon Mar 31 10:51:37 2008 +0200
14713
14714 POST: move CONFIG_POST to Makefiles
14715
14716 Introduce the new logical option CONFIG_HAS_POST which is set when the
14717 platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
14718 to determine should the POST libs be compiled for the selected target
14719 platform, or not.
14720
14721 To avoid breaking u-boot linking process, the empty post/libpost.a file is
14722 created for platforms which do not have POSTs.
14723
14724 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14725 Signed-off-by: Wolfgang Denk <wd@denx.de>
14726
14727commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
14728Author: Yuri Tikhonov <yur@emcraft.com>
14729Date: Mon Mar 31 10:49:34 2008 +0200
14730
14731 POST: preparations for moving CONFIG_POST to Makefiles
14732
14733 Remove CONFIG_POST ifdefs from the post/ source files.
14734
14735 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14736 Signed-off-by: Wolfgang Denk <wd@denx.de>
14737
14738commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
14739Author: Stefan Roese <sr@denx.de>
14740Date: Tue Apr 22 14:14:20 2008 +0200
14741
14742 ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
14743
14744 This patch fixes the Canyonlands and Glacier default environment to better
14745 fit to the arch/powerpc device-tree kernels. The variables dealing with
14746 arch/ppc booting are removed, since these boards are supported only in
14747 arch/powerpc. Glacier uses the same config file as Canyonlands.
14748
14749 Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
14750
14751 Signed-off-by: Stefan Roese <sr@denx.de>
14752
14753commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
14754Author: Stefan Roese <sr@denx.de>
14755Date: Tue Apr 22 14:06:42 2008 +0200
14756
14757 ppc4xx: Small coding style cleanup for the latest esd patches
14758
14759 Signed-off-by: Stefan Roese <sr@denx.de>
14760
14761commit 79941d63bc03aed8c48d7602f18217cc200ee931
14762Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14763Date: Mon Apr 21 18:01:07 2008 +0200
14764
14765 ppc4xx: Update CPU strapping for PMC440 boards
14766
14767 This patch removes the temporary 'test' strapping option
14768 of the sbe command. The '667' strapping option now uses
14769 a PLB/PCI divider of 3.
14770
14771 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14772
14773commit f00cf3193a6635355b121e90debb2f54e777e7da
14774Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14775Date: Mon Apr 21 14:42:21 2008 +0200
14776
14777 ppc4xx: Remove unused APC405 strataflash driver
14778
14779 The APC405 board support has been migrated to use the common
14780 CFI flash driver.
14781
14782 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14783
14784commit 1c686676a86473bbd92151f0544e109413f6ed06
14785Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14786Date: Mon Apr 21 14:42:17 2008 +0200
14787
14788 ppc4xx: Update APC405 configuration
14789
14790 - enable esd's auto_update mechanism
14791 - support alternative flash layout on rev. 1.8 boards
14792 - update default environment
14793 - use common CFI flash driver
14794 - coding style cleanup
14795
14796 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14797
14798commit 0b9872515a521bf7866dc24b85ddce708e60d702
14799Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14800Date: Mon Apr 21 14:42:11 2008 +0200
14801
14802 ppc4xx: Update APC405 board support
14803
14804 - enable esd's auto_update mechanism
14805 - fix LCD support on latest hardware revision (uses other LCD controller)
14806 - support alternative flash layout on rev. 1.8 boards
14807 - coding style cleanup
14808
14809 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14810
14811commit 83975d02e225e231960784972e7820a8b303756b
14812Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14813Date: Mon Apr 21 14:42:06 2008 +0200
14814
14815 ppc4xx: update esd's common auto_update code for 405 boards
14816
14817 - Coding style cleanup (long lines)
14818 - improve handling of protected flash regions
14819 - remove dead code
14820
14821 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14822
14823commit b9233fe5d59cb25d975071616bd1035d6f4c2285
14824Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14825Date: Mon Apr 21 14:41:59 2008 +0200
14826
14827 ppc4xx: Update esd's common LCD code for 405 boards
14828
14829 - Coding style cleanup (long lines)
14830 - Add s1d13505 support
14831 - Make some functions return a result code instead of void
14832
14833 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14834
14835commit dea68189424c3f1242427a8146a3861bf093173c
14836Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14837Date: Mon Apr 21 11:36:55 2008 +0200
14838
14839 ppc4xx: Update FPGA image for APC405 boards
14840
14841 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14842
14843commit 2a05b152924acfcec3b037693329e517e6d3578f
14844Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14845Date: Mon Apr 21 11:36:08 2008 +0200
14846
14847 ppc4xx: Update bootlogo for APC405 boards
14848
14849 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14850
14851commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
14852Author: Stefan Roese <sr@denx.de>
14853Date: Fri Apr 18 16:41:31 2008 +0200
14854
14855 ppc4xx: Add dcache_enable() for 440
14856
14857 dcache_enable() was missing for 440 and the patch
14858 017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
14859 "] behavior uses this function.
14860
14861 Note: Currently the cache handling functions like
14862 d/icache_disable/enable() are NOP's on 440. This may be changed in the
14863 future.
14864
14865 Signed-off-by: Stefan Roese <sr@denx.de>
14866
14867commit a49e0d177a0749614b316ec847fb623f09c82c07
14868Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14869Date: Mon Apr 21 11:19:04 2008 +0200
14870
14871 video: Add missing free for logo memory
14872
14873 This patch adds two missing free()s.
14874
14875 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14876
14877commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
14878Author: Troy Kisky <troy.kisky@boundarydevices.com>
14879Date: Mon Sep 24 16:41:43 2007 -0700
14880
14881 PATCH - Fix oob data copied into supplied buffer
14882
14883 This patch correctly sets the oobavail variable
14884 and fixes a bug where the oob data was not valid when
14885 there where multiple groups in oobfree.
14886
14887 First segment fixes a typo
14888 Second segment fixes a bug where oob data may be copied incorrectly.
14889 Third segment adds an error message when exiting due to write protect.
14890 Forth segment fixes a bug where oobavail may be set incorrectly.
14891
14892 Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
14893
14894commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
14895Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14896Date: Fri Apr 18 17:24:32 2008 +0200
14897
14898 ppc4xx: Fix sys_get_info() for 405GP(r)
14899
14900 This patch assigns the correct EBC clock for 405GP(r) CPUs
14901 to PPC4xx_SYS_INFO structure. Without this patch U-Boot
14902 uses an uninitialized EBC clock in its startup message.
14903
14904 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
14905
14906commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
14907Author: Wolfgang Denk <wd@denx.de>
14908Date: Sun Apr 20 15:39:38 2008 -0700
14909
14910 Makefile: remove nand_spl/System.map when cleaning up.
14911
14912commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
14913Author: Wolfgang Denk <wd@denx.de>
14914Date: Sun Apr 20 15:35:52 2008 -0700
14915
14916 MAKEALL: sort entries / lists.
14917
14918 Signed-off-by: Wolfgang Denk <wd@denx.de>
14919
14920commit 0878af169b181868a105b5c33f3a6423e2c9fd60
14921Author: Kumar Gala <galak@kernel.crashing.org>
14922Date: Fri Apr 18 11:29:01 2008 -0500
14923
14924 85xx: Fix size of cpu-release-addr property
14925
14926 The cpu-release-addr is defined as always being a 64-bit quanity regardless
14927 if we are running on a 32-bit or 64-bit machine.
14928
14929commit 88353a985109562a639b2f8a0c90d77011bfe374
14930Author: Timur Tabi <timur@freescale.com>
14931Date: Fri Apr 4 11:15:58 2008 -0500
14932
14933 Fix calculation of I2C clock for some 85xx chips
14934
14935 Some 85xx chips use CCB as the base clock for the I2C. Some use CCB/2, and
14936 some use CCB/3. There is no pattern that can be used to determine which
14937 chips use which frequency, so the only way to determine is to look up the
14938 actual SOC designation and use the right value for that SOC.
14939
14940 Update immap_85xx.h to include the GUTS PORDEVSR2 register.
14941
14942 Signed-off-by: Timur Tabi <timur@freescale.com>
14943
14944commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
14945Author: Wolfgang Denk <wd@denx.de>
14946Date: Fri Apr 18 11:44:27 2008 -0700
14947
14948 Fix build breakage casued by commit c0559be371b2
14949
14950 Change env_get_char from a global function ptr to a function.
14951
14952 Signed-off-by: Wolfgang Denk <wd@denx.de>
14953
14954commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
14955Author: Wolfgang Denk <wd@denx.de>
14956Date: Fri Apr 18 10:53:41 2008 -0700
14957
14958 Coding Style cleanup, update CHANGELOG.
14959
14960 Signed-off-by: Wolfgang Denk <wd@denx.de>
14961
Wolfgang Denk268a8042008-04-18 10:53:41 -070014962commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
14963Author: Mike Frysinger <vapier@gentoo.org>
14964Date: Tue Apr 8 14:00:57 2008 -0400
14965
14966 Add support for u-boot in svn and localversion-* files
14967
14968 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14969
14970commit d23ff6827decf121461fbc5622612fd7effe207e
14971Author: Guennadi Liakhovetski <lg@denx.de>
14972Date: Thu Apr 3 17:04:22 2008 +0200
14973
14974 MX31ADS network and flash updates
14975
14976 This patch allows U-Boot to use buffered writes to the Spansion NOR
14977 flash installed on this board, and eliminates long delays in network
14978 transfers after the board startup.
14979
14980 Also modify flash layout to embed main and redundant environment
14981 blocks in the U-Boot image.
14982
14983 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14984
14985commit b5dc9b304d289831f291843ff88a45cbdf1a6290
14986Author: Guennadi Liakhovetski <lg@denx.de>
14987Date: Mon Apr 14 10:53:12 2008 +0200
14988
14989 Support for the MX31ADS evaluation board from Freescale
14990
14991 This patch adds support for the MX31ADS evaluation board from Freescale,
14992 initialization code is copied from RedBoot sources, also provided by
14993 Freescale.
14994
14995 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14996
Wolfgang Denk7ed40112008-04-26 00:34:42 +020014997commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
14998Author: Stefan Roese <sr@denx.de>
14999Date: Tue Apr 8 10:33:29 2008 +0200
15000
15001 ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
15002
15003 Signed-off-by: Stefan Roese <sr@denx.de>
15004
15005commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
15006Author: Stefan Roese <sr@denx.de>
15007Date: Tue Apr 8 10:33:28 2008 +0200
15008
15009 ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
15010
15011 Signed-off-by: Stefan Roese <sr@denx.de>
15012
15013commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
15014Author: Stefan Roese <sr@denx.de>
15015Date: Tue Apr 8 10:33:27 2008 +0200
15016
15017 ppc4xx: Add Glacier NAND booting target
15018
15019 Signed-off-by: Stefan Roese <sr@denx.de>
15020
15021commit 46f373838e384a4c23d13581b1dfa5acb66b5810
15022Author: Stefan Roese <sr@denx.de>
15023Date: Tue Apr 8 10:31:00 2008 +0200
15024
15025 nand_spl: Update nand_spl to support 2k page size NAND devices
15026
15027 This patch adds support for booting from 2k page sized NAND device
15028 (e.g. Micron 29F2G08AAC).
15029
15030 Tested on AMCC Canyonlands.
15031
15032 Signed-off-by: Stefan Roese <sr@denx.de>
15033
Wolfgang Denk268a8042008-04-18 10:53:41 -070015034commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
15035Author: Anatolij Gustschin <agust@denx.de>
15036Date: Thu Apr 17 18:18:00 2008 +0200
15037
15038 Fix crash on sequoia in ppc_4xx_eth_init
15039
15040 Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
15041 with cache enabled (TLB Parity exeption). This patch
15042 fixes the problem.
15043
15044 Signed-off-by: Anatolij Gustschin <agust@denx.de>
15045
15046commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
15047Author: Anatolij Gustschin <agust@denx.de>
15048Date: Thu Apr 17 18:15:27 2008 +0200
15049
15050 ppc4xx: Fix crash on sequoia with cache enabled
15051
15052 Currently U-Boot crashes on sequoia board in CPU POST if
15053 cache is enabled (CONFIG_4xx_DCACHE defined). The cache
15054 won't be disabled by change_tlb before CPU POST because
15055 there is an insufficient adress range check since
15056 CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
15057 this problem.
15058
15059 Signed-off-by: Anatolij Gustschin <agust@denx.de>
15060
15061commit 43c509254fab375c49936498da944658117ed07c
15062Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15063Date: Thu Apr 17 23:35:13 2008 +0900
15064
15065 Use jr as register jump instruction
15066
15067 Current assembler codes are inconsistent in the way of register jump
15068 instruction usage; some use jr, some use j. Of course GNU as allows both
15069 usages, but as can be expected from `Jump Register' the mnemonic `jr' is
15070 more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
15071 at all.
15072
15073 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15074
15075commit 7ce63709828d37b08866e537339a169bd0db2bd3
15076Author: Guennadi Liakhovetski <lg@denx.de>
15077Date: Tue Apr 15 14:15:30 2008 +0200
15078
15079 RTC driver for MC13783
15080
15081 MC13783 is a multifunction IS with an SPI interface to the host. This
15082 driver handles the RTC controller in this chip.
15083
15084 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15085
15086commit 38254f45b0b412332726c90d3184ad47479fcffb
15087Author: Guennadi Liakhovetski <lg@denx.de>
15088Date: Tue Apr 15 14:14:25 2008 +0200
15089
15090 New i.MX31 SPI driver
15091
15092 This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
15093 only implemented and tested on i.MX31, can with a modified register layout
15094 and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
15095 controllers too.
15096
15097 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15098
15099commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
15100Author: Magnus Lilja <lilja.magnus@gmail.com>
15101Date: Tue Apr 15 19:09:10 2008 +0200
15102
15103 Fix name of i.MX31 boards in config file header
15104
15105 Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
15106
15107 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
15108
15109commit a49864593e083a5d0779fb9ca98e5a0f2053183d
15110Author: Mike Frysinger <vapier@gentoo.org>
15111Date: Sun Apr 13 19:42:19 2008 -0400
15112
15113 allow ports to override go behavior
15114
15115 Split the arch-specific logic out of the common go code and into a dedicated
15116 weak function called do_go_exec() that lives in cpu directories. This will
15117 need review from i386/nios people to make sure I didn't break them.
15118
15119commit 017e9b7925f74878d0e9475388cca9bda5ef9482
15120Author: Mike Frysinger <vapier@gentoo.org>
15121Date: Sun Apr 13 19:42:18 2008 -0400
15122
15123 allow ports to override bootelf behavior
15124
15125 Change the bootelf setup function into a dedicated weak function called
15126 do_bootelf_exec. This way ports can control the behavior however they
15127 like before/after calling the ELF entry point.
15128
15129commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
15130Author: Ulf Samuelsson <ulf@atmel.com>
15131Date: Sat Apr 12 20:56:03 2008 +0200
15132
15133 Reorder ARM boards in Makefile
15134
15135 Rearrange ARM boards in Makefile so that ARM926EJ-S boards
15136 are no longer under ARM92xT header.
15137
15138 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
15139 Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15140
15141commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
15142Author: Ulf Samuelsson <ulf@atmel.com>
15143Date: Sat Apr 12 20:29:44 2008 +0200
15144
15145 Clean up dataflash partitioning
15146
15147 This patch removes the board dependent parts from
15148 "drivers/mtd/dataflash.c".
15149 Each board relying on this, will have the appropriate
15150 code in a new file, "partition.c" in the board directory.
15151 board Makefiles updated to use the file.
15152
15153 The dataflash partitions are aligned on sector/page boundaries.
15154
15155 The CONFIG_NEW_DF_PARTITION was used to create named partitions
15156 This is now the default operation, and the CONFIG variable is removed.
15157
15158 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
15159
15160commit 51ecde946fec511a16346e498204ca10ad71080d
15161Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15162Date: Sat Apr 12 14:08:45 2008 +0200
15163
15164 gitignore: udpate stgit generated and .patch file
15165
15166 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15167
15168commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
15169Author: Wolfgang Denk <wd@denx.de>
15170Date: Fri Apr 18 00:15:36 2008 -0700
15171
15172 Get rid of redundant copy of renamed header file.
15173
15174 Signed-off-by: Wolfgang Denk <wd@denx.de>
15175
15176commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
15177Author: Vlad Lungu <vlad@comsys.ro>
15178Date: Fri Apr 11 21:20:14 2008 +0300
15179
15180 Fix dependency generation for older gcc versions
15181
15182 With gcc 3.3.3 at least, compilation fails with
15183
15184 Generating include/autoconf.mk
15185 gcc: compilation of header file requested
15186 make: *** [include/autoconf.mk] Error 1
15187
15188 since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
15189
15190 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
15191
15192commit cb1c4896905ab22fcd982e6a8a539f0031942e71
15193Author: Marian Balakowicz <m8@semihalf.com>
15194Date: Fri Apr 11 11:07:49 2008 +0200
15195
15196 Restore the ability to continue booting after legacy image overwrite
15197
15198 Before new uImage code was merged, bootm code allowed for the kernel image to
15199 get overwritten during decompresion. new uImage introduced a check for image
15200 overwrites and refused to boot the image that got overwritten. This patch
15201 restores the old behavior. It also adds a warning when the image overwriten is
15202 a multi-image file, because in such case accessing componentes other than the
15203 first one will fail.
15204
15205 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
15206
15207commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
15208Author: Marian Balakowicz <m8@semihalf.com>
15209Date: Fri Apr 11 11:07:43 2008 +0200
15210
15211 ppc: Fix ftd_blob variable init when processing raw blob
15212
15213 Set fdt_blob variable before its value is printed out.
15214
15215 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
15216
15217commit 3d36be030043cd841a2551d00a395135e363a64b
15218Author: Jason Wessel <jason.wessel@windriver.com>
15219Date: Thu Apr 10 14:30:16 2008 -0500
15220
15221 Remove all the search paths from the .lds files.
15222
15223 The cross compiler is responsible for providing the correct libraries
15224 and the logic to find the linking libraries.
15225
15226 Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
15227
15228commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
15229Author: Bartlomiej Sieka <tur@semihalf.com>
15230Date: Mon Apr 14 15:44:16 2008 +0200
15231
15232 Boot-related documentation update
15233
15234 - document 'bootm_low' and 'bootm_size' environment variables
15235 - update inaccurate CFG_BOOTMAPSZ entry
15236
15237 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
15238
15239commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
15240Author: Guennadi Liakhovetski <lg@denx.de>
15241Date: Wed Apr 9 17:34:08 2008 +0200
15242
15243 Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
15244
15245 Restore logic reverted by commit
15246
15247 commit 80767a6cead9990d9e77e62be947843c2c72f469
15248 Author: Peter Pearse <peter.pearse@arm.com>
15249 Date: Wed Sep 5 16:04:41 2007 +0100
15250
15251 Changed API name to coloured_led.h
15252 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
15253 Tidied other cpu/arm920t/start.S code
15254
15255 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15256
15257commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
15258Author: Mike Frysinger <vapier@gentoo.org>
15259Date: Tue Apr 8 10:24:24 2008 -0400
15260
15261 Remove conflicting NAND ID
15262
15263 There are two NAND entries with ID 0xDC and this obviously causes problems.
15264 In the kernel, they punted the first entry, so we should do the same.
15265
15266 See this upstream e-mail for more info:
15267 http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
15268
15269 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
15270 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15271
15272commit 188e94c370621708d13547d58dbc6ed3c5602aa8
15273Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
15274Date: Tue Apr 8 16:20:35 2008 +0900
15275
15276 cpu/mips/cpu.c: Fix flush_cache bug
15277
15278 Cache operations have to take line address (addr), not start_addr.
15279 I noticed this bug when debugging ping failure.
15280
15281 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
15282
15283commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
15284Author: Martin Krause <martin.krause@tqs.de>
15285Date: Thu Apr 3 14:29:01 2008 +0200
15286
15287 TQM5200: fix default IDE reset level
15288
15289 Before the first call of ide_reset(), the level of the IDE reset
15290 signal on the TQM5200 is low (reset asserted). This patch sets the
15291 default value to high (reset not asserted).
15292
15293 Currently this patch fixes no real problem, but it is cleaner to
15294 assert the reset signal only on demand, and not permanently.
15295
15296 Signed-off-by: Martin Krause <martin.krause@tqs.de>
15297
15298commit c61e033d6e8abb7b4060ee36060961e1399f6079
15299Author: Detlev Zundel <dzu@denx.de>
15300Date: Thu Apr 3 14:18:48 2008 +0200
15301
15302 mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
15303
15304 Signed-off-by: Detlev Zundel <dzu@denx.de>
15305
15306commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
15307Author: Detlev Zundel <dzu@denx.de>
15308Date: Thu Apr 3 14:18:47 2008 +0200
15309
15310 mgcoge, mgsuv: rename 'addcon' to 'addcons'
15311
15312 The latter name with 13 users is already established, so we will use
15313 that.
15314
15315 Signed-off-by: Detlev Zundel <dzu@denx.de>
15316
15317commit e175eacc87c3a9e4dad0799fee0e95732520afc7
15318Author: Martin Krause <martin.krause@tqs.de>
15319Date: Thu Apr 3 13:37:56 2008 +0200
15320
15321 IDE: fix bug in reset sequence
15322
15323 According to the ata (ata5) specification the RESET- signal
15324 shall be asserted for at least 25 us. Without this patch,
15325 the RESET- signal is asserted on some boards for only < 1 us
15326 (e. g. on the TQM5200). This patch adds a general delay of
15327 25 us to the RESET- signal.
15328
15329 Without this patch a Platinum 4 GiB CF card is not recognised
15330 properly on boards with a TQM5200 (STK52xx, TB5200).
15331
15332 Signed-off-by: Martin Krause <martin.krause@tqs.de>
15333
15334commit 813bea96a960916c72b4a3a7df840151529c26ce
15335Author: Sascha Laue <Sascha.Laue@gmx.biz>
15336Date: Thu Apr 3 14:43:11 2008 +0200
15337
15338 lwmon5: disable CONFIG_ZERO_BOOTDELAY
15339
15340 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
15341
15342commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
15343Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15344Date: Wed Apr 2 08:03:58 2008 +0200
15345
15346 ds174x: Fix warning on return in rtc_get and rtc_set functions
15347
15348 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15349
15350commit a253b38bf50c85227c33ca0febc870ee49d1588e
15351Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15352Date: Wed Apr 2 08:03:57 2008 +0200
15353
15354 cmd_log.c: Fix assignment differ in signedness
15355
15356 In function 'logbuff_init_ptrs':
15357 cmd_log.c:79: warning: pointer targets in assignment differ in signedness
15358
15359 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15360
15361commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
15362Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
15363Date: Wed Apr 2 11:04:43 2008 +0530
15364
15365 Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
15366
15367 Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
15368
15369commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
15370Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15371Date: Tue Apr 1 14:07:10 2008 +0200
15372
15373 s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
15374
15375 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15376
15377commit c08fb3ea36d19b1640b7906264581e9105534399
15378Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
15379Date: Tue Apr 15 10:24:14 2008 +0200
15380
15381 Additional PCI IDs for IDE and network controllers
15382
15383 These PCI IDs are required by the Linkstation platforms.
15384
15385 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
15386
15387commit c0559be371b2a64b1a817088c3308688e2182f93
15388Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
15389Date: Mon Apr 14 23:01:50 2008 +0200
15390
15391 Change env_get_char from a global function ptr to a function.
15392
15393 This avoids an early global data reference.
15394
15395 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
15396
15397commit 3e0f331c05d72f140715c1e9fca991927e44d422
15398Author: Guennadi Liakhovetski <lg@denx.de>
15399Date: Tue Apr 29 12:35:08 2008 +0000
15400
15401 Clean up smsc911x driver
15402
15403 Replace direct register address derefencing with accessor functions.
15404 Restrict explicitly 32-bit bus-width, extend affected configurations
15405 respectively.
15406
15407 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15408 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15409
15410commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
15411Author: Sascha Hauer <s.hauer@pengutronix.de>
15412Date: Tue Apr 15 00:08:20 2008 -0400
15413
15414 This patch adds a driver for the following smsc network controllers:
15415 LAN9115
15416 LAN9116
15417 LAN9117
15418 LAN9215
15419 LAN9216
15420 LAN9217
15421
15422 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15423 Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
15424 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15425
15426commit 3dfd4aab929cccddb63d9ea509967861e1333b52
15427Author: Sascha Laue <Sascha.Laue@gmx.biz>
15428Date: Tue Apr 1 15:13:03 2008 +0200
15429
15430 Fix watchdog POST for lwmon5
15431
15432 If the hardware watchdog detects a voltage error, the watchdog sets
15433 GPIO62 to low. The watchdog POST has to detect this low level.
15434
15435 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
15436
15437commit 24b448448a917e52806f82660a5c9d47608894fb
15438Author: Dave Liu <r63238@freescale.com>
15439Date: Tue Apr 1 15:22:11 2008 +0800
15440
15441 ata: update the libata.h from ata.h of linux kernel
15442
15443 Current libata.h of u-boot is out of sync from linux kernel,
15444 this patch make it be consistent with linux kernel.
15445
15446 Signed-off-by: Dave Liu <daveliu@freescale.com>
15447 Signed-off-by: Tor Krill <tor@excito.com>
15448
15449commit f8f9dc98883f66f59eb0601da65808e6b139c87c
15450Author: Kumar Gala <galak@kernel.crashing.org>
15451Date: Mon Mar 31 11:59:27 2008 -0500
15452
15453 Allow use of ARCH=powerpc when building
15454
15455 The linux kernel is now mostly ARCH=powerpc, so to make life easier
15456 allow use to use ARCH=powerpc and convert it to ARCH=ppc.
15457
15458 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15459
15460commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
15461Author: Kyungmin Park <kmpark@infradead.org>
15462Date: Mon Mar 31 10:40:54 2008 +0900
15463
15464 Add apollon board MAINTAINERS entry
15465
15466 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15467
15468commit 77e475cc0ed1832160017d364be32a0be9ff02a9
15469Author: Kyungmin Park <kmpark@infradead.org>
15470Date: Mon Mar 31 10:40:36 2008 +0900
15471
15472 Fix OneNAND read
15473
15474 It should access with 16-bit instead of 8-bit
15475
15476 Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
15477
15478 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15479
15480commit a9da2b41079d230db3a5641625311983f85ce1fb
15481Author: Kyungmin Park <kmpark@infradead.org>
15482Date: Mon Mar 31 10:40:19 2008 +0900
15483
15484 Fix OneNAND erase command
15485
15486 It mis-calculates the block address.
15487 Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
15488
15489 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15490
15491commit 61525f2ffa156665a66908fda47dbf29d65ea579
15492Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
15493Date: Mon Mar 31 01:32:15 2008 +0200
15494
15495 Support for LinkStation / KuroBox HD and HG PPC models
15496
15497 This patch is based on the port by Mihai Georgian (see linkstation.c for
15498 Copyright information) and implements support for LinkStation / KuroBox HD
15499 and HG PPC models from Buffalo Technology, whereby HD is deactivated at
15500 the moment, pending network driver fixing.
15501
15502 Notice to users: this is pretty much a barebone port. Support for network
15503 on HG models is already in the U-Boot mainline, but you might also want
15504 patches to switch fan / phy modes depending on the negotiated ethernet
15505 parameters. This patch also doesn't support console switching, booting EM
15506 mode, Buffalo specific ext2 magic number. So, if you want to use any of
15507 those, you need additional patches. Otherwise this patche provides a fully
15508 functional u-boot with a network console on your system.
15509
15510 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15511
15512commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
15513Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15514Date: Sun Mar 30 01:22:13 2008 -0500
15515
15516 Add CONFIG_MII_INIT support to related boards
15517
15518 Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
15519 cmd_init.c. Add CONFIG_MII_INIT to board configuration files
15520 that use mii_init() in cmd_init.c.
15521
15522 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15523 Acked-by: Ben Warren <biggerbadderben@gmail.com>
15524
15525commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
15526Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15527Date: Sun Mar 30 01:19:06 2008 -0500
15528
15529 Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
15530
15531 Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
15532 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
15533
15534 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15535
15536commit e99ccb488181d012248c6be30b2093e950319fc5
15537Author: Kumar Gala <galak@kernel.crashing.org>
15538Date: Thu Mar 27 11:46:38 2008 -0500
15539
15540 Introduce phys_size_t and move phys_addr_t into asm/types.h
15541
15542 Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
15543 that have larger physical addresses like 44x, 85xx, and 86xx.
15544
15545 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15546
15547commit 20a14a42a25f72e379f38460b8a8484667536795
15548Author: Andy Fleming <afleming@freescale.com>
15549Date: Wed Apr 2 16:19:07 2008 -0500
15550
15551 Rename include/md5.h to include/u-boot/md5.h
15552
15553 Some systems have md5.h installed in /usr/include/. This isn't the
15554 desired file (we want the one in include/md5.h). This will avoid the
15555 conflict. This fixes the host tools building problem by creating a new
15556 directory for U-Boot specific header files.
15557
15558 [Patch by Andy Fleming, modified to use separate directory by Wolfgang
15559 Denk]
15560
15561 Signed-off-by: Wolfgang Denk <wd@denx.de>
15562 Signed-off-by: Andy Fleming <afleming@freescale.com>
15563 Acked-by: Timur Tabi <timur@freescale.com>
15564
15565commit f297b7a1ec87433f66320d89d993e1bc738c66b8
15566Author: Dave Liu <r63238@freescale.com>
15567Date: Thu Mar 27 18:51:17 2008 +0800
15568
15569 drivers: code clean up
15570
15571 Signed-off-by: Dave Liu <daveliu@freescale.com>
15572
15573commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
15574Author: Dave Liu <r63238@freescale.com>
15575Date: Thu Mar 27 18:50:41 2008 +0800
15576
15577 drivers: clean up the ata_piix.h
15578
15579 Signed-off-by: Dave Liu <daveliu@freescale.com>
15580
15581commit e8f7ba404f1409606962815ecc955a06984b08b3
15582Author: Dave Liu <r63238@freescale.com>
15583Date: Thu Mar 27 18:49:56 2008 +0800
15584
15585 doc: english polishing for README.sata
15586
15587 according to gvb's suggestion, polishing for the doc.
15588
15589 Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
15590 Signed-off-by: Dave Liu <daveliu@freescale.com>
15591
15592commit 3e3f766a5274d204780460e1879723b565296d34
15593Author: Kumar Gala <galak@kernel.crashing.org>
15594Date: Wed Mar 26 18:53:28 2008 -0500
15595
15596 Fix warnings introduced by I2C bus speed setting patch
15597
15598 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15599
15600commit 3c735e7437150e8615f26930c7819db85634276d
15601Author: eran liberty <eran.liberty@gmail.com>
15602Date: Thu Mar 27 00:50:49 2008 +0100
15603
15604 Altera Stratix II support
15605
15606 Adds Support for Altera's Stratix II.
15607
15608 Within your board specific init file you will have to call
15609
15610 1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
15611 2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
15612
15613 Altera_desc* contines (for example):
15614 {
15615 Altera_StratixII, /* part type */
15616 passive_serial, /* interface type */
15617 1, /* bytes of data part can accept */
15618 (void *)(&funcs), /* interface function table */
15619 0L, /* base interface address */
15620 0 /* implementation specific cookie */
15621 }
15622
15623 funcs is the interface. It is of type altera_board_specific_func.
15624 It looks like this:
15625 altera_board_specific_func func = {
15626 pre_fn,
15627 config_fn,
15628 status_fn,
15629 done_fn,
15630 clk_fn,
15631 data_fn,
15632 abort_fn,
15633 post_fn,
15634 };
15635
15636 you will have to implement these functions, which is usually bit
15637 banging some gpio.
15638
15639 Signed-off-by: Eran Liberty <liberty@extricom.com>
15640
15641commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
15642Author: Wolfgang Denk <wd@denx.de>
15643Date: Sun Apr 13 14:32:54 2008 -0700
15644
15645 Update CHANGELOG
15646
15647 Signed-off-by: Wolfgang Denk <wd@denx.de>
15648
Wolfgang Denk5ece9ec2008-04-13 14:32:54 -070015649commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
15650Author: Sascha Hauer <s.hauer@pengutronix.de>
15651Date: Wed Mar 26 20:41:17 2008 +0100
15652
15653 Phytec Phycore-i.MX31 support
15654
15655 This patch adds support for the Phytec Phycore-i.MX31 board
15656
15657 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15658 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15659
15660commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
15661Author: Sascha Hauer <s.hauer@pengutronix.de>
15662Date: Wed Mar 26 20:41:09 2008 +0100
15663
15664 mx31 litekit support
15665
15666 This patch adds support for the mx31 litekit board
15667
15668 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15669 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15670
15671commit cdace0661208754a53019ea0dc7b803a040e0939
15672Author: Sascha Hauer <s.hauer@pengutronix.de>
15673Date: Wed Mar 26 20:40:49 2008 +0100
15674
15675 add an i2c driver for mx31
15676
15677 This patch adds an i2c driver for Freescale i.MX processors
15678
15679 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15680 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15681
15682commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
15683Author: Sascha Hauer <s.hauer@pengutronix.de>
15684Date: Wed Mar 26 20:40:42 2008 +0100
15685
15686 core support for Freescale mx31
15687
15688 This patch adds the core support for Freescale mx31
15689
15690 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15691 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15692
15693commit 7ec68862a27c8f6f6d566228de8f6724d964a939
15694Author: Wolfgang Denk <wd@denx.de>
15695Date: Sun Apr 13 14:19:23 2008 -0700
15696
15697 Fix compile error
15698
15699 ...as suggested by Peter Pearse
15700
15701 Signed-off-by: Wolfgang Denk <wd@denx.de>
15702
15703commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
15704Author: Sascha Hauer <s.hauer@pengutronix.de>
15705Date: Wed Mar 26 20:40:36 2008 +0100
15706
15707 Separate omap24xx specific code from arm1136
15708
15709 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
15710 to cpu/arm1136/omap24xx.
15711
15712 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
15713 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15714
15715commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
15716Author: Mike Frysinger <vapier@gentoo.org>
15717Date: Tue Jan 29 18:21:05 2008 -0500
15718
15719 disable caches before booting an app for Blackfin apps
15720
15721 It isn't generally save to execute applications outside of U-Boot with caches
15722 enabled due to the way the Blackfin processor handles caches (requires
15723 software assistance). This patch disables caches before booting an ELF or
15724 just booting raw code. The previous discussion on the patch was that we
15725 wanted to use weaks instead, but that proved to not be feasible when multiple
15726 symbols are involved, which puts us back at the ifdef solution. I've
15727 minimized the ugliness by moving the setup step outside of the main function.
15728
15729 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15730
15731commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
15732Author: Wolfgang Denk <wd@denx.de>
15733Date: Sun Apr 13 10:03:54 2008 -0700
15734
15735 ppc: Get rid of unused machine type definitions
15736
15737 Signed-off-by: Wolfgang Denk <wd@denx.de>
15738
15739commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
15740Author: Wolfgang Denk <wd@denx.de>
15741Date: Sun Apr 13 09:59:26 2008 -0700
15742
15743 Coding Style cleanup; update CHANGELOG
15744
15745 Signed-off-by: Wolfgang Denk <wd@denx.de>
15746
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -070015747commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
15748Author: Larry Johnson <lrj@acm.org>
15749Date: Thu Feb 21 13:58:11 2008 -0500
15750
15751 LM73 bug fix for negative temperatures and cleanup
15752
15753 When the LM73 temperature sensor measures a temperature below 0 C, the
15754 current driver does not perform sign extension, so the result returned is
15755 512 C too high. This patch fixes the problem, and does general cleanup
15756 of the code.
15757
15758 Signed-off-by: Larry Johnson <lrj@acm.org>
15759
15760commit 96ef831f713289afba19da0c8f905e99da2b23e0
15761Author: Guennadi Liakhovetski <lg@denx.de>
15762Date: Thu Apr 3 13:36:02 2008 +0200
15763
15764 cfi_flash: Support buffered writes on non-standard Spansion NOR flash
15765
15766 Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
15767 series require different addresses for buffered write commands. Define a
15768 configuration option to support buffered writes on those chips. A more
15769 elegant solution would be to automatically detect those chips by parsing
15770 their CFI records, but that would require introduction of a fixup table
15771 into the cfi_flash driver.
15772
15773 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15774
15775commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
15776Author: Lee Nipper <lee.nipper@freescale.com>
15777Date: Thu Apr 10 09:35:06 2008 -0500
15778
15779 mpc83xx: Update DIMM data bus width test to support 40-bit width
15780
15781 32-bit wide ECC memory modules report 40-bit width.
15782 Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
15783
15784 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
15785 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15786
15787commit 5fb5a689d822ca61e814bd523fc930af335242fa
15788Author: Dave Liu <r63238@freescale.com>
15789Date: Mon Mar 31 17:05:12 2008 +0800
15790
15791 mpc83xx: Fix the bug of serdes initialization
15792
15793 Currently the serdes will not be initializated due to the
15794 partid's error.
15795
15796 Signed-off-by: Dave Liu <daveliu@freescale.com>
15797 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15798
15799commit 2000784818f043db7ca60e2846a72d097766b894
15800Author: Dave Liu <r63238@freescale.com>
15801Date: Thu Apr 3 16:28:29 2008 +0800
15802
15803 mpc83xx: Fix the SATA clock setting of 837x targets
15804
15805 Currently the SATA controller clock is configured as CSB clock,
15806 usually the CSB clock is 400/333/266MHz.
15807
15808 However, The SATA IP block is only guaranteed to operate up to
15809 200 MHz as stated in the HW spec.
15810
15811 The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
15812
15813 This patch makes the SATA clock as half of CSB clock.
15814
15815 Signed-off-by: Dave Liu <daveliu@freescale.com>
15816 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15817
15818commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
15819Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15820Date: Wed Apr 2 13:41:21 2008 +0200
15821
15822 mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
15823
15824 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15825 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15826
15827commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
15828Author: Kumar Gala <galak@kernel.crashing.org>
15829Date: Wed Apr 9 04:20:57 2008 -0500
15830
15831 85xx: Fix detection of MP cpu spin up
15832
15833 We were looking at the wrong memory offset to determine of a secondary
15834 cpu had been spun up or not. Also added a warning message if the
15835 all the secondary cpus we expect don't spin up.
15836
15837 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15838
15839commit f3e04bdc3f360c66801a9048956e61e41a16edba
15840Author: Kumar Gala <galak@kernel.crashing.org>
15841Date: Tue Apr 8 10:45:50 2008 -0500
15842
15843 85xx: Use SVR_SOC_VER instead of SVR_VER
15844
15845 The recent change introduced by 'Update SVR numbers to expand support'
15846 now requires that we use SVR_SOC_VER instead of SVR_VER if we want
15847 to compare against a particular processor id.
15848
15849 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15850
15851commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
15852Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
15853Date: Fri Apr 11 10:00:35 2008 -0400
15854
15855 ppc4xx: Fix power mgt definitions for PPC440
15856
15857 Corrected DCR addresses of PPC440EP power management registers.
15858
15859 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
15860
15861commit 950a392464e616b4590bc4501be46e2d7d162dea
15862Author: Wolfgang Denk <wd@denx.de>
15863Date: Fri Apr 11 15:11:26 2008 +0200
15864
15865 Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
15866
15867 Reverting became necessary after it turned out that the patches in
15868 the u-boot-arm repo were modified, and in some cases corrupted.
15869
15870 This reverts the following commits:
15871
15872 066bebd6353e33af3adefc3404560871699e9961
15873 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
15874 c88ae20580b2b01487b4cdcc8b2a113f551aee36
15875 a147e56f03871bba4f05058d5e04ce7deb010b04
15876 d6674e0e2a6a1f033945f78838566210d3f28c95
15877 8c8463cce44d849e37744749b32d38e1dfb12e50
15878 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
15879 8bf69d81782619187933a605f1a95ee1d069478d
15880 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
15881 a574a73852a527779234e73e17e7597fd8128882
15882 1377b5583a48021d983e1fd565f7d40c89e84d63
15883 1704dc20917b4f71e373e2c888497ee666d40380
15884
15885 Signed-off-by: Wolfgang Denk <wd@denx.de>
15886
15887commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
15888Author: Stefan Roese <sr@denx.de>
15889Date: Fri Apr 11 07:02:29 2008 +0200
15890
15891 ppc4xx: Update Kilauea defconfig to use device-tree booting as default
15892
15893 This patch reworks the default environment on Kilauea/Haleakala. Now
15894 "net_nfs" for exmaple uses the device-tree style booting formerly know
15895 as "net_nfs_fdt". Also the addresses in RAM were changed because of the
15896 new image booting support, which check for image overwriting. So the
15897 addresses needed togeet adjusted.
15898
15899 Signed-off-by: Stefan Roese <sr@denx.de>
15900
15901commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
15902Author: Stefan Roese <sr@denx.de>
15903Date: Wed Apr 9 11:58:02 2008 +0200
15904
15905 ppc4xx: Fix Canyonlands default environment to work with new image support
15906
15907 Since the new image support checks for image overwriting, the default
15908 environment needs to get adjusted to use correct addresses.
15909
15910 Signed-off-by: Stefan Roese <sr@denx.de>
15911
15912commit dfc6c7b647dba7ab86749616f0e9e5740deed422
15913Author: Stefan Roese <sr@denx.de>
15914Date: Wed Apr 9 11:54:11 2008 +0200
15915
15916 ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
15917
15918 The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
15919 closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
15920 on 4xx systems _start currently cannot be used for this calculation.
15921 So revert back to the original version for now.
15922
15923 Signed-off-by: Stefan Roese <sr@denx.de>
15924
15925commit f91374f65eae8b42cac329e06ba1c54728278efb
15926Author: Michal Simek <monstr@monstr.eu>
15927Date: Fri Mar 28 12:49:52 2008 +0100
15928
15929 microblaze: Sort microblaze boards in MAKEALL script
15930
15931commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
15932Author: Michal Simek <monstr@monstr.eu>
15933Date: Fri Mar 28 11:58:45 2008 +0100
15934
15935 microblaze: clean microblaze_config.mk
15936
15937 FLAGS are generated by U-BOOT generator.
15938 Board specific FLAGS are in board directory
15939
15940 Signed-off-by: Michal Simek <monstr@monstr.eu>
15941
15942commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
15943Author: Michal Simek <monstr@monstr.eu>
15944Date: Fri Mar 28 12:47:19 2008 +0100
15945
15946 microblaze: xupv2p fix config file for supporting FDT
15947
15948commit 188dc16b189143573b1ed90e584bf866d75cdd12
15949Author: Michal Simek <monstr@monstr.eu>
15950Date: Fri Mar 28 11:53:02 2008 +0100
15951
15952 microblaze: ml401 fix config file for supporting FDT
15953
15954 Signed-off-by: Michal Simek <monstr@monstr.eu>
15955
15956commit 4c6a6f02e239236261333759997eeaf86b30b54c
15957Author: Michal Simek <monstr@monstr.eu>
15958Date: Fri Mar 28 11:22:48 2008 +0100
15959
15960 microblaze: ml401 - add ifdef for GPIO
15961
15962 Signed-off-by: Michal Simek <monstr@monstr.eu>
15963
15964commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
15965Author: Michal Simek <monstr@monstr.eu>
15966Date: Fri Mar 28 12:13:03 2008 +0100
15967
15968 microblaze: clean uart16550 and uartlite handling
15969
15970 Signed-off-by: Michal Simek <monstr@monstr.eu>
15971
15972commit 0b20f250877441460fb79d72192954abe8498834
15973Author: Michal Simek <monstr@monstr.eu>
15974Date: Fri Mar 28 11:08:31 2008 +0100
15975
15976 microblaze: Add Emaclite driver to Makefile
15977
15978 Signed-off-by: Michal Simek <monstr@monstr.eu>
15979
15980commit 868cde5310f88234b774878e4f06e79df10a88b3
15981Author: Michal Simek <monstr@monstr.eu>
15982Date: Fri Mar 28 11:08:01 2008 +0100
15983
15984 microblaze: Add Emac driver to Makefile
15985
15986 Signed-off-by: Michal Simek <monstr@monstr.eu>
15987
15988commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
15989Author: Michal Simek <monstr@monstr.eu>
15990Date: Fri Mar 28 12:42:29 2008 +0100
15991
15992 microblaze: add Emac ethernet driver
15993
15994commit 89c53891b18cbafd29ab8931b40e27ad231b6085
15995Author: Michal Simek <monstr@monstr.eu>
15996Date: Fri Mar 28 12:41:56 2008 +0100
15997
15998 microblaze: add Emaclite ethernet driver
15999
16000commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
16001Author: Michal Simek <monstr@monstr.eu>
16002Date: Fri Mar 28 11:04:01 2008 +0100
16003
16004 microblaze: ML401 and XUPV2P remove emac and emaclite reference
16005
16006 Signed-off-by: Michal Simek <monstr@monstr.eu>
16007
16008commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
16009Author: Michal Simek <monstr@monstr.eu>
16010Date: Fri Mar 28 10:59:32 2008 +0100
16011
16012 microblaze: remove old setting for emac driver
16013
16014 Signed-off-by: Michal Simek <monstr@monstr.eu>
16015
16016commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
16017Author: Michal Simek <monstr@monstr.eu>
16018Date: Fri Mar 28 10:58:15 2008 +0100
16019
16020 microblaze: Clean Makefile from ancient emac driver
16021
16022 Signed-off-by: Michal Simek <monstr@monstr.eu>
16023
16024commit ab68f921d9c741830f721c3d879c13a0c5597183
16025Author: Daniel Hellstrom <daniel@gaisler.com>
16026Date: Fri Mar 28 10:20:43 2008 +0100
16027
16028 SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
16029
16030 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16031
16032commit 6ed8a43a19bb0275501bc286007daafa923552cf
16033Author: Daniel Hellstrom <daniel@gaisler.com>
16034Date: Wed Mar 26 23:38:48 2008 +0100
16035
16036 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.
16037
16038 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16039
16040commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
16041Author: Daniel Hellstrom <daniel@gaisler.com>
16042Date: Wed Mar 26 23:34:47 2008 +0100
16043
16044 SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
16045
16046 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16047
16048commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
16049Author: Daniel Hellstrom <daniel@gaisler.com>
16050Date: Fri Mar 28 10:06:52 2008 +0100
16051
16052 SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
16053
16054 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16055
16056commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
16057Author: Daniel Hellstrom <daniel@gaisler.com>
16058Date: Wed Mar 26 23:26:48 2008 +0100
16059
16060 SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
16061
16062 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16063
16064commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
16065Author: Daniel Hellstrom <daniel@gaisler.com>
16066Date: Fri Mar 28 10:00:33 2008 +0100
16067
16068 SPARC: Added support for SPARC LEON2 SOC Processor.
16069
16070 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16071
16072commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
16073Author: Daniel Hellstrom <daniel@gaisler.com>
16074Date: Wed Mar 26 23:00:38 2008 +0100
16075
16076 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.
16077
16078 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16079
16080commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
16081Author: Daniel Hellstrom <daniel@gaisler.com>
16082Date: Wed Mar 26 22:51:29 2008 +0100
16083
16084 SPARC: Added support for SPARC LEON3 SOC processor.
16085
16086 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16087
16088commit bf3d8b31169546fcddb4737391e1893fb12d033a
16089Author: Daniel Hellstrom <daniel@gaisler.com>
16090Date: Fri Mar 28 08:29:26 2008 +0100
16091
16092 SPARC: added SPARC support for new uimage in common code.
16093
16094 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16095
16096commit 00ab32c85405a4fe65fd4128243086210fc90a21
16097Author: Daniel Hellstrom <daniel@gaisler.com>
16098Date: Wed Mar 26 22:36:03 2008 +0100
16099
16100 SPARC: added SPARC board information to the command bdinfo.
16101
16102 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16103
16104commit c2f02da21a3f37f0878554eebc785e04fdc4e128
16105Author: Daniel Hellstrom <daniel@gaisler.com>
16106Date: Fri Mar 28 09:47:00 2008 +0100
16107
16108 SPARC: Added generic support for SPARC architecture.
16109
16110 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16111
16112commit e54ec0f016803e4d9524ff71f7971bda0c51b287
16113Author: Stefan Roese <sr@denx.de>
16114Date: Thu Apr 3 14:50:34 2008 +0200
16115
16116 ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
16117
16118 This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
16119 has 2 RGMII instances and we need to configure the 2nd RGMII instance
16120 for the EMAC2+3 channels.
16121
16122 Signed-off-by: Stefan Roese <sr@denx.de>
16123
16124commit c2a545ce33b26d80337f80b533828839249fb1c9
16125Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16126Date: Wed Apr 2 08:03:56 2008 +0200
16127
16128 MPC8xx: Fix libfdt support introduced in commit 77ff7b74
16129
16130 fdt.c: In function 'ft_cpu_setup':
16131 fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
16132 fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
16133 fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
16134 fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
16135
16136 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16137
16138commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
16139Author: Andy Fleming <afleming@freescale.com>
16140Date: Mon Mar 31 20:45:56 2008 -0500
16141
16142 Fix fdt set command to conform to dts spec
16143
16144 The fdt set command was treating properties specified as <00> and <0011>
16145 as byte streams, rather than as an array of cells. As we already have
16146 syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
16147 we should use the <> syntax to describe arrays of cells, which are always
16148 32-bits per element. If we imagine this likely (IMHO) scenario:
16149
16150 > fdt set /ethernet-phy@1 reg <1>
16151
16152 With the old code, this would create a bad fdt, since the reg cell would be
16153 made to be one byte in length. But the cell must be 4 bytes, so this would
16154 break mysteriously.
16155
16156 Also, the dts spec calls for constants inside the angle brackets (<>)
16157 to conform to C constant standards as they pertain to base.
16158 Take this scenario:
16159
16160 > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
16161
16162 The old fdt command would complain that it couldn't parse that. Or, if you
16163 wanted to specify that a certain clock ran at 33 MHz, you'd be required to
16164 do this:
16165
16166 > fdt set /mydev clock <1f78a40>
16167
16168 Whereas the new code will accept decimal numbers.
16169
16170 While I was in there, I extended the fdt command parser to handle property
16171 strings which are split across multiple arguments:
16172
16173 > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
16174 > fdt p /ethernet@f00
16175 ethernet@f00 {
16176 interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
16177 };
16178
16179 Lastly, the fdt print code was rearranged slightly to print arrays of cells
16180 if the length of the property is a multiple of 4 bytes, and to not print
16181 leading zeros.
16182
16183 Signed-off-by: Andy Fleming <afleming@freescale.com>
16184
16185commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
16186Author: Stefan Roese <sr@denx.de>
16187Date: Wed Apr 2 08:39:33 2008 +0200
16188
16189 ppc4xx: Canyonlands: Init SATA/PCIe port correctly
16190
16191 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
16192 interface. This usage can be configured with the jumper J6. This patch
16193 correctly configures the SATA/PCIe PHY for SATA usage when this jumper
16194 is installed.
16195
16196 Signed-off-by: Stefan Roese <sr@denx.de>
16197
16198commit 6fe2946f198481254a6ee9600d7456b8316a4083
16199Author: Kim Phillips <kim.phillips@freescale.com>
16200Date: Fri Mar 28 17:37:49 2008 -0500
16201
16202 remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
16203
16204 finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
16205 "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
16206 started.
16207
16208 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16209
16210commit b5873f1732b92a25690e1513b90dfb0d644f6697
16211Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16212Date: Tue Apr 1 07:30:51 2008 +0200
16213
16214 dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
16215
16216 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16217
16218commit 2d934ea51f276522b532f870a820e844ff480b5b
16219Author: Tor Krill <tor@excito.com>
16220Date: Fri Mar 28 15:29:45 2008 +0100
16221
16222 Add Vitesse 8601 support to TSEC driver
16223
16224 Add phy_info for Vitesse VSC8601.
16225 Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
16226
16227 Signed-off-by: Tor Krill <tor@excito.com>
16228 Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
16229 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16230
16231commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
16232Author: Daniel Hellstrom <daniel@gaisler.com>
16233Date: Mon Mar 31 14:25:00 2008 +0000
16234
16235 SPARC: added SMC91111 driver in and out macros for LEON processors.
16236
16237 This patch makes SPARC/LEON processors able to read and write
16238 to the SMC91111 chip using the chip external I/O bus of the memory
16239 controller. This patchs defines the standard in and out macros
16240 expected by the SMC9111 driver.
16241
16242 To access that I/O bus one must set up the memory controller
16243 (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
16244 up this correctly when the other MCTRL parameters are set up. It
16245 can be set up from the board configuration header file.
16246
16247 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16248 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16249
16250commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
16251Author: Stelian Pop <stelian@popies.net>
16252Date: Wed Mar 26 18:52:34 2008 +0100
16253
16254 Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
16255
16256 Signed-off-by: Stelian Pop <stelian@popies.net>
16257
16258commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
16259Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16260Date: Mon Mar 31 21:31:04 2008 +0200
16261
16262 AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
16263
16264 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16265
16266commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
16267Author: Stelian Pop <stelian@popies.net>
16268Date: Wed Mar 26 18:52:33 2008 +0100
16269
16270 Add support for AT91SAM9260EK
16271
16272 Support for booting from internal DataFlash, external DataFlash card
16273 or NAND flash is available.
16274
16275 Signed-off-by: Stelian Pop <stelian@popies.net>
16276
16277commit 1762f13b4aab88b685b1722f17dada247945624b
16278Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16279Date: Mon Mar 31 21:20:49 2008 +0200
16280
16281 AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
16282
16283 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16284
16285commit 761712188b353494defb2b644491ff73d0daaa6f
16286Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16287Date: Mon Mar 31 21:12:17 2008 +0200
16288
16289 AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
16290
16291 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16292
16293commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
16294Author: Stelian Pop <stelian@popies.net>
16295Date: Wed Mar 26 20:52:32 2008 +0100
16296
16297 Port AT91CAP9 to the new headers
16298
16299 Adapt the existing AT91CAP9 code to the new headers and APIs.
16300
16301 Signed-off-by: Stelian Pop <stelian@popies.net>
16302
16303commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
16304Author: Stelian Pop <stelian@popies.net>
16305Date: Wed Mar 26 19:52:31 2008 +0100
16306
16307 Finish header files reworking
16308
16309 Replace AT91CAP9.h file with several splitted header files coming
16310 from the Linux kernel.
16311
16312 This is part 2 of the replacement: more header imports and edits.
16313
16314 Signed-off-by: Stelian Pop <stelian@popies.net>
16315
16316commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
16317Author: Stelian Pop <stelian@popies.net>
16318Date: Wed Mar 26 19:52:30 2008 +0100
16319
16320 Import several header files from Linux
16321
16322 Replace AT91CAP9.h file with several splitted header files coming
16323 from the Linux kernel.
16324
16325 This is part 1 of the replacement: pristine header files import.
16326
16327 Signed-off-by: Stelian Pop <stelian@popies.net>
16328
16329commit a8a78f2d99dc1bd30dc3595da118539b506c6118
16330Author: Stelian Pop <stelian@popies.net>
16331Date: Wed Mar 26 20:52:28 2008 +0100
16332
16333 Move at91cap9 specific files to at91sam9 directory
16334
16335 AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
16336 common infrastructure can be used. Let this infrastructure be
16337 named after the AT91SAM9 family, and move the existing AT91CAP9
16338 files to the new place.
16339
16340 Signed-off-by: Stelian Pop <stelian@popies.net>
16341
16342commit 61106a565870ff503f92b251b94bd7afef889a04
16343Author: Stelian Pop <stelian@popies.net>
16344Date: Wed Mar 26 21:52:27 2008 +0100
16345
16346 Use timer_init() instead of board supplied interrupt_init()
16347
16348 The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
16349 the board, so use timer_init() instead of interrupt_init().
16350
16351 Signed-off-by: Stelian Pop <stelian@popies.net>
16352
16353commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
16354Author: Stelian Pop <stelian@popies.net>
16355Date: Wed Mar 26 21:52:36 2008 +0100
16356
16357 Cleanup DataFlash partition handling
16358
16359 DataFlash partition information has become a mess. This patch
16360 defines a single partition scheme for Atmel DataFlashes. This partition
16361 scheme will be used by all AT91CAP9 and AT91SAM9 boards.
16362
16363 Signed-off-by: Stelian Pop <stelian@popies.net>
16364
16365commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
16366Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16367Date: Fri Mar 28 08:47:45 2008 -0500
16368
16369 ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
16370
16371 When the version_string function in start.S is not 4-byte align,
16372 it will cause the compiler generates "unaligned opcodes detected
16373 in executable segment". This issue affects all ColdFire CPUs.
16374 By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
16375 it is not aligned.
16376
16377 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16378 Acked-by: John Rigby <jrigby@freescale.com>
16379
16380commit bae61eefe15b4d454060a7140e49ae58322be803
16381Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16382Date: Tue Mar 25 15:41:15 2008 -0500
16383
16384 ColdFire: Add dspi and serial flash support for MCF5445x
16385
16386 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16387 Acked-by: John Rigby <jrigby@freescale.com>
16388
16389commit 48ead7a7a922fceaf494e352abfab8216a41b417
16390Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16391Date: Tue Mar 18 17:37:01 2008 -0500
16392
16393 ColdFire: Remove R5200 board
16394
16395 This board never went into production
16396
16397 Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
16398 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16399 Acked-by: John Rigby <jrigby@freescale.com>
16400
16401commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
16402Author: Matthew Fettke <[matthew.fettke@gmail.com]>
16403Date: Thu Jan 24 14:02:32 2008 -0600
16404
16405 ColdFire: Added M5275EVB support.
16406
16407 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
16408 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16409 Acked-by: John Rigby <jrigby@freescale.com>
16410
16411commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
16412Author: Matthew Fettke <[matthew.fettke@gmail.com]>
16413Date: Mon Feb 4 15:38:20 2008 -0600
16414
16415 ColdFire: Added MCF5275 cpu support.
16416
16417 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
16418 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16419 Acked-by: John Rigby <jrigby@freescale.com>
16420
16421commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
16422Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16423Date: Mon Mar 17 12:14:11 2008 -0500
16424
16425 ColdFire: Define bootdelay in configuration file for M52277EVB
16426
16427 Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
16428 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16429 Acked-by: John Rigby <jrigby@freescale.com>
16430
16431commit 77878f16cedee17161ff2336990970fffc6cea35
16432Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16433Date: Mon Mar 17 12:09:07 2008 -0500
16434
16435 ColdFire: Fix second memory Chipselect for M5475EVB
16436
16437 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16438 Acked-by: John Rigby <jrigby@freescale.com>
16439
16440commit 43d60642395a550956cb21d287c8cfa563913d28
16441Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16442Date: Thu Mar 13 14:26:32 2008 -0500
16443
16444 ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
16445
16446 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16447 Acked-by: John Rigby <jrigby@freescale.com>
16448
16449commit eb14ebe813a0cb5d47905228da446a5ad692473b
16450Author: Larry Johnson <lrj@acm.org>
16451Date: Sun Mar 30 20:33:04 2008 -0500
16452
16453 ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
16454
16455 Signed-off-by: Larry Johnson <lrj@acm.org>
16456
16457commit 02e3892021112f21067d9ed1d04ae4182725ba52
16458Author: Stefan Roese <sr@denx.de>
16459Date: Mon Mar 31 12:20:48 2008 +0200
16460
16461 ppc4xx: Small whitespace fix of esd patches
16462
16463 Signed-off-by: Stefan Roese <sr@denx.de>
16464
16465commit 034394abb524785047c815f00dde8cdbdc1593c5
16466Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16467Date: Sun Mar 30 18:52:44 2008 +0200
16468
16469 ppc4xx: Cleanup PMC440 board support
16470
16471 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16472
16473commit a6cc6c37188d85c25d167a4515da86f48d9a583e
16474Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16475Date: Sun Mar 30 18:52:06 2008 +0200
16476
16477 ppc4xx: Add ptm configuration variables for PMC440
16478
16479 Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
16480 environment variables.
16481
16482 Cleanup pci_target_init.
16483
16484 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16485
16486commit 7c91f51a2fe296909147f1646a1412729dd10b1d
16487Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16488Date: Sun Mar 30 18:01:15 2008 +0200
16489
16490 ppc4xx: Minor updates for DU440 boards
16491
16492 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16493
16494commit d5bffeb868d6b4d462f558dac43011027b6644b7
16495Author: Mike Frysinger <vapier@gentoo.org>
16496Date: Tue Feb 19 00:54:20 2008 -0500
16497
16498 Blackfin: cleanup and overhaul common board init functions
16499
16500 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16501
16502commit b86b3416f874358acaf07519e7620cdb2145f75b
16503Author: Mike Frysinger <vapier@gentoo.org>
16504Date: Tue Feb 19 00:50:58 2008 -0500
16505
16506 Blackfin: cleanup lib_blackfin/cache.c
16507
16508 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16509
16510commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
16511Author: Mike Frysinger <vapier@gentoo.org>
16512Date: Sun Mar 30 15:46:13 2008 -0400
16513
16514 Blackfin: unify cpu and boot modes
16515
16516 All of the duplicated code for Blackfin processors and boot modes have been
16517 unified. After all, the core is the same for all processors, just the
16518 peripheral set differs (which gets handled in the drivers).
16519
16520 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16521
16522commit 880cc4381ea8360248cddcdf87a64566745a5724
16523Author: Stelian Pop <stelian@popies.net>
16524Date: Wed Mar 26 22:52:35 2008 +0100
16525
16526 Fix CFG_NO_FLASH compilation.
16527
16528 Many Atmel boards have no "real" (NOR) flash on board, and rely only
16529 on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
16530 be present in a board configuration file, while still enabling flash
16531 commands like 'flinfo', 'protect', etc.
16532
16533 Signed-off-by: Stelian Pop <stelian@popies.net>
16534
16535commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
16536Author: Mike Frysinger <vapier@gentoo.org>
16537Date: Tue Feb 19 00:58:13 2008 -0500
16538
16539 Blackfin: BF537-stamp: cleanup spi flash driver
16540
16541 This punts the old spi flash driver for a new/generalized one until the
16542 common one can be integrated.
16543
16544 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16545
16546commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
16547Author: Ben Warren <biggerbadderben@gmail.com>
16548Date: Sun Mar 30 11:34:34 2008 -0400
16549
16550 Fix macro typo in common/cmd_mii.c
16551
16552 This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206. I
16553 actually applied the wrong patch.
16554
16555 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16556
16557commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
16558Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16559Date: Sun Mar 30 16:39:53 2008 +0200
16560
16561 use correct at91rm9200 register name in m501sk board
16562
16563 This fixes a naming bug for at91rm9200 lowlevel init code:
16564 NOR boot flash is on chipselect 0, not chipselect 2. This
16565 makes code use the register name from chip datasheets.
16566
16567 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16568
16569commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
16570Author: David Brownell <david-b@pacbell.net>
16571Date: Fri Jan 18 12:55:00 2008 -0800
16572
16573 use correct at91rm9200 register name
16574
16575 This fixes a naming bug for at91rm9200 lowlevel init code:
16576 NOR boot flash is on chipselect 0, not chipselect 2. This
16577 makes code use the register name from chip datasheets.
16578
16579 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
16580
16581commit a3543d6dc52b0ba9c64016687cf32d600b31a476
16582Author: David Brownell <david-b@pacbell.net>
16583Date: Fri Jan 18 12:45:45 2008 -0800
16584
16585 add missing ARM boards to MAKEALL
16586
16587 Add some missing ARM boards to MAKEALL. These build correctly,
16588 unlike several of the boards already listed.
16589
16590 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
16591
16592commit 066bebd6353e33af3adefc3404560871699e9961
16593Author: Peter Pearse <peter.pearse@arm.com>
16594Date: Sun Mar 30 11:34:09 2008 +0100
16595
16596 Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
16597 to prevent compilation error.
16598
16599 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
16600
16601commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
16602Author: Guennadi Liakhovetski <[lg@denx.de]>
16603Date: Sun Mar 30 11:32:30 2008 +0100
16604
16605 Support for the MX31ADS evaluation board from Freescale
16606
16607 This patch adds support for the MX31ADS evaluation board from Freescale,
16608 initialization code is copied from RedBoot sources, also provided by Freescale.
16609
16610 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16611
16612commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
16613Author: Sascha Hauer <s.hauer@pengutronix.de>
16614Date: Sun Mar 30 11:32:27 2008 +0100
16615
16616 Phytec Phycore-i.MX31 support
16617
16618 This patch adds support for the Phytec Phycore-i.MX31 board
16619
16620 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16621 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16622
16623commit a147e56f03871bba4f05058d5e04ce7deb010b04
16624Author: Sascha Hauer <s.hauer@pengutronix.de>
16625Date: Sun Mar 30 11:32:24 2008 +0100
16626
16627 mx31 litekit support
16628
16629 This patch adds support for the mx31 litekit board
16630
16631 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16632 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16633
16634commit d6674e0e2a6a1f033945f78838566210d3f28c95
16635Author: Sascha Hauer <s.hauer@pengutronix.de>
16636Date: Sun Mar 30 11:32:21 2008 +0100
16637
16638 add SMSC LAN9x1x Network driver
16639
16640 This patch adds a driver for the following smsc network controllers:
16641 LAN9115
16642 LAN9116
16643 LAN9117
16644 LAN9215
16645 LAN9216
16646 LAN9217
16647
16648 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16649 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16650
16651commit 8c8463cce44d849e37744749b32d38e1dfb12e50
16652Author: Sascha Hauer <s.hauer@pengutronix.de>
16653Date: Sun Mar 30 11:32:16 2008 +0100
16654
16655 add an i2c driver for mx31
16656
16657 This patch adds an i2c driver for Freescale i.MX processors
16658
16659 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16660 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16661
16662commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
16663Author: Sascha Hauer <s.hauer@pengutronix.de>
16664Date: Sun Mar 30 11:30:43 2008 +0100
16665
16666 core support for Freescale mx31
16667
16668 This patch adds the core support for Freescale mx31
16669
16670 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16671 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16672
16673commit 8bf69d81782619187933a605f1a95ee1d069478d
16674Author: Sascha Hauer <s.hauer@pengutronix.de>
16675Date: Sun Mar 30 11:28:46 2008 +0100
16676
16677 Separate omap24xx specific code from arm1136
16678
16679 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
16680
16681 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
16682 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16683
16684commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
16685Author: Peter Pearse <peter.pearse@arm.com>
16686Date: Sun Mar 30 11:23:05 2008 +0100
16687
16688 Add pmdra into MAKEALL
16689
16690 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
16691
16692commit a574a73852a527779234e73e17e7597fd8128882
16693Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
16694Date: Sun Mar 30 11:21:58 2008 +0100
16695
16696 Adds support for the Prodrive PMDRA board, based on a DM6441
16697
16698 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
16699
16700commit 1377b5583a48021d983e1fd565f7d40c89e84d63
16701Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
16702Date: Sun Mar 30 11:11:34 2008 +0100
16703
16704 Removes all board specific code from the arch. part for DM644x (DaVinci) boards
16705
16706 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
16707
16708commit 1704dc20917b4f71e373e2c888497ee666d40380
16709Author: Dirk Behme <dirk.behme@gmail.com>
16710Date: Sun Mar 30 11:09:01 2008 +0100
16711
16712 - Remove *_masked() functions as noted by Wolfgang
16713 - Adapt register naming to recent TI spec (sprue26, March 2007)
16714 - Fix reset_timer() handling
16715 - As reported by Pieter [1] the overflow fix introduced a
16716 delay of factor 16 (e.g 2 seconds became 32). While the
16717 overflow fix is basically okay, it missed to divide udelay by
16718 16, too. Fix this.
16719 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
16720 - Remove software division of timer count value (DIV(x)
16721 macro) and do it in hardware (TIM_CLK_DIV).
16722 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
16723 and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
16724 the hints & testing!
16725
16726 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
16727
16728 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
16729
16730commit ac3315c26e143c31680750c9c13f027efbcc887e
16731Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16732Date: Thu Mar 6 16:45:44 2008 +0100
16733
16734 new PHY @ e1000 - 2nd try
16735
16736 Add 82541ER device with latest integrated IGP2 PHY.
16737 Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
16738
16739 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16740 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16741
16742commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
16743Author: Daniel Hellstrom <daniel@gaisler.com>
16744Date: Fri Mar 28 20:22:53 2008 +0100
16745
16746 SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
16747
16748 GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
16749 a debug link (EDCL). The GRETH core is documented in GRIP.pdf
16750 available at www.gaisler.com.
16751
16752 If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
16753 offloading etc.) can be determined by a bit in the control register.
16754 The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
16755
16756 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16757 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16758
16759commit 233a8bcd94997f3f345833a3b82e836222f2a206
16760Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
16761Date: Mon Mar 17 17:08:22 2008 -0500
16762
16763 Add CONFIG_MII_INIT in cmd_mii.c
16764
16765 Provide common configuration in do_mii() to execute mii_init()
16766 for all cpu architectures
16767
16768 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16769 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16770
16771commit f605479de2deb11e834f31dfdb0af107c86aced6
16772Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
16773Date: Mon Mar 17 17:08:16 2008 -0500
16774
16775 ColdFire: Fix FEC transmit issue for MCF5275
16776
16777 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16778 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16779
16780commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
16781Author: Aras Vaichas <arasv@magtech.com.au>
16782Date: Wed Mar 26 09:43:57 2008 +1100
16783
16784 DHCP request fix for Windows Server 2003
16785
16786 Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
16787 delay before sending "DHCP Request" in net/bootp.c. Required to overcome
16788 interoperability problems with Windows Server 200x DHCP server when U-Boot
16789 client responds too fast for server to handle.
16790
16791 Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
16792 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16793
16794commit 97bf85d784fbed485e652eb907589ad0d5cb7262
16795Author: Daniel Hellstrom <daniel@gaisler.com>
16796Date: Fri Mar 28 20:40:19 2008 +0100
16797
16798 MTD/CFI: flash_read64 is defined a weak function (for SPARC)
16799
16800 SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
16801 SPARC CPUs implement flash_read64 which calls __raw_readq.
16802
16803 For current SPARC architectures (LEON2 and LEON3) each read from the
16804 FLASH must lead to a cache miss. This is because FLASH can not be set
16805 non-cacheable since program code resides there, and alternatively disabling
16806 cache is poor from performance view, or doing a cache flush between each
16807 read is even poorer.
16808
16809 Forcing a cache miss on a SPARC is done by a special instruction "lda" -
16810 load alternative space, the alternative space number (ASI) is processor
16811 implementation spcific and can be found by including <asm/processor.h>.
16812
16813 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
16814
16815commit 70431e8a7393b6b793f77957f95b999fc9a269b8
16816Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
16817Date: Fri Mar 28 15:41:25 2008 +0100
16818
16819 Make MPC83xx one step closer to full relocation.
16820
16821 Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
16822 and use GOT relative reference.
16823
16824 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
16825 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16826
16827commit 5b2793a3f3de34d439232b05acc8af67a028fd35
16828Author: Michael Barkowski <michael.barkowski@freescale.com>
16829Date: Thu Mar 27 14:34:43 2008 -0400
16830
16831 mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
16832
16833 This patch fixes eeprom page size so that you can now write more than
16834 64 bytes at a time.
16835
16836 It also makes the board take MAC addresses, if found, from EEPROM.
16837
16838 User should place up to 4 addresses at offset 0x7f00, for
16839 eth{,1,2,3}addr. Any unused addresses should be zero. This group of
16840 four six-byte values should have it's CRC at the end. crc32 and
16841 eeprom commands can be used to accomplish this.
16842
16843 If CRC fails, MAC addresses come from the environment. If CRC
16844 succeeds, the environment is overwritten at startup.
16845
16846 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
16847 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16848
16849commit 8f325cff31f6e745e6540014b131b9a97f61944c
16850Author: Michael Barkowski <michael.barkowski@freescale.com>
16851Date: Fri Mar 28 15:15:38 2008 -0400
16852
16853 mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
16854
16855 Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
16856 controller on the PCI bus in Linux on the MPC8323ERDB.
16857
16858 This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
16859 config file.
16860
16861 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
16862 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16863
16864commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
16865Author: Kim Phillips <kim.phillips@freescale.com>
16866Date: Fri Mar 28 10:19:07 2008 -0500
16867
16868 mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
16869
16870 in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
16871 85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
16872 and processor ID display. Add REVID_{MAJ,MIN}OR macros to make
16873 REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR
16874 convenience macros.
16875
16876 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16877
16878commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
16879Author: Kim Phillips <kim.phillips@freescale.com>
16880Date: Fri Mar 28 10:18:53 2008 -0500
16881
16882 mpc83xx: display ddr frequency in board_add_ram_info banner
16883
16884 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16885
16886commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
16887Author: Kim Phillips <kim.phillips@freescale.com>
16888Date: Fri Mar 28 10:18:40 2008 -0500
16889
16890 mpc83xx: unreinvent mem_clk
16891
16892 delete ddr_clk and use mem_clk instead. Rename other ddr_*_clk to
16893 mem_*_clk for consistency's sake.
16894
16895 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16896
16897commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
16898Author: Kim Phillips <kim.phillips@freescale.com>
16899Date: Fri Mar 28 14:31:23 2008 -0500
16900
16901 mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
16902
16903 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16904
16905commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
16906Author: Dave Liu <r63238@freescale.com>
16907Date: Wed Mar 26 22:57:19 2008 +0800
16908
16909 mpc83xx: enable the SATA interface on mpc837xemds board
16910
16911 Enable the first two SATA interfaces on MPC837xEMDS board,
16912 The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
16913
16914 Signed-off-by: Dave Liu <daveliu@freescale.com>
16915 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16916
16917commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
16918Author: Dave Liu <r63238@freescale.com>
16919Date: Wed Mar 26 22:56:36 2008 +0800
16920
16921 mpc83xx: initialize serdes for MPC837xEMDS boards
16922
16923 This patch is stolen from Anton Vorontsov's patch
16924 for mpc837xerdb boards.
16925
16926 The reference clk and xcorevdd voltage of serdes1/2
16927 is same between mpc837xemds and mpc837xerdb.
16928
16929 8377E: LYNX1- 2 SATA LYNX2- 2 PCIE
16930 8378E: LYNX1- 2 SGMII LYNX2- 2 PCIE
16931 8379E: LYNX1- 2 SATA LYNX2- 2 SATA
16932
16933 Signed-off-by: Dave Liu <daveliu@freescale.com>
16934 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16935
16936commit cc8e839abc80887ae832767b5930d40edd6d7eb7
16937Author: Stefan Roese <sr@denx.de>
16938Date: Fri Mar 28 14:09:04 2008 +0100
16939
16940 ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
16941
16942 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
16943 interface. This usage can be configured with the jumper J6. This patch
16944 displays the current configuration upon bootup and changes the PCIe
16945 init loop, to only initialize the availabel PCIe slots.
16946
16947 Signed-off-by: Stefan Roese <sr@denx.de>
16948
16949commit 90447ecbbac8572457b6d8903073ac3f120995ba
16950Author: Tor Krill <tor@excito.com>
16951Date: Fri Mar 28 11:29:10 2008 +0100
16952
16953 MTD/CFI: Add support for 16bit legacy AMD flash
16954
16955 Add entry for 512Kx16 AMD flash to jedec_table.
16956 Read out 16bit device id if chipwidth is 16bit.
16957 Fixed coding style after Stefans feedback
16958
16959 Signed-off-by: Tor Krill <tor@excito.com>
16960
16961commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
16962Author: Stefan Roese <sr@denx.de>
16963Date: Fri Mar 28 11:02:53 2008 +0100
16964
16965 ppc: Small change to CFG_MEM_TOP_HIDE description
16966
16967 Signed-off-by: Stefan Roese <sr@denx.de>
16968
16969commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
16970Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16971Date: Thu Mar 27 15:44:12 2008 +0900
16972
16973 sh: Add support stat structure and stat.h
16974
16975 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16976
16977commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
16978Author: Mark Jonas <toertel@gmail.com>
16979Date: Sat Mar 22 19:27:52 2008 +0100
16980
16981 sh: Removed warning when compiling drivers/serial/serial_sh.c.
16982
16983 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
16984 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16985
16986commit f309fa38929ffba71230c02330ffa42f4bba6333
16987Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16988Date: Wed Mar 12 18:02:57 2008 +0900
16989
16990 sh: Remove disable_ctrlc function from R7780MP
16991
16992 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16993
16994commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
16995Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16996Date: Wed Mar 12 17:55:15 2008 +0900
16997
16998 sh: Add maintainer of R7780MP to MAINTAINER file
16999
17000 Update MAINTAINER entry for R7780MP. And fix maintainer's name.
17001
17002 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17003
17004commit f5e2466f7baa887a7df0c536333eea8231333497
17005Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17006Date: Tue Mar 25 17:11:24 2008 +0900
17007
17008 sh: Add support Renesas Solutions R2D plus board
17009
17010 R2D plus is SH reference board used with SH7751R.
17011 This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
17012 one PCI bus, VGA, and two Ethernet controller.
17013
17014 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17015
17016commit e92c95180bb5bc5fd4051598a9d60beaba48988d
17017Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17018Date: Wed Mar 12 12:15:29 2008 +0900
17019
17020 sh: Add support SH4 cache control
17021
17022 Add support SH4 cache control and flash_cache function
17023
17024 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17025
17026commit 28e5efde4d925fcb34901d0030d0648de2da7e89
17027Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17028Date: Mon Mar 24 01:53:01 2008 +0900
17029
17030 sh: Add support PCI host driver for SH7751/SH7751R
17031
17032 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17033
17034commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
17035Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17036Date: Mon Mar 24 02:11:26 2008 +0900
17037
17038 sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
17039
17040 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17041
17042commit 566933278101c144d75361ea682678a326c1290d
17043Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17044Date: Wed Mar 12 12:10:28 2008 +0900
17045
17046 sh: Add support SuperH SH7751/SH7751R
17047
17048 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17049
17050commit 3313e0e26224fc9a0c445124f3455058c696df84
17051Author: Mark Jonas <toertel@gmail.com>
17052Date: Mon Mar 10 11:37:10 2008 +0100
17053
17054 sh: Added support for SH7720 based board MPR2.
17055
17056 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
17057 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17058
17059commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
17060Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17061Date: Thu Mar 6 14:05:53 2008 +0900
17062
17063 sh: Fix receive FIFO level register of SH4A
17064
17065 Receive FIFO level register is different in SH4A.
17066 Because register is different, cannot occasionally receive data.
17067
17068 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17069
17070commit c133c1fb0b590662206b0eba70f4478ee0300a9a
17071Author: Yusuke Goda <goda.yusuke@renesas.com>
17072Date: Tue Mar 11 12:55:12 2008 +0900
17073
17074 sh: Add support Renesas Solutions R7780MP
17075
17076 Renesas Solutions R7780MP is a reference board on SH7780.
17077 This board has serial, 10/100 base Ethernet deivice, CF slot
17078 and VGA devices. This board can set extension board.
17079 Extension board has 10/100/1000 base Ethernet device, PCI slot,
17080 S-ATA, iDVR slot.
17081
17082 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
17083 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17084
17085commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
17086Author: Yusuke Goda <goda.yusuke@renesas.com>
17087Date: Wed Mar 5 14:30:02 2008 +0900
17088
17089 sh: Add support PCI of SuperH and SH7780
17090
17091 This patch add support PCI of SuperH base code and SH7780 specific code.
17092
17093 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
17094 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17095
17096commit b55523efff2ae11f0b9ae3cc405893c32eb78156
17097Author: Yusuke Goda <goda.yusuke@renesas.com>
17098Date: Wed Mar 5 14:23:26 2008 +0900
17099
17100 sh: Add support SH7780
17101
17102 SH7780 is CPU of Renesas Technology.
17103 This CPU has
17104 - CPU clock 400MHz
17105 - PCI support
17106 - DDR-SDRAM controller
17107 - etc ...
17108
17109 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
17110 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17111
17112commit c2042f5952a686c414031309b8f244513bf578f0
17113Author: goda.yusuke <goda.yusuke@renesas.com>
17114Date: Fri Jan 25 20:46:36 2008 +0900
17115
17116 sh: Add support Renesas Solutions Migo-R board
17117
17118 Migo-R is a board based on SH7722 and has may devices.
17119 In this patch, supported SCIF, NOR flash and Ethernet.
17120
17121 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
17122 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
17123
17124commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
17125Author: Bartlomiej Sieka <tur@semihalf.com>
17126Date: Thu Mar 27 15:06:40 2008 +0100
17127
17128 Fix host tool build breakage, take two
17129
17130 Revert commit 87c8431f and fix build breakage so that the build continues
17131 to work on FC systems.
17132
17133 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
17134
17135commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
17136Author: Stefan Roese <sr@denx.de>
17137Date: Wed Mar 19 09:36:47 2008 +0100
17138
17139 ppc4xx: Enable ECC on LWMON5
17140
17141 Since all ECC related problems seem to be resolved on LWMON5, this patch
17142 now enables ECC support.
17143
17144 We have to write the ECC bytes by zeroing and flushing in smaller
17145 steps, since the whole 256MByte takes too long for the external
17146 watchdog.
17147
17148 Signed-off-by: Stefan Roese <sr@denx.de>
17149
17150commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
17151Author: Larry Johnson <lrj@acm.org>
17152Date: Mon Mar 17 11:10:35 2008 -0500
17153
17154 ppc4xx: Updates to Korat-specific code
17155
17156 This patch contains updates for changes for the Korat PPC440EPx board.
17157 These changes include:
17158
17159 (1) Support for "permanent" and "upgradable" copies of U-Boot, as
17160 described in the new "doc/README.korat" file;
17161
17162 (2) a new memory map for the registers in the board's CPLD;
17163
17164 (3) a revised format for manufacturer's data in serial EEPROM; and
17165
17166 (4) changes to track updates to U-Boot for the Sequoia board.
17167
17168 Signed-off-by: Larry Johnson <lrj@acm.org>
17169
17170commit f766cdf89b3a2a7634b8c5869f606150e332036c
17171Author: Markus Brunner <super.firetwister@gmail.com>
17172Date: Thu Mar 27 10:46:25 2008 +0100
17173
17174 ppc4xx: PPC405EP Set EMAC noise filter bits
17175
17176 This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
17177 which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
17178 disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
17179
17180 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
17181 Signed-off-by: Stefan Roese <sr@denx.de>
17182
17183commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
17184Author: Mike Nuss <mike@terascala.com>
17185Date: Wed Feb 20 11:54:20 2008 -0500
17186
17187 ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
17188
17189 On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
17190 after startup to change the speed of the clocks. This patch adds the
17191 option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
17192 initialization code will reconfigure the PLL to run the system with a CPU
17193 frequency of 667MHz and PLB frequency of 166MHz, without the need for an
17194 external EEPROM.
17195
17196 Signed-off-by: Mike Nuss <mike@terascala.com>
17197 Acked-by: Stefan Roese <sr@denx.de>
17198
17199commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
17200Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17201Date: Thu Mar 27 09:12:40 2008 +0100
17202
17203 new-image: Fix host tool build breakage
17204
17205 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17206
17207commit 6fb4b640562a10daff0dbe537638d511b5b48650
17208Author: Stefan Roese <sr@denx.de>
17209Date: Thu Mar 27 10:24:03 2008 +0100
17210
17211 ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
17212
17213 Signed-off-by: Stefan Roese <sr@denx.de>
17214
17215commit 9462732a3ec551c11862450902cd8ee1bedea6d9
17216Author: Stefan Roese <sr@denx.de>
17217Date: Wed Mar 19 10:23:43 2008 +0100
17218
17219 ppc4xx: Add fdt support to Prodrive alpr
17220
17221 Since this board will probably be ported to arch/powerpc in the
17222 near future, we add device tree support now. This way we are
17223 "ready" for arch/powerpc from now on.
17224
17225 Signed-off-by: Stefan Roese <sr@denx.de>
17226
17227commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
17228Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
17229Date: Mon Mar 17 09:27:56 2008 +0100
17230
17231 ppc4xx: Enable cache support on the ALPR board
17232
17233 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
17234
17235commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
17236Author: Stefan Roese <sr@denx.de>
17237Date: Wed Mar 26 10:14:11 2008 +0100
17238
17239 ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
17240
17241 If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
17242 memory area will get subtracted from the top (end) of ram and won't get
17243 "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
17244 should gets passed the now "corrected" memory size and won't touch it
17245 either. This should work for arch/ppc and arch/powerpc. Only Linux board
17246 ports in arch/powerpc with bootwrapper support, which recalculate the
17247 memory size from the SDRAM controller setup, will have to get fixed
17248 in Linux additionally.
17249
17250 This patch enables this config option on some PPC440EPx boards as a workaround
17251 for the CHIP 11 errata. Here the description from the AMCC documentation:
17252
17253 CHIP_11: End of memory range area restricted access.
17254 Category: 3
17255
17256 Overview:
17257 The 440EPx DDR controller does not acknowledge any
17258 transaction which is determined to be crossing over the
17259 end-of-memory-range boundary, even if the starting address is
17260 within valid memory space. Any such transaction from any PLB4
17261 master will result in a PLB time-out on PLB4 bus.
17262
17263 Impact:
17264 In case of such misaligned bursts, PLB4 masters will not
17265 retrieve any data at all, just the available data up to the
17266 end of memory, especially the 440 CPU. For example, if a CPU
17267 instruction required an operand located in memory within the
17268 last 7 words of memory, the DCU master would burst read 8
17269 words to update the data cache and cross over the
17270 end-of-memory-range boundary. Such a DCU read would not be
17271 answered by the DDR controller, resulting in a PLB4 time-out
17272 and ultimately in a Machine Check interrupt. The data would
17273 be inaccessible to the CPU.
17274
17275 Workaround:
17276 Forbid any application to access the last 256 bytes of DDR
17277 memory. For example, make your operating system believe that
17278 the last 256 bytes of DDR memory are absent. AMCC has a patch
17279 that does this, available for Linux.
17280
17281 This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
17282 lwmon5, korat, sequoia
17283
17284 The other remaining 440EPx board were intentionally not included
17285 since it is not clear to me, if they use the end of ram for some
17286 other purpose. This is unclear, since these boards have CONFIG_PRAM
17287 defined and even comments like this:
17288
17289 PMC440.h:
17290 /* esd expects pram at end of physical memory.
17291 * So no logbuffer at the moment.
17292 */
17293
17294 It is strongly recommended to not use the last 256 bytes on those
17295 boards too. Patches from the board maintainers are welcome.
17296
17297 Signed-off-by: Stefan Roese <sr@denx.de>
17298
17299commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
17300Author: Stefan Roese <sr@denx.de>
17301Date: Thu Mar 27 10:09:05 2008 +0100
17302
17303 ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
17304
17305 Signed-off-by: Stefan Roese <sr@denx.de>
17306
17307commit d56a3ce179688cde61073a3690e21703d68fafd7
17308Author: Stefan Roese <sr@denx.de>
17309Date: Tue Mar 25 17:51:13 2008 +0100
17310
17311 ppc4xx: Correctly pass phyiscal FLASH base address into dtb
17312
17313 The routine ft_board_setup() configures the EBC NOR mappings for the
17314 Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
17315 0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
17316 problem, we need to pass the corrected address here too.
17317
17318 Signed-off-by: Stefan Roese <sr@denx.de>
17319
17320commit 9ad31989de12ce5c67b07c4867ead47465655c4b
17321Author: Stefan Roese <sr@denx.de>
17322Date: Wed Mar 19 16:35:12 2008 +0100
17323
17324 ppc4xx: Fix compilation warning in 4xx_enet.c
17325
17326 Signed-off-by: Stefan Roese <sr@denx.de>
17327
17328commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
17329Author: Stefan Roese <sr@denx.de>
17330Date: Wed Mar 19 16:20:49 2008 +0100
17331
17332 ppc4xx: Add AMCC Glacier 406GT eval board support
17333
17334 This patch adds support for the AMCC Glacier 460GT eval board.
17335 The main difference to the Canyonlands board are listed here:
17336
17337 - 4 ethernet ports instead of 2
17338 - no SATA port
17339 - no USB port
17340
17341 Currently EMAC2+3 are not working. This will be fixed in a later
17342 release.
17343
17344 Signed-off-by: Stefan Roese <sr@denx.de>
17345
17346commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
17347Author: Stefan Roese <sr@denx.de>
17348Date: Thu Mar 27 08:47:26 2008 +0100
17349
17350 ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
17351
17352 Signed-off-by: Stefan Roese <sr@denx.de>
17353
17354commit b9670dd85be6e0496ef2e231043c23cad9b1d903
17355Author: Anatolij Gustschin <agust@denx.de>
17356Date: Wed Mar 26 21:05:43 2008 +0100
17357
17358 Fix out of tree building issue
17359
17360 Currently U-Boot building in some external directory
17361 doesn't work. This patch tries to fix the problem.
17362
17363 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17364
17365commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
17366Author: Anatolij Gustschin <agust@denx.de>
17367Date: Wed Mar 26 18:13:33 2008 +0100
17368
17369 README: update documentation (availability, links, etc.)
17370
17371 Fix typo in README
17372
17373 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17374
17375commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
17376Author: Anatolij Gustschin <agust@denx.de>
17377Date: Wed Mar 26 17:47:44 2008 +0100
17378
17379 Fix compilation error in cmd_usb.c
17380
17381 This patch fixes compilation error
17382 cmd_usb.c: In function 'do_usb':
17383 cmd_usb.c:552: error: void value not ignored as it ought to be
17384
17385 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17386
17387commit d8c82db482d6b535d12b419d6440b88bf7091c9b
17388Author: Timur Tabi <timur@freescale.com>
17389Date: Fri Mar 14 17:45:29 2008 -0500
17390
17391 Add support for setting the I2C bus speed in fsl_i2c.c
17392
17393 Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
17394 the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro,
17395 but fsl_i2c.c ignores it and uses conservative value when programming the
17396 I2C bus speed.
17397
17398 Signed-off-by: Timur Tabi <timur@freescale.com>
17399 Acked-by: Andy Fleming <afleming@freescale.com>
17400
17401commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
17402Author: Wolfgang Denk <wd@denx.de>
17403Date: Thu Mar 27 00:03:57 2008 +0100
17404
17405 Coding style cleanup, update CHANGELOG
17406
17407 Signed-off-by: Wolfgang Denk <wd@denx.de>
17408
Wolfgang Denkd049cc72008-03-27 00:03:57 +010017409commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
17410Author: Dave Liu <r63238@freescale.com>
17411Date: Wed Mar 26 22:55:32 2008 +0800
17412
17413 drivers: add the support for Freescale SATA controller
17414
17415 Add the Freescale on-chip SATA controller driver to u-boot,
17416 The SATA controller is used on the 837x and 8315 targets,
17417 The driver can be used to load kernel, fs and dtb.
17418
17419 The features list:
17420 - 1.5/3 Gbps link speed
17421 - LBA48, LBA28 support
17422 - DMA and FPDMA support
17423 - Two ports support
17424
17425 Signed-off-by: Dave Liu <daveliu@freescale.com>
17426
17427commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
17428Author: Dave Liu <r63238@freescale.com>
17429Date: Wed Mar 26 22:54:44 2008 +0800
17430
17431 ata: add the readme for SATA command line
17432
17433 Signed-off-by: Dave Liu <daveliu@freescale.com>
17434
17435commit cd54081cd479e542fc399b8a40651ff11a1ad849
17436Author: Dave Liu <r63238@freescale.com>
17437Date: Wed Mar 26 22:53:24 2008 +0800
17438
17439 ata: enable the sata initialize on boot up
17440
17441 Signed-off-by: Dave Liu <daveliu@freescale.com>
17442
17443commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
17444Author: Dave Liu <r63238@freescale.com>
17445Date: Wed Mar 26 22:52:36 2008 +0800
17446
17447 ata: add the fis struct for SATA
17448
17449 Signed-off-by: Dave Liu <daveliu@freescale.com>
17450
17451commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
17452Author: Dave Liu <r63238@freescale.com>
17453Date: Wed Mar 26 22:51:44 2008 +0800
17454
17455 ata: add the libata support
17456
17457 add simple libata support in u-boot
17458
17459 Signed-off-by: Dave Liu <daveliu@freescale.com>
17460
17461commit 8e9bb43429e50df55fa41932cbe65841ff579220
17462Author: Dave Liu <r63238@freescale.com>
17463Date: Wed Mar 26 22:50:45 2008 +0800
17464
17465 ata: make the ata_piix driver using new SATA framework
17466
17467 original ata_piix driver is using IDE framework, not real
17468 SATA framework. For now, the ata_piix driver is only used
17469 by x86 sc520_cdp board. This patch makes the ata_piix driver
17470 use the new SATA framework, so
17471
17472 - remove the duplicated command stuff
17473 - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
17474 - add the CONFIG_CMD_SATA define to sc520_cdp.h
17475
17476 Signed-off-by: Dave Liu <daveliu@freescale.com>
17477
17478commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
17479Author: Dave Liu <r63238@freescale.com>
17480Date: Wed Mar 26 22:49:44 2008 +0800
17481
17482 ata: add the support for SATA framework
17483
17484 - add the SATA framework
17485 - add the SATA command line
17486
17487 Signed-off-by: Dave Liu <daveliu@freescale.com>
17488
17489commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
17490Author: Dave Liu <r63238@freescale.com>
17491Date: Wed Mar 26 22:48:18 2008 +0800
17492
17493 ata: merge the header of ata_piix driver
17494
17495 move the sata.h from include/ to drivers/block/ata_piix.h
17496
17497 Signed-off-by: Dave Liu <daveliu@freescale.com>
17498
17499commit 9eef62804d9695425b24c87b46a61a7fa74afee0
17500Author: Dave Liu <r63238@freescale.com>
17501Date: Wed Mar 26 22:47:06 2008 +0800
17502
17503 ata: merge the ata_piix driver
17504
17505 move the cmd_sata.c from common/ to drivers/ata_piix.c,
17506 the cmd_sata.c have some part of ata_piix controller drivers.
17507 consolidate the driver to have better framework.
17508
17509 Signed-off-by: Dave Liu <daveliu@freescale.com>
17510
Wolfgang Denk1aeed8d2008-04-13 09:59:26 -070017511commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
17512Author: Markus Klotzbuecher <mk@denx.de>
17513Date: Wed Mar 26 18:26:43 2008 +0100
17514
17515 USB, Storage: fix a bug introduced in commit
17516 f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
17517 to only print only information on one storage device, but not for
17518 multiple.
17519
17520 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17521
17522commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
17523Author: Anatolij Gustschin <agust@denx.de>
17524Date: Wed Mar 26 17:47:44 2008 +0100
17525
17526 Fix compilation error in cmd_usb.c
17527
17528 This patch fixes compilation error
17529 cmd_usb.c: In function 'do_usb':
17530 cmd_usb.c:552: error: void value not ignored as it ought to be
17531
17532 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17533 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17534
17535commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
17536Author: Kumar Gala <galak@kernel.crashing.org>
17537Date: Wed Mar 26 08:53:53 2008 -0500
17538
17539 85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
17540
17541 Provide a board_lmb_reserve helper function to ensure we reserve
17542 the page of memory we are using for the boot page translation code.
17543
17544 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17545
17546commit 79679d80021ab095e639e250ca472fe526da02e2
17547Author: Kumar Gala <galak@kernel.crashing.org>
17548Date: Wed Mar 26 08:34:25 2008 -0500
17549
17550 85xx: Update multicore boot mechanism to ePAPR v0.81 spec
17551
17552 The following changes are needed to be inline with ePAPR v0.81:
17553
17554 * r4, r5 and now always set to 0 on boot release
17555 * r7 is used to pass the size of the initial map area (IMA)
17556 * EPAPR_MAGIC value changed for book-e processors
17557 * changes in the spin table layout
17558 * spin table supports a 64-bit physical release address
17559
17560 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17561
17562commit 25eedb2c1958a13110c7de1fc809b624053cc69c
17563Author: Jon Loeliger <jdl@freescale.com>
17564Date: Wed Mar 19 15:02:07 2008 -0500
17565
17566 FSL: Clean up board/freescale/common/Makefile
17567
17568 Each file that can be built here now follows some
17569 CONFIG_ option so that they are appropriately built
17570 or not, as needed. And CONFIG_ defines were added
17571 to various board config files to make sure that happens.
17572
17573 The other board/freescale/*/Makefiles no longer need
17574 to reach up and over into ../common to build their
17575 individually needed files any more.
17576
17577 Boards that are CDS specific were renamed with cds_ prefix.
17578
17579 Signed-off-by: Jon Loeliger <jdl@freescale.com>
17580
17581commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
17582Author: Kumar Gala <galak@kernel.crashing.org>
17583Date: Wed Feb 27 22:00:27 2008 -0600
17584
17585 85xx: Fix merge duplication
17586
17587 ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate.
17588
17589 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17590
17591commit 5893b3d0a4084f87a06a5d3dc03db91206818941
17592Author: James Yang <James.Yang@freescale.com>
17593Date: Tue Feb 12 16:35:07 2008 -0600
17594
17595 85xx: Expand CCSR space with more DDR controller registers.
17596
17597 Signed-off-by: James Yang <James.Yang@freescale.com>
17598 Signed-off-by: Jon Loeliger <jdl@freescale.com>
17599 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17600
17601commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
17602Author: James Yang <James.Yang@freescale.com>
17603Date: Fri Feb 8 18:05:08 2008 -0600
17604
17605 85xx: Speed up get_ddr_freq() and get_bus_freq()
17606
17607 get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
17608 called. However, get_sys_info() recalculates extraneous information when
17609 called each time. Have get_ddr_freq() and get_bus_freq() return memoized
17610 values from global_data instead.
17611
17612 Signed-off-by: James Yang <James.Yang@freescale.com>
17613 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17614
17615commit e9ea679918fbc9a53fa2f2a904aac874ea736036
17616Author: James Yang <James.Yang@freescale.com>
17617Date: Fri Feb 8 16:46:27 2008 -0600
17618
17619 85xx: Show DDR memory data rate in addition to the memory clock frequency.
17620
17621 Show the DDR memory data rate in addition to the memory clock
17622 frequency. For DDR/DDR2 memories the memory data rate is 2x the
17623 memory clock.
17624
17625 Signed-off-by: James Yang <James.Yang@freescale.com>
17626 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17627
17628commit 591933ca6eabc440e6ed6967233aaf56fce464a3
17629Author: James Yang <James.Yang@freescale.com>
17630Date: Fri Feb 8 16:44:53 2008 -0600
17631
17632 85xx: get_tbclk() speed up and rounding fix
17633
17634 Speed up get_tbclk() by referencing pre-computed bus clock
17635 frequency value from global data instead of sys_info_t. Fix
17636 rounding of result to nearest; previously it was rounding
17637 upwards.
17638
17639 Signed-off-by: James Yang <James.Yang@freescale.com>
17640 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17641
17642commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
17643Author: Andy Fleming <afleming@freescale.com>
17644Date: Wed Feb 6 01:19:40 2008 -0600
17645
17646 Update SVR numbers to expand support
17647
17648 FSL has taken to using SVR[16:23] as an SOC sub-version field. This
17649 is used to distinguish certain variants within an SOC family. To
17650 account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
17651 constants to reflect the larger value. We also add SVR numbers for all
17652 of the current variants. Finally, to make things neater, rather than
17653 use an enormous switch statement to print out the CPU type, we create
17654 and array of SVR/name pairs (using a macro), and print out the CPU name
17655 that matches the SVR SOC version.
17656
17657 Signed-off-by: Andy Fleming <afleming@freescale.com>
17658
17659commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
17660Author: Andy Fleming <afleming@freescale.com>
17661Date: Wed Feb 6 01:12:57 2008 -0600
17662
17663 Add the Freescale PCI device IDs
17664
17665 Signed-off-by: Andy Fleming <afleming@freescale.com>
17666
17667commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
17668Author: Kumar Gala <galak@kernel.crashing.org>
17669Date: Thu Feb 14 11:04:23 2008 -0600
17670
17671 85xx: Added support for multicore boot mechanism
17672
17673 Added the cpu command that provides a generic mechanism to get status,
17674 reset, and release secondary cores in multicore processors.
17675
17676 Added support for using the ePAPR defined spin-table mechanism on 85xx.
17677
17678 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17679 Signed-off-by: Andy Fleming <afleming@freescale.com>
17680
17681commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
17682Author: Kumar Gala <galak@kernel.crashing.org>
17683Date: Thu Jan 17 16:48:33 2008 -0600
17684
17685 85xx: Added support for multicore boot mechanism
17686
17687 Added the cpu command that provides a generic mechanism to get status,
17688 reset, and release secondary cores in multicore processors.
17689
17690 Added support for using the ePAPR defined spin-table mechanism on 85xx.
17691
17692 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17693
17694commit f69766e4b5d47ecd3aa58677a8da875694f364f2
17695Author: Kumar Gala <galak@kernel.crashing.org>
17696Date: Wed Jan 30 14:55:14 2008 -0600
17697
17698 85xx: Add the concept of CFG_CCSRBAR_PHYS
17699
17700 When we go to 36-bit physical addresses we need to keep the concept of
17701 the physical CCSRBAR address seperate from the virtual one.
17702
17703 For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
17704
17705 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17706
Wolfgang Denkd049cc72008-03-27 00:03:57 +010017707commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
17708Author: Wolfgang Denk <wd@denx.de>
17709Date: Wed Mar 26 15:38:47 2008 +0100
17710
17711 Coding style cleanup.
17712
17713 Signed-off-by: Wolfgang Denk <wd@denx.de>
17714
17715commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
17716Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
17717Date: Wed Mar 26 13:02:13 2008 +0100
17718
17719 Add CFG_RTC_DS1337_NOOSC to turn off OSC output
17720
17721 The default settings for RTC DS1337 keeps the OSC
17722 output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
17723 turn it off.
17724
17725 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
17726
17727commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
17728Author: Wolfgang Denk <wd@denx.de>
17729Date: Wed Mar 26 11:48:46 2008 +0100
17730
17731 Cleanup coding style, update CHANGELOG
17732
17733 Signed-off-by: Wolfgang Denk <wd@denx.de>
17734
Wolfgang Denk438a4c12008-03-26 11:48:46 +010017735commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
17736Author: Wolfgang Denk <wd@denx.de>
17737Date: Wed Mar 26 10:40:12 2008 +0100
17738
17739 README: update documentation (availability, links, etc.)
17740
17741 Signed-off-by: Wolfgang Denk <wd@denx.de>
17742
17743commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
17744Author: Aras Vaichas <arasv@magtech.com.au>
17745Date: Tue Mar 25 12:09:07 2008 +1100
17746
17747 USB Storage, add meaningful return value
17748
17749 This patch changes the "usb storage" command to return success if it
17750 finds a USB storage device, otherwise it returns error.
17751
17752 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17753
17754commit 18e69a35efbb078403db0c0063986470dad7d082
17755Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17756Date: Fri Mar 14 23:20:18 2008 +0300
17757
17758 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
17759
17760 Linux understands "host" (default), "peripheral" and "otg" (broken).
17761 Though, U-Boot doesn't restrict dr_mode variable to these values (think
17762 of renames in future).
17763
17764 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17765 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17766
17767commit c7604783b236e368f225efb7b3efb418fe20b404
17768Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17769Date: Fri Mar 14 23:20:30 2008 +0300
17770
17771 tsec: fix link detection for the RTL8211B PHY
17772
17773 RTL8211B sets link state register after autonegotiation complete,
17774 so with bootdelay=0 RTL8211B will report lack of the link.
17775
17776 To fix this, we should wait for aneg to complete, even if the
17777 link is currently down.
17778
17779 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17780 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17781
17782commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
17783Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17784Date: Mon Mar 24 20:47:09 2008 +0300
17785
17786 mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
17787
17788 device_type = "soc" is being deprecated, newer device trees will use
17789 "fsl,soc" and/or "fsl,immr" for the soc nodes.
17790
17791 This patch also adds clock-frequency property for soc nodes (the same
17792 value as bus-frequency).
17793
17794 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17795
17796commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
17797Author: Joe D'Abbraccio <ljd015@freescale.com>
17798Date: Mon Mar 24 13:00:59 2008 -0400
17799
17800 Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
17801
17802 With the original value of 1/2 clock cycle delay, the system ran relatively
17803 stable except when we run benchmarks that are intensive users of memory.
17804 When I run samba connected disk with a HDBENCH test, the system locks-up
17805 or reboots sporadically.
17806
17807 Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
17808
17809commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
17810Author: Scott Wood <scottwood@freescale.com>
17811Date: Mon Mar 24 12:44:13 2008 -0500
17812
17813 mpc83xx: Set PCI I/O bus-address base to zero.
17814
17815 The device trees for these boards describe PCI I/O as starting from
17816 address zero from the device's perspective.
17817
17818 Placing I/O elsewhere may cause problems with certain PCI boards, and may
17819 cause problems with Linux.
17820
17821 Signed-off-by: Scott Wood <scottwood@freescale.com>
17822
17823commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
17824Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17825Date: Mon Mar 24 20:47:05 2008 +0300
17826
17827 mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
17828
17829 At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
17830 This patch fixes "system time drifting" problem.
17831
17832 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17833
17834commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
17835Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17836Date: Mon Mar 24 20:47:02 2008 +0300
17837
17838 mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
17839
17840 This is needed to update /choosen/linux,stdout-path properly.
17841
17842 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17843
17844commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
17845Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17846Date: Mon Mar 24 20:47:00 2008 +0300
17847
17848 mpc83xx: MPC8360E-RDK: add dhcp command
17849
17850 Plus modify environment to use it and remove bootfile env variable,
17851 it is internal and CONFIG_BOOTFILE is used for these purposes.
17852
17853 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17854
17855commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
17856Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17857Date: Mon Mar 24 20:46:57 2008 +0300
17858
17859 mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
17860
17861 Current DDR setup easily causes memory corruption, this patch fixes it.
17862
17863 Also fix TIMING_CFG0_MRS_CYC definition.
17864
17865 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17866
17867commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
17868Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17869Date: Mon Mar 24 20:46:53 2008 +0300
17870
17871 mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
17872
17873 This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
17874 controller and FHCI (QE USB).
17875
17876 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17877
17878commit 7ad959490962e6842648d87d4bd795ea6cdcce67
17879Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17880Date: Mon Mar 24 20:46:51 2008 +0300
17881
17882 mpc83xx: MPC8360E-RDK: add support for NAND
17883
17884 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17885
17886commit 9a3e832aeb491861d029991241572ebdf4b5b61b
17887Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17888Date: Mon Mar 24 20:46:46 2008 +0300
17889
17890 mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
17891
17892 This is needed for BCM PHYs to work on this board.
17893
17894 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17895
17896commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
17897Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17898Date: Mon Mar 24 20:46:34 2008 +0300
17899
17900 uec: add support for Broadcom BCM5481 Gigabit PHY
17901
17902 This patch adds basic support for Broadcom BCM5481 PHY.
17903
17904 RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
17905 Peter Barada <peterb@logicpd.com>.
17906
17907 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17908
17909commit 6a600c3a1876bc203445df4f0fd6b12648259666
17910Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17911Date: Mon Mar 24 20:46:28 2008 +0300
17912
17913 uec: add support for RGMII_RXID interface mode
17914
17915 PHY drivers will use it to setup software delay between RXD and RXC
17916 signals.
17917
17918 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17919
17920commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
17921Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17922Date: Mon Mar 24 20:46:24 2008 +0300
17923
17924 uec: add support for gbit mii status readings
17925
17926 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17927
17928commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
17929Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17930Date: Mon Mar 24 17:40:47 2008 +0300
17931
17932 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
17933
17934 This is primarily for the early console support.
17935
17936 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17937
17938commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
17939Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17940Date: Mon Mar 24 17:40:43 2008 +0300
17941
17942 83xx: initialize serdes for MPC837XRDB boards
17943
17944 On the MPC8377ERDB: 2 SATA and 2 PCI-E.
17945 On the MPC8378ERDB: 2 PCI-E
17946 On the MPC8379ERDB: 4 SATA
17947
17948 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17949
17950commit 453316a2a19642d8afcbca7452e40a6b44a197b1
17951Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17952Date: Mon Mar 24 17:40:32 2008 +0300
17953
17954 83xx: serdes setup routines
17955
17956 This patch adds few routines to configure serdes on 837x targets.
17957
17958 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17959
17960commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
17961Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17962Date: Mon Mar 24 17:40:27 2008 +0300
17963
17964 83xx: split COBJS onto separate lines
17965
17966 ..plus get rid of some #ifdefs in the .c files.
17967
17968 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17969
17970commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
17971Author: Anton Vorontsov <avorontsov@ru.mvista.com>
17972Date: Mon Mar 24 17:40:23 2008 +0300
17973
17974 83xx: nand support for MPC837XRDB boards
17975
17976 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
17977
17978commit 82e45a204190593e8613145a928f998fb8c909c4
17979Author: Jerry Van Baren <gvb.uboot@gmail.com>
17980Date: Tue Mar 18 21:44:41 2008 -0400
17981
17982 Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
17983
17984 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
17985 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17986
17987commit 0fa7a1b4719e325fce332689fb8754ec166191ff
17988Author: Michael Barkowski <michael.barkowski@freescale.com>
17989Date: Thu Mar 20 13:15:39 2008 -0400
17990
17991 mpc8323erdb: remove RTC and add EEPROM
17992
17993 There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
17994
17995 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
17996 Acked-by: Kim Phillips <kim.phillips@freescale.com>
17997
17998commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
17999Author: Michael Barkowski <michael.barkowski@freescale.com>
18000Date: Thu Mar 20 13:15:34 2008 -0400
18001
18002 mpc8323erdb: Improve the system performance
18003
18004 The following changes are based on kernel UCC ethernet performance:
18005
18006 1. Make the CSB bus pipeline depth as 4, and enable the repeat mode
18007 2. Optimize transactions between QE and CSB. Added CFG_SPCR_OPT
18008 switch to enable this setting.
18009
18010 The following changes are based on the App Note AN3369 and
18011 verified to improve memory latency using LMbench:
18012
18013 3. CS0_CONFIG[AP_n_EN] is changed from 1 to 0
18014 4. CS0_CONFIG[ODT_WR_CONFIG] set to 1. Was a reserved setting
18015 previously.
18016 5. TIMING_CFG_1[WRREC] is changed from 3clks to 2clks (based on
18017 Twr=15ns, and this was already the setting in DDR_MODE)
18018 6. TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
18019 Trp=15ns)
18020 7. TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
18021 Tras=40ns)
18022 8. TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
18023 Trcd=15ns)
18024 9. TIMING_CFG_1[REFREC] changed from 21 clks to 11clks. (based on
18025 Trfc=75ns)
18026 10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks. (based
18027 on Tfaw=50ns)
18028 11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
18029 on CL=3 and WL=2).
18030
18031 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
18032 Acked-by: Kim Phillips <kim.phillips@freescale.com>
18033
18034commit fc549c871f43933396a5b3e21d897023d4b31b8d
18035Author: Michael Barkowski <michael.barkowski@freescale.com>
18036Date: Thu Mar 20 13:15:28 2008 -0400
18037
18038 mpc8323erdb: use readable DDR config macros
18039
18040 Use available shift/mask macros to define DDR configuration.
18041
18042 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
18043 Acked-by: Kim Phillips <kim.phillips@freescale.com>
18044
18045commit 89c7784ed90ba50301eec521144f95111e472906
18046Author: Timur Tabi <timur@freescale.com>
18047Date: Fri Feb 8 13:15:55 2008 -0600
18048
18049 83xx: Add Vitesse VSC7385 firmware uploading
18050
18051 Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
18052 the Vitesse VSC7385 firmware. Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
18053 Cleaned up the board header files to make selecting the VSC7385 easier to
18054 control.
18055
18056 Signed-off-by: Timur Tabi <timur@freescale.com>
18057 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18058
18059commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
18060Author: Timur Tabi <timur@freescale.com>
18061Date: Fri Feb 8 13:15:54 2008 -0600
18062
18063 NET: Add Vitesse VSC7385 firmware uploading
18064
18065 The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
18066 and other boards. A small firwmare must be uploaded to its on-board memory
18067 before it can be enabled. This patch adds the code which uploads firmware
18068 (but not the firmware itself).
18069
18070 Previously, this feature was provided by a U-Boot application that was
18071 made available only on Freescale BSPs. The VSC7385 firmware must still
18072 be obtained separately, but at least there is no longer a need for a separate
18073 application.
18074
18075 Signed-off-by: Timur Tabi <timur@freescale.com>
18076 Acked-by: Ben Warren <biggerbadderben@gmail.com>
18077
18078commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
18079Author: Wolfgang Denk <wd@denx.de>
18080Date: Wed Mar 26 00:52:10 2008 +0100
18081
18082 Coding Style cleanyp; update CHANGELOG
18083
18084 Signed-off-by: Wolfgang Denk <wd@denx.de>
18085
Wolfgang Denkaa6f6d12008-03-26 00:52:10 +010018086commit 43ddd9c820fec44816188f53346b464e20b3142d
18087Author: Jerry Van Baren <gvb.uboot@gmail.com>
18088Date: Sat Mar 22 14:23:49 2008 -0400
18089
18090 Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
18091
18092 These defines embedded the u-boot env variables and/or the bd_t structure
18093 in the fdt blob. The conclusion of discussion on the u-boot email list
18094 was that embedding these in the fdt blob is not useful: there are better
18095 ways of passing the data (in fact, the fdt blob itself replaces the
18096 bd_t struct).
18097
18098 The only board that enables these is the stxxtc and they don't appear
18099 to be used by linux.
18100
18101 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
18102 Acked-by: Kim Phillips <kim.phillips@freescale.com>
18103
18104commit 22ed2285743359fd1fe73e411dff914b2256e68f
18105Author: Stefan Roese <sr@denx.de>
18106Date: Mon Mar 17 10:49:25 2008 +0100
18107
18108 rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
18109
18110 Signed-off-by: Stefan Roese <sr@denx.de>
18111
18112commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
18113Author: Kyungmin Park <kmpark@infradead.org>
18114Date: Mon Mar 17 08:54:06 2008 +0900
18115
18116 Add Flex-OneNAND booting support
18117
18118 Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
18119 using a NOR Flash interface. This on-chip integration enables system designers
18120 to reduce external system logic and use high-density NAND Flash
18121 in applications that would otherwise have to use more NOR components.
18122
18123 Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
18124 in more flexible way. While MLC area of Flex-OneNAND can be used to store data
18125 that require low reliability and high density, SLC area of Flex-OneNAND
18126 to store data that need high reliability and high performance. Flex-OneNAND
18127 can let users take advantage of storing these two different types of data
18128 into one chip, which is making Flex-OneNAND more cost- and space-effective.
18129
18130 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18131
18132commit c512389cc4a10253249271ff6c887c6dab1f0db2
18133Author: André Schwarz <andre.schwarz@matrix-vision.de>
18134Date: Thu Mar 13 13:50:52 2008 +0100
18135
18136 MPC5200: support setup without FEC
18137
18138 Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
18139 defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
18140
18141 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
18142 Acked-by: Grant Likely <grant.likely@secretlab.ca>
18143
18144commit aa3511e422946041ef626f80a05ae5e8bfc700e6
18145Author: Jon Loeliger <jdl@freescale.com>
18146Date: Wed Mar 5 18:05:46 2008 -0600
18147
18148 FSL: Move board/mpc8266ads under board/freescale
18149
18150 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18151
18152commit 7f1d846e5c5754449c286587d099d85246062772
18153Author: Jon Loeliger <jdl@freescale.com>
18154Date: Wed Mar 5 18:05:47 2008 -0600
18155
18156 FSL: Move board/mpc7448hpc2 under board/freescale
18157
18158 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18159
18160commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
18161Author: Jon Loeliger <jdl@freescale.com>
18162Date: Wed Mar 5 18:05:45 2008 -0600
18163
18164 FSL: Move board/mpc8260ads under board/freescale
18165
18166 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18167
18168commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
18169Author: goda.yusuke <goda.yusuke@renesas.com>
18170Date: Wed Mar 5 17:08:33 2008 +0900
18171
18172 net: Add support AX88796L ethernet device
18173
18174 AX88796L is device of NE2000 compatible.
18175 This patch support AX88796L ethernet device.
18176
18177 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
18178 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18179
18180commit e0a6140dd381e1eed1ada2291166ef2616d8822b
18181Author: Wolfgang Denk <wd@denx.de>
18182Date: Tue Mar 25 22:50:41 2008 +0100
18183
18184 ne2000 driver: change #ifdef to Makefile conditional compilation
18185
18186 Signed-off-by: Wolfgang Denk <wd@denx.de>
18187
18188commit e710185aae90c64d39c2d453e40e58ceefe4f250
18189Author: goda.yusuke <goda.yusuke@renesas.com>
18190Date: Wed Mar 5 17:08:20 2008 +0900
18191
18192 net: Divided code of NE2000 ethernet driver
18193
18194 There are more devices of the NE2000 base.
18195 A present code is difficult for us to support more devices.
18196 To support more NE2000 clone devices, separated the function.
18197
18198 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
18199 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18200
18201commit 395bce4f59a507a60a475f7ee46bed47de9482df
18202Author: Mike Frysinger <vapier@gentoo.org>
18203Date: Sun Feb 24 23:58:13 2008 -0500
18204
18205 net/Blackfin: move on-chip MAC driver into drivers/net/
18206
18207 The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
18208 directory, but it is not board specific, so relocate it to the drivers dir
18209 so that other Blackfin ports can utilize it.
18210
18211 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18212
18213commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
18214Author: Mike Frysinger <vapier@gentoo.org>
18215Date: Sun Feb 24 23:52:35 2008 -0500
18216
18217 smc91111: use SSYNC() rather than asm(ssync) for Blackfin
18218
18219 Since the "ssync" instruction may have hardware anomalies associated with
18220 it, have the smc91111 driver use the SSYNC macro rather than invoking it
18221 directly. We workaround all the anomalies via this macro.
18222
18223 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18224
18225commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
18226Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
18227Date: Sun Feb 17 22:57:47 2008 +0000
18228
18229 8xx: Update OF support on 8xx
18230
18231 This patch does some shifting around of OF support on 8xx.
18232
18233 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
18234
18235commit 9c666a7db0b2285a270c68810889ce7d5dba304b
18236Author: Kumar Gala <galak@kernel.crashing.org>
18237Date: Fri Feb 15 15:16:18 2008 -0600
18238
18239 ppc: Allow boards to specify how much memory they can map
18240
18241 For historical reasons we limited the stack to 256M because some boards
18242 could only map that much via BATS. However newer boards are capable of
18243 mapping more memory (for example 85xx is capble of doing up to 2G).
18244
18245 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18246
18247commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
18248Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
18249Date: Fri Feb 15 01:05:58 2008 +0000
18250
18251 8xx : Add OF support to Adder875 board port - resubmit
18252
18253 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
18254
18255commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
18256Author: Kumar Gala <galak@kernel.crashing.org>
18257Date: Thu Feb 14 20:44:42 2008 -0600
18258
18259 Add setexpr command
18260
18261 Add a simple expr style command that will set an env variable as the result
18262 of the command. This allows us to do simple math in shell. The following
18263 operations are supported: &, |, ^, +, -, *, /.
18264
18265 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18266
18267commit 3f105faa64b9826e088711fdfcaa70cb1230397a
18268Author: Jon Loeliger <jdl@freescale.com>
18269Date: Wed Mar 5 17:27:48 2008 -0600
18270
18271 FSL: Move board/mpc7448hpc2 under board/freescale
18272
18273 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18274
18275commit 449c703374a8868453425e15da7e2f76221b72e4
18276Author: Jon Loeliger <jdl@freescale.com>
18277Date: Wed Mar 5 17:21:43 2008 -0600
18278
18279 FSL: Move board/mpc8266ads under board/freescale
18280
18281 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18282
18283commit 5863577989ad689427bb750107e9a75f1c1645d2
18284Author: Jon Loeliger <jdl@freescale.com>
18285Date: Wed Mar 5 16:41:41 2008 -0600
18286
18287 FSL: Move board/mpc8260ads under board/freescale
18288
18289 Signed-off-by: Jon Loeliger <jdl@freescale.com>
18290
18291commit 8a773983957ee6c4aa344469b742f29c7d26afbd
18292Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18293Date: Tue Mar 25 21:30:08 2008 +0900
18294
18295 [MIPS] Move gth2_config from ARM section to MIPS
18296
18297 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18298
18299commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
18300Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18301Date: Tue Mar 25 21:30:07 2008 +0900
18302
18303 [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
18304
18305 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18306
18307commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
18308Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18309Date: Tue Mar 25 21:30:07 2008 +0900
18310
18311 [MIPS] Fix dcache_status()
18312
18313 You can't judge UNCACHED by Config.K0 LSB.
18314
18315 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18316
18317commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
18318Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18319Date: Tue Mar 25 21:30:07 2008 +0900
18320
18321 [MIPS] Introduce _machine_restart
18322
18323 Handles machine specific functions by using weak functions.
18324
18325 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18326
18327commit decaba6f5cf386d569ac3997bebb871b966c6b18
18328Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18329Date: Tue Mar 25 21:30:07 2008 +0900
18330
18331 [MIPS] Cleanup CP0 Status initialization
18332
18333 Add setup_c0_status from Linux. For the moment we disable interrupts, set
18334 CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
18335 reset-time configuration and will work well across most processors.
18336
18337 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18338
18339commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
18340Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18341Date: Tue Mar 25 21:30:07 2008 +0900
18342
18343 [MIPS] Initialize CP0 Cause before setting up CP0 Status register
18344
18345 Without this change, we'll be suffering from deffered WATCH exception
18346 once Status.EXL is cleared. Make sure Cause.WP is cleared.
18347
18348 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18349
18350commit 26138623230ca2bad3c78e05a65527ea70c8b688
18351Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18352Date: Tue Mar 25 21:30:07 2008 +0900
18353
18354 [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
18355
18356 Move things to appropriate place.
18357
18358 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18359
18360commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
18361Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18362Date: Tue Mar 25 21:30:06 2008 +0900
18363
18364 [MIPS] Implement flush_cache()
18365
18366 We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
18367 don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
18368 function is used not only in U-Boot specfic programs but also at loading
18369 target binaries.
18370
18371 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18372
18373commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
18374Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18375Date: Tue Mar 25 21:30:06 2008 +0900
18376
18377 [MIPS] Fix I-/D-cache initialization loops
18378
18379 Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
18380 again per a loop for I-cache initialization. But according to 'See MIPS
18381 Run', we're encouraged to use three separate loops rather than combining
18382 them *for both I- and D-cache*. This patch tries to fix this.
18383
18384 In accordance with fixing above, mips_init_[id]cache are separated from
18385 mips_cache_reset(), and rewrite cache loops are completely rewritten with
18386 useful macros.
18387
18388 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18389
18390commit 1898840797c7f50799377bd5b285a8a93a82c419
18391Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18392Date: Tue Mar 25 21:30:06 2008 +0900
18393
18394 [MIPS] Replace memory clearance code with f_fill64
18395
18396 This routine fills memory with zero by 64 bytes, and is 64-bit capable.
18397
18398 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18399
18400commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
18401Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18402Date: Tue Mar 25 21:30:06 2008 +0900
18403
18404 [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
18405
18406 This patch replaces the current function definitions with NESTED, LEAF
18407 and END macro. They specify some more additional information about the
18408 function; an alignment of symbol, type of symbol, stack frame usage, etc.
18409 These information explicitly tells the assembler and the debugger about
18410 the types of code we want to generate.
18411
18412 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18413
18414commit 282223a607c611425fa33f5428f8eae6636972bb
18415Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18416Date: Tue Mar 25 11:43:17 2008 +0900
18417
18418 [MIPS] asm headers' updates
18419
18420 Make some asm headers adjusted to the latest Linux kernel.
18421
18422 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18423
18424commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
18425Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18426Date: Tue Mar 25 11:39:29 2008 +0900
18427
18428 [MIPS] Request for the 'mips_cache_lock()' removal
18429
18430 The initial intension of having mips_cache_lock() was to use the cache
18431 as memory for temporary stack use so that a C environment can be set up
18432 as early as possible.
18433
18434 But now mips_cache_lock() follow lowlevel_init(). We've already have the
18435 real memory initilaized at this point, therefore we could/should use it.
18436 No reason to lock at all.
18437
18438 Other problems:
18439
18440 Cache locking is not consistent across MIPS implementaions. Some imple-
18441 mentations don't support locking at all. The style of locking varies -
18442 some support per line locking, others per way, etc. Some parts use bits
18443 in status registers instead of cache ops. Current mips_cache_lock() is
18444 not necessarily general-purpose.
18445
18446 And this is worthy of special mention; once U-Boot/MIPS locks the lines,
18447 they are never get unlocked, so the code relies on whatever gets loaded
18448 after U-Boot to re-initialize the cache and clear the locks. We're sup-
18449 posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
18450 but leave the situation as it is for a long time.
18451
18452 For these reasons, I proposed the removal of mips_cache_lock() from the
18453 global start-up code.
18454
18455 This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
18456 *things have changed*. If he wants the same behavior as before, he needs
18457 to have CFG_INIT_RAM_LOCK_MIPS in his config file.
18458
18459 If we don't have any regression report through several releases, then
18460 we'll remove codes entirely.
18461
18462 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18463 Acked-by: Andrew Dyer <amdyer@gmail.com>
18464
18465commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
18466Author: Yuri Tikhonov <yur@emcraft.com>
18467Date: Mon Mar 24 11:30:54 2008 +0100
18468
18469 lwmon5 SYSMON POST: fix backlight control
18470
18471 If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
18472 run on the board, then the SYSMON POST controls the display backlight
18473 (doesn't switch backlight ON if POST FAILED, and does switch the
18474 backlight ON if PASSED).
18475
18476 If not, then the video driver controls the display backlight (just
18477 switch ON the backlight upon initialization).
18478
18479 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18480
18481commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
18482Author: Yuri Tikhonov <yur@emcraft.com>
18483Date: Mon Mar 24 11:29:14 2008 +0100
18484
18485 lwmon5 SYSMON POST: fix handling of negative temperatures
18486
18487 Fix errors in the LWMON5 Sysmon POST for negative temperatures.
18488
18489 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18490
18491commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
18492Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18493Date: Fri Mar 7 16:04:25 2008 +0900
18494
18495 pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
18496
18497 In current source code, when the device number of PCI is 0, process PCI
18498 bridge without fail. However, when the device number is 0, it is not PCI
18499 always bridge. There are times when device of PCI allocates.
18500
18501 When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
18502 use this patch.
18503
18504 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18505 Acked-by: Stefan Roese <sr@denx.de>
18506
18507commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
18508Author: Yuri Tikhonov <yur@emcraft.com>
18509Date: Fri Mar 21 09:18:40 2008 +0100
18510
18511 LWMON5: fix dsPIC POST
18512
18513 Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
18514
18515 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
18516
Wolfgang Denk438a4c12008-03-26 11:48:46 +010018517commit 388b82fddc7c05596f3f615f190da0448227dc82
18518Author: Bartlomiej Sieka <tur@semihalf.com>
18519Date: Thu Mar 20 23:23:13 2008 +0100
18520
18521 [new uImage] Enable new uImage support for the pcs440ep board.
18522
18523 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18524
18525commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
18526Author: Bartlomiej Sieka <tur@semihalf.com>
18527Date: Thu Mar 20 23:23:13 2008 +0100
18528
18529 [new uImage] Do not compile new uImage format support by default
18530
18531 Disable default building of new uImage format support in preparation
18532 for merge with the master. Support for new format can be enabled on
18533 a per-board basis, by defining the following in the board's config file:
18534
18535 #define CONFIG_FIT 1
18536 #define CONFIG_OF_LIBFDT 1
18537
18538 This can be optionally defined to give more verbose output:
18539
18540 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
18541
18542 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18543
18544commit dafaede8a46c7159310239e036c93e31c6374487
18545Author: Bartlomiej Sieka <tur@semihalf.com>
18546Date: Thu Mar 20 23:20:31 2008 +0100
18547
18548 [new uImage] Disable debuging output in preparation for merge with master
18549
18550 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18551
18552commit fbe7a155027beacebaee9b32e1ada781fe924bca
18553Author: Bartlomiej Sieka <tur@semihalf.com>
18554Date: Thu Mar 20 19:38:45 2008 +0100
18555
18556 [new uImage] Compilation and new uImage handling fixes for imxtract
18557
18558 Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
18559 include/config_cmd_default.h. Fix few warnings and handling of new format
18560 images.
18561
18562 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18563
18564commit 36cc8cbb3379d5166f882641123521735c469f92
18565Author: Bartlomiej Sieka <tur@semihalf.com>
18566Date: Thu Mar 20 23:10:19 2008 +0100
18567
18568 [new uImage] Fix autoscr command used with new uImage format
18569
18570 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18571
18572commit 43142e817f0597be412e7cbe19413f5532eafa5d
18573Author: Bartlomiej Sieka <tur@semihalf.com>
18574Date: Thu Mar 20 23:10:19 2008 +0100
18575
18576 [new uImage] Fix *.its files location in documentation
18577
18578 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18579
Wolfgang Denkaa6f6d12008-03-26 00:52:10 +010018580commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
18581Author: Wolfgang Denk <wd@denx.de>
18582Date: Thu Mar 20 22:01:38 2008 +0100
18583
18584 lwmon5 POST: remove unreachable code
18585
18586 plus some coding style cleanup
18587
18588 Signed-off-by: Wolfgang Denk <wd@denx.de>
18589
18590commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
18591Author: Yuri Tikhonov <yur@emcraft.com>
18592Date: Thu Mar 20 17:56:04 2008 +0300
18593
18594 LWMON5: POST RTC fix
18595
18596 Modify the RTC API to provide one a status for the time reported by
18597 the rtc_get() function:
18598 0 - a reliable time is guaranteed,
18599 < 0 - a reliable time isn't guaranteed (power fault, clock issues,
18600 and so on).
18601
18602 The RTC chip drivers are responsible for providing this info if the
18603 corresponding chip supports such functionality. If not - always
18604 report that the time is reliable.
18605
18606 The POST RTC test was modified to detect the RTC faults utilizing
18607 this new rtc_get() feature.
18608
18609 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18610
18611commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
18612Author: Martin Krause <martin.krause@tqs.de>
18613Date: Wed Mar 19 14:25:14 2008 +0100
18614
18615 TQM5200B: update MTD partition layout
18616
18617 - insert partition for dtb blob to TQM5200B MTD layout
18618 - set env variables dependent on the configured board
18619 (TQM5200 or TQM5200B)
18620
18621 Signed-off-by: Martin Krause <martin.krause@tqs.de>
18622
18623commit f0105727d132f56a21fa3ed8b162309cca6cac44
18624Author: Stefan Roese <sr@denx.de>
18625Date: Wed Mar 19 07:09:26 2008 +0100
18626
18627 CFI: Small cleanup for FLASH_SHOW_PROGRESS
18628
18629 With this patch we don't need that many #ifdef's in the code. It moves
18630 the subtraction into the macro and defines a NOP-macro when
18631 CONFIG_FLASH_SHOW_PROGRESS is not defined.
18632
18633 Signed-off-by: Stefan Roese <sr@denx.de>
18634 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
18635
18636commit 9a042e9ca512beaaa2cb450274313fc477141241
18637Author: Jerry Van Baren <gvb.uboot@gmail.com>
18638Date: Sat Mar 8 13:48:01 2008 -0500
18639
18640 Flash programming progress countdown.
18641
18642 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
18643
Wolfgang Denk438a4c12008-03-26 11:48:46 +010018644commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
18645Author: Bartlomiej Sieka <tur@semihalf.com>
18646Date: Wed Mar 19 10:00:06 2008 +0100
18647
18648 [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
18649
18650 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
18651
Wolfgang Denkaa6f6d12008-03-26 00:52:10 +010018652commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
18653Author: David Gibson <david@gibson.dropbear.id.au>
18654Date: Mon Feb 18 18:09:04 2008 +1100
18655
18656 libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
18657
18658 Since fdt_node_offset_by_compatible() was converted to the new
18659 fdt_next_node() iterator, a chunk of initialization code became
18660 redundant, but was not removed by oversight. This patch cleans it up.
18661
18662 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18663
18664commit d0ccb9b140b472039732de102fc14597eedb14df
18665Author: David Gibson <david@gibson.dropbear.id.au>
18666Date: Mon Feb 18 18:06:31 2008 +1100
18667
18668 libfdt: Trivial cleanup for CHECK_HEADER)
18669
18670 Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
18671 However, there are a handful of functions (fdt_move, rw_check_header,
18672 fdt_open_into) from other files which could also use it (currently
18673 they open-code something more-or-less identical). Therefore, this
18674 patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
18675 places.
18676
18677 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18678
18679commit fe30a354cdbb808b5f15366a935b151a4ccee74f
18680Author: Kumar Gala <galak@kernel.crashing.org>
18681Date: Wed Feb 20 14:32:36 2008 -0600
18682
18683 Fix fdt boardsetup command parsing
18684
18685 The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
18686
18687 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18688
18689commit 804887e6001e2f00bea11431bf34d6d472512cda
18690Author: Kumar Gala <galak@kernel.crashing.org>
18691Date: Fri Feb 15 03:34:36 2008 -0600
18692
18693 Add sub-commands to fdt
18694
18695 fdt header - Display header info
18696 fdt bootcpu <id> - Set boot cpuid
18697 fdt memory <addr> <size> - Add/Update memory node
18698 fdt rsvmem print - Show current mem reserves
18699 fdt rsvmem add <addr> <size> - Add a mem reserve
18700 fdt rsvmem delete <index> - Delete a mem reserves
18701
18702 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18703
18704commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
18705Author: David Gibson <david@gibson.dropbear.id.au>
18706Date: Thu Feb 14 16:50:34 2008 +1100
18707
18708 libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
18709
18710 fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
18711 node which has NOP tags interspersed with its properties. In this
18712 case fdt_add_subnode_namelen() will put the new subnode before the
18713 first NOP tag, even if there are properties after it, which will
18714 result in an invalid blob.
18715
18716 This patch fixes the bug, and adds a testcase for it.
18717
18718 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18719
18720commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
18721Author: David Gibson <david@gibson.dropbear.id.au>
18722Date: Tue Feb 12 11:58:31 2008 +1100
18723
18724 libfdt: Add and use a node iteration helper function.
18725
18726 This patch adds an fdt_next_node() function which can be used to
18727 iterate through nodes of the tree while keeping track of depth. This
18728 function is used to simplify the iteration code in a lot of other
18729 functions, and is also exported for use by library users.
18730
18731 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18732
18733commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
18734Author: David Gibson <david@gibson.dropbear.id.au>
18735Date: Fri Jan 11 14:55:05 2008 +1100
18736
18737 libfdt: Add fdt_set_name() function
18738
18739 This patch adds an fdt_set_name() function to libfdt, mirroring
18740 fdt_get_name(). This is a r/w function which alters the name of a
18741 given device tree node.
18742
18743 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
18744
18745commit 23e20aa6488e6c0622496549861bfdc74108debe
18746Author: Yuri Tikhonov <yur@pollux.denx.de>
18747Date: Tue Mar 18 13:33:30 2008 +0100
18748
18749 lwmon5: Fix register test logic to match the specific GDC h/w.
18750
18751 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18752 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18753
18754commit 46bc0a938779aa1d664b847d36b08aa00f22e539
18755Author: Yuri Tikhonov <yur@pollux.denx.de>
18756Date: Tue Mar 18 13:27:57 2008 +0100
18757
18758 Fix backlight in the lwmon5 POST.
18759
18760 Backlight was switched on even when temperature was too low.
18761
18762 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18763 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18764
18765commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
18766Author: Yuri Tikhonov <yur@pollux.denx.de>
18767Date: Wed Feb 6 18:48:36 2008 +0100
18768
18769 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).
18770
18771 To enable this, alternative, configuration the U-Boot board configuration
18772 file for lwmon5 includes the definitions of alternative addresses for header
18773 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
18774
18775 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
18776 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
18777 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
18778
18779 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18780
18781commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
18782Author: Yuri Tikhonov <yur@pollux.denx.de>
18783Date: Mon Feb 4 17:11:53 2008 +0100
18784
18785 Add support for the lwmon5 board reset via GPIO58.
18786
18787 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18788 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18789
18790commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
18791Author: Yuri Tikhonov <yur@pollux.denx.de>
18792Date: Mon Feb 4 17:09:55 2008 +0100
18793
18794 Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
18795
18796 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18797 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18798
18799commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
18800Author: Yuri Tikhonov <yur@pollux.denx.de>
18801Date: Mon Feb 4 14:11:03 2008 +0100
18802
18803 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.
18804
18805 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18806 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18807
18808commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
18809Author: Yuri Tikhonov <yur@pollux.denx.de>
18810Date: Mon Feb 4 14:10:42 2008 +0100
18811
18812 The patch adds new POST tests for the Lwmon5 board. These are:
18813
18814 * External Watchdog test;
18815 * dsPIC tests;
18816 * FPGA test;
18817 * GDC test;
18818 * Sysmon tests.
18819
18820 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18821 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18822
18823commit c2ed33efbfff5767bca236828e021c55fd547b6c
18824Author: Yuri Tikhonov <yur@pollux.denx.de>
18825Date: Mon Feb 4 14:10:01 2008 +0100
18826
18827 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
18828
18829 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18830
Wolfgang Denk7ed40112008-04-26 00:34:42 +020018831commit 3a5d1e7f1309998791702b2a559e3126781746b9
18832Author: Yuri Tikhonov <yur@pollux.denx.de>
18833Date: Tue Mar 18 13:33:30 2008 +0100
18834
18835 lwmon5: Fix register test logic to match the specific GDC h/w.
18836
18837 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18838 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18839
18840commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
18841Author: Yuri Tikhonov <yur@pollux.denx.de>
18842Date: Tue Mar 18 13:27:57 2008 +0100
18843
18844 Fix backlight in the lwmon5 POST.
18845
18846 Backlight was switcehd on even when temperature was too low.
18847
18848 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18849 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18850
18851commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
18852Author: Yuri Tikhonov <yur@pollux.denx.de>
18853Date: Wed Feb 6 18:48:36 2008 +0100
18854
18855 The patch introduces the alternative configuration of the log buffer for
18856 the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
18857 the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
18858 PPC440EPX_GPT0_COMP5).
18859
18860 To enable this, alternative, configuration the U-Boot board configuration
18861 file for lwmon5 includes the definitions of alternative addresses for header
18862 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
18863
18864 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
18865 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
18866 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
18867
18868 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18869
18870commit ff818b21b069f4bc9cb73373cc5a16014be101b7
18871Author: Yuri Tikhonov <yur@pollux.denx.de>
18872Date: Mon Feb 4 17:11:53 2008 +0100
18873
18874 Add support for the lwmon5 board reset via GPIO58.
18875
18876 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18877 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18878
18879commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
18880Author: Yuri Tikhonov <yur@pollux.denx.de>
18881Date: Mon Feb 4 17:09:55 2008 +0100
18882
18883 Some fixes to dspic, fpga, and gdc post tests for lwmon5.
18884 Disable external watch-dog for now.
18885
18886 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18887 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18888
18889commit e262efe35742c1ad4b0966ff501efc26f34a0aec
18890Author: Yuri Tikhonov <yur@pollux.denx.de>
18891Date: Mon Feb 4 14:11:03 2008 +0100
18892
18893 The patch introduces the CRITICAL feature of POST tests. If the test
18894 marked as POST_CRITICAL fails then the alternative, post_critical,
18895 boot-command is used. If this command is not defined then U-Boot
18896 enters into interactive mode.
18897
18898 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18899 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18900
18901commit 65b20dcefc89618193fa51947968dada91e4c778
18902Author: Yuri Tikhonov <yur@pollux.denx.de>
18903Date: Mon Feb 4 14:10:42 2008 +0100
18904
18905 The patch adds new POST tests for the Lwmon5 board.
18906 These are:
18907
18908 * External Watchdog test;
18909 * dsPIC tests;
18910 * FPGA test;
18911 * GDC test;
18912 * Sysmon tests.
18913
18914 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18915 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
18916
18917commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
18918Author: Yuri Tikhonov <yur@pollux.denx.de>
18919Date: Mon Feb 4 14:10:01 2008 +0100
18920
18921 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
18922
18923 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
18924
Wolfgang Denkaa6f6d12008-03-26 00:52:10 +010018925commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
18926Author: Wolfgang Denk <wd@denx.de>
18927Date: Tue Mar 18 17:35:51 2008 +0100
18928
18929 HMI1001: fix compile problem.
18930
18931 Signed-off-by: Wolfgang Denk <wd@denx.de>
18932
18933commit 1f2a9970109cebf7446e0503b10b71f8673045ee
18934Author: Mike Frysinger <vapier@gentoo.org>
18935Date: Mon Feb 18 05:32:30 2008 -0500
18936
18937 Blackfin: BF537-stamp: drop board-specific flash driver for CFI
18938
18939 The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
18940 for the board specific driver at all. Just use the common CFI driver.
18941
18942 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18943
18944commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
18945Author: Mike Frysinger <vapier@gentoo.org>
18946Date: Tue Feb 19 00:36:14 2008 -0500
18947
18948 Blackfin: add proper ELF markings to some assembly functions
18949
18950 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18951
18952commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
18953Author: Mike Frysinger <vapier@gentoo.org>
18954Date: Tue Feb 19 00:35:17 2008 -0500
18955
18956 Blackfin: new cplbinfo command for viewing cplb tables
18957
18958 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18959
18960commit aadb72503cd1602349a5fe53356d5f55ecc1b900
18961Author: Mike Frysinger <vapier@gentoo.org>
18962Date: Mon Feb 18 05:37:51 2008 -0500
18963
18964 Blackfin: update MAINTAINERS list
18965
18966 Add maintainer information for the Blackfin boards.
18967
18968 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18969
18970commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
18971Author: Mike Frysinger <vapier@gentoo.org>
18972Date: Mon Feb 18 05:26:48 2008 -0500
18973
18974 Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
18975
18976 Stop tying things to the processor that should be tied to other defines and
18977 change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
18978 system to select the -mcpu option.
18979
18980 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18981
18982commit 86a20fb920bd198105acf7b1191117f566d637ed
18983Author: Mike Frysinger <vapier@gentoo.org>
18984Date: Sat Feb 16 07:40:36 2008 -0500
18985
18986 Blackfin: move bootldr command to common code
18987
18988 This moves the Blackfin-common bootldr command out of the BF537-STAMP
18989 specific board directory and into the common directory so that all Blackfin
18990 boards may utilize it.
18991
18992 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18993
18994commit decbe029b2a9d3333d02c433389b1c821eea96d7
18995Author: Heiko Schocher <hs@denx.de>
18996Date: Fri Mar 14 11:05:20 2008 +0100
18997
18998 mgcoge: update configuration
18999
19000 Fix configuration for mgcoge board
19001
19002 Signed-off-by: Heiko Schocher <hs@denx.de>
19003
19004commit c136724cda0219c49f1d4b346f00da29b14fdf14
19005Author: Wolfgang Denk <wd@denx.de>
19006Date: Sun Mar 16 01:22:59 2008 +0100
19007
19008 drivers/rtc/Makefile: keep list sorted
19009
19010 Signed-off-by: Wolfgang Denk <wd@denx.de>
19011
19012commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
19013Author: Tor Krill <tor@excito.com>
19014Date: Sat Mar 15 15:40:26 2008 +0100
19015
19016 Add support for Intersil isl1208 RTC
19017
19018 Signed-off-by: Tor Krill <tor@excito.com>
19019
19020commit 0210cff3d079d97b2156b13685ee8de368e68a1a
19021Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19022Date: Sat Mar 15 17:36:41 2008 +0100
19023
19024 cramfs: Fix ifdef
19025
19026 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19027
19028commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
19029Author: Wolfgang Denk <wd@denx.de>
19030Date: Sun Mar 16 01:12:58 2008 +0100
19031
19032 Conding style cleanup
19033
19034 Signed-off-by: Wolfgang Denk <wd@denx.de>
19035
Wolfgang Denk0b8f2a22008-03-16 01:12:58 +010019036commit 41712b4e8c95dff23354bcd620e1f9477160c190
19037Author: Stefan Roese <sr@denx.de>
19038Date: Wed Mar 5 12:31:53 2008 +0100
19039
19040 ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
19041
19042 This patch adds USB OHCI support to the Canyonlands board port. It also
19043 enables EXT2 support.
19044
19045 Signed-off-by: Stefan Roese <sr@denx.de>
19046
19047commit 2596f5b9d353ff3e4387a3325d05740f16958038
19048Author: Stefan Roese <sr@denx.de>
19049Date: Wed Mar 5 12:29:32 2008 +0100
19050
19051 usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
19052
19053 This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
19054 way a board just needs to define this new option to enable the "force
19055 NoPowerSwitching mode" instead of adding new CPU/architecture defines
19056 to the USB source itself.
19057
19058 This new option will be used first with the new AMCC 460EX Canyonlands
19059 board port, which will be posted in a few days.
19060
19061 This patch also fixes a small compilation problem when DEBUG is enabled.
19062
19063 Signed-off-by: Stefan Roese <sr@denx.de>
19064
19065commit 71665ebf88408ff2acb762af47989fd4365b321a
19066Author: Stefan Roese <sr@denx.de>
19067Date: Mon Mar 3 17:27:02 2008 +0100
19068
19069 ppc4xx: Add Canyonlands NAND booting support
19070
19071 460EX doesn't support a fixed bootstrap option to boot from 512 byte page
19072 NAND devices. The only bootstrap option for NAND booting is option F for
19073 2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
19074 EEPROM needs to be programmed accordingly.
19075
19076 This patch adds basic NAND booting support for the AMCC Canyonlands aval
19077 board and also adds support to the "bootstrap" command, to enable NAND
19078 booting I2C setting.
19079
19080 Tested with 512 byte page NAND device (32MByte) on Canyonlands.
19081
19082 Signed-off-by: Stefan Roese <sr@denx.de>
19083
19084commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
19085Author: Stefan Roese <sr@denx.de>
19086Date: Tue Mar 11 16:53:00 2008 +0100
19087
19088 ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
19089
19090 This patch adds support for the AMCC Canyonlands 460EX evaluation
19091 board.
19092
19093 Signed-off-by: Stefan Roese <sr@denx.de>
19094
19095commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
19096Author: Stefan Roese <sr@denx.de>
19097Date: Tue Mar 11 16:52:24 2008 +0100
19098
19099 ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
19100
19101 This patch adds support for the AMCC Canyonlands 460EX evaluation
19102 board.
19103
19104 Signed-off-by: Stefan Roese <sr@denx.de>
19105
19106commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
19107Author: Stefan Roese <sr@denx.de>
19108Date: Tue Mar 11 16:51:17 2008 +0100
19109
19110 ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
19111
19112 This patch adds support for the AMCC Canyonlands 460EX evaluation
19113 board.
19114
19115 Signed-off-by: Stefan Roese <sr@denx.de>
19116
19117commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
19118Author: Stefan Roese <sr@denx.de>
19119Date: Tue Mar 11 15:11:43 2008 +0100
19120
19121 ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
19122
19123 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19124
19125 Signed-off-by: Stefan Roese <sr@denx.de>
19126
19127commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
19128Author: Stefan Roese <sr@denx.de>
19129Date: Tue Mar 11 15:11:18 2008 +0100
19130
19131 ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
19132
19133 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19134
19135 Signed-off-by: Stefan Roese <sr@denx.de>
19136
19137commit 999ecd5aca381984d8ebbeb207ece82a1c275577
19138Author: Stefan Roese <sr@denx.de>
19139Date: Tue Mar 11 15:07:10 2008 +0100
19140
19141 ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
19142
19143 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19144
19145 Signed-off-by: Stefan Roese <sr@denx.de>
19146
19147commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
19148Author: Stefan Roese <sr@denx.de>
19149Date: Tue Mar 11 15:05:50 2008 +0100
19150
19151 ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
19152
19153 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19154
19155 Signed-off-by: Stefan Roese <sr@denx.de>
19156
19157commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
19158Author: Stefan Roese <sr@denx.de>
19159Date: Tue Mar 11 15:05:26 2008 +0100
19160
19161 ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
19162
19163 This patch adds basic support for the AMCC 460EX/460GT PPC's.
19164
19165 Signed-off-by: Stefan Roese <sr@denx.de>
19166
19167commit 56e410178375d9f20be25fb24e180974f0ae120b
19168Author: Stefan Roese <sr@denx.de>
19169Date: Tue Feb 19 22:07:57 2008 +0100
19170
19171 ppc4xx: interrupt.c reworked
19172
19173 This patch is a rework of the 4xx interrupt handling done while
19174 adding the 460EX/GT support. Interrupts are needed on 4xx for the
19175 EMAC driver.
19176
19177 Signed-off-by: Stefan Roese <sr@denx.de>
19178
19179commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
19180Author: Stefan Roese <sr@denx.de>
19181Date: Tue Feb 19 22:01:57 2008 +0100
19182
19183 ppc4xx: program_tlb now uses 64bit physical addess
19184
19185 This patch changes the physical addess parameter from 32bit to 64bit.
19186 This is needed for 36bit 4xx platforms to access areas located
19187 beyond the 4GB border, like SoC peripherals (EBC etc.).
19188
19189 Signed-off-by: Stefan Roese <sr@denx.de>
19190
19191commit c3307fa186af85771924c434997089b8104c0a46
19192Author: Stefan Roese <sr@denx.de>
19193Date: Tue Feb 19 21:58:25 2008 +0100
19194
19195 ppc4xx: miiphy.c reworked
19196
19197 While adding the 460EX/GT support I reworked the 4xx miiphy code. It
19198 badly neede some cleanup.
19199
19200 Signed-off-by: Stefan Roese <sr@denx.de>
19201
19202commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
19203Author: Stefan Roese <sr@denx.de>
19204Date: Tue Feb 19 16:21:49 2008 +0100
19205
19206 rtc: Add M41T62 support
19207
19208 This patch add support for the STM M41T62 RTC. It is used and tested
19209 on the AMCC Canyonlands 406EX platform.
19210
19211 Signed-off-by: Stefan Roese <sr@denx.de>
19212
19213commit 217d383e201adc7f2271145ae345ea5eae2b7170
19214Author: Niklaus Giger <niklaus.giger@netstal.com>
19215Date: Mon Feb 25 18:46:43 2008 +0100
19216
19217 ppc4xx: Add 405GPr based MCU25 board specific files
19218
19219 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19220
19221commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
19222Author: Niklaus Giger <niklaus.giger@netstal.com>
19223Date: Mon Feb 25 18:46:42 2008 +0100
19224
19225 ppc4xx: Add 405GPr based MCU25 board config file
19226
19227 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19228
19229commit b05f35436b733a240559e77e46bed8439665ecc5
19230Author: Niklaus Giger <niklaus.giger@netstal.com>
19231Date: Mon Feb 25 18:46:41 2008 +0100
19232
19233 ppc4xx: Add 405GPr based MCU25 board. Global files
19234
19235 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19236
19237commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
19238Author: Niklaus Giger <niklaus.giger@netstal.com>
19239Date: Mon Feb 25 18:37:02 2008 +0100
19240
19241 ppc4xx: HCU4/5. remove obsolete hcu_flash.c
19242
19243 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19244
19245commit a079494853cc2bfeddb26673219db0b4b2b31566
19246Author: Niklaus Giger <niklaus.giger@netstal.com>
19247Date: Mon Feb 25 18:37:01 2008 +0100
19248
19249 ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
19250
19251 Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
19252 the FLASH_CFI_LEGACY et al. config options.
19253
19254 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
19255
19256commit e4170e5a50c8110f792bc37472833ae669d69951
19257Author: Stefan Roese <sr@denx.de>
19258Date: Tue Mar 11 13:52:25 2008 +0100
19259
19260 ppc4xx: Fix comment in 405EX DDR2 init code
19261
19262 Signed-off-by: Stefan Roese <sr@denx.de>
19263
Wolfgang Denk438a4c12008-03-26 11:48:46 +010019264commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
19265Author: Bartlomiej Sieka <tur@semihalf.com>
19266Date: Fri Mar 14 16:22:34 2008 +0100
19267
19268 Add MD5 support to the new uImage format
19269
19270 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19271
19272commit 0ede0c383530a418cf98be9122371a86573cd0db
19273Author: Bartlomiej Sieka <tur@semihalf.com>
19274Date: Fri Mar 14 16:22:34 2008 +0100
19275
19276 Add the MD5 algorithm
19277
19278 MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
19279 calculated using the md5() function -- see include/md5.h for details.
19280
19281 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19282
Wolfgang Denk0b8f2a22008-03-16 01:12:58 +010019283commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
19284Author: Wolfgang Denk <wd@denx.de>
19285Date: Fri Mar 14 16:04:54 2008 +0100
19286
19287 tools/setlocalversion: use a git-describe-ish format
19288
19289 Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
19290 where 'nnnnn' is the number of commits since the last tag (i.e.,
19291 1.3.2-rc3). This makes it much easier to recognize "newer" versions
19292 and to see how much has been changed since the referenced tag.
19293
19294 Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
19295
19296 Signed-off-by: Wolfgang Denk <wd@denx.de>
19297
19298commit c6dc21c84de0f159a1752c5ebd33cff843f63609
19299Author: Wolfgang Denk <wd@denx.de>
19300Date: Thu Mar 13 14:32:03 2008 +0100
19301
19302 HMI1001: add support for MPC5200 Rev. B processors.
19303
19304 Signed-off-by: Wolfgang Denk <wd@denx.de>
19305
19306commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
19307Author: Wolfgang Denk <wd@denx.de>
19308Date: Thu Mar 13 14:29:49 2008 +0100
19309
19310 TQM5200: remove dead code
19311
19312 This board never used a MGT5100 processor.
19313
19314 Signed-off-by: Wolfgang Denk <wd@denx.de>
19315
Wolfgang Denk438a4c12008-03-26 11:48:46 +010019316commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
19317Author: Marian Balakowicz <m8@semihalf.com>
19318Date: Wed Mar 12 12:14:15 2008 +0100
19319
19320 [new uImage] Fix build issue on ARM
19321
19322 ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
19323
19324 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19325
19326commit 3310c549a73a949430bfda90876df7552a1dab0c
19327Author: Marian Balakowicz <m8@semihalf.com>
19328Date: Wed Mar 12 12:13:13 2008 +0100
19329
19330 [new uImage] Add new uImage format documentation and examples
19331
19332 Create doc/uImage.FIT documentation directory with the following files:
19333 - command_syntax_extensions.txt : extended command syntax description
19334 - howto.txt : short usage howto
19335 - source_file_format.txt : internal new uImage format description
19336
19337 Add example image source files:
19338 - kernel.its
19339 - kernel_fdt.its
19340 - multi.its
19341
19342 Update README appropriately.
19343
19344 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19345 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19346
19347commit 1ec73761d2e247078f4520a265d463e8b73391a2
19348Author: Marian Balakowicz <m8@semihalf.com>
19349Date: Wed Mar 12 10:35:52 2008 +0100
19350
19351 [new uImage] Fix definition of common bootm_headers_t fields
19352
19353 verify, autostart and lmb fields are used regardless of CONFIG_FIT
19354 setting, move their definitions to common section.
19355
19356 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19357
19358commit 1d1cb4270edc6a99276834064069717f9782c491
19359Author: Marian Balakowicz <m8@semihalf.com>
19360Date: Wed Mar 12 10:35:51 2008 +0100
19361
19362 [new uImage] Fix build problems on trab board
19363
19364 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19365
19366commit f773bea8e11f4a11c388dcee956b2444203e6b65
19367Author: Marian Balakowicz <m8@semihalf.com>
19368Date: Wed Mar 12 10:35:46 2008 +0100
19369
19370 [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
19371
19372 Save FIT configuration provied in the first bootm argument and use it
19373 when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
19374 arguments are not specified.
19375
19376 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19377
19378commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
19379Author: Marian Balakowicz <m8@semihalf.com>
19380Date: Wed Mar 12 10:33:01 2008 +0100
19381
19382 [new uImage] More verbose kernel image uncompress error message
19383
19384 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19385
19386commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
19387Author: Marian Balakowicz <m8@semihalf.com>
19388Date: Wed Mar 12 10:33:01 2008 +0100
19389
19390 [new uImage] Use show_boot_progress() for new uImage format
19391
19392 This patch allocates a set of show_boot_progress() IDs for new uImage format
19393 and adds show_boot_progress() calls in new uImage format handling code.
19394
19395 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19396
19397commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
19398Author: Marian Balakowicz <m8@semihalf.com>
19399Date: Wed Mar 12 10:33:01 2008 +0100
19400
19401 [new uImage] Add new uImage fromat support to fpga command
19402
19403 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19404
19405commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
19406Author: Marian Balakowicz <m8@semihalf.com>
19407Date: Wed Mar 12 10:33:01 2008 +0100
19408
19409 [new uImage] Add new uImage format handling to other bootm related commands
19410
19411 Updated commands:
19412
19413 docboot - cmd_doc.c
19414 fdcboot - cmd_fdc.c
19415 diskboot - cmd_ide.c
19416 nboot - cmd_nand.c
19417 scsiboot - cmd_scsi.c
19418 usbboot - cmd_usb.c
19419
19420 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19421
19422commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
19423Author: Marian Balakowicz <m8@semihalf.com>
19424Date: Wed Mar 12 10:33:00 2008 +0100
19425
19426 [new uImage] Add new uImage format support to imgextract command
19427
19428 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19429
19430commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
19431Author: Marian Balakowicz <m8@semihalf.com>
19432Date: Wed Mar 12 10:33:00 2008 +0100
19433
19434 [new uImage] Add new uImage format support to autoscript routine
19435
19436 autoscript() routine is updated to accept second argument, which
19437 is only used for FIT images and provides a FIT subimage unit name.
19438
19439 autoscript() routine callers must now pass two arguments. For
19440 non-interactive use (like in cmd_load.c, cmd_net.c), new environment
19441 variable 'autoscript_uname' is introduced and used as a FIT
19442 subimage unit name source.
19443
19444 autoscript command accepts extended syntax of the addr argument:
19445 addr:<subimg_uname>
19446
19447 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19448
19449commit cd7c596e9f561dbbc17b717277438aee78cde14f
19450Author: Marian Balakowicz <m8@semihalf.com>
19451Date: Wed Mar 12 10:33:00 2008 +0100
19452
19453 [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
19454
19455 This patch updates architecture specific implementations of
19456 do_bootm_linux() adding new uImage format handling for
19457 operations like get kernel entry point address, get kernel
19458 image data start address.
19459
19460 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19461
19462commit 3dfe110149311425919e6d6a14b561b4207498f1
19463Author: Marian Balakowicz <m8@semihalf.com>
19464Date: Wed Mar 12 10:32:59 2008 +0100
19465
19466 [new uImage] Add node offsets for FIT images listed in struct bootm_headers
19467
19468 This patch adds new node offset fields to struct bootm_headers
19469 and updates bootm_headers processing code to make use of them.
19470 Saved node offsets allow to avoid repeating fit_image_get_node() calls.
19471
19472 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19473
19474commit bc8ed486b125452ba3bd8344f052f437329150c5
19475Author: Marian Balakowicz <m8@semihalf.com>
19476Date: Wed Mar 12 10:32:53 2008 +0100
19477
19478 [new uImage] ppc: Add new uImage format support to FDT handling routines
19479
19480 Support for new (FIT) format uImages is added to powerpc specific
19481 boot_get_fdt() routine which now recognizes, sanity checks FIT image
19482 and is able to access data sections of the requested component image.
19483
19484 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19485
19486commit a44a269a905f924b420020506a4d7d7eedcc0eaf
19487Author: Marian Balakowicz <m8@semihalf.com>
19488Date: Wed Mar 12 10:14:57 2008 +0100
19489
19490 [new uImage] Re-enable interrupts for non automatic booting
19491
19492 Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
19493 environment variable is not set to 'yes'.
19494
19495 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19496
19497commit d985c8498c4e47095820da97aa722381d39172c5
19498Author: Marian Balakowicz <m8@semihalf.com>
19499Date: Wed Mar 12 10:14:38 2008 +0100
19500
19501 [new uImage] Remove unnecessary arguments passed to ramdisk routines
19502
19503 boot_get_ramdisk() and image_get_ramdisk() do not need all
19504 cmdtp, flag, argc and argv arguments. Simplify routines definition.
19505
19506 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19507
19508commit c87796483bc7c2900470dc747c367f602577608d
19509Author: Marian Balakowicz <m8@semihalf.com>
19510Date: Wed Mar 12 10:12:37 2008 +0100
19511
19512 [new uImage] Add new uImage format support for ramdisk handling
19513
19514 This patch updates boot_get_ramdisk() routine adding format
19515 verification and handling for new (FIT) uImages.
19516
19517 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19518
19519commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
19520Author: Marian Balakowicz <m8@semihalf.com>
19521Date: Wed Mar 12 10:01:05 2008 +0100
19522
19523 [new uImage] Add new uImage format support for kernel booting
19524
19525 New format uImages are recognized by the bootm command,
19526 validity of specified kernel component image is checked and
19527 its data section located and used for further processing
19528 (uncompress, load, etc.)
19529
19530 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19531
19532commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
19533Author: Marian Balakowicz <m8@semihalf.com>
19534Date: Tue Mar 11 12:35:20 2008 +0100
19535
19536 [new uImage] Add new uImage format support for imls and iminfo commands
19537
19538 imls and iminfo can now recognize nad print out contents of the new (FIT)
19539 format uImages.
19540
19541 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19542
19543commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
19544Author: Bartlomiej Sieka <tur@semihalf.com>
19545Date: Tue Mar 11 12:34:47 2008 +0100
19546
19547 [new uImage] Add support for new uImage format to mkimage tool
19548
19549 Support for the new uImage format (FIT) is added to mkimage tool.
19550 Commandline syntax is appropriately extended:
19551
19552 mkimage [-D dtc_options] -f fit-image.its fit-image
19553
19554 mkimage (together with dtc) takes fit-image.its and referenced therein
19555 binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
19556 final image that can be transferred to the target (e.g., via tftp) and then
19557 booted using the bootm command in U-Boot.
19558
19559 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19560
19561commit eb6175edd6c120d8b89678243e5a2be362ee8e40
19562Author: Marian Balakowicz <m8@semihalf.com>
19563Date: Mon Mar 10 17:53:49 2008 +0100
19564
19565 [new uImage] Make node unit names const in struct bootm_headers
19566
19567 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19568
19569commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
19570Author: Marian Balakowicz <m8@semihalf.com>
19571Date: Fri Feb 29 21:24:06 2008 +0100
19572
19573 [new uImage] New uImage low-level API
19574
19575 Add FDT-based functions for handling new format component images,
19576 configurations, node operations, property get/set, etc.
19577
19578 fit_ - routines handling global new format uImage operations
19579 like get/set top level property, process all nodes, etc.
19580 fit_image_ - routines handling component images subnodes
19581 fit_conf_ - routines handling configurations node
19582
19583 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19584 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
19585
Wolfgang Denk0b8f2a22008-03-16 01:12:58 +010019586commit 30f1806f60978d707b0cff2d7bf89d141fc24290
19587Author: Wolfgang Denk <wd@denx.de>
19588Date: Sun Mar 9 16:20:02 2008 +0100
19589
19590 Release v1.3.2
19591
19592 Update CHANGELOG for release.
19593
19594 Signed-off-by: Wolfgang Denk <wd@denx.de>
19595
Wolfgang Denk30f18062008-03-09 16:20:02 +010019596commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
19597Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19598Date: Sun Mar 9 14:52:11 2008 +0100
19599
19600 SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
19601
19602 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19603 Signed-off-by: Wolfgang Denk <wd@denx.de>
19604
19605commit db695b78515ddb88a2d4f3357c120345efbf59ec
19606Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19607Date: Sun Mar 9 10:44:01 2008 +0100
19608
19609 scb9328: Fix flash warning: type qualifiers ignored on function return type
19610
19611 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19612
19613commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
19614Author: Wolfgang Denk <wd@denx.de>
19615Date: Sun Mar 9 10:50:41 2008 +0100
19616
19617 esd/common/fpga.c: fix indentation.
19618
19619 Signed-off-by: Wolfgang Denk <wd@denx.de>
19620
19621commit cc3843e36453e2b8db65d7e56de938ba045016a0
19622Author: Wolfgang Denk <wd@denx.de>
19623Date: Sun Mar 9 10:33:31 2008 +0100
19624
19625 common/kgdb.c: fix 'dereferencing type-punned pointer' warning
19626
19627 and get rid of a couple of unneeded casts.
19628
19629 Signed-off-by: Wolfgang Denk <wd@denx.de>
19630
19631commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
19632Author: Wolfgang Denk <wd@denx.de>
19633Date: Sun Mar 9 10:09:53 2008 +0100
19634
19635 esd/common/fpga.c: fix 'assignment of read-only location' error
19636
19637 Signed-off-by: Wolfgang Denk <wd@denx.de>
19638
19639commit c6fe4dabac066e8758345d249032768496983a3e
19640Author: Wolfgang Denk <wd@denx.de>
19641Date: Sun Mar 9 02:13:19 2008 +0100
19642
19643 Makefile: make build silently again.
19644
19645 Signed-off-by: Wolfgang Denk <wd@denx.de>
19646
19647commit 76babc86576f092573599334c85ec543fdbc6015
19648Author: Wolfgang Denk <wd@denx.de>
19649Date: Sun Mar 9 02:07:49 2008 +0100
19650
19651 m501sk: Fix out of tree building
19652
19653 Signed-off-by: Wolfgang Denk <wd@denx.de>
19654
19655commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
19656Author: Wolfgang Denk <wd@denx.de>
19657Date: Sun Mar 9 00:06:09 2008 +0100
19658
19659 ADS5121: fix out of tree build
19660
19661 and simplify Makefile a bit.
19662
19663 Signed-off-by: Wolfgang Denk <wd@denx.de>
19664
19665commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
19666Author: Wolfgang Denk <wd@denx.de>
19667Date: Sat Mar 8 22:35:31 2008 +0100
19668
19669 Release v1.3.2
19670
19671 Signed-off-by: Wolfgang Denk <wd@denx.de>
19672
19673commit 78a90f827df74520e939c794fc7413dace21c4db
19674Author: Wolfgang Denk <wd@denx.de>
19675Date: Sat Mar 8 22:35:04 2008 +0100
19676
19677 Update CHANGELOG
19678
19679 Signed-off-by: Wolfgang Denk <wd@denx.de>
19680
Wolfgang Denk78a90f82008-03-08 22:35:04 +010019681commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
19682Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19683Date: Sat Mar 8 21:30:04 2008 +0100
19684
19685 esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
19686
19687 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19688
19689commit d75469d48c05795144f4b8ba76addbb4920a7bba
19690Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19691Date: Sat Mar 8 09:25:49 2008 +0900
19692
19693 net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
19694
19695 When rtl_recv() of rtl8169 is called, OWNbit of status register
19696 is not enable occasionally.
19697 rtl_recv() doesn't work normally when the driver doesn't do
19698 appropriate processing.
19699 This patch fix this problem.
19700
19701 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19702
19703commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
19704Author: Heiko Schocher <hs@denx.de>
19705Date: Fri Mar 7 08:15:28 2008 +0100
19706
19707 mgsuvd: update board configuration
19708
19709 initialize the UPIOx controller.
19710
19711 Signed-off-by: Heiko Schocher <hs@denx.de>
19712
19713commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
19714Author: Heiko Schocher <hs@denx.de>
19715Date: Fri Mar 7 08:13:41 2008 +0100
19716
19717 mgcoge: update board configuration
19718
19719 add support for the config Flash.
19720 initialize the UPIOx controller.
19721
19722 Signed-off-by: Heiko Schocher <hs@denx.de>
19723
19724commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
19725Author: Kim Phillips <kim.phillips@freescale.com>
19726Date: Fri Mar 7 12:27:31 2008 -0600
19727
19728 mpc83xx: make dtb basename file references equal those of linux
19729
19730 the dts file basenames were updated in linux - this helps avoid
19731 inadvertently loading any old dtbs laying around.
19732
19733 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19734
19735commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
19736Author: Kim Phillips <kim.phillips@freescale.com>
19737Date: Wed Feb 27 16:08:22 2008 -0600
19738
19739 net: uec_phy: actually increment the timeout counter
19740
19741 allow u-boot to recover (and, e.g., switch to another interface) in the
19742 case where a PHY does not report autonegotiation is complete within its
19743 two second timeout value.
19744
19745 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19746
19747commit 772003e43957ee0c895abed7cd82cbe72820cbb8
19748Author: Markus Brunner <super.firetwister@googlemail.com>
19749Date: Wed Mar 5 21:38:12 2008 +0100
19750
19751 fix taihu soft spi_read
19752
19753 The taihu board used gpio_read_out_bit which reads the output register and not
19754 the pin state.
19755
19756 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
19757
19758commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
19759Author: Stefan Roese <sr@denx.de>
19760Date: Fri Mar 7 08:01:43 2008 +0100
19761
19762 ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
19763
19764 Signed-off-by: Stefan Roese <sr@denx.de>
19765
19766commit bd4458cb47abecabd406b1210457be96c69fc49d
19767Author: Dave Liu <r63238@freescale.com>
19768Date: Tue Mar 4 16:59:22 2008 +0800
19769
19770 837xEMDS: Improve the system performance
19771
19772 1. Make the CSB bus pipeline depth as 4, and enable
19773 the repeat mode;
19774 2. Raise the eTSEC emergency priority;
19775 3. Use the highest IP blocks clock.
19776
19777 Signed-off-by: Dave Liu <daveliu@freescale.com>
19778
19779commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
19780Author: Detlev Zundel <dzu@denx.de>
19781Date: Thu Mar 6 16:45:53 2008 +0100
19782
19783 Replace "run load; run update" with conditionalized "run load update".
19784
19785 The latter version stops when "run load" fails for whatever reasons
19786 rendering the combination *a lot* more secure.
19787
19788 Signed-off-by: Detlev Zundel <dzu@denx.de>
19789
19790commit 6bc113886d7d316df1a4e459bec8baf027518551
19791Author: Stefan Roese <sr@denx.de>
19792Date: Tue Mar 4 17:40:41 2008 +0100
19793
19794 net: Print error message upon net usage when no ethernet-interface is found
19795
19796 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
19797 defined. Then no ethernet interface is available but a simple "tftp"
19798 command will return without any error message which is quite confusing.
19799
19800 Signed-off-by: Stefan Roese <sr@denx.de>
19801
19802commit a30a549a3553032d809e0356306b62de0b125901
19803Author: Jon Loeliger <jdl@freescale.com>
19804Date: Tue Mar 4 10:03:03 2008 -0600
19805
19806 Remove erroneous or extra spd.h #includers.
19807
19808 Many of the spd.h #includers don't need it,
19809 and wanted to have spd_sdram() declared instead.
19810 Since they didn't get that, some also had open
19811 coded extern declarations of it instead or as well.
19812 Fix it all up by using spd_sdram.h where needed.
19813
19814 Signed-off-by: Jon Loeliger <jdl@freescale.com>
19815
19816commit a4475386cef14af3fd88f0518b688e755669486d
19817Author: Wolfgang Denk <wd@denx.de>
19818Date: Tue Mar 4 17:41:28 2008 +0100
19819
19820 PCS440EP: fix build problems (redundant #define)
19821
19822 Signed-off-by: Wolfgang Denk <wd@denx.de>
19823
19824commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
19825Author: Stefan Roese <sr@denx.de>
19826Date: Tue Mar 4 17:39:25 2008 +0100
19827
19828 net: Print error message upon net usage when no ethernet-interface is found
19829
19830 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
19831 defined. Then no ethernet interface is available but a simple "tftp"
19832 command will return without any error message which is quite confusing.
19833
19834 Signed-off-by: Stefan Roese <sr@denx.de>
19835
19836commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
19837Author: Wolfgang Denk <wd@denx.de>
19838Date: Tue Mar 4 17:38:50 2008 +0100
19839
19840 W7OLMC/W7OLMG: fix build problems (redundant #define)
19841
19842 Signed-off-by: Wolfgang Denk <wd@denx.de>
19843
19844commit f9301e1cda296245ba052d7b08321199c3d0af9d
19845Author: Wolfgang Denk <wd@denx.de>
19846Date: Tue Mar 4 14:58:31 2008 +0100
19847
19848 Makefile: fix problem with out-of-tree builds introduced by 5013c09f
19849
19850 Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
19851 problem for out-of-tree builds which caused "make clean" to fail.
19852
19853 Signed-off-by: Wolfgang Denk <wd@denx.de>
19854
19855commit dfece9500556bed5d8244b1c15d973cec7c25bfe
19856Author: Wolfgang Denk <wd@denx.de>
19857Date: Tue Mar 4 11:58:26 2008 +0100
19858
19859 examples/Makefile: build "hello_world" on 8xx, too.
19860
19861 Signed-off-by: Wolfgang Denk <wd@denx.de>
19862
19863commit 74eb0222594fd23aafdf168e60e872814eea8b62
19864Author: Mike Nuss <mike@terascala.com>
19865Date: Mon Mar 3 15:27:05 2008 -0500
19866
19867 PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
19868
19869 Every now and then a Sequoia board (or equivalent hardware) had
19870 problems connecting to a Gigabit capable network interface.
19871
19872 There were differences in the PHY setup between Linux and U-Boot.
19873
19874 This patch fixes the problem. Apparently "remote fault" is being set,
19875 which signals to some devices (on the other end of the cable) that a
19876 fault has occurred, while other devices ignore it. I believe the RF bit
19877 was causing the issue, but I removed T4 also, to match up with Linux.
19878
19879 Signed-off-by: Mike Nuss <mike@terascala.com>
19880
19881commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
19882Author: Timur Tabi <timur@freescale.com>
19883Date: Mon Mar 3 09:58:52 2008 -0600
19884
19885 fix QE firmware uploading limit
19886
19887 Fix a typo in qe_upload_firmware() that prevented uploading firmware on
19888 systems with more than one RISC core.
19889
19890 Signed-off-by: Timur Tabi <timur@freescale.com>
19891
19892commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
19893Author: Bernhard Nemec <bnemec@ganssloser.com>
19894Date: Mon Mar 3 11:57:23 2008 +0000
19895
19896 Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
19897
19898 Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
19899 see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
19900
Wolfgang Denk01db2322008-06-28 23:16:01 +020019901 Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
Wolfgang Denk78a90f82008-03-08 22:35:04 +010019902
19903commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
19904Author: Kim B. Heino <Kim.Heino@bluegiga.com>
19905Date: Mon Mar 3 10:39:13 2008 +0200
19906
19907 fix copy from ram to dataflash
19908
19909 If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
19910 routines instead of dataflash. This is because it checks "if source
19911 address is not dataflash" instead of target address.
19912
19913 Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
19914
19915commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
19916Author: Wolfgang Denk <wd@denx.de>
19917Date: Mon Mar 3 12:16:44 2008 +0100
19918
19919 Fix quoting problem (preboot setting) in many board config files.
19920
19921 Signed-off-by: Wolfgang Denk <wd@denx.de>
19922
19923commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
19924Author: Wolfgang Denk <wd@denx.de>
19925Date: Mon Mar 3 12:36:49 2008 +0100
19926
19927 ADS5121: Fix default environment.
19928
19929 Signed-off-by: Wolfgang Denk <wd@denx.de>
19930
19931commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
19932Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19933Date: Sun Mar 2 16:12:31 2008 +0100
19934
19935 Makefile: Fix missing unconfig and mkconfig use
19936
19937 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19938
19939commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
19940Author: michael <trimarchi@gandalf.sssup.it>
19941Date: Sun Mar 2 23:33:46 2008 +0100
19942
19943 Fix checking fat32 cluster size.
19944
19945 This fixes the cluster size tests in the FAT32 file system.
19946 The current implementation of VFAT support doesn't work if the
19947 referred cluster has an offset > 16bit representation, causing
19948 "fatload" and "fatls" commands etc. to fail.
19949
19950 Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
19951
19952commit 661bad63a076a96c39c64f136915f146725af92b
19953Author: Wolfgang Denk <wd@denx.de>
19954Date: Sun Mar 2 22:57:23 2008 +0100
19955
19956 Prepare v1.3.2-rc2 release candidate
19957
19958 Signed-off-by: Wolfgang Denk <wd@denx.de>
19959
Wolfgang Denk661bad62008-03-02 22:57:23 +010019960commit 76957cb3d621bf664311908e5962e151c633c285
19961Author: Stefan Roese <sr@denx.de>
19962Date: Sat Mar 1 12:11:40 2008 +0100
19963
19964 ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
19965
19966 The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
19967 currently 4k/2k is configured. This patch fixes this issue.
19968
19969 Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
19970
19971 Signed-off-by: Stefan Roese <sr@denx.de>
19972
19973commit 118978c8eb43803e2794233922df4249fa278b83
19974Author: Woodruff, Richard <r-woodruff2@ti.com>
19975Date: Fri Feb 29 17:34:35 2008 -0600
19976
19977 Fix alignment error on ARM for modules
19978
19979 Fix alignment fault on ARM when running modules. With out an explicit
19980 linker file gcc4.2.1 will half word align __bss_start's value. The word
19981 dereference will crash hello_world.
19982
19983 signed-off-by Richard Woodruff <r-woodruff2@ti.com>
19984
19985commit ce1120dd703e6f12c59e4eba9962356a0300b832
19986Author: Dave Liu <r63238@freescale.com>
19987Date: Fri Feb 29 17:45:31 2008 +0800
19988
19989 fs: Fix ext2 read issue
19990
19991 The ext2 aligned process will corrupt the key
19992 data struct, the patch fix this.
19993
19994 Signed-off-by: Dave Liu <daveliu@freescale.com>
19995
19996commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
19997Author: Wolfgang Denk <wd@denx.de>
19998Date: Sun Mar 2 22:45:33 2008 +0100
19999
20000 Makefile: cleanup "clean" target
20001
20002 Make sure CDPATH settings cannot interfere.
20003 Update CHANGELOG.
20004
20005 Signed-off-by: Wolfgang Denk <wd@denx.de>
20006
Wolfgang Denk5013c092008-03-02 22:45:33 +010020007commit ffda586fc1373243c9794babde69500f6293a8d8
20008Author: Li Yang <leoli@freescale.com>
20009Date: Fri Feb 29 11:46:05 2008 +0800
20010
20011 add cscope build target
20012
20013 Add cscope build target to generate cscope database for code browsing.
20014
20015 Signed-off-by: Li Yang <leoli@freescale.com>
20016
20017commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
20018Author: Kim Phillips <kim.phillips@freescale.com>
20019Date: Wed Feb 27 15:06:39 2008 -0600
20020
20021 net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
20022
20023 erratum 5.6 states the autoneg completion bit is functional only if the
20024 autoneg bit is asserted.
20025
20026 This fixes any secondarily-issued networking commands on non-gigabit
20027 links on the mpc8360 mds board.
20028
20029 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20030
20031commit 5f91db7f582ca17b1f19f10189c025696f333d2e
20032Author: John Rigby <jrigby@freescale.com>
20033Date: Tue Feb 26 09:38:14 2008 -0700
20034
20035 MPC5121e ADS PCI support take 3
20036
20037 Adds PCI support for MPC5121
20038
20039 Tested with drivers/net/rtl8139.c
20040
20041 Support is conditional since PCI on old silicon does not work.
20042
20043 ads5121_PCI_config turns on PCI
20044
20045 In this version, condition compilation of PCI code has been moved
20046 from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
20047 suggested by Jean-Christophe PLAGNIOL-VILLARD
20048
20049 Signed-off-by: John Rigby <jrigby@freescale.com>
20050
20051commit 44b4dbed4133f657705b7c5193209da9978243a7
20052Author: Anatolij Gustschin <agust@denx.de>
20053Date: Mon Feb 25 23:53:07 2008 +0100
20054
20055 Fix warnings while compilation of post/drivers/memory.c
20056
20057 Fix warnings while compilation with new gcc in eldk-4.2
20058
20059 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20060
20061commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
20062Author: Anatolij Gustschin <agust@denx.de>
20063Date: Mon Feb 25 20:54:04 2008 +0100
20064
20065 ppc4xx: Fix problem in 4xx_enet.c driver
20066
20067 U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
20068 enabled. To reproduce the problem ensure that 'ethrotate'
20069 environment variable isn't set to "no" and then run
20070 "tftp 200000 not_existent_file".
20071 This patch tries to fix the issue.
20072
20073 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20074
20075commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
20076Author: Anatolij Gustschin <agust@denx.de>
20077Date: Mon Feb 25 20:04:20 2008 +0100
20078
20079 POST: Disable cache while SPR POST
20080
20081 Currently (since commit b2e2142c) u-boot crashes on
20082 sequoia board while SPR test if CONFIG_4xx_DCACHE is
20083 enabled. This patch disables the cache while SPR test.
20084
20085 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20086
20087commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
20088Author: Martin Krause <martin.krause@tqs.de>
20089Date: Mon Feb 25 17:52:40 2008 +0100
20090
20091 TQM5200: use automatic fdt memory fixup (part 2)
20092
20093 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
20094 TB5200 and TB5200_B to fixup the /memory node with the memory values
20095 detected by U-Boot.
20096
20097 Signed-off-by: Martin Krause <martin.krause@tqs.de>
20098
20099commit 44ceec253ea941b301abf4b079d52324def69d92
20100Author: Martin Krause <martin.krause@tqs.de>
20101Date: Mon Feb 25 15:17:05 2008 +0100
20102
20103 TQM5200: use automatic fdt memory fixup
20104
20105 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
20106 TB5200 and TB5200_B to fixup the /memory node with the memory values
20107 detected by U-Boot.
20108
20109 Signed-off-by: Martin Krause <martin.krause@tqs.de>
20110
20111commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
20112Author: Martin Krause <martin.krause@tqs.de>
20113Date: Mon Feb 25 13:27:52 2008 +0100
20114
20115 TQM5200: fix bug in SDRAM initialization code
20116
20117 This patch fixes a bug in the SDRAM initialization code for the
20118 TQM5200. The hi_addr bit is now set correctly. Without this patch
20119 the hi_addr bit is always set to 1, if the second SDRAM bank is
20120 not populated.
20121
20122 For other MPC5200 boards a correspondig patch has already been applied
20123 some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
20124
20125 Signed-off-by: Martin Krause <martin.krause@tqs.de>
20126 --
20127 Forget the first patch please. I confused flash with SDRAM in
20128 the comment ...
20129
20130commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
20131Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20132Date: Mon Feb 25 00:03:12 2008 +0100
20133
20134 mx1fs2/flash: Fix multiple compiler warnings
20135
20136 "pointer targets in assignment differ in signedness"
20137
20138 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20139
20140commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
20141Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20142Date: Mon Feb 25 00:03:11 2008 +0100
20143
20144 arm-imx: Fix register definitions
20145
20146 Sync register definitions with linux
20147
20148 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20149
20150commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
20151Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20152Date: Mon Feb 25 00:03:10 2008 +0100
20153
20154 actua1/actua2/actua3: Fix multiple unused variable warnings
20155
20156 - actua1:
20157 actux1.c: In function 'checkboard':
20158 actux1.c:92: warning: unused variable 'revision'
20159
20160 - actua2:
20161 actux2.c: In function 'checkboard':
20162 actux2.c:100: warning: unused variable 's'
20163 actux2.c:99: warning: unused variable 'revision'
20164 actux2.c: In function 'reset_phy':
20165 actux2.c:130: warning: unused variable 'i'
20166
20167 - actua3:
20168 actux3.c: In function 'checkboard':
20169 actux3.c:114: warning: unused variable 'revision'
20170
20171 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20172
20173commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
20174Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20175Date: Sun Feb 24 11:44:29 2008 +0900
20176
20177 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
20178
20179 The previous patch was lacking of i386, microblaze, nios and nios2. This
20180 patch tries to fix them.
20181
20182 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20183
Wolfgang Denk438a4c12008-03-26 11:48:46 +010020184commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
20185Author: Marian Balakowicz <m8@semihalf.com>
20186Date: Fri Feb 29 22:22:46 2008 +0100
20187
20188 [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
20189
20190 Do not use global fdt blob pointer, calculate blob size from routine
20191 argument blob pointer.
20192
20193 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20194
20195commit d1cc52879c8966507dad9fb575481e6d3985e64e
20196Author: David Gibson <david@gibson.dropbear.id.au>
20197Date: Tue Feb 12 00:58:31 2008 +1100
20198
20199 libfdt: Add and use a node iteration helper function.
20200
20201 This patch adds an fdt_next_node() function which can be used to
20202 iterate through nodes of the tree while keeping track of depth. This
20203 function is used to simplify the iteration code in a lot of other
20204 functions, and is also exported for use by library users.
20205
20206 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
20207
20208commit 8cf30809a82902a471866d2f07725ce3b8a22291
20209Author: Bartlomiej Sieka <tur@semihalf.com>
20210Date: Fri Feb 29 16:00:24 2008 +0100
20211
20212 [new uImage] Add libfdt support to mkimage
20213
20214 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
20215
20216commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
20217Author: Bartlomiej Sieka <tur@semihalf.com>
20218Date: Fri Feb 29 16:00:23 2008 +0100
20219
20220 [new uImage] Add sha1.o object to mkimage binary build
20221
20222 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
20223
20224commit df6f1b895c997978f03afe04502ee76b7ba34ab9
20225Author: Marian Balakowicz <m8@semihalf.com>
20226Date: Fri Feb 29 16:00:06 2008 +0100
20227
20228 [new uImage] Fix component handling for legacy multi component images
20229
20230 Use uint32_t when accessing size table in image_multi_count() and
20231 image_multi_getimg() for multi component images.
20232
20233 Add missing uimage_to_cpu() endianness conversion.
20234
20235 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20236
20237commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
20238Author: Marian Balakowicz <m8@semihalf.com>
20239Date: Fri Feb 29 15:59:59 2008 +0100
20240
20241 [new uImage] Share common uImage code between mkimage and U-boot
20242
20243 This patch adds the following common routines:
20244
20245 1) Dedicated mkimage print_header() is replaced with common
20246 image_print_contents()
20247 image_print_contents_noindent()
20248
20249 2) Common os/arch/type/comp fields name <--> id translation routines
20250 genimg_get_os_name()
20251 genimg_get_arch_name()
20252 genimg_get_type_name()
20253 genimg_get_comp_name()
20254 genimg_get_os_id()
20255 genimg_get_arch_id()
20256 genimg_get_type_id()
20257 genimg_get_comp_id()
20258
20259 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20260
20261commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
20262Author: Marian Balakowicz <m8@semihalf.com>
20263Date: Fri Feb 29 14:58:34 2008 +0100
20264
20265 [new uImage] Update naming convention for bootm/uImage related code
20266
20267 This patch introduces the following prefix convention for the
20268 image format handling and bootm related code:
20269
20270 genimg_ - dual format shared code
20271 image_ - legacy uImage format specific code
20272 fit_ - new uImage format specific code
20273 boot_ - booting process related code
20274
20275 Related routines are renamed and a few pieces of code are moved around and
20276 re-grouped.
20277
20278 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20279
20280commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
20281Author: Kumar Gala <galak@kernel.crashing.org>
20282Date: Wed Feb 27 21:51:51 2008 -0600
20283
20284 [new uImage] Respect autostart setting in linux bootm
20285
20286 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20287 Acked-by: Marian Balakowicz <m8@semihalf.com>
20288
20289commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
20290Author: Kumar Gala <galak@kernel.crashing.org>
20291Date: Wed Feb 27 21:51:50 2008 -0600
20292
20293 [new uImage] Provide ability to restrict region used for boot images
20294
20295 Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
20296 to restrict what memory range is used for bootm.
20297
20298 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20299 Acked-by: Marian Balakowicz <m8@semihalf.com>
20300
20301commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
20302Author: Kumar Gala <galak@kernel.crashing.org>
20303Date: Wed Feb 27 21:51:49 2008 -0600
20304
20305 [new uImage] Use lmb for bootm allocations
20306
20307 Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
20308 functions over to using lmb for allocation of the ramdisk, command line
20309 and kernel bd info.
20310
20311 Convert PPC specific fdt_relocate() to use lmb for allocation of the device
20312 tree.
20313
20314 Provided a weak function that board code can call to do additional
20315 lmb reserves if needed.
20316
20317 Also introduce the concept of bootmap_base to specify the offset in
20318 physical memory that the bootmap is located at. This is used for
20319 allocations of the cmdline, kernel bd, and device tree as they should
20320 be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
20321
20322 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20323
20324commit f5614e7926863bf0225ec860d9b319741a9c4004
20325Author: Kumar Gala <galak@kernel.crashing.org>
20326Date: Wed Feb 27 21:51:48 2008 -0600
20327
20328 [new uImage] Add autostart flag to bootm_headers structure
20329
20330 The autostart env variable was dropped as part of the initial new uImage
20331 cleanup. Add it back here so the arch specific code can decide if it
20332 wants to really boot or not.
20333
20334 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20335 Acked-by: Marian Balakowicz <m8@semihalf.com>
20336
20337commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
20338Author: Kumar Gala <galak@kernel.crashing.org>
20339Date: Wed Feb 27 21:51:47 2008 -0600
20340
20341 [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
20342
20343 Introduce the LMB lib used on PPC in the kernel as a clean way to manage
20344 the memory spaces used by various boot images and structures. This code
20345 will allow us to simplify the code in bootm and its support functions.
20346
20347 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20348
20349commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
20350Author: Kumar Gala <galak@kernel.crashing.org>
20351Date: Tue Feb 19 22:03:47 2008 -0600
20352
20353 [new uImage] ppc: Allow boards to specify effective amount of memory
20354
20355 For historical reasons we limited the stack to 256M because some boards
20356 could only map that much via BATS. However newer boards are capable of
20357 mapping more memory (for example 85xx is capable of doing up to 2G).
20358
20359 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20360 Acked-by: Marian Balakowicz <m8@semihalf.com>
20361
20362commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
20363Author: Kumar Gala <galak@kernel.crashing.org>
20364Date: Wed Feb 27 21:51:46 2008 -0600
20365
20366 [new uImage] rework error handling so common functions don't reset
20367
20368 Changed image_get_ramdisk() to just return NULL on error and have
20369 get_ramdisk() propogate that error to the caller. It's left to the
20370 caller to call do_reset() if it wants to.
20371
20372 Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
20373 to a common location. In the future we will change get_fdt() and
20374 fdt_relocate() to return success/failure and not call do_reset() at all.
20375
20376 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20377 Acked-by: Marian Balakowicz <m8@semihalf.com>
20378
20379commit d2bc095a639672def11d5d043b5688d0dbd692ec
20380Author: Kumar Gala <galak@kernel.crashing.org>
20381Date: Wed Feb 27 21:51:45 2008 -0600
20382
20383 [new uImage] ppc: Re-order ramdisk/fdt handling sequence
20384
20385 Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
20386 however it does mean we have to go in and fixup the initrd info since
20387 we don't know where it will be.
20388
20389 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20390
20391commit 27953493ef025fb698d68c5dee39b36f01f4d530
20392Author: Kumar Gala <galak@kernel.crashing.org>
20393Date: Wed Feb 27 21:51:44 2008 -0600
20394
20395 [new uImage] ppc: Determine if we are booting an OF style
20396
20397 If we are bootin OF style than we can skip setting up some things
20398 that are used for the old boot method.
20399
20400 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20401 Acked-by: Marian Balakowicz <m8@semihalf.com>
20402
20403commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
20404Author: Kumar Gala <galak@kernel.crashing.org>
20405Date: Wed Feb 27 21:51:43 2008 -0600
20406
20407 [new uImage] Don't pass kdb to ramdisk_high since we may not have one
20408
20409 We don't actually need the kdb param as we are just using it to get
20410 bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we
20411 boot via OF we might not actually fill out a kdb.
20412
20413 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20414 Acked-by: Marian Balakowicz <m8@semihalf.com>
20415
Wolfgang Denk5013c092008-03-02 22:45:33 +010020416commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
20417Author: Kumar Gala <galak@kernel.crashing.org>
20418Date: Wed Feb 27 16:30:47 2008 -0600
20419
20420 85xx: Don't icbi when unlocking the cache
20421
20422 There is no reason to icbi when invalidating the temporary stack in
20423 the d-cache. Its impossible on e500 to have the i-cache contain
20424 any addresses in the temp stack and it can be problematic in generating
20425 transactions on the bus to non-valid addresses.
20426
20427 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20428
20429commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
20430Author: Andy Fleming <afleming@freescale.com>
20431Date: Wed Feb 27 15:50:50 2008 -0600
20432
20433 Fix source for ECM error IVPR
20434
20435 The source vector for the ECM was being set to 2,
20436 but that's what the source vector for DDR was being
20437 set to. Change it to 1.
20438
20439 Signed-off-by: Andy Fleming <afleming@freescale.com>
20440
20441commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
20442Author: Andy Fleming <afleming@freescale.com>
20443Date: Wed Feb 27 14:29:58 2008 -0600
20444
20445 Invalidate INIT_RAM TLB mappings
20446
20447 Commit 0db37dc... (and some others) changed the INIT_RAM TLB
20448 mappings to be unguarded. This collided with an existing "bug"
20449 where the mappings for the INIT_RAM were being kept around.
20450 This meant that speculative loads to those addresses were
20451 succeeding in the TLB, and going out to the bus, where they
20452 were causing an exception (there's nothing at that address). The
20453 Flash code was coincidentally causing such a speculative load.
20454 Rather than go back to mapping the INIT RAM as guarded, we fix
20455 it so that the entries for the INIT_RAM are invalidated. Thus
20456 the speculative loads will fail in the TLB, and have no effect.
20457
20458 Signed-off-by: Andy Fleming <afleming@freescale.com>
20459
20460commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
20461Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20462Date: Sun Feb 17 22:56:17 2008 +0100
20463
20464 sbc8548: Fix Revision reading and unused variable 'path'
20465
20466 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20467
20468commit 495d162374c472f46454453553382ad0735dc725
20469Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20470Date: Sun Feb 17 22:56:16 2008 +0100
20471
20472 sbc8548: Fix cfi flash bank declaration
20473
20474 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20475
Wolfgang Denk438a4c12008-03-26 11:48:46 +010020476commit 4efbe9dbb129f857f27856936112c8c02f016be6
20477Author: Marian Balakowicz <m8@semihalf.com>
20478Date: Wed Feb 27 11:02:26 2008 +0100
20479
20480 [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
20481
20482 Dual format image code must properly handle all three FDT passing methods:
20483 - raw FDT blob passed
20484 - FDT blob embedded in the legacy uImage
20485 - FDT blob embedded in the new uImage
20486
20487 This patch enables proper raw FDT handling when no FIT imaeg support
20488 is compiled in. This is a bit tricky as we must dected FIT format even
20489 when FIT uImage handling is not enabled as both FIT uImages and raw FDT
20490 blobs use tha same low level format (libfdt).
20491
20492 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20493
20494commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
20495Author: Marian Balakowicz <m8@semihalf.com>
20496Date: Wed Feb 27 11:02:26 2008 +0100
20497
20498 [new uImage] POWERPC: Add image_get_fdt() routine
20499
20500 FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
20501 (3) or embedded in the new uImage. For the (2) case embedding image must be
20502 verified before we get FDT from it. This patch factors out legacy image
20503 specific verification routine to the separate helper routine.
20504
20505 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20506 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20507
20508commit 1efd43601f90de21ec6c0ebb9880823e822927b1
20509Author: Marian Balakowicz <m8@semihalf.com>
20510Date: Wed Feb 27 11:02:07 2008 +0100
20511
20512 [new uImage] Add image_get_kernel() routine
20513
20514 Legacy image specific verification is factored out to a separate helper
20515 routine to keep get_kernel() generic and simple.
20516
20517 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20518 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20519
20520commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
20521Author: Marian Balakowicz <m8@semihalf.com>
20522Date: Wed Feb 27 11:01:04 2008 +0100
20523
20524 [new uImage] Move image verify flag to bootm_headers structure
20525
20526 Do not pass image verification flag directly to related routines.
20527 Simplify argument passing and move it to the bootm_header structure which
20528 contains curently processed image specific data and is already being passed
20529 on the argument list.
20530
20531 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20532 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20533
20534commit 823afe7cefe00dafefc6696c1cc7aa828c394234
20535Author: Marian Balakowicz <m8@semihalf.com>
20536Date: Wed Feb 27 11:00:47 2008 +0100
20537
20538 [Makefile] Sort COBJS in lib_<arch> Makefiles
20539
20540 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20541
20542commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
20543Author: Marian Balakowicz <m8@semihalf.com>
20544Date: Wed Feb 27 11:00:47 2008 +0100
20545
20546 [new uImage] Optimize gen_get_image() flow control
20547
20548 When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
20549 to do, update its control flow to better reflect that simple case.
20550
20551 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20552 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20553
20554commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
20555Author: Marian Balakowicz <m8@semihalf.com>
20556Date: Mon Feb 4 08:28:17 2008 +0100
20557
20558 [new uImage] POWERPC: Split get_fdt() into get and relocate routines
20559
20560 PPC specific FDT blob handling code is divided into two separate routines:
20561
20562 get_fdt() - find and verify a FDT blob (either raw or image embedded)
20563 fdt_relocate() - move FDT blob to within BOOTMAP if needed
20564
20565 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20566 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20567
Wolfgang Denk5013c092008-03-02 22:45:33 +010020568commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
20569Author: Jon Loeliger <jdl@freescale.com>
20570Date: Mon Feb 25 13:13:37 2008 -0600
20571
20572 86xx: Fix renamed GUR symbols in sbc8641d board.
20573
20574 Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
20575 (86xx: Fix GUR PCI config registers properly), we should have
20576 changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
20577 symbols in the sbc8641d board as well. Fix this oversight.
20578
20579 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20580
20581commit 64cd594e623c39f73964d18787763e4533f791f7
20582Author: Stefan Roese <sr@denx.de>
20583Date: Mon Feb 25 16:50:48 2008 +0100
20584
20585 ppc4xx: Fix acadia_nand build problem
20586
20587 Don't include testdram() on NAND-booting target acadia_nand. This saves
20588 a few bytes and makes the target build clean again.
20589
20590 Signed-off-by: Stefan Roese <sr@denx.de>
20591
20592commit 14e099e698d41e8179d05c2b2dbcf704a236f748
20593Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20594Date: Sun Feb 24 23:03:12 2008 +0000
20595
20596 mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
20597
20598 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20599
20600commit 724902c8464e610642b3a170278b99710325888e
20601Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20602Date: Sun Feb 24 23:03:11 2008 +0000
20603
20604 arm-imx: Fix registers definition
20605
20606 Sync registers definition with linux
20607
20608 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20609
20610commit 4cd288b589ea1178947c6e364453c32b3dede6b7
20611Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20612Date: Sun Feb 24 23:03:10 2008 +0000
20613
20614 actua1/actua2/actua3: Fix multipleunused variable
20615
20616 - actua1:
20617 actux1.c: In function 'checkboard':
20618 actux1.c:92: warning: unused variable 'revision'
20619
20620 - actua2:
20621 actux2.c: In function 'checkboard':
20622 actux2.c:100: warning: unused variable 's'
20623 actux2.c:99: warning: unused variable 'revision'
20624 actux2.c: In function 'reset_phy':
20625 actux2.c:130: warning: unused variable 'i'
20626
20627 - actua3:
20628 actux3.c: In function 'checkboard':
20629 actux3.c:114: warning: unused variable 'revision'
20630
20631 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20632
Wolfgang Denk438a4c12008-03-26 11:48:46 +010020633commit d5934ad7756f038a393a9cfab76a4fe306d9d930
20634Author: Marian Balakowicz <m8@semihalf.com>
20635Date: Mon Feb 4 08:28:09 2008 +0100
20636
20637 [new uImage] Add dual format uImage support framework
20638
20639 This patch adds framework for dual format images. Format detection is added
20640 and the bootm controll flow is updated to include cases for new FIT format
20641 uImages.
20642
20643 When the legacy (image_header based) format is detected appropriate
20644 legacy specific handling is invoked. For the new (FIT based) format uImages
20645 dual boot framework has a minial support, that will only print out a
20646 corresponding debug messages. Implementation of the FIT specific handling will
20647 be added in following patches.
20648
20649 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20650
Wolfgang Denk5013c092008-03-02 22:45:33 +010020651commit b29661fc1151077776454288051bc9a488351ce8
20652Author: Wolfgang Denk <wd@denx.de>
20653Date: Sun Feb 24 15:21:36 2008 +0100
20654
20655 Coding style cleanup. Prepare v1.3.2-rc2 release candidate
20656
20657 Signed-off-by: Wolfgang Denk <wd@denx.de>
20658
Wolfgang Denkb29661f2008-02-24 15:21:36 +010020659commit 00b48a48424894daa589d166d73277830b1c6ac4
20660Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20661Date: Sat Feb 23 12:15:56 2008 +0100
20662
20663 ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
20664
20665 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20666
20667commit b075d74efb70ff68c49a2532f26b56d6703b69c1
20668Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20669Date: Sat Feb 23 17:24:16 2008 +0900
20670
20671 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
20672
20673 ----------------------------------------------------------------
20674 Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
20675
20676 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
20677 32bit targets.
20678
20679 GCC can be made to warn about usage of long long types with ISO C90
20680 (-ansi), but only with -pedantic. You can write this in a way that even
20681 then it doesn't cause warnings, namely by:
20682
20683 #ifdef __GNUC__
20684 __extension__ typedef __signed__ long long __s64;
20685 __extension__ typedef unsigned long long __u64;
20686 #endif
20687
20688 The __extension__ keyword in front of this switches off any pedantic
20689 warnings for this expression.
20690
20691 Signed-off-by: Olaf Hering <olh@suse.de>
20692 Cc: <linux-arch@vger.kernel.org>
20693 Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
20694 Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
20695 ----------------------------------------------------------------
20696
20697 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20698
20699commit 208acd112e6517b21fc30c420396902b103563ac
20700Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20701Date: Sat Feb 23 17:07:57 2008 +0900
20702
20703 cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
20704
20705 This will reduce the build time.
20706
20707 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20708
20709commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
20710Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20711Date: Sat Feb 23 17:05:00 2008 +0900
20712
20713 cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
20714
20715 This will reduce the build time.
20716
20717 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20718
20719commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
20720Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20721Date: Sat Feb 23 16:58:41 2008 +0900
20722
20723 cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
20724
20725 This reduces the build time by ~10%. Here's the gth2_config example.
20726
20727 BEFORE AFTER
20728 real 0m31.441s 0m27.833s
20729 user 0m24.766s 0m23.045s
20730 sys 0m10.425s 0m7.468s
20731
20732 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20733
20734commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
20735Author: Marcel Moolenaar <marcelm@juniper.net>
20736Date: Fri Feb 22 10:48:07 2008 -0800
20737
20738 make define2mk.sed work on FreeBSD
20739
20740 In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
20741 the define2mk.sed script was identified as the source of the link
20742 failure on FreeBSD. The problem is that sed(1) does not always support
20743 the '+' operator. It isn't on FreeBSD. The attach patch implements the
20744 equivalent, using the '*' operator instead and should work everywhere.
20745
20746 Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
20747
20748commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
20749Author: Detlev Zundel <dzu@denx.de>
20750Date: Fri Feb 22 17:21:32 2008 +0100
20751
20752 Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
20753
20754 The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
20755 final traces of long-deprecated "ramdisk" kernel parm") makes these
20756 changes neccessary.
20757
20758 Signed-off-by: Detlev Zundel <dzu@denx.de>
20759
20760commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
20761Author: Larry Johnson <lrj@acm.org>
20762Date: Thu Feb 21 13:58:16 2008 -0500
20763
20764 LM75 bug fix for negative temperatures
20765
20766 When the LM75 temperature sensor measures a temperature below 0 C, the
20767 current driver does not perform sign extension, so the result returned is
20768 256 C too high. This patch fixes the problem.
20769
20770 Signed-off-by: Larry Johnson <lrj@acm.org>
20771
20772commit 5a910c224b13e413bda41922379add6d75c32da3
20773Author: Heiko Schocher <hs@denx.de>
20774Date: Thu Feb 21 18:33:45 2008 +0100
20775
20776 IDS8247: update MAINTAINER entry.
20777
20778 Signed-off-by: Heiko Schocher <hs@denx.de>
20779
20780commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
20781Author: Heiko Schocher <hs@denx.de>
20782Date: Thu Feb 21 18:31:15 2008 +0100
20783
20784 Fix device tree for mgsuvd board.
20785
20786 Rename the "scc" node in "ethernet" for the mgsuvd board.
20787
20788 Signed-off-by: Heiko Schocher <hs@denx.de>
20789
20790commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
20791Author: Yuri Tikhonov <yur@emcraft.com>
20792Date: Thu Feb 21 14:23:42 2008 +0100
20793
20794 lwmon5: enable hardware watchdog
20795
20796 Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
20797 causing it to reboot the board if U-Boot does a long busy-wait with
20798 udelay(). Thus, for these boards we have to restart WD more
20799 frequently.
20800
20801 This patch splits the busy-wait udelay() into smaller, predefined,
20802 intervals, so that the watchdog timer may be resetted with the
20803 configurable (CONFIG_WD_PERIOD) interval.
20804
20805 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
20806
20807commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
20808Author: Anatolij Gustschin <agust@denx.de>
20809Date: Thu Feb 21 12:52:29 2008 +0100
20810
20811 ppc4xx: Support for ATI Radeon 9200 card on sequoia
20812
20813 Adds configuration option for ATI Radeon 9200 card
20814 support to sequoia config file. If CONFIG_VIDEO
20815 is enabled, TEXT_BASE should be changed to 0xFFF80000.
20816
20817 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20818
20819commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
20820Author: Kumar Gala <galak@kernel.crashing.org>
20821Date: Mon Feb 18 08:18:07 2008 -0600
20822
20823 Remove duplicate defines for ARRAY_SIZE
20824
20825 A few duplicate of the ARRAY_SIZE macro sneaked in since we put
20826 the define in common.h.
20827
20828 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20829
20830commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
20831Author: Kumar Gala <galak@kernel.crashing.org>
20832Date: Mon Feb 18 08:09:37 2008 -0600
20833
20834 ppc: Allow boards to specify effective amount of memory
20835
20836 For historical reasons we limited the stack to 256M because some boards
20837 could only map that much via BATS. However newer boards are capable of
20838 mapping more memory (for example 85xx is capable of doing up to 2G).
20839
20840 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20841
20842commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
20843Author: Mike Frysinger <vapier@gentoo.org>
20844Date: Mon Feb 18 05:24:13 2008 -0500
20845
20846 include autoconf.mk before any other .mk files
20847
20848 This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
20849 those .mk files can have make if statements based on the current config.
20850
20851 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20852
20853commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
20854Author: Mike Frysinger <vapier@gentoo.org>
20855Date: Mon Feb 18 05:10:07 2008 -0500
20856
20857 error check autoconf.mk generation
20858
20859 If any of the steps for generating autoconf.mk fail currently, they go
20860 unnoticed. To fix, we can simply add 'set -e' to the long list of commands.
20861 This is simpler and more robust than placing '|| exit $$?' after every line.
20862
20863 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20864
20865commit 019895a8dee71a9f00da05c03e379f45d581b0fe
20866Author: Stefano Babic <sbabic@denx.de>
20867Date: Mon Feb 18 08:03:51 2008 +0100
20868
20869 Fix bug in dependency checking
20870
20871 By adding VERSION_FILE to the PHONY targets the script
20872 /tools/setlocalversion is always called and version_autogenerated.h
20873 is replaced only if the script find a modified source file.
20874
20875 Signed-off-by: Stefano Babic <sbabic@denx.de>
20876
20877commit 98ba144ccc912eee90dd42699f023c497ce774c6
20878Author: Kyungmin Park <kmpark@infradead.org>
20879Date: Mon Feb 18 14:35:43 2008 +0900
20880
20881 Fix GPMC CS2 memory setup at apollon
20882
20883 It disables the current map first
20884
20885 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20886
20887commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
20888Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20889Date: Sun Feb 17 23:52:46 2008 +0100
20890
20891 uli526x: Fix multiple differ in signedness and parentheses around comparison
20892
20893 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20894
20895commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
20896Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20897Date: Sun Feb 17 16:58:04 2008 +0100
20898
20899 MIPS: Fix CFG_NO_FLASH support
20900
20901 - Fix flash_init call when CFG_NO_FLASH is used
20902 - Remove no more needed flash.c for qemu-mips
20903
20904 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20905
20906commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
20907Author: Mike Frysinger <vapier@gentoo.org>
20908Date: Sat Feb 16 02:40:18 2008 -0500
20909
20910 easylogo: clean up some more and add -r (rgb) support
20911
20912 Michael Hennerich added support for outputting an image in RGB format rather
20913 than forcing YUYV all the time. This makes obvious sense if the display you
20914 have takes RGB input rather than YUYV.
20915
20916 Rather than hack in support for options, I've converted it to use getopt and
20917 cleaned up the argument parsing in the process.
20918
20919 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
20920 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20921
20922commit f65c98129ccada3f7caf97d80395a95b84e911de
20923Author: Mike Frysinger <vapier@gentoo.org>
20924Date: Sat Feb 16 02:12:37 2008 -0500
20925
20926 Makefile: add target for $(LDSCRIPT)
20927
20928 If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
20929 then change into the board directory and try and create it. This allows you
20930 to generate the linker script on the fly based upon board defines (like the
20931 Blackfin boards do).
20932
20933 There should be no regressions due to this change as the normal case is to
20934 already have a u-boot.lds file. If that's the case, then there's nothing to
20935 generate, and so make will always exit. The fix here is that if the linker
20936 script does not exist, the implicit rules take over and attempt to guess how
20937 to generate the file.
20938
20939 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20940
Wolfgang Denk438a4c12008-03-26 11:48:46 +010020941commit 5583cbf736474ef754e128a54fb78632f57b48fd
20942Author: Marian Balakowicz <m8@semihalf.com>
20943Date: Thu Feb 21 17:27:49 2008 +0100
20944
20945 [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
20946
20947 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20948
20949commit 2242f5369822bc7780db95c47985bb408ea9157b
20950Author: Marian Balakowicz <m8@semihalf.com>
20951Date: Thu Feb 21 17:27:41 2008 +0100
20952
20953 [new uImage] Rename and move print_image_hdr() routine
20954
20955 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20956
20957commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
20958Author: Marian Balakowicz <m8@semihalf.com>
20959Date: Thu Feb 21 17:20:20 2008 +0100
20960
20961 [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
20962
20963 Introducing routines for parsing new uImage format bootm arguments:
20964 [<addr>]#<conf> - configuration specification
20965 [<addr>]:<subimg> - subimage specification
20966
20967 New format images can contain multiple subimages of the same type. For example
20968 a single new format image file can contain three kernels, two ramdisks and a
20969 couple of FDT blobs. Subimage and configuration specifications are extensions
20970 to bootm (and other image-related commands) arguments' syntax that allow to
20971 specify which particular subimage should be operated on.
20972
20973 Subimage specification is used to denote a particular subimage. Configurations
20974 are a bit more complex -- they are used to define a particualr booting setup,
20975 for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
20976 etc.
20977
20978 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20979
20980commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
20981Author: Marian Balakowicz <m8@semihalf.com>
20982Date: Thu Feb 21 17:20:19 2008 +0100
20983
20984 [new uImage] Add gen_get_image() routine
20985
20986 This routine assures that image (whether legacy or FIT) is not
20987 in a special dataflash storage.
20988
20989 If image address is a dataflash address image is moved to system RAM.
20990
20991 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20992
20993commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
20994Author: Marian Balakowicz <m8@semihalf.com>
20995Date: Thu Feb 21 17:20:18 2008 +0100
20996
20997 [new uImage] Pull in libfdt if CONFIG_FIT is enabled
20998
20999 New uImage format (Flattened Image Tree) requires libfdt
21000 functionality, print out error message if CONFIG_OF_LIBFDT
21001 is not defined.
21002
21003 New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
21004 This commit turns it on by default.
21005
21006 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21007
Wolfgang Denkb29661f2008-02-24 15:21:36 +010021008commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
21009Author: Michael Schwingen <michael@schwingen.org>
21010Date: Mon Feb 18 23:16:35 2008 +0100
21011
21012 CFI: Do not use uninitialized cmd_reset
21013
21014 Do not use uninitialized cmd_reset; issue both AMD and Intel reset
21015 commands instead
21016
21017 From a short test, it looks like AMD-style flash roms treat *any* unknown
21018 command write as a reset, at least when in CFI Query mode, so issuing the
21019 Intel reset command to AMD-style flashs seems safe (from the small sample I
21020 have), plus the 3-cycle magic sequence should kick the state machine into
21021 the right state even without a reset command. Since the AMD-style flashs
21022 require the unlock sequence for real operation, I chose to try the AMD reset
21023 command first, so that Intel flashs do no see an invalid command prior to
21024 the CFI query.
21025
21026 I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
21027 plus Intel StrataFlash.
21028
21029 Signed-off-by: Michael Schwingen <michael@schwingen.org>
21030 Signed-off-by: Stefan Roese <sr@denx.de>
21031
21032commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
21033Author: Rafal Jaworowski <raj@semihalf.com>
21034Date: Thu Feb 21 11:56:44 2008 +0100
21035
21036 API: Add (c) and licensing notice to the public API header.
21037
21038 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
21039
21040commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
21041Author: Yuri Tikhonov <yur@emcraft.com>
21042Date: Thu Feb 21 11:06:07 2008 +0100
21043
21044 Fix CPU POST test failure
21045
21046 The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
21047 ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
21048 by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
21049 This patch just saves the CR value before running the test code, so allowing
21050 it to do anything it wants with CR.
21051
21052 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21053 Acked-by: Yuri Tikhonov <yur@emcraft.com>
21054 --
21055
21056commit d5908b093955415f3d340706378b991f911af671
21057Author: Jon Loeliger <jdl@freescale.com>
21058Date: Wed Feb 20 15:26:51 2008 -0600
21059
21060 8610HPCD: Document the flashbank selection switches.
21061
21062 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21063
21064commit a551cee99ad1d1da20fd23ad265de47448852f56
21065Author: Jon Loeliger <jdl@freescale.com>
21066Date: Wed Feb 20 14:22:26 2008 -0600
21067
21068 86xx: Fix GUR PCI config registers properly.
21069
21070 Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
21071 I tried to "8610HPCD: Fix typos in two PCI setup registers", I
21072 botched it due to not realizing that 8610 and 8641 had different
21073 Global Utility Register defintions, one of which was like 85xx,
21074 and the other wasn't. Correct this problem by introducing two
21075 symbols, one for each 86xx SoC, but neither of which is named
21076 anything like 85xx.
21077
21078 My bad. Lovely Wednesday with git bisect. You know.
21079
21080 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21081
21082commit cb06eb961bdffc8728b38c242473d802e83ab2b4
21083Author: Jon Loeliger <jdl@freescale.com>
21084Date: Wed Feb 20 12:24:11 2008 -0600
21085
21086 8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
21087
21088 Without an actual supported video card hooked up, enabling
21089 the CONFIG_VIDEO by default just makes it look broken by
21090 routing all console output to the video card. Don't.
21091
21092 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21093
21094commit 4d264eff4312f230776b913edade7ceb75f1b1e0
21095Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
21096Date: Wed Jan 30 15:08:15 2008 -0600
21097
21098 ColdFire: Fix missing code flash size for M5485EVB
21099
21100 Signed-off-by: James Mahan <kmahan@freescale.com>
21101 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21102
21103commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
21104Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
21105Date: Wed Jan 30 15:04:42 2008 -0600
21106
21107 ColdFire: Fix 5282 and 5271 interrupt mask bit
21108
21109 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21110
21111commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
21112Author: Jon Loeliger <jdl@freescale.com>
21113Date: Tue Feb 19 12:31:08 2008 -0600
21114
21115 8610HPCD: Fix typos in two PCI setup registers.
21116
21117 The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
21118 were erroneously present as 85xx names and values, leftover from
21119 the clone wars. Fix this by removing the 85xx cruft from the
21120 86xx codebase.
21121
21122 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21123
21124commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
21125Author: Jon Loeliger <jdl@freescale.com>
21126Date: Mon Feb 18 14:01:56 2008 -0600
21127
21128 86xx: Convert sbc8641d to use libfdt.
21129
21130 This is the proper fix for a missing closing brace in the function
Wolfgang Denk01db2322008-06-28 23:16:01 +020021131 ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
Wolfgang Denkb29661f2008-02-24 15:21:36 +010021132 The ft_cpu_setup() function in mpc8641hpcn.c should have been
21133 removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
21134 but was missed. Only, the sbc8641d was nominally still using it.
21135 It all got ripped out, and the funcality that was in ft_board_setup()
21136 was refactored to remove the CPU portions into the new file
21137 cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now.
21138
21139 Based loosely on an original patch from joe.hamman@embeddedspecialties.com
21140
21141 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21142
21143commit 04efddc87c50c84f85dad5c331c634a6ce830a83
21144Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21145Date: Sun Feb 17 23:35:31 2008 +0100
21146
21147 mpc86xx: Fix unused variable 'config' and 'immap'
21148
21149 and remove useless CONFIG_DDR_INTERLEAVE
21150
21151 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21152
21153commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
21154Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21155Date: Sun Feb 17 23:03:36 2008 +0100
21156
21157 mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
21158
21159 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21160
21161commit b6f29c84c208a091f95a10cbc9852d729659ba20
21162Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21163Date: Sun Feb 17 14:15:31 2008 +0100
21164
21165 s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
21166
21167 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21168
21169commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
21170Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21171Date: Sun Feb 17 14:15:32 2008 +0100
21172
21173 pxa: fix assignment from incompatible pointer type
21174
21175 fix mmc_bread function prototype
21176
21177 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21178
21179commit 64d792063fff90b8118179b092feee09fe5cae13
21180Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21181Date: Sun Feb 17 14:15:30 2008 +0100
21182
21183 at91cap9adk: fix implicit declaration of function 'eth_init'
21184
21185 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21186
21187commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
21188Author: Wolfgang Denk <wd@denx.de>
21189Date: Sun Feb 17 15:43:44 2008 +0100
21190
21191 Remove files added by mistake, update CHANGELOG.
21192
21193 Signed-off-by: Wolfgang Denk <wd@denx.de>
21194
Wolfgang Denk375c4352008-02-17 15:43:44 +010021195commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
21196Author: Mike Nuss <mike@terascala.com>
21197Date: Wed Feb 6 11:10:11 2008 -0500
21198
21199 PPC440EPx: Optionally enable second I2C bus
21200
21201 The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
21202 PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
21203 code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
21204
21205 Signed-off-by: Mike Nuss <mike@terascala.com>
21206 Cc: Stefan Roese <sr@denx.de>
21207
21208commit ef5b4f221c22d05770878513951745f236b5b43f
21209Author: Niklaus Giger <niklaus.giger@netstal.com>
21210Date: Tue Feb 5 10:26:44 2008 +0100
21211
21212 ppc4xx: HCU4/5. Cleanup configs
21213
21214 - hcu4.h: Removed define of CONFIG_PPC405GPr
21215 - Corrected phy addresses
21216 - Fix boot variables
21217 - Respect line length of 80 chars
21218
21219 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21220
21221commit 74973126d1be63ac75bdc192f46234dca3a7c421
21222Author: Niklaus Giger <niklaus.giger@netstal.com>
21223Date: Tue Feb 5 11:31:28 2008 +0100
21224
21225 ppc4xx: HCU4/5. Cleanups
21226
21227 - Fix some coding style violations.
21228 - Use in/out_u16/32 where appropriate.
21229 - Use register names from ppc405.h.
21230 - Fix trace useage for Lauterbach.
21231 - Remove obsolete generation HCU2.
21232 - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
21233
21234 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21235
21236commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
21237Author: Niklaus Giger <niklaus.giger@netstal.com>
21238Date: Tue Feb 5 10:26:41 2008 +0100
21239
21240 ppc4xx: PPC405GPr fix missing register definitions
21241
21242 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21243
21244commit 214398d9cb22268d9d4f7563359edca0f78297a2
21245Author: Larry Johnson <lrj@acm.org>
21246Date: Fri Jan 18 21:49:05 2008 -0500
21247
21248 ppc4xx: Beautify configuration files for Sequoia and Korat boards
21249
21250 Signed-off-by: Larry Johnson <lrj@acm.org>
21251
21252commit 30c6a241e88499f536e86d325759e29ba00ff67f
21253Author: Anatolij Gustschin <agust@denx.de>
21254Date: Fri Feb 15 20:09:01 2008 +0100
21255
21256 Wipe out assembler warnings while compiling x86 biosemu
21257
21258 This patch tries to get rid of some assembler warnings about
21259 changed .got2 section type while compiling x86 bios emulator
21260 code.
21261
21262 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21263
21264commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
21265Author: Wolfgang Denk <wd@denx.de>
21266Date: Fri Feb 15 00:57:09 2008 +0100
21267
21268 Prepare v1.3.2-rc1 release candidate
21269
Wolfgang Denk67a43892008-02-15 00:57:09 +010021270commit f33e9653c9c09868995d788511d573771c209fe5
21271Author: Anatolij Gustschin <agust@denx.de>
21272Date: Fri Feb 15 00:13:20 2008 +0100
21273
21274 Fix compile warning on lib_ppc/board.c
21275
21276 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21277
21278commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
21279Author: Anatolij Gustschin <agust@denx.de>
21280Date: Thu Feb 14 18:22:04 2008 +0100
21281
21282 Add Radeon Mobility 9200 pci device id to the radeon driver
21283
21284 This patch extends PCI device id table of the
21285 radeon driver so that the driver will also support
21286 Radeon Mobility 9200 (M9+) based boards.
21287
21288 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21289
21290commit 1b8607e1f7143548c6062c28371449ec69588c00
21291Author: Anatolij Gustschin <agust@denx.de>
21292Date: Thu Feb 14 18:19:50 2008 +0100
21293
21294 Extend ATI Radeon driver to support more video modes
21295
21296 Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
21297 800x600, 640x480 at 24, 16 and 8 bpp.
21298
21299 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21300
21301commit 4124382de029d361162a4b8cecc773eb8f26e2a8
21302Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21303Date: Sun Feb 10 17:05:20 2008 +0100
21304
21305 xsengine: fix typo and few coding style
21306
21307 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21308
21309commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
21310Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21311Date: Fri Feb 8 21:25:58 2008 +0100
21312
21313 Fix wrong memory limit calculation in memory-test
21314
21315 If the length of the memory address range passed to the "mtest" command is
21316 not of the form 2^x - 1, not all address lines are tested. This bug is
21317 inherited from the original software at
21318 http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
21319 this.
21320
21321 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21322
21323commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
21324Author: Wolfgang Denk <wd@denx.de>
21325Date: Fri Feb 15 00:11:39 2008 +0100
21326
21327 Coding STyle cleanup.
21328
21329 Signed-off-by: Wolfgang Denk <wd@denx.de>
21330
21331commit f6921e3dc331293c873ec4d109fd5517a42a90b3
21332Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21333Date: Tue Feb 5 13:30:43 2008 +0900
21334
21335 sh: Fix register address of SH7722
21336
21337 The address of SH7722 is wrong by old document.
21338 This patch fixes this problem.
21339
21340 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21341
21342commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
21343Author: Mike Frysinger <vapier@gentoo.org>
21344Date: Mon Feb 4 17:44:23 2008 -0500
21345
21346 only update version header as needed
21347
21348 Constantly rebuilding the version header will force useless relinking, so we
21349 simply need to compare the new header with the existing one before updating
21350 it.
21351
21352 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21353
21354commit 208447f8e953f347425eb92c8e28d59e6d911363
21355Author: Mike Frysinger <vapier@gentoo.org>
21356Date: Mon Jan 28 05:56:19 2008 -0500
21357
21358 Do not specify a CROSS_COMPILE default when executing size
21359
21360 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21361
21362commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
21363Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21364Date: Wed Feb 13 11:19:19 2008 +0100
21365
21366 Fix return value of mtest when CFG_ALT_MEMTEST set
21367
21368 Fix a missing return statement from a non-void function.
21369
21370 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
21371
21372commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
21373Author: Timur Tabi <timur@freescale.com>
21374Date: Wed Jan 9 14:35:26 2008 -0600
21375
21376 85xx, 86xx: Determine I2C clock frequencies and store in global_data
21377
21378 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
21379
21380 Update the get_clocks() function in 85xx and 86xx to determine the I2C
21381 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
21382
21383 Signed-off-by: Timur Tabi <timur@freescale.com>
21384
21385commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
21386Author: Wolfgang Denk <wd@denx.de>
21387Date: Thu Feb 14 23:18:01 2008 +0100
21388
21389 TQM834x: clean up configuration
21390
21391 Get board name consistent with Linux and elsewhere;
21392 get rid of local network definitions etc.
21393
21394 Signed-off-by: Wolfgang Denk <wd@denx.de>
21395
21396commit 38cc09c55b1d7f233789052c6fc462e5377669a9
21397Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21398Date: Thu Feb 14 08:02:12 2008 +0100
21399
21400 TFTP: fix search of ':' in BootFile
21401
21402 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21403
21404commit 0bc9efada170096c6b273f19165e32936d330d80
21405Author: Wolfgang Denk <wd@denx.de>
21406Date: Thu Feb 14 22:46:55 2008 +0100
21407
21408 Coding style cleanup; update CHANGELOG.
21409
21410 Signed-off-by: Wolfgang Denk <wd@denx.de>
21411
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010021412commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
21413Author: Wolfgang Denk <wd@denx.de>
21414Date: Thu Feb 14 22:43:22 2008 +0100
21415
21416 PPC: Use r2 instead of r29 as global data pointer
21417
21418 R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
21419 will refuse to use load/store multiple insns; instead, it issues a
21420 list of simple load/store instructions upon function entry and exit,
21421 resulting in bigger code size, which in turn makes the build for a
21422 few boards fail.
21423
21424 Use r2 instead.
21425
21426 Signed-off-by: Wolfgang Denk <wd@denx.de>
21427
21428commit 3c234efa693bc59906c2be55c7918ecbb55392ea
21429Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
21430Date: Wed Jan 30 09:08:49 2008 +0100
21431
21432 ARM: make the machid configurable via the environment
21433
21434 If the variable "machid" exists, let do_bootm_linux use that instead
21435 of bd->bi_arch_number.
21436
21437 Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
21438
21439commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
21440Author: Vlad Lungu <vlad@comsys.ro>
21441Date: Wed Jan 23 16:34:46 2008 +0200
21442
21443 Use #ifdef CONFIG_FSLDMAFEC
21444
21445 MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
21446 fails
21447
21448 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
21449
21450commit 26c7bab81e08dc7bd696c48f753428a829629bd8
21451Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21452Date: Sat Jan 19 10:25:59 2008 +0900
21453
21454 common/miiphyutil.c: Cleanup MII_DEBUG and debug()
21455
21456 Current MII_DEBUG is confusing in two ways. One is useless define-then-
21457 undef at the top of the file. The other is there is only one debug() in
21458 this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
21459 While there are many useful printf()/puts() debug codes, but they are for
21460 DEBUG, not for MII_DEBUG.
21461
21462 This patch tries to put them all together into MII_DEBUG and debug().
21463
21464 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21465
21466commit 751b9b5189f3274b03c809172631316d6b002c82
21467Author: Kyungmin Park <kmpark@infradead.org>
21468Date: Thu Jan 17 16:43:25 2008 +0900
21469
21470 OneNAND Initial Program Loader (IPL) support
21471
21472 This patch enables the OneNAND boot within U-Boot.
21473 Before this work, we used another OneNAND IPL called X-Loader based
21474 on open source. With this work, we can build the oneboot.bin image
21475 without other program.
21476
21477 The build sequence is simple.
21478 First, it compiles the u-boot.bin
21479 Second, it compiles OneNAND IPL
21480 Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
21481 The mechanism is similar with NAND boot except it boots from itself.
21482
21483 Another thing is that you can only use the OneNAND IPL only to work
21484 other bootloader such as RedBoot and so on.
21485
21486 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
21487
21488commit 21f6f9636f0e978397548751347425fbf8d42bb3
21489Author: Andy Fleming <afleming@freescale.com>
21490Date: Wed Jan 16 13:06:59 2008 -0600
21491
21492 Fix CONFIG_MMC usage in fat code
21493
21494 A #if statement in fat.c depended on CONFIG_MMC, instead of
21495 defined(CONFIG_MMC). This meant CONFIG_MMC needed to be defined
21496 as "1" rather than just defined. Now it's better.
21497
21498 Signed-off-by: Andy Fleming <afleming@freescale.com>
21499
21500commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
21501Author: Rafal Jaworowski <raj@semihalf.com>
21502Date: Tue Jan 15 12:52:31 2008 +0100
21503
21504 ppc: Refactor cache routines, so there is only one common set.
21505
21506 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
21507
Wolfgang Denk67a43892008-02-15 00:57:09 +010021508commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
21509Author: Jon Loeliger <jdl@jdl.com>
21510Date: Wed Jan 23 15:55:02 2008 -0600
21511
21512 86xx: Fix compilation warning in sys_eprom.c
21513
21514 sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
21515
21516 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21517
Wolfgang Denk375c4352008-02-17 15:43:44 +010021518commit 65230107025733e89e28fd5e5cfd916d4953c28a
21519Author: Haavard Skinnemoen <hskinnemoen at>
21520Date: Fri Feb 22 11:40:50 2008 +0000
21521
21522 Move AT91RM9200DK board support under board/atmel
21523
21524 We already have a vendor subdir for Atmel, so we should use it.
21525
Wolfgang Denk01db2322008-06-28 23:16:01 +020021526 Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
Wolfgang Denk375c4352008-02-17 15:43:44 +010021527
21528commit 6d0943a6be99977d6d853d51749e9963d68eb192
21529Author: Andreas Engel <andreas.engel@ericsson.com>
21530Date: Mon Jan 14 09:06:52 2008 +0000
21531
21532 ARM: cleanup duplicated exception handlingcode
21533
21534 Move duplicated exception handling code into lib_arm.
21535
21536 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
21537
21538commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
21539Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
21540Date: Fri Feb 1 10:09:03 2008 +0000
21541
21542 Support for Artila M-501 starter kit
21543
21544 Kimmo Leppala / Sysart and
21545 Timo Tuunainen / Sysart
21546
21547commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
21548Author: Stelian Pop <stelian@popies.net>
21549Date: Mon Feb 11 10:50:19 2008 +0000
21550
21551 AT91CAP9 support
21552
21553 ---------------------------------
21554
21555 read_dataflash() takes a signed char pointer as a parameter. Silence a
21556 few warnings dues to incorrect parameter types in env_dataflash.c.
21557
21558 Signed-off-by: Stelian Pop <stelian@popies.net>
21559
21560commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
21561Author: Stelian Pop <stelian@popies.net>
21562Date: Thu Feb 7 09:42:57 2008 +0000
21563
21564 AT91CAP9 support : move board files to Atmel vendor directory.
21565
21566 AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
21567
21568 Signed-off-by: Stelian Pop <stelian@popies.net>
21569
21570commit 7263ef191b87da94768f762c7093bedeb70db98f
21571Author: Stelian Pop <stelian at>
21572Date: Thu Jan 3 21:15:56 2008 +0000
21573
21574 AT91CAP9 support : MACB changes
21575
Wolfgang Denk01db2322008-06-28 23:16:01 +020021576 Signed-off-by: Stelian Pop <stelian <at> popies.net>
21577 Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
Wolfgang Denk375c4352008-02-17 15:43:44 +010021578
21579commit 6afcabf11d7321850f4feaadfee841488ace54c5
21580Author: Stelian Pop <stelian@popies.net>
21581Date: Thu Feb 7 16:37:54 2008 +0000
21582
21583 AT91CAP9 support : board/ files
21584
21585 Signed-off-by: Stelian Pop <stelian@popies.net>
21586
21587commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
21588Author: Stelian Pop <stelian at>
21589Date: Wed Jan 30 21:15:54 2008 +0000
21590
21591 AT91CAP9 support : cpu/ files
21592
Wolfgang Denk01db2322008-06-28 23:16:01 +020021593 Signed-off-by: Stelian Pop <stelian <at> popies.net>
Wolfgang Denk375c4352008-02-17 15:43:44 +010021594
21595commit fa506a926cec348805143576c941f8e61b333cc0
21596Author: Stelian Pop <stelian@popies.net>
21597Date: Thu Jan 31 21:15:53 2008 +0000
21598
21599 AT91CAP9 support : include/ files
21600
21601 Signed-off-by: Stelian Pop <stelian@popies.net>
21602
21603commit 20b197c6f2799af399a68f96a1aff543a75621b8
21604Author: Stelian Pop <stelian@popies.net>
21605Date: Sun Jan 20 19:49:21 2008 +0000
21606
21607 AT91CAP9 support : build integration
21608
21609 Signed-off-by: Stelian Pop <stelian@popies.net>
21610
21611commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
21612Author: Stelian Pop <stelian@popies.net>
21613Date: Sun Jan 20 21:07:00 2008 +0000
21614
21615 Improve DataFlash CS definition.
21616
21617 Use a structure instead of the error prone unnamed array to
21618 define the possible dataflash banks.
21619
21620 Signed-off-by: Stelian Pop <stelian@popies.net>
21621
21622commit a6cdd21b56014208706238712a853a9e9a0a2290
21623Author: Stelian Pop <stelian@popies.net>
21624Date: Sat Jan 19 21:09:35 2008 +0000
21625
21626 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
21627
21628 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
21629
21630 cpu/arm926ejs/start.o: In function `cpu_init_crit':
21631 .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
21632
21633 Signed-off-by: Stelian Pop <stelian@popies.net>
21634
21635commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
21636Author: Peter Pearse <peter.pearse@arm.com>
21637Date: Fri Feb 1 16:50:24 2008 +0000
21638
21639 Fix timer overflow in DaVinci
21640 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
21641
21642commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
21643Author: Peter Pearse <peter.pearse@arm.com>
21644Date: Fri Feb 1 16:49:08 2008 +0000
21645
21646 Update board NetStar
21647 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
21648
Wolfgang Denk67a43892008-02-15 00:57:09 +010021649commit b7f6193e76651e1fd606e46eb11915b53cb6618b
21650Author: Niklaus Giger <niklaus.giger@netstal.com>
21651Date: Tue Feb 5 10:26:42 2008 +0100
21652
21653 ppc4xx: HCU4/5. Fix make O=../xx
21654
21655 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21656
21657commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
21658Author: Larry Johnson <lrj@acm.org>
21659Date: Tue Jan 22 08:51:59 2008 -0500
21660
21661 ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
21662
21663 Signed-off-by: Larry Johnson <lrj@acm.org>
21664
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010021665commit fe891ecf4d187e9d11dde869ed4623af52b54451
21666Author: Hiroshi Ito <ito@mlb.co.jp>
21667Date: Thu Jan 31 18:35:04 2008 +0900
21668
21669 NFS Timeout with large files.
21670
21671 Retry to send NFS packet before reaching timeout.
21672
21673 Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
21674
21675commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
21676Author: Johannes Stezenbach <js@sig21.net>
21677Date: Tue Jan 29 00:11:25 2008 +0100
21678
21679 Add dependencies to avoid race conditions with parallel make.
21680
21681 Signed-off-by: Johannes Stezenbach <js@sig21.net>
21682
21683commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
21684Author: Mike Frysinger <vapier@gentoo.org>
21685Date: Mon Jan 28 05:46:01 2008 -0500
21686
21687 Mark board_init_[fr] as noreturn
21688
21689 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21690
21691commit 161b2af4d7b48fd602ce333c355a4df0337892bb
21692Author: Mike Frysinger <vapier@gentoo.org>
21693Date: Mon Jan 28 05:28:50 2008 -0500
21694
21695 Only use TEXT_BASE if defined by the board
21696
21697 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21698
21699commit 1b769881750030f10743808b9d6013e11f559350
21700Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21701Date: Fri Jan 25 07:54:47 2008 +0100
21702
21703 Fix remaining CONFIG_COMMANDS
21704
21705 update comments
21706 Fix coding style
21707
21708 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21709
21710commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
21711Author: Niklaus Giger <niklaus.giger@netstal.com>
21712Date: Mon Jan 21 16:46:00 2008 +0100
21713
21714 Add *~ to .gitignore
21715
21716 One should never add a backup file ending in with ~ to the git repository.
21717
21718 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21719
21720commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
21721Author: Kumar Gala <galak@kernel.crashing.org>
21722Date: Thu Jan 17 00:02:10 2008 -0600
21723
21724 Remove duplicate defines for ARRAY_SIZE
21725
21726 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21727
21728commit c77ce474b1c57b13e9d36d9830f147966c143694
21729Author: Stelian Pop <stelian@popies.net>
21730Date: Mon Jan 14 22:08:14 2008 +0100
21731
21732 Fix incorrect address test in AT91F_DataflashSelect().
21733
21734 Signed-off-by: Stelian Pop <stelian@popies.net>
21735
21736commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
21737Author: Kumar Gala <galak@kernel.crashing.org>
21738Date: Wed Feb 13 15:09:58 2008 -0600
21739
21740 Fix building of fdt_support.c if DEBUG set
21741
21742 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21743
Wolfgang Denk67a43892008-02-15 00:57:09 +010021744commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
21745Author: Jon Loeliger <jdl@freescale.com>
21746Date: Tue Feb 12 14:53:28 2008 -0600
21747
21748 Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
21749
21750 These replace direct structure references for IMMR sections.
21751
21752 Signed-off-by: Jon Loeliger <jdl@freescale.com>
21753
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010021754commit c62776be8dca4097ca03d4f9415f08d4887b45d0
21755Author: Wolfgang Denk <wd@denx.de>
21756Date: Tue Feb 12 00:45:06 2008 +0100
21757
21758 Get rid of "#undef DEBUG" from board config files.
21759
21760 Signed-off-by: Wolfgang Denk <wd@denx.de>
21761
21762commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
21763Author: Timur Tabi <timur@freescale.com>
21764Date: Tue Jan 15 17:09:41 2008 -0600
21765
21766 Remove #undef DEBUG from MPC83xx board header files
21767
21768 Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
21769 The inclusion of this line makes it impossible to enable debug code in
21770 other source files, because "#define DEBUG" typically needs to be defined
21771 before any header files are included.
21772
21773 Signed-off-by: Timur Tabi <timur@freescale.com>
21774
21775commit 69018ce2e086e9caf35b914d675b82bc4888f077
21776Author: Kumar Gala <galak@kernel.crashing.org>
21777Date: Thu Jan 17 08:25:45 2008 -0600
21778
21779 QE: Move FDT support into a common file
21780
21781 Move the flat device tree setup for QE related devices into
21782 a common file shared between 83xx & 85xx platforms that have QE's.
21783
21784 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21785
Wolfgang Denk438a4c12008-03-26 11:48:46 +010021786commit 5cf746c303710329f8040d9c62ee354313e3e91f
21787Author: Marian Balakowicz <m8@semihalf.com>
21788Date: Thu Jan 31 13:59:09 2008 +0100
21789
21790 [new uImage] Move kernel data find code to get_kernel() routine
21791
21792 Verification of the kernel image (in old format) and finding kernel
21793 data is moved to a dedicated routine. The routine will also hold
21794 support for, to be added, new image format.
21795
21796 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21797
21798commit 7b325454fd231d4273de3fe373850f777fb086bf
21799Author: Marian Balakowicz <m8@semihalf.com>
21800Date: Thu Jan 31 13:58:20 2008 +0100
21801
21802 [new uImage] Cleanup FDT handling in PPC do_boot_linux()
21803
21804 Move FDT blob finding and relocation to a dedicated
21805 get_fdt() routine. It increases code readability and
21806 will make adding support for new uImage format easier.
21807
21808 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21809
21810commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
21811Author: Marian Balakowicz <m8@semihalf.com>
21812Date: Thu Jan 31 13:58:13 2008 +0100
21813
21814 [new uImage] Cleanup do_botm_linux() boot allocations
21815
21816 This patch moves common pre-boot allocation steps shared between PPC
21817 and M68K to a helper routines:
21818
21819 common:
21820 - get_boot_sp_limit()
21821 - get_boot_cmline()
21822 - get_boot_kbd()
21823
21824 platform:
21825 - set_clocks_in_mhz()
21826
21827 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21828
21829commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
21830Author: Marian Balakowicz <m8@semihalf.com>
21831Date: Thu Jan 31 13:57:17 2008 +0100
21832
21833 [new uImage] Move ramdisk loading to a common routine
21834
21835 Ramdisk loading code, including initrd_high variable handling,
21836 was duplicated for PPC and M68K platforms. This patch creates
21837 common helper routine that is being called from both platform
21838 do_bootm_linux() routines.
21839
21840 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21841
21842commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
21843Author: Marian Balakowicz <m8@semihalf.com>
21844Date: Thu Jan 31 13:55:53 2008 +0100
21845
21846 [new uImage] Removed dead ramdisk code on microblaze architectures
21847
21848 Microblaze do_bootm_linux() includes ramdisk processing code but
21849 the ramdisk does not get used anywhere later on.
21850
21851 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21852
21853commit 5ad03eb3854c162684222a718b44c0716ea0db03
21854Author: Marian Balakowicz <m8@semihalf.com>
21855Date: Thu Jan 31 13:55:39 2008 +0100
21856
21857 [new uImage] Factor out common image_get_ramdisk() routine
21858
21859 Architecture specific do_bootm_linux() routines share common
21860 ramdisk image processing code. Move this code to a common
21861 helper routine.
21862
21863 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21864
21865commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
21866Author: Marian Balakowicz <m8@semihalf.com>
21867Date: Thu Jan 31 13:20:08 2008 +0100
21868
21869 [new uImage] Move FDT error printing to common fdt_error() routine
21870
21871 FDT error handling in PPC do_bootm_linux() shares the same message format.
21872 This patch moves error message printing to a helper fdt_error() routine.
21873
21874 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21875 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
21876
21877commit 42b73e8ee00d48004791dea64b8093fb974c57e1
21878Author: Marian Balakowicz <m8@semihalf.com>
21879Date: Thu Jan 31 13:20:07 2008 +0100
21880
21881 [new uImage] Factor out common routines for getting os/arch/type/comp names
21882
21883 Move numeric-id to name translation for image os/arch/type/comp header
21884 fields to a helper routines: image_get_os_name(), image_get_arch_name(),
21885 image_get_type_name(), image_get_comp_name().
21886
21887 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21888
21889commit e99c26694a384221d336f6448c06a57479c0baa4
21890Author: Marian Balakowicz <m8@semihalf.com>
21891Date: Thu Jan 31 13:20:07 2008 +0100
21892
21893 [new uImage] Remove standalone applications handling from boootm
21894
21895 Standalone applications are supposed to be run using the "go" command.
21896 This patch removes standalone images handling from the do_bootm().
21897
21898 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21899
21900commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
21901Author: Marian Balakowicz <m8@semihalf.com>
21902Date: Thu Jan 31 13:20:07 2008 +0100
21903
21904 [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
21905
21906 Support for OF_FLAT_TREE is to be obsoleted in the near future,
21907 remove related code from the bootm routines.
21908
21909 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21910
21911commit 82850f3d32a2661868ec6876bed7a22c55cef718
21912Author: Marian Balakowicz <m8@semihalf.com>
21913Date: Thu Jan 31 13:20:06 2008 +0100
21914
21915 [new uImage] Use image API in SH do_bootm_linux() routine
21916
21917 Introduce image handling API for lately added Hitachi SH architecture.
21918
21919 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21920
21921commit 4a995edec1ac163d9326d143ffe2b47e7543407f
21922Author: Marian Balakowicz <m8@semihalf.com>
21923Date: Thu Jan 31 13:20:06 2008 +0100
21924
21925 [new uImage] Rename architecture specific bootm code files
21926
21927 Implementation of the do_bootm_linux() and other bootm helper routines is
21928 architecture specific code. As such it resides in lib_<arch> directories
21929 in files named <arch>_linux.c
21930
21931 This patch renames those files to a more clear and accurate
21932 lib_<arch>/bootm.c form.
21933
21934 List of the renamed files:
21935 lib_arm/armlinux.c -> lib_arm/bootm.c
21936 lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
21937 lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
21938 lib_i386/i386_linux.c -> lib_i386/bootm.c
21939 lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
21940 lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
21941 lib_mips/mips_linux.c -> lib_mips/bootm.c
21942 lib_nios/nios_linux.c -> lib_nios/bootm.c
21943 lib_nios2/nios_linux.c -> lib_nios2/bootm.c
21944 lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
21945 lib_sh/sh_linux.c -> lib_sh/bootm.c
21946
21947 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21948
21949commit 7582438c285bf0cef82909d0f232de64ec567a8a
21950Author: Marian Balakowicz <m8@semihalf.com>
21951Date: Thu Jan 31 13:20:06 2008 +0100
21952
21953 [new uImage] Return error on image move/uncompress overwrites
21954
21955 Check for overwrites during image move/uncompress, return with error
21956 when the original image gets corrupted. Report clear message to the user
21957 and prevent further troubles when pointer to the corrupted images is passed
21958 to do_bootm_linux routine.
21959
21960 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21961
21962commit f13e7b2e993c61fed1f607962501e051940d6e80
21963Author: Marian Balakowicz <m8@semihalf.com>
21964Date: Tue Jan 8 18:12:17 2008 +0100
21965
21966 [new uImage] Cleanup image header pointer use in bootm code
21967
21968 - use single image header pointer instead of a set of auxilliary variables.
21969 - add multi component image helper routines: get component size/data address
21970
21971 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21972
21973commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
21974Author: Marian Balakowicz <m8@semihalf.com>
21975Date: Tue Jan 8 18:17:10 2008 +0100
21976
21977 [new uImage] Cleanup cmd_bootm.c
21978
21979 - sort and cleanup headers, declarations, etc.
21980 - group related routines
21981 - cleanup indentation, white spaces
21982
21983 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21984
21985commit af13cdbc01eaf88880978bfb4f603e012818ba24
21986Author: Marian Balakowicz <m8@semihalf.com>
21987Date: Tue Jan 8 18:11:45 2008 +0100
21988
21989 [new uImage] Add memmove_wd() common routine
21990
21991 Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
21992
21993 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21994
21995commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
21996Author: Marian Balakowicz <m8@semihalf.com>
21997Date: Tue Jan 8 18:11:44 2008 +0100
21998
21999 [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
22000
22001 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22002
22003commit 15158971f49255ccef54f0979a942cfd3de2ae52
22004Author: Marian Balakowicz <m8@semihalf.com>
22005Date: Tue Jan 8 18:11:44 2008 +0100
22006
22007 [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
22008
22009 Use image header copy instead of a (possibly corrupted) pointer to
22010 a initial image location.
22011
22012 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22013
22014commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
22015Author: Marian Balakowicz <m8@semihalf.com>
22016Date: Tue Jan 8 18:11:44 2008 +0100
22017
22018 [new uImage] Remove I386 uImage fake_header() routine
22019
22020 I386 targets are not using a uImage format, instead fake header
22021 is added to ram image before it is further processed by bootm.
22022
22023 Remove this fixup and force proper uImage use for I386.
22024
22025 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22026
22027commit 559316faf7eae0614c91d77f509b57d6c4c091ba
22028Author: Marian Balakowicz <m8@semihalf.com>
22029Date: Tue Jan 8 18:11:44 2008 +0100
22030
22031 [new uImage] Move CHUNKSZ definition to image.h
22032
22033 CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
22034 move this definition to a common header.
22035
22036 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22037
22038commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
22039Author: Marian Balakowicz <m8@semihalf.com>
22040Date: Tue Jan 8 18:11:43 2008 +0100
22041
22042 [new uImage] Move gunzip() common code to common/gunzip.c
22043
22044 Move gunzip(), zalloc() and zfree() to a separate file.
22045 Share zalloc() and zfree() with cramfs uncompress routine.
22046
22047 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22048
22049commit d45d5a18b6b36688f2365623f9d550566c664b5b
22050Author: Marian Balakowicz <m8@semihalf.com>
22051Date: Tue Jan 8 18:11:43 2008 +0100
22052
22053 [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
22054
22055 Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
22056 readable in PPC variant of do_bootm_linux() routine.
22057
22058 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22059
22060commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
22061Author: Marian Balakowicz <m8@semihalf.com>
22062Date: Tue Jan 8 18:11:43 2008 +0100
22063
22064 [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
22065
22066 PPC implementation of do_bootm_linux() routine is moved to
22067 a dedicated file lib_ppc/ppc_linux.c
22068
22069 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22070
22071commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
22072Author: Marian Balakowicz <m8@semihalf.com>
22073Date: Tue Jan 8 18:14:09 2008 +0100
22074
22075 [new uImage] Define a API for image handling operations
22076
22077 - Add inline helper macros for basic header processing
22078 - Move common non inline code common/image.c
22079 - Replace direct header access with the API routines
22080 - Rename IH_CPU_* to IH_ARCH_*
22081
22082 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22083
22084commit ed29bc4e8142b46b626f67524207b36e43d9aad6
22085Author: Marian Balakowicz <m8@semihalf.com>
22086Date: Thu Jan 31 13:19:58 2008 +0100
22087
22088 Add missing cmd_ximg.o to common/Makefile
22089
22090 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22091
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010022092commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
22093Author: Grzegorz Bernacki <gjb@semihalf.com>
22094Date: Mon Jan 28 10:15:02 2008 +0100
22095
22096 ADS5121e: DDR2 init/timing update.
22097
22098 Signed-off-by: John Rigby <jrigby@freescale.com>
22099 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
22100
22101commit ac9152830d7fdebace8a260b7737ef2870c21ca0
22102Author: John Rigby <jrigby@freescale.com>
22103Date: Wed Jan 30 13:36:57 2008 -0700
22104
22105 Device tree updates
22106
22107 Changes to match 5121 device tree going mainline in 2.6.25.
22108
22109 Change OF_SOC from "soc5121" to plain "soc".
22110 Remove unneeded "ref-frequency" fixups.
22111 Remove "address" enetaddr fixup.
22112
22113 Add bus-frequency fixup for old OF_SOC so old
22114 kernels with old device trees will work with new
22115 u-boot with 66MHz IPS clock
22116
22117 Signed-off-by: John Rigby <jrigby@freescale.com>
22118
22119commit de55d18df3ff2ea614624e74793de7c43520e0e7
22120Author: John Rigby <jrigby@freescale.com>
22121Date: Wed Jan 30 13:36:56 2008 -0700
22122
22123 Change IPS freq to 66MHz
22124
22125 Recommended frequency is 66MHz
22126 Change divider from 4 to 3.
22127
22128 Signed-off-by: John Rigby <jrigby@freescale.com>
22129
22130commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
22131Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22132Date: Mon Jan 14 22:38:55 2008 +0100
22133
22134 xsengine: rename board_post_init to board_late_init
22135
22136 missing migration from "Cleanup of some init functions"
22137 in c837dcb1a316745092567bfe4fb266d0941884ff
22138
22139 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22140
22141commit 8dafa87476b0d7170e219c2f5e3842c833a91807
22142Author: Larry Johnson <lrj@acm.org>
22143Date: Sat Jan 12 23:35:33 2008 -0500
22144
22145 Add attribute POST_PREREL to ECC memory POST
22146
22147 Signed-off-by: Larry Johnson <lrj@acm.org>
22148
Wolfgang Denk67a43892008-02-15 00:57:09 +010022149commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
22150Author: Kumar Gala <galak@kernel.crashing.org>
22151Date: Thu Jan 17 08:25:45 2008 -0600
22152
22153 QE: Move FDT support into a common file
22154
22155 Move the flat device tree setup for QE related devices into
22156 a common file shared between 83xx & 85xx platforms that have QE's.
22157
22158 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22159
22160commit d38da537943cd36356b9d3d9d9b60533554b81d8
22161Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22162Date: Wed Jan 23 17:20:14 2008 +0100
22163
22164 AVR32: Make SDRAM refresh rate configurable
22165
22166 The existing code assumes the SDRAM row refresh period should always
22167 be 15.6 us. This is not always true, and indeed on the ATNGW100, the
22168 refresh rate should really be 7.81 us.
22169
22170 Add a refresh_period member to struct sdram_info and initialize it
22171 properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
22172 panic() until the refresh_period member is updated properly.
22173
22174 Big thanks to Gerhard Berghofer for pointing out this issue.
22175
22176 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22177
22178commit 61151cccb660cdb06a07fb283de6089913d7bde0
22179Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22180Date: Thu Apr 19 10:10:11 2007 +0200
22181
22182 ATSTK1000: Fix potential flash programming bug
22183
22184 The (now obsolete) atngw100 flash programming code was having problems
22185 programming the onboard at49bv642 chip. The atstk1000 flash
22186 programming code may have the same bug, so import fix for this problem
22187 from the AVR32 Linux BSP.
22188
22189 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22190
22191commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
22192Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22193Date: Thu Nov 22 17:04:13 2007 +0100
22194
22195 ATSTK1004: Fix comment about default load address
22196
22197 The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
22198 wouldn't have worked anyway since the board can only access 4MB of
22199 SDRAM.
22200
22201 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22202
22203commit 8269ab53608d8db2aa06969c337ab0b0518211e5
22204Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22205Date: Thu Nov 22 17:01:24 2007 +0100
22206
22207 ATSTK1002: Use SDRAM + 4MB as default load address
22208
22209 Many people run into problems when they compile a big kernel and load
22210 the uImage at the default SDRAM + 2MB address as the kernel will
22211 overwrite the uImage as it is being unpacked. Increase the default
22212 load address so that we can load a 4MB kernel image without any
22213 problems.
22214
22215 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22216
22217commit 2bcacc2d841b77f3d2d3910db722003742727e9f
22218Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22219Date: Thu Nov 22 16:51:39 2007 +0100
22220
22221 ATNGW100: Fix default mtest range
22222
22223 Let mtest cover the whole SDRAM except the last megabyte, which is
22224 where u-boot lives.
22225
22226 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22227
22228commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
22229Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22230Date: Tue Jan 22 15:31:56 2008 +0900
22231
22232 sh: Fix register address of SH7722.
22233
22234 The address of SH7722 is wrong by old document.
22235 This patch fixes this problem.
22236
22237 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22238
22239commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
22240Author: Mike Frysinger <vapier@gentoo.org>
22241Date: Mon Feb 4 19:26:57 2008 -0500
22242
22243 new command for displaying strings at specified memory locations
22244
22245 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22246
22247commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
22248Author: Mike Frysinger <vapier@gentoo.org>
22249Date: Mon Feb 4 19:26:57 2008 -0500
22250
22251 rewrite/cleanup Blackfin RTC driver
22252
22253 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22254
22255commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
22256Author: Mike Frysinger <vapier@gentoo.org>
22257Date: Mon Feb 4 19:26:57 2008 -0500
22258
22259 generate u-boot.ldr for Blackfin targets
22260
22261 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22262
22263commit b779f7a59530436040f157f7841db7ab796542df
22264Author: Mike Frysinger <vapier@gentoo.org>
22265Date: Mon Feb 4 19:26:57 2008 -0500
22266
22267 scrub unused symbols
22268
22269 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22270
22271commit cc2977acc3bbbb7850f16645dd1081f95335868d
22272Author: Mike Frysinger <vapier@gentoo.org>
22273Date: Mon Feb 4 19:26:57 2008 -0500
22274
22275 move Blackfin cpu object list to respective cpu directories
22276
22277 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22278
22279commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
22280Author: Mike Frysinger <vapier@gentoo.org>
22281Date: Mon Feb 4 19:26:57 2008 -0500
22282
22283 interface to Blackfin on-chip One-Time-Programmable memory
22284
22285 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22286
22287commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
22288Author: Mike Frysinger <vapier@gentoo.org>
22289Date: Mon Feb 4 19:26:56 2008 -0500
22290
22291 add support for memory commands with Blackfin L1 instruction memory
22292
22293 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22294
22295commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
22296Author: Mike Frysinger <vapier@gentoo.org>
22297Date: Mon Feb 4 19:26:56 2008 -0500
22298
22299 use C code rather than inline assembly
22300
22301 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22302
22303commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
22304Author: Mike Frysinger <vapier@gentoo.org>
22305Date: Mon Feb 4 19:26:56 2008 -0500
22306
22307 add Blackfin-specific reginfo command
22308
22309 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22310
22311commit 0858b835e7ea501ea084d34cef75932f098342bb
22312Author: Mike Frysinger <vapier@gentoo.org>
22313Date: Mon Feb 4 19:26:55 2008 -0500
22314
22315 add support for Blackfin symbol prefixes to examples
22316
22317 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22318
22319commit 8dc48d71a4be753ea9f84956cd33600de35fad04
22320Author: Mike Frysinger <vapier@gentoo.org>
22321Date: Mon Feb 4 19:26:55 2008 -0500
22322
22323 add Blackfin-specific bdinfo command
22324
22325 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22326
22327commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
22328Author: Mike Frysinger <vapier@gentoo.org>
22329Date: Mon Feb 4 19:26:55 2008 -0500
22330
22331 move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
22332
22333 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22334
22335commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
22336Author: Mike Frysinger <vapier@gentoo.org>
22337Date: Mon Feb 4 19:26:55 2008 -0500
22338
22339 unify the Blackfin board targets
22340
22341 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22342
22343commit d4d7730853e5d675f76ec666807da3028c91d592
22344Author: Mike Frysinger <vapier@gentoo.org>
22345Date: Mon Feb 4 19:26:55 2008 -0500
22346
22347 punt Blackfin VDSP headers and import sanitized/auto-generated ones
22348
22349 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22350
22351commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
22352Author: Mike Frysinger <vapier@gentoo.org>
22353Date: Mon Feb 4 19:26:54 2008 -0500
22354
22355 always pull in asm/blackfin.h for Blackfin ports
22356
22357 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22358
22359commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
22360Author: Mike Frysinger <vapier@gentoo.org>
22361Date: Mon Feb 4 19:26:54 2008 -0500
22362
22363 add missing __raw versions of Blackfin read/write io functions
22364
22365 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22366
22367commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
22368Author: Mike Frysinger <vapier@gentoo.org>
22369Date: Mon Feb 4 19:26:54 2008 -0500
22370
22371 add the default Blackfin logo used by Blackfin boards with splash screens
22372
22373 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22374
22375commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
22376Author: Mike Frysinger <vapier@gentoo.org>
22377Date: Mon Feb 4 19:26:54 2008 -0500
22378
22379 add some more Blackfin docs
22380
22381 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22382
22383commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
22384Author: Mike Frysinger <vapier@gentoo.org>
22385Date: Mon Feb 4 19:26:54 2008 -0500
22386
22387 make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
22388
22389 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22390
22391commit 4087bc88cebec75c432a7fe9f6afb545b0919831
22392Author: Mike Frysinger <vapier@gentoo.org>
22393Date: Mon Feb 4 19:26:54 2008 -0500
22394
22395 fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
22396
22397 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22398
22399commit b45264ee85cbd92020640a32e02fb434fd557108
22400Author: Mike Frysinger <vapier@gentoo.org>
22401Date: Mon Feb 4 19:26:53 2008 -0500
22402
22403 add gitignores for Blackfin pieces
22404
22405 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22406
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010022407commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
22408Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22409Date: Fri Jan 18 01:14:03 2008 +0100
22410
22411 TFTP: add host ip addr support
22412
22413 allow to use a different server as set in serverip
22414 add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
22415 if not defined the max length will be at 128
22416
22417 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22418
Wolfgang Denk67a43892008-02-15 00:57:09 +010022419commit e56b4b494cd92def577969f9678395aa22d34c9f
22420Author: Timur Tabi <timur@freescale.com>
22421Date: Wed Jan 9 14:35:26 2008 -0600
22422
22423 85xx,86xx: Determine I2C clock frequencies and store in global_data
22424
22425 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
22426
22427 Update the get_clocks() function in 85xx and 86xx to determine the I2C
22428 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
22429
22430 Signed-off-by: Timur Tabi <timur@freescale.com>
22431
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010022432commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
22433Author: Wolfgang Denk <wd@denx.de>
22434Date: Thu Dec 27 10:56:54 2007 +0100
22435
22436 OMAP5912: fix FIFO handling in UART driver
22437
22438 According to the OMAP5912 Serial Interfaces Reference Guide (see
22439 http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
22440 FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
22441 changed when the baud clock is not running, i. e. when both DLL and
22442 DLH are set to 0.
22443
22444 Thus make sure that DLL and DLH are 0 when writing the FCR.
22445
22446 Signed-off-by: Wolfgang Denk <wd@denx.de>
22447
22448commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
22449Author: Harald Welte <laforge@openmoko.org>
22450Date: Wed Dec 19 15:10:52 2007 +0100
22451
22452 ARM: S3C24x0 SoC NAND controller support
22453
22454 This patch adds NAND support to the S3C24x0 SoC code in u-boot
22455
22456 Signed-off-by: Harald Welte <laforge@openmoko.org>
22457
22458commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
22459Author: Harald Welte <laforge@openmoko.org>
22460Date: Wed Dec 19 14:24:40 2007 +0100
22461
22462 ARM: s3c24xx: Multiple serial port support
22463
22464 This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
22465
22466 Signed-off-by: Harald Welte <laforge@openmoko.org>
22467
22468commit a25f72f1f73a11de68251fb88c89991e202e68fa
22469Author: Harald Welte <laforge@openmoko.org>
22470Date: Wed Dec 19 14:16:57 2007 +0100
22471
22472 ARM: arm920t: Allow use of 'gd' pointer from IRQ
22473
22474 This patch allows us to use the 'gd' pointer (and thus environment
22475 and everything else associated with it) from interrupt context on
22476 arm920t.
22477
22478 Signed-off-by: Harald Welte <laforge@openmoko.org>
22479
22480commit be19bd5cd0f454b63298844a0b5377e029b2caad
22481Author: Harald Welte <laforge@openmoko.org>
22482Date: Wed Dec 19 14:19:38 2007 +0100
22483
22484 ARM: arm920/s3c24xx: IRQ demulitplexer callback
22485
22486 This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
22487 plus a stub implementation of it for the S3C2410.
22488
22489 The purpose is to allow arm920t implementations such as the s3c24x0 to
22490 implement interrupt handlers in u-boot without having to touch core
22491 arm920t code.
22492
22493 Signed-off-by: Harald Welte <laforge@openmoko.org>
22494
22495commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
22496Author: Hebbar <gururajakr@sanyo.co.in>
22497Date: Tue Dec 18 16:03:07 2007 -0800
22498
22499 ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
22500
22501 Add ifdef to bdinfo command to display ethernet information
22502 only if CONFIG_CMD_NET is defined for arm modules.
22503
22504 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
22505
22506commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
22507Author: Hebbar <gururajakr@sanyo.co.in>
22508Date: Tue Dec 18 16:00:54 2007 -0800
22509
22510 ARM: add I2C init function call in lib_arm/board.c
22511
22512 Adds I2C init func call to init sequence for ARM boards. This is
22513 present in ppc,blackfin and other processor init sequence.
22514
22515 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
22516
Wolfgang Denk67a43892008-02-15 00:57:09 +010022517commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
22518Author: Stefan Roese <sr@denx.de>
22519Date: Fri Feb 1 09:38:29 2008 +0100
22520
22521 ppc4xx: Fix ndfc HW ECC byte order
22522
22523 The current ndfc HW ECC implementation swaps the first two ECC bytes.
22524 But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
22525 so this swapping in the HW ECC driver is bogus. This patch fixes this
22526 problem and now really uses the SMC ECC byte order.
22527
22528 Thanks to Sean MacLennan for pointing this out.
22529
22530 Signed-off-by: Stefan Roese <sr@denx.de>
22531
22532commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
22533Author: Stefan Roese <sr@denx.de>
22534Date: Wed Jan 30 15:35:50 2008 +0100
22535
22536 ppc4xx: Fix GPIO configuration for pcs440ep
22537
22538 The SRD0_PFC0 register was not configured correctly to enable the GPIO's
22539 49-63 for GPIO. They have been configured as trace signals. This patch
22540 fixes this by clearing the corresponding bit.
22541
22542 Signed-off-by: Stefan Roese <sr@denx.de>
22543
22544commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
22545Author: Stefan Roese <sr@denx.de>
22546Date: Wed Jan 30 14:48:28 2008 +0100
22547
22548 ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
22549
22550 Signed-off-by: Stefan Roese <sr@denx.de>
22551
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010022552commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
22553Author: Ladislav Michl <ladis@linux-mips.org>
22554Date: Fri Dec 7 00:42:32 2007 +0100
22555
22556 ARM: Board voiceblue update
22557
22558 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
22559
22560commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
22561Author: Ladislav Michl <ladis@linux-mips.org>
22562Date: Thu Dec 6 23:24:57 2007 +0100
22563
22564 ARM: AT91RM9200 based boards config cleanup
22565
22566 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
22567
22568 Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
22569 indentation.
22570
22571commit 481f28b1db5cd21deb55f69399ba240e107af4c7
22572Author: Ladislav Michl <ladis@linux-mips.org>
22573Date: Thu Dec 6 22:59:16 2007 +0100
22574
22575 ARM: Fix at91rm9200dk base address
22576
22577 Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
22578 renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
22579 with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
22580 However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
22581 CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
22582 I'm sending this patch 4th (!) time in hope it produces at least some
22583 reaction.
22584
22585 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
22586
22587 Fix at91rm9200dk base and environment address.
22588
22589commit c95219fae2a7add7daa2f91aedca65b1698465c7
22590Author: stefano babic <sbabic@denx.de>
22591Date: Tue Nov 20 10:40:24 2007 +0100
22592
22593 MMC for PXA 27X (resubmit)
22594
22595 MMC support for X_Scale PXA is broken and does not work.
22596 Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
22597 There were already some patches around the world but none of them was
22598 merged into the official u-boot tree.
22599
22600 This patch makes order fixing this issue. Resubmit after code cleanup.
22601
22602 Applied and tested on PXA 270 (TrizepsIV module).
22603
22604 Signed-off-by: Stefano Babic <sbabic@denx.de>
22605
22606commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
22607Author: stefano babic <sbabic@denx.de>
22608Date: Tue Nov 20 10:37:04 2007 +0100
22609
22610 Fix gcc issues in pxa-regs.h
22611
22612 Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
22613 issues generates wrong code.
22614 (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
22615 This patch fixes the problem and solves the gcc-4 issues as the linux
22616 kernel does.
22617
22618 Signed-off-by: Stefano Babic <sbabic@denx.de>
22619 Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
22620
22621commit 7047b388876e7b905b2ec4edb8010543e3641b85
22622Author: Jens Gehrlein <sew_s@tqs.de>
22623Date: Tue Jan 29 08:45:03 2008 +0100
22624
22625 TQM834x: enable DHCP
22626
22627 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
22628 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22629
22630commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
22631Author: Jens Gehrlein <sew_s@tqs.de>
22632Date: Tue Jan 29 08:45:02 2008 +0100
22633
22634 TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
22635
22636 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
22637 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22638
22639commit 8931ab176025b03cfc320b3fd1eca432a88ed560
22640Author: Ben Warren <biggerbadderben@gmail.com>
22641Date: Sat Jan 26 23:41:19 2008 -0500
22642
22643 Fix conditional compilation of mpx8xxx_spi driver
22644
22645 This driver should only compile if CONFIG_MPC8XXX_SPI is set
22646
22647 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22648 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22649
22650commit 63f732d3d3880feb531f48af247c025bf01462b0
22651Author: Rafal Jaworowski <raj@semihalf.com>
22652Date: Tue Jan 29 17:00:34 2008 +0100
22653
22654 API: Provide dummy halt() in the glue layer.
22655
22656 This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
22657
22658 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
22659
22660commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
22661Author: Rafal Jaworowski <raj@semihalf.com>
22662Date: Tue Jan 29 16:57:38 2008 +0100
22663
22664 API: Convert conditional building to the new scheme.
22665
22666 This fixes a build breakage with CONFIG_API enabled, which appeared after
22667 the recent changes in the U-Boot build system.
22668
22669 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
22670
22671commit 98b742489c09780be6a832eeaa4e5eff824792bb
22672Author: Wolfgang Denk <wd@denx.de>
22673Date: Fri Jan 25 09:56:17 2008 +0100
22674
22675 inka4x0: remove dead code
22676
22677 Signed-off-by: Wolfgang Denk <wd@denx.de>
22678
Wolfgang Denk67a43892008-02-15 00:57:09 +010022679commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
22680Author: Becky Bruce <becky.bruce@freescale.com>
22681Date: Wed Jan 23 16:31:06 2008 -0600
22682
22683 86xx: Add reginfo command
22684
22685 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22686
22687commit ddcebcb638715a6278da93b553d5016f99823816
22688Author: Becky Bruce <becky.bruce@freescale.com>
22689Date: Wed Jan 23 16:31:05 2008 -0600
22690
22691 86xx: Add print_laws function to fsl_law.c
22692
22693 This can be used for debug, and will be used by board code
22694 to help implement reginfo.
22695
22696 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22697
22698commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
22699Author: Becky Bruce <becky.bruce@freescale.com>
22700Date: Wed Jan 23 16:31:04 2008 -0600
22701
22702 86xx: Remove old-style law setup code
22703
22704 This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
22705
22706 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22707
22708commit 713d8186649dae874613d495b0cecaa039a98b30
22709Author: Becky Bruce <becky.bruce@freescale.com>
22710Date: Wed Jan 23 16:31:03 2008 -0600
22711
22712 86xx: Convert sbc8641d to use new law setup code.
22713
22714 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22715
22716commit 031976f6364b93833e989f57e9f1e023e0be8c4c
22717Author: Becky Bruce <becky.bruce@freescale.com>
22718Date: Wed Jan 23 16:31:02 2008 -0600
22719
22720 86xx: Convert mpc8610hpcd to new law setup method.
22721
22722 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22723
22724commit 4933b91f8a49e436681f163df3173beb91cac44a
22725Author: Becky Bruce <becky.bruce@freescale.com>
22726Date: Wed Jan 23 16:31:01 2008 -0600
22727
22728 86xx: Support new law setup method and convert mpc8641
22729
22730 Adds the support code in cpu/mpc86xx for the new law setup code
22731 recently created fsl_law.c, and changes the MPC8641HPCN config
22732 to use this code.
22733
22734 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22735
22736commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
22737Author: Becky Bruce <becky.bruce@freescale.com>
22738Date: Wed Jan 23 16:31:00 2008 -0600
22739
22740 86xx: Rearrange the sequence in start.S
22741
22742 * split the BAT initialization so that only 2 BATs (for the boot page
22743 and stack) are programmed very early on. The rest are initialized later.
22744 * Move other BAT setup, ccsrbar setup, and law setup later in the code
22745 after translation has been enabled.
22746
22747 These changes will facilitate the moving of law and BAT initialization
22748 to C code, and will aid with 36-bit physical addressing support.
22749
22750 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22751
Wolfgang Denk0bc9efa2008-02-14 22:46:55 +010022752commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
22753Author: Wolfgang Denk <wd@denx.de>
22754Date: Wed Jan 23 14:41:37 2008 +0100
22755
22756 Coding Style Cleanup; update CHANGELOG
22757
22758 Signed-off-by: Wolfgang Denk <wd@denx.de>
22759
Wolfgang Denk33dac032008-01-23 14:41:37 +010022760commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
22761Author: Wolfgang Denk <wd@denx.de>
22762Date: Wed Jan 23 14:31:17 2008 +0100
22763
22764 Coding Style Cleanup; update CHANGELOG
22765
22766 Signed-off-by: Wolfgang Denk <wd@denx.de>
22767
Wolfgang Denk865f0f92008-01-23 14:31:17 +010022768commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
22769Author: Dave Liu <r63238@freescale.com>
22770Date: Fri Jan 18 10:07:04 2008 +0800
22771
22772 mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
22773
22774 The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
22775 cause the 83xx immap broken, so the DMA and PCI will
22776 be failed.
22777
22778 The patch fix the struct spi8xxx and rm struct spi83xx.
22779
22780 Signed-off-by: Dave Liu <daveliu@freescale.com>
22781 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22782
Wolfgang Denk33dac032008-01-23 14:41:37 +010022783commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
22784Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22785Date: Sat Apr 14 17:11:49 2007 +0200
22786
22787 AVR32: ATNGW100 board support
22788
22789 Add support for the ATNGW100 Network Gateway reference design,
22790 including flash, ethernet and MMC support.
22791
22792 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22793
22794commit e006927a0b9a54e8ee7685d8ac748aaad6801862
22795Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22796Date: Sat Nov 24 18:15:31 2007 +0100
22797
22798 AVR32: Initialize ipaddr, loadaddr and bootfile at startup
22799
22800 I don't know why the relevant layers can't do this by itself, but this
22801 is what ppc does.
22802
22803 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22804
22805commit 799891ef7b1b3432032ec23466df6b665a797fa4
22806Author: Michael Schwingen <michael@schwingen.org>
22807Date: Fri Jan 18 00:04:28 2008 +0100
22808
22809 Add AcTux board support
22810
22811 Hi,
22812
22813 The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
22814 files that
22815 contain changes for multiple boards, the board-specific files follow as
22816 separate patches.
22817
22818 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22819
22820commit 66a4344a4d910a11125df7768899ad529719855e
22821Author: Michael Schwingen <michael@schwingen.org>
22822Date: Wed Jan 16 19:53:23 2008 +0100
22823
22824 add AcTux-4 board support
22825
22826 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22827
22828commit bc24345e4101a5c996d6b48ce497b09c53025dc6
22829Author: Michael Schwingen <michael@schwingen.org>
22830Date: Wed Jan 16 19:51:55 2008 +0100
22831
22832 add AcTux-3 board support
22833
22834 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22835
22836commit aebf00fc4d1343b24715373893f7b20bf462d1e9
22837Author: Michael Schwingen <michael@schwingen.org>
22838Date: Wed Jan 16 19:51:14 2008 +0100
22839
22840 add AcTux-2 board support
22841
22842 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22843
22844commit ea99e8f05b7240fd657739e286664664ae160abe
22845Author: Michael Schwingen <michael@schwingen.org>
22846Date: Wed Jan 16 19:50:37 2008 +0100
22847
22848 add AcTux-1 board support
22849
22850 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22851
22852commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
22853Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22854Date: Mon Jan 14 19:20:08 2008 +0100
22855
22856 ARM: remove useless function board_post_init
22857
22858 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22859
22860commit 96bd462942022e4569b582c072a0ed26de1cd19b
22861Author: Michael Schwingen <michael@schwingen.org>
22862Date: Thu Jan 10 14:59:46 2008 +0100
22863
22864 IXP: enable RTS
22865
22866 enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
22867 No handshaking is done, but the active RTS signal allows to
22868 connect to the target using a PC which is using RTS/CTS
22869 handshake, and does no harm if the PC is set to ignore RTS.
22870
22871 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22872
22873commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
22874Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22875Date: Mon Jan 7 08:41:34 2008 +0100
22876
22877 IXP: add dynamic microcode addr
22878
22879 allow to load the microde from flash or ram by download it through
22880 the serial or other.
22881
22882 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22883 Acked-by: Stefan Roese <sr@denx.de>
22884
22885commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
22886Author: Michael Schwingen <michael@schwingen.org>
22887Date: Sat Nov 10 15:44:12 2007 +0100
22888
22889 load ixp42x NPE firmware from separate flash block, remove dead code
22890
22891 Hi,
22892
22893 the following patch adds support to move the IXP42X NPE firmware to a
22894 separate flash block, whose start address is defined in
22895 CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
22896 NPE-enabled u-boot without copyright problems due to the NPE firmware.
22897
22898 I hope the patch applies, I get whitespace-related differences in the NPE
22899 files due to trailing whitespace in the original versions.
22900
22901 Signed-off-by: Michael Schwingen <michael@schwingen.org>
22902 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22903
Wolfgang Denk865f0f92008-01-23 14:31:17 +010022904commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
22905Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22906Date: Tue Jan 15 14:15:46 2008 -0600
22907
22908 ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
22909
22910 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22911 Signed-off by: John Rigby <jrigby@freescale.com>
22912
22913commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
22914Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22915Date: Tue Jan 15 14:02:49 2008 -0600
22916
22917 ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
22918
22919 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22920 Signed-off by: John Rigby <jrigby@freescale.com>
22921
22922commit 777d1abd9796f1c2e148417cc10657e847d318ce
22923Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22924Date: Tue Jan 15 14:00:25 2008 -0600
22925
22926 ColdFire: Add MCF547x_8x FEC driver
22927
22928 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22929 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22930 Signed-off by: John Rigby <jrigby@freescale.com>
22931
22932commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
22933Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22934Date: Tue Jan 15 13:54:09 2008 -0600
22935
22936 ColdFire: Add MCF547x_8x dma code and header files
22937
22938 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22939 Signed-off by: John Rigby <jrigby@freescale.com>
22940
22941commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
22942Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22943Date: Tue Jan 15 13:52:03 2008 -0600
22944
22945 ColdFire: Add MCF547x_8x dma code - 2
22946
22947 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22948 Signed-off by: John Rigby <jrigby@freescale.com>
22949
22950commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
22951Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22952Date: Tue Jan 15 13:48:52 2008 -0600
22953
22954 ColdFire: Add MCF547x_8x dma code - 1
22955
22956 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22957 Signed-off by: John Rigby <jrigby@freescale.com>
22958
22959commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
22960Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22961Date: Tue Jan 15 13:39:44 2008 -0600
22962
22963 ColdFire: Add MCF547x_8x related header files
22964
22965 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22966 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22967 Signed-off by: John Rigby <jrigby@freescale.com>
22968
22969commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
22970Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22971Date: Tue Jan 15 13:37:34 2008 -0600
22972
22973 ColdFire: Add MCF547x_8x cpu arch
22974
22975 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22976 Signed-off by: John Rigby <jrigby@freescale.com>
22977
22978commit e2756f4b54aba0e0523b81dd145666829cf7fd59
22979Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22980Date: Mon Jan 14 17:47:23 2008 -0600
22981
22982 ColdFire: Add MCF5227x cpu and M52277EVB support-3
22983
22984 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22985 Signed-off by: John Rigby <jrigby@freescale.com>
22986
22987commit c87581027994c148131b2f11aa75501f782ec19a
22988Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22989Date: Mon Jan 14 17:46:19 2008 -0600
22990
22991 ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
22992
22993 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22994 Signed-off by: John Rigby <jrigby@freescale.com>
22995
22996commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
22997Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
22998Date: Mon Jan 14 17:43:33 2008 -0600
22999
23000 ColdFire: Add MCF5227x cpu and M52277EVB support-1
23001
23002 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23003 Signed-off by: John Rigby <jrigby@freescale.com>
23004
23005commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
23006Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23007Date: Mon Jan 14 17:35:44 2008 -0600
23008
23009 ColdFire: Fix CFI Flash low level Read/Write macro
23010
23011 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23012 Signed-off by: John Rigby <jrigby@freescale.com>
23013
23014commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
23015Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23016Date: Mon Jan 14 17:23:08 2008 -0600
23017
23018 ColdFire: Add M5373EVB platform support - 2
23019
23020 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23021 Signed-off by: John Rigby <jrigby@freescale.com>
23022
23023commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
23024Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23025Date: Mon Jan 14 17:19:54 2008 -0600
23026
23027 ColdFire: Add M5373EVB platform support - 1
23028
23029 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23030 Signed-off by: John Rigby <jrigby@freescale.com>
23031
23032commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
23033Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23034Date: Mon Jan 14 17:17:03 2008 -0600
23035
23036 ColdFire: Update FlexBus CS for MCF532x
23037
23038 Definition update and change from 16bit to 32bit
23039
23040 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23041 Signed-off by: John Rigby <jrigby@freescale.com>
23042
23043commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
23044Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23045Date: Mon Jan 14 17:11:47 2008 -0600
23046
23047 ColdFire: PCI and misc updates for MCF5445x
23048
23049 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23050 Signed-off by: John Rigby <jrigby@freescale.com>
23051
23052commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
23053Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23054Date: Mon Jan 14 17:06:55 2008 -0600
23055
23056 ColdFire: MCF5445x header files cleanup
23057
23058 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23059 Signed-off by: John Rigby <jrigby@freescale.com>
23060
23061commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
23062Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23063Date: Mon Jan 14 16:59:42 2008 -0600
23064
23065 ColdFire: MCF532x header files cleanup
23066
23067 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23068 Signed-off by: John Rigby <jrigby@freescale.com>
23069
23070commit 7af7751d047e74b2ec58400f97b879c56446b3e8
23071Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23072Date: Mon Jan 14 15:30:15 2008 -0600
23073
23074 ColdFire: Add modules header files
23075
23076 Add CF specific modules header files
23077
23078 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23079 Signed-off-by: John Rigby <jrigby@freescale.com>
23080
23081commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
23082Author: Kim Phillips <kim.phillips@freescale.com>
23083Date: Thu Jan 17 12:48:00 2008 -0600
23084
23085 codingstyle cleanup for spi driver
23086
23087 ..and rm unused CONFIG_FSL_SPI define
23088
23089 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23090
23091commit d59feffb42c9f174116db7a82a311df98983dfce
23092Author: Haiying Wang <Haiying.Wang@freescale.com>
23093Date: Wed Jan 16 17:12:12 2008 -0500
23094
23095 FSL: Fix common EEPROM_data structure definition
23096
23097 - Fix EEPROM_data structure definition according to System EEPROM Data Format.
23098 - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
23099 bd->bi_ethaddr.
23100
23101 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
23102
23103commit 6bee764bd6da510a4aad614880300c968bc7318d
23104Author: Timur Tabi <timur@freescale.com>
23105Date: Wed Jan 16 15:48:12 2008 -0600
23106
23107 86xx: enable command-line editing
23108
23109 Enable command-line editing for all MPC86xx boards.
23110
23111 Signed-off-by: Timur Tabi <timur@freescale.com>
23112
23113commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
23114Author: Ben Warren <biggerbadderben@gmail.com>
23115Date: Wed Jan 16 22:37:42 2008 -0500
23116
23117 Implement hard SPI driver on MPC8349EMDS
23118
23119 This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
23120 This board has an ST M25P40 4Mbit EEPROM on its SPI bus
23121
23122 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23123 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23124
23125commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
23126Author: Ben Warren <biggerbadderben@gmail.com>
23127Date: Wed Jan 16 22:37:35 2008 -0500
23128
23129 Add support for a Freescale non-CPM SPI controller
23130
23131 This patch adds support for the SPI controller found on Freescale PowerPC
23132 processors such as the MCP834x family. Additionally, a new config option,
23133 CONFIG_HARD_SPI, is added for general purpose SPI controller use.
23134
23135 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23136 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23137
23138commit a8cb43a89be6cfd283257a603dd9841503ccce0f
23139Author: Dave Liu <r63238@freescale.com>
23140Date: Thu Jan 17 18:23:19 2008 +0800
23141
23142 mpc83xx: Fix the fatal conflict of merge
23143
23144 The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
23145 will cause the mpc8315erdb board can't boot up.
23146
23147 The patch fix that bug, and remove the duplicated #ifdef
23148 CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
23149 MPC8313E processor.
23150
23151 Signed-off-by: Dave Liu <daveliu@freescale.com>
23152 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23153
23154commit 3259eeaa4148125a81417477f62c05bd67f60587
23155Author: Larry Johnson <lrj@acm.org>
23156Date: Thu Jan 17 08:50:09 2008 -0500
23157
23158 Merge Sequoia beautification into Korat code
23159
23160 Signed-off-by: Larry Johnson <lrj@acm.org>
23161
23162commit e16925773211291b562e77187061e9dd1d757217
23163Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23164Date: Thu Jan 17 07:45:05 2008 +0100
23165
23166 net: add 'ethrotate' environment variable
23167
23168 [PATCH] net: add 'ethrotate' environment variable
23169
23170 This patch replaces the buildtime configuration option
23171 CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
23172 configuration veriable. See README.
23173
23174 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23175 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23176
23177commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
23178Author: Stefan Roese <sr@denx.de>
23179Date: Thu Jan 17 14:29:04 2008 +0100
23180
23181 ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
23182
23183 Signed-off-by: Stefan Roese <sr@denx.de>
23184
Wolfgang Denk33dac032008-01-23 14:41:37 +010023185commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
23186Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23187Date: Thu Jan 17 18:07:32 2008 +0900
23188
23189 sh: Remove CONFIG_COMMANDS from MS7720SE config file
23190
23191 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23192
Wolfgang Denk865f0f92008-01-23 14:31:17 +010023193commit 055606bd25e88c0cd04ad348a679a04b1b616bee
23194Author: Niklaus Giger <niklaus.giger@netstal.com>
23195Date: Wed Jan 16 18:39:20 2008 +0100
23196
23197 ppc4xx: Netstal HCU4 board: added various fixes and POST
23198
23199 - Moved some common code to netstal/common/nm_bsp.c.
23200 - sdram initialisation goes go netstal/common/fixed_sdram.c.
23201 - Added support for POST.
23202 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
23203
23204 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23205
23206commit 69b0634a4ee98c9791815600d43b99f626a952f3
23207Author: Niklaus Giger <niklaus.giger@netstal.com>
23208Date: Thu Jan 17 12:53:56 2008 +0100
23209
23210 ppc4xx: netstal/common define routines used by all boards
23211
23212 Added some routines used by all Netstal boards:
23213 - nm_bsp.c: - nm_show_print and
23214 - common_misc_init_r
23215 - set_params_for_sw_install. Very specific code to handle our SW
23216 installation procedure
23217 - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
23218 to handle sdram initialization.
23219 - nm.h: Common header
23220
23221 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23222
23223commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
23224Author: Niklaus Giger <niklaus.giger@netstal.com>
23225Date: Wed Jan 16 18:39:18 2008 +0100
23226
23227 ppc4xx: Netstal HCU5 board: added various fixes and POST
23228
23229 - Moved some common code to nestal/common/nm_bsp.c.
23230 - Added support for the vxWorks EDR.
23231 - Enable trace for Lauterbach, if present.
23232 - Added support for POST.
23233 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
23234
23235 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23236
23237commit 4371090e5da77edc7bf9f296364db4801639d9c4
23238Author: Niklaus Giger <niklaus.giger@netstal.com>
23239Date: Wed Jan 16 18:39:08 2008 +0100
23240
23241 ppc4xx: Netstal HCU5 board. Added POST. Various fixes
23242
23243 - Various fixes
23244 - Reduced rom_size from 384 to 320 kB
23245 - Environment is now in flash
23246 - Added POST
23247 - Support for OF
23248
23249 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23250
23251commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
23252Author: Niklaus Giger <niklaus.giger@netstal.com>
23253Date: Wed Jan 16 18:37:50 2008 +0100
23254
23255 ppc4xx: Netstal HCU4 board. Added POST. Various fixes
23256
23257 - Various fixes
23258 - Reduced rom_size from 384 to 320 kB
23259 - Environment is now in flash
23260 - Added POST
23261 - Support for OF
23262
23263 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23264
23265commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
23266Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23267Date: Thu Jan 17 10:53:08 2008 +0100
23268
23269 ppc4xx: Complete DU440 board support
23270
23271 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23272
23273commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
23274Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23275Date: Thu Jan 17 10:52:30 2008 +0100
23276
23277 ppc4xx: Add DU440 board support
23278
23279 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23280
Wolfgang Denk33dac032008-01-23 14:41:37 +010023281commit ac331da07db3860f11fa1d0fd3db7c810bce1198
23282Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23283Date: Thu Jan 17 15:53:52 2008 +0900
23284
23285 sh: Update SuperH SCIF driver
23286
23287 This patch fixed wrong SH7720 CPU macro and changed macro that
23288 calculated value of SCBRR register.
23289
23290 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23291
Wolfgang Denk865f0f92008-01-23 14:31:17 +010023292commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
23293Author: Grzegorz Bernacki <gjb@semihalf.com>
23294Date: Wed Jan 16 15:12:47 2008 +0100
23295
23296 Set ips dividor to 1/4 of csb clock.
23297
23298 Previous setting cause ips clock to be out of spec. This bug was found by John
23299 Rigby from Freescale.
23300
23301 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
23302
23303commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
23304Author: Kumar Gala <galak@kernel.crashing.org>
23305Date: Thu Jan 17 02:19:18 2008 -0600
23306
23307 85xx: Get ride of old TLB setup code
23308
23309 Now that all boards have been converted, remove old config code and the
23310 config option for the new style.
23311
23312 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23313
23314commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
23315Author: Kumar Gala <galak@kernel.crashing.org>
23316Date: Thu Jan 17 02:02:10 2008 -0600
23317
23318 85xx: Convert TQM85xx to new TLB setup
23319
23320 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23321
23322commit 74121b470c14f7eaf284ee838bffca6f9521069e
23323Author: Kumar Gala <galak@kernel.crashing.org>
23324Date: Thu Jan 17 01:56:32 2008 -0600
23325
23326 85xx: Convert STXGP3 & STXSSA to new TLB setup
23327
23328 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23329
23330commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
23331Author: Kumar Gala <galak@kernel.crashing.org>
23332Date: Thu Jan 17 01:44:34 2008 -0600
23333
23334 85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
23335
23336 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23337
23338commit 818218bac6a11591e2542c344d2330e0f4e1968b
23339Author: Kumar Gala <galak@kernel.crashing.org>
23340Date: Thu Jan 17 01:31:34 2008 -0600
23341
23342 85xx: Convert PM854/PM856 to new TLB setup
23343
23344 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23345
23346commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
23347Author: Kumar Gala <galak@kernel.crashing.org>
23348Date: Thu Jan 17 01:25:33 2008 -0600
23349
23350 85xx: Convert MPC8540EVAL to new TLB setup
23351
23352 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23353
23354commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
23355Author: Kumar Gala <galak@kernel.crashing.org>
23356Date: Thu Jan 17 01:12:22 2008 -0600
23357
23358 85xx: Convert MPC8568 MDS to new TLB setup
23359
23360 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23361
23362commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
23363Author: Kumar Gala <galak@kernel.crashing.org>
23364Date: Thu Jan 17 01:01:09 2008 -0600
23365
23366 85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
23367
23368 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23369
23370commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
23371Author: Kumar Gala <galak@kernel.crashing.org>
23372Date: Thu Jan 17 00:52:29 2008 -0600
23373
23374 85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
23375
23376 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23377
23378commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
23379Author: Kumar Gala <galak@kernel.crashing.org>
23380Date: Thu Jan 17 00:32:17 2008 -0600
23381
23382 85xx: Convert ATUM8548 to new TLB setup
23383
23384 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23385
23386commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
23387Author: Kumar Gala <galak@kernel.crashing.org>
23388Date: Wed Jan 16 23:11:57 2008 -0600
23389
23390 85xx: Convert MPC8544 DS to new TLB setup
23391
23392 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23393
23394commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
23395Author: Kumar Gala <galak@kernel.crashing.org>
23396Date: Wed Jan 16 22:38:34 2008 -0600
23397
23398 85xx: Reworked initial processor init
23399
23400 Reworked the initial processor initialzation sequence:
23401 * introduced cpu_early_init_f that is run in address space 1 (AS=1)
23402 * Moved TLB/LAW and CCSR init into cpu_early_init_f()
23403 * Reworked initial asm code to do most of the core init before TLBs
23404
23405 The main reasons for these changes are to allow handling of 36-bit phys
23406 addresses in the future and some of the issues that will exist when we
23407 do that.
23408
23409 There are a few caveats on what can be initialized via the LAW and TLB
23410 static tables:
23411 * TLB entry 14/15 can't be initialized via the TLB table
23412 * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
23413 the code that is currently executing.
23414
23415 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23416
23417commit 44a23cfd6360a68eaa41f945190618a55519eac3
23418Author: Kumar Gala <galak@kernel.crashing.org>
23419Date: Wed Jan 16 22:33:22 2008 -0600
23420
23421 85xx: Introduce new tlb API
23422
23423 Add a set of functions to manipulate TLB entries:
23424 * set_tlb() - write a tlb entry
23425 * invalidate_tlb() - invalidate a tlb array
23426 * disable_tlb() - disable a variable size tlb entry
23427 * init_tlbs() - setup initial tlbs based on static table
23428
23429 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23430
23431commit be88b1699863c262818f3af7f60173b4d48df8fc
23432Author: Stefan Roese <sr@denx.de>
23433Date: Thu Jan 17 07:50:17 2008 +0100
23434
23435 ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
23436
23437 Signed-off-by: Stefan Roese <sr@denx.de>
23438
23439commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
23440Author: Kumar Gala <galak@kernel.crashing.org>
23441Date: Wed Jan 16 10:04:42 2008 -0600
23442
23443 85xx: Use proper defines for PCI addresses
23444
23445 We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
23446 While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
23447 be used for configuring the PCI ATMU.
23448
23449 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23450
23451commit 54a5070115eff38e9b324b78abdfa0b4520580b9
23452Author: Kumar Gala <galak@kernel.crashing.org>
23453Date: Wed Jan 16 09:22:29 2008 -0600
23454
23455 85xx: Remove old style of LAW init
23456
23457 All boards are now using the new fsl_law code so we can drop the old version.
23458
23459 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23460
23461commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
23462Author: Kumar Gala <galak@kernel.crashing.org>
23463Date: Wed Jan 16 09:15:29 2008 -0600
23464
23465 85xx: convert remaining 85xx boards over to use new LAW init code
23466
23467 Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
23468 to use new LAW init code.
23469
23470 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23471
23472commit 572b13afc42710f2957c382a710360429c0e099b
23473Author: Kumar Gala <galak@kernel.crashing.org>
23474Date: Wed Jan 16 09:11:53 2008 -0600
23475
23476 85xx: convert STXGP3/STXSSA over to use new LAW init code
23477
23478 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23479
23480commit 45f2166ac0233a9263058378f39612bd11f61196
23481Author: Kumar Gala <galak@kernel.crashing.org>
23482Date: Wed Jan 16 09:06:48 2008 -0600
23483
23484 85xx: convert PM854/PM856 over to use new LAW init code
23485
23486 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23487
23488commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
23489Author: Kumar Gala <galak@kernel.crashing.org>
23490Date: Wed Jan 16 09:05:27 2008 -0600
23491
23492 85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
23493
23494 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23495
23496commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
23497Author: Kumar Gala <galak@kernel.crashing.org>
23498Date: Wed Jan 16 01:45:10 2008 -0600
23499
23500 85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
23501
23502 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23503
23504commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
23505Author: Kumar Gala <galak@kernel.crashing.org>
23506Date: Wed Jan 16 01:32:06 2008 -0600
23507
23508 85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
23509
23510 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23511
23512commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
23513Author: Kumar Gala <galak@kernel.crashing.org>
23514Date: Wed Jan 16 01:16:16 2008 -0600
23515
23516 85xx: convert MPC8544 DS over to use new LAW init code
23517
23518 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23519
23520commit 83d40dfd79fe868796275802f60116d84b9e4395
23521Author: Kumar Gala <galak@kernel.crashing.org>
23522Date: Wed Jan 16 01:13:58 2008 -0600
23523
23524 85xx: Move LAW init code into C
23525
23526 Move the initialization of the LAWs into C code and provide an API
23527 to allow modification of LAWs after init.
23528
23529 Board code is responsible to provide a law_table and num_law_entries.
23530
23531 We should be able to use the same code on 86xx as well.
23532
23533 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23534
Wolfgang Denk33dac032008-01-23 14:41:37 +010023535commit bed8ce838a609aaab136d43b25e6df2a520bc854
23536Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23537Date: Sat Dec 22 15:03:12 2007 +0100
23538
23539 qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
23540
23541 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23542
23543commit 0764c164fed6277d359cf132d55187ea34290114
23544Author: Vlad Lungu <vlad@comsys.ro>
23545Date: Wed Jan 16 19:27:51 2008 +0200
23546
23547 MIPS:Target support for qemu -M mips
23548
23549 With serial, NE2000, IDE support. Tested in big-endian mode.
23550 Memory size hard-coded to 128M for now, so don't play with
23551 the -m option.
23552
23553 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
23554
Wolfgang Denk865f0f92008-01-23 14:31:17 +010023555commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
23556Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23557Date: Fri Jan 11 00:01:37 2008 +0100
23558
23559 Fix nfs command help to reflect that the serverip is optional
23560
23561 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23562 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23563
23564commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
23565Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23566Date: Mon Dec 10 22:32:14 2007 +0100
23567
23568 bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
23569
23570 and move is_valid_ether_addr board file
23571
23572 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23573 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23574
23575commit c2f896b8fc4722e36915903e1942e138e68ce804
23576Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23577Date: Wed Jan 16 16:13:31 2008 +0900
23578
23579 drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
23580
23581 rx_status on the memory is basically in LE, but needs to be handled in CPU
23582 endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
23583 it'll work fine.
23584
23585 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23586 Cc: Masami Komiya <mkomiya@sonare.it>
23587 Cc: Lucas Jin <lucasjin@gmail.com>
23588 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23589
23590commit 96a236746fe6a7b84802afb4ed31536696d34812
23591Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23592Date: Wed Jan 16 16:12:26 2008 +0900
23593
23594 drivers/net/rtl8139.c: Fix cache coherency issues
23595
23596 Current driver is meant for cache coherent systems. This patch adds
23597 flush_cache() routines to support cache non-coherent systems.
23598
23599 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23600 Cc: Masami Komiya <mkomiya@sonare.it>
23601 Cc: Lucas Jin <lucasjin@gmail.com>
23602 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23603
23604commit d1276c76c1e2b5035296689280ba1acb2c425104
23605Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23606Date: Wed Jan 16 16:11:14 2008 +0900
23607
23608 drivers/net/rtl8139.c: Fix tx timeout
23609
23610 "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
23611 does, the condition "(currticks() < to)" becomes invalid and immediately
23612 leads to tx timeout error. This patch introduces the fine-graded udely(10)
23613 loops to ease the impact of wrapping around.
23614
23615 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23616 Cc: Masami Komiya <mkomiya@sonare.it>
23617 Cc: Lucas Jin <lucasjin@gmail.com>
23618 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23619
23620commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
23621Author: Dave Liu <r63238@freescale.com>
23622Date: Fri Jan 11 18:45:28 2008 +0800
23623
23624 TSEC: Add the support for RealTek RTL8211B PHY
23625
23626 Add the support of RealTek RTL8211B PHY, the RTL8211B
23627 PHY only supports RGMII and MII mode.
23628
23629 Signed-off-by: Dave Liu <daveliu@freescale.com>
23630 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23631
23632commit 84a3047b72b70e862b0b7a8e2058077457f89a32
23633Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
23634Date: Wed Jan 16 09:40:41 2008 +0100
23635
23636 Remove annoying debug printout for PHY less boards.
23637
23638 PHY less board prints out lots of "read wrong ...":
23639 read wrong value : mii_id 3,mii_reg 2, base e0102320
23640 read wrong value : mii_id 3,mii_reg 3, base e0102320
23641 UEC: PHY is Generic MII (ffffffff)
23642 read wrong value : mii_id 3,mii_reg 4, base e0102320
23643 read wrong value : mii_id 3,mii_reg 0, base e0102320
23644 read wrong value : mii_id 3,mii_reg 1, base e0102320
23645 read wrong value : mii_id 3,mii_reg 1, base e0102320
23646 read wrong value : mii_id 3,mii_reg 5, base e0102320
23647 read wrong value : mii_id 3,mii_reg 1, base e0102320
23648 read wrong value : mii_id 3,mii_reg 1, base e0102320
23649 read wrong value : mii_id 3,mii_reg 5, base e0102320
23650 FSL UEC0: Full Duplex
23651 FSL UEC0: Speed 100BT
23652 FSL UEC0: Link is up
23653 Using FSL UEC0 device
23654
23655 Make this printout depend on UEC_VERBOSE_DEBUG and
23656 remove its definition in uec_phy.c
23657
23658 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
23659 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23660
23661commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
23662Author: Kim Phillips <kim.phillips@freescale.com>
23663Date: Tue Jan 15 14:11:00 2008 -0600
23664
23665 net: reduce boot latency on QE UEC based boards
23666
23667 actually polling for PHY autonegotiation to finish enables us to remove the
23668 5 second boot prompt latency present on QE based boards.
23669
23670 call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
23671 uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
23672 code shamelessly stolen from tsec driver.
23673
23674 also rm unused CONFIG_RMII_MODE code.
23675
23676 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23677 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
23678 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23679
23680commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
23681Author: michael.firth@bt.com <michael.firth@bt.com>
23682Date: Wed Jan 16 11:40:51 2008 +0000
23683
23684 TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
23685
23686 The current TSEC driver limits MDIO access to the devices that have been configured as attached
23687 to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
23688
23689 Signed-off-by: Michael Firth <michael.firth@bt.com>
23690 Acked-by: Andy Fleming <afleming@freescale.com>
23691 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23692
23693commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
23694Author: Kim Phillips <kim.phillips@freescale.com>
23695Date: Wed Jan 16 00:38:05 2008 -0600
23696
23697 Add support for the MPC837xERDB
23698
23699 MPC837xERDB board support includes:
23700 * DDR2 330MHz hardcoded (soldered on the board)
23701 * Local Bus NOR Flash
23702 * I2C, UART and RTC
23703 * eTSEC RGMII (TSEC0 - RTL8211B with MII;
23704 * TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
23705 * load)
23706
23707 Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
23708 Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
23709 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23710
23711commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
23712Author: Kim Phillips <kim.phillips@freescale.com>
23713Date: Wed Jan 16 12:06:16 2008 -0600
23714
23715 mpc83xx: add support for more system clock performance controls
23716
23717 System registers that are modified are the Arbiter Configuration
23718 Register (ACR), the System Priority Control Register (SPCR), and the
23719 System Clock Configuration Register (SCCR).
23720
23721 Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
23722 Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
23723 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23724
23725commit 16c3cde050e2d243e62b37486f1558570787beb8
23726Author: James Yang <james.yang@freescale.com>
23727Date: Wed Jan 16 11:58:08 2008 -0600
23728
23729 FSL: Generalize PIXIS reset command parsing.
23730
23731 Before, the order of arguments to the pixis_reset
23732 command needed to be supplied in a hard-coded order.
23733 Generalize the command parsing to allow any order.
23734
23735 Signed-off-by: James Yang <james.yang@freescale.com>
23736 Acked-by: Jon Loeliger <jdl@freescale.com>
23737
23738commit ad8f8687b78c3e917b173f038926695383c55555
23739Author: Jon Loeliger <jdl@freescale.com>
23740Date: Tue Jan 15 13:42:41 2008 -0600
23741
23742 FSL: Convert board/freescale/common/Makefile to use CONFIG_
23743
23744 Convert the board/freescale/common/Makefile to use
23745 CONFIG_* options to select which files to conditionally
23746 compile into the board/freescale/common library rather
23747 than conditionally compiling entire files.
23748
23749 Now handles::
23750 CONFIG_FSL_PIXIS
23751 CONFIG_FSL_DIU_FB
23752 CONFIG_PQ_MDS_PIB
23753
23754 CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
23755
23756 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23757
23758commit 7c2221eb230372a9e537c4f6636b147b0909325f
23759Author: Roy Zang <tie-fei.zang@freescale.com>
23760Date: Tue Jan 15 16:38:38 2008 +0800
23761
23762 Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
23763
23764 Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
23765 Remove unused ethernet CONFIG_ options.
23766
23767 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
23768 Acked-by: Jon Loeliger <jdl@freescale.com>
23769
23770commit 711a7946277d2e29af481011e8635e9975c54e45
23771Author: Kim Phillips <kim.phillips@freescale.com>
23772Date: Tue Jan 15 14:05:14 2008 -0600
23773
23774 mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
23775
23776 continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
23777
23778 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23779
23780commit 363eea9ff7f19a2cba17f262bd17559f166e134e
23781Author: Kim Phillips <kim.phillips@freescale.com>
23782Date: Tue Jan 15 09:51:12 2008 -0600
23783
23784 mpc83xx: clean up mpc8360emds.c warnings
23785
23786 mpc8360emds.c: In function 'ft_board_setup':
23787 mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
23788 mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
23789 mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
23790 mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
23791 mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
23792 mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
23793
23794 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23795
23796commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
23797Author: Kim Phillips <kim.phillips@freescale.com>
23798Date: Mon Jan 14 16:14:46 2008 -0600
23799
23800 mpc83xx: fix phy-connection-type fixup code
23801
23802 use tree passed to us in local blob, not global fdt.
23803
23804 Also use fdt_path_offset to convert to relative offset, since absolute
23805 reference is needed to check for rgmii-id mode string value.
23806
23807 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23808
23809commit 2b4c952be7c4357a13e839d48df80853820c33eb
23810Author: Kumar Gala <galak@kernel.crashing.org>
23811Date: Mon Jan 14 09:01:40 2008 -0600
23812
23813 mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
23814
23815 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23816 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23817
23818commit e1d8ed2c08da14b168658cc5fa78529d461aea70
23819Author: Poonam Aggrwal <b10812@freescale.com>
23820Date: Mon Jan 14 09:41:14 2008 +0530
23821
23822 Changes in uboot DDR configuration for MPC8313eRDB
23823
23824 These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
23825 DDR configuration in u-boot code. Some are related to performance, some
23826 affect stability and some correct few basic errors in the current
23827 configuration.
23828
23829 The changes have been tested and found to give better memory latency
23830 figures on MPC8313eRDB.LMBench figures prove it.
23831
23832 The changes are:
23833
23834 - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
23835 (this may improve performance for application with many read
23836 or write to open pages).
23837 - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
23838 001 (activating all the CS when only one is used may cause
23839 unwanted noise on the system)
23840
23841 - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
23842 Tras=45ns)
23843 - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
23844
23845 - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
23846 comply with the 3 ODT clk requirements)
23847 - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
23848 - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
23849
23850 - DDR_SDRAM_MODE[AL]changed from 0 to 1.
23851 - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
23852
23853 - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
23854 - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
23855
23856 The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
23857 The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
23858
23859 Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
23860 Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
23861 Cc: Razzaz Mazyar <MRazzaz@freescale.com>
23862 Cc: Josep P J <PJ.Joseph@freescale.com>
23863 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23864
23865commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
23866Author: Jerry Van Baren <gvb.uboot@gmail.com>
23867Date: Sat Jan 12 13:24:14 2008 -0500
23868
23869 Enable the isdram command on the MPC8360EMDS board
23870
23871 The isdram command prints out decoded information the "serial presence
23872 detect" (SPD) chip on the SDRAM SIMMs. This can be very helpful when
23873 debugging memory configuration problems.
23874
23875 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
23876 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23877
23878commit 8bd522ce4afda3d4868ee8c913f5394094326be1
23879Author: Dave Liu <r63238@freescale.com>
23880Date: Fri Jan 11 18:48:24 2008 +0800
23881
23882 mpc83xx: Add the support for MPC8315ERDB board
23883
23884 The features list:
23885 - Boot from NOR Flash
23886 - DDR2 266MHz hardcoded configuration
23887 - Local bus NOR Flash R/W operation
23888 - I2C, UART, MII and RTC
23889 - eTSEC0/1 support
23890 - PCI host
23891
23892 Signed-off-by: Dave Liu <daveliu@freescale.com>
23893 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23894
23895commit b05884efa614e4d8a9413158fc228e0dc02ab704
23896Author: Dave Liu <r63238@freescale.com>
23897Date: Fri Jan 11 18:46:50 2008 +0800
23898
23899 mpc83xx: Add config of eTSEC emergency priority in SPCR
23900
23901 The TSEC emergency priority definition of 831x/837x
23902 is different than the definition of 834x in SPCR register.
23903
23904 Add the other config of TSEC emergency priority into
23905 cpu_init.c
23906
23907 Signed-off-by: Dave Liu <daveliu@freescale.com>
23908 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23909
23910commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
23911Author: Dave Liu <r63238@freescale.com>
23912Date: Fri Jan 11 18:42:19 2008 +0800
23913
23914 mpc83xx: Remove cache config from MPC8360ERDK.h
23915
23916 The MPC8360ERDK board support patch is added before
23917 the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
23918 so, miss clean up it.
23919
23920 The patch clean up the miss cache config.
23921
23922 Signed-off-by: Dave Liu <daveliu@freescale.com>
23923 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23924
23925commit cd9d23053d435c08fc8695017b5cb9003fcda786
23926Author: Anton Vorontsov <avorontsov@ru.mvista.com>
23927Date: Mon Jan 14 23:09:32 2008 +0300
23928
23929 nand: FSL UPM NAND driver
23930
23931 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
23932
23933commit 6cb2239ae76faee64434286c4f8fc71374702dd2
23934Author: Kyungmin Park <kmpark@infradead.org>
23935Date: Tue Jan 15 08:59:44 2008 +0900
23936
23937 OneNAND: Separate U-Boot dependent code from OneNAND
23938
23939 OneNAND: Separate U-Boot dependent code from OneNAND
23940
23941 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
23942
23943commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
23944Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23945Date: Wed Jan 16 10:33:46 2008 +0100
23946
23947 ppc4xx: Sequoia coding style cleanup and beautification
23948
23949 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23950
23951commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
23952Author: Larry Johnson <lrj@acm.org>
23953Date: Tue Jan 15 14:35:58 2008 -0500
23954
23955 ppc4xx: Refactor ECC POST for AMCC Denali core
23956
23957 The ECC POST reported intermittent failures running after power-up on
23958 the Korat PPC440EPx board. Even when the test passed, the debugging
23959 output occasionally reported additional unexpected ECC errors.
23960
23961 This refactoring has three main objectives: (1) minimize the code
23962 executed with ECC enabled during the tests, (2) add more checking of the
23963 results so any unexpected ECC errors would cause the test to fail, and
23964 (3) use synchronization (only) where required by the processor.
23965
23966 Signed-off-by: Larry Johnson <lrj@acm.org>
23967
23968commit 2465665b73ac2f688af945b1ed510752afa816a4
23969Author: David Saada <David.Saada@ecitele.com>
23970Date: Tue Jan 15 10:40:24 2008 +0200
23971
23972 QE UEC: Extend number of supported UECs to 4
23973
23974 This patch extends the number of supported UECs to 4. Note that the
23975 problem of QE thread resources exhaustion is resolved by setting the
23976 correct number of QE threads according to Ethernet type (GBE or FE).
23977
23978 Signed-off-by: David Saada <david.saada@ecitele.com>
23979 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23980
23981commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
23982Author: Wolfgang Denk <wd@denx.de>
23983Date: Wed Jan 16 00:01:01 2008 +0100
23984
23985 LWMON5: enable hush shell as command line parser
23986
23987 Signed-off-by: Wolfgang Denk <wd@denx.de>
23988
23989commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
23990Author: Wolfgang Denk <wd@denx.de>
23991Date: Tue Jan 15 17:22:28 2008 +0100
23992
23993 ADS5121: disable watchdog; enable image timestamps
23994
23995 Signed-off-by: Wolfgang Denk <wd@denx.de>
23996
23997commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
23998Author: Wolfgang Denk <wd@denx.de>
23999Date: Tue Jan 15 17:21:28 2008 +0100
24000
24001 TK885D: fixes for bigger flash sector sizes on new modules;
24002 adjust default environment;
24003 disable SCC ethernet (not used on this board).
24004
24005 Signed-off-by: Wolfgang Denk <wd@denx.de>
24006
24007commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
24008Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24009Date: Tue Jan 15 17:48:13 2008 +0900
24010
24011 pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
24012
24013 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24014
24015commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
24016Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24017Date: Tue Jan 15 23:25:25 2008 +0900
24018
24019 sh: Add support SH7710/SH7712
24020
24021 SH7710/SH7712 of SH3 CPU are supported.
24022 SH771X is called SH-Ether, and has the Ether controller in CPU.
24023 The driver of Ether is not included in this patch.
24024
24025 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24026
24027commit 63a11be68306870e04d3851ed9fa41955cdf4894
24028Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24029Date: Tue Jan 15 23:06:17 2008 +0900
24030
24031 sh: Add support of map_physmem() and unmap_physmem() to SuperH
24032
24033 This patch add the support of map_physmem() and unmap_physmem()
24034 used with Common Flash Interface(CFI) driver.
24035
24036 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24037
24038commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
24039Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24040Date: Wed Jan 9 14:42:27 2008 +0900
24041
24042 sh: Add maintainer of MS7720SE to the MAINTAINER file
24043
24044 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24045
24046commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
24047Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24048Date: Wed Jan 9 14:39:58 2008 +0900
24049
24050 sh: Fix board name in MS7720SE's config.mk
24051
24052 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24053
24054commit c0a04d93734d768b39dbb72fb501b65614c8615d
24055Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24056Date: Wed Jan 9 14:37:36 2008 +0900
24057
24058 sh: Add MS7720SE to MAKEALL
24059
24060 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24061
24062commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
24063Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24064Date: Mon Dec 3 22:58:50 2007 +0900
24065
24066 sh: Add support for MS7720RP02 board
24067
24068 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24069 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24070 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24071
24072commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
24073Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24074Date: Wed Jan 9 14:30:02 2008 +0900
24075
24076 sh: Add support for SH7720 in serial_sh driver.
24077
24078 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24079 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24080 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24081
24082commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
24083Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24084Date: Mon Dec 3 22:58:45 2007 +0900
24085
24086 sh: Add support SH3 and SH7720
24087
24088 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
24089 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24090 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24091
24092commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
24093Author: Stefan Roese <sr@denx.de>
24094Date: Tue Jan 15 10:11:02 2008 +0100
24095
24096 ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
24097
24098 Signed-off-by: Stefan Roese <sr@denx.de>
24099
24100commit 17bef68097ab3692500a36fb31115bff7910aa99
24101Author: Niklaus Giger <niklausgiger@gmx.ch>
24102Date: Mon Jan 14 14:04:42 2008 +0100
24103
24104 ppc_4xx: Fix post spr.c for PPC405
24105
24106 post/cpu/ppc4xx/spr.c contained a few checks for registers only present
24107 for PPC440 and derivates processor.
24108
24109 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24110
24111commit 06c428bcd4413014b43236e77765022071424fa6
24112Author: Dave Liu <r63238@freescale.com>
24113Date: Mon Jan 14 11:12:01 2008 +0800
24114
24115 QE: fix compile warning
24116
24117 qe.c: In function 'qe_upload_firmware':
24118 qe.c:390: warning: pointer targets in passing argument 2
24119 uec.c: In function 'uec_initialize':
24120 uec.c:1236: warning: 'uec_info' may be used uninitialized
24121
24122 Signed-off-by: Dave Liu <daveliu@freescale.com>
24123
24124commit a0dd99d51efa55fe023e19c97ead92683725eb11
24125Author: Stefan Roese <sr@denx.de>
24126Date: Mon Jan 14 10:05:05 2008 +0100
24127
24128 ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
24129
24130 Now that bit 29 is the USB PHY reset bit, update the Kilauea port
24131 to remove the USB PHY reset after powerup. The CPLD will keep the
24132 USB PHY in reset (active low) until the bit is set to 1 in
24133 board_early_init_f().
24134
24135 Signed-off-by: Stefan Roese <sr@denx.de>
24136
24137commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
24138Author: Wolfgang Denk <wd@denx.de>
24139Date: Sun Jan 13 23:26:45 2008 +0100
24140
24141 ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
24142
24143 Signed-off-by: Wolfgang Denk <wd@denx.de>
24144
24145commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
24146Author: Wolfgang Denk <wd@denx.de>
24147Date: Sun Jan 13 23:37:50 2008 +0100
24148
24149 ADS5121: Fix typo in ads5121.c, adjust default environment
24150
24151 Signed-off-by: Wolfgang Denk <wd@denx.de>
24152
24153commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
24154Author: John Rigby <jrigby@freescale.com>
24155Date: Fri Aug 24 18:18:43 2007 -0600
24156
24157 ADS5121: MAX slew rate for PATA pins
24158
24159 Signed-off-by: John Rigby <jrigby@freescale.com>
24160
24161commit dd531aac34aaad138f16cacdb51d61908d59c0e2
24162Author: Wolfgang Denk <wd@denx.de>
24163Date: Sun Jan 13 21:05:52 2008 +0100
24164
24165 Fix Makefile dependency problem with parallel builds.
24166
24167 Signed-off-by: Wolfgang Denk <wd@denx.de>
24168
24169commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
24170Author: Wolfgang Denk <wd@denx.de>
24171Date: Sun Jan 13 19:51:39 2008 +0100
24172
24173 MPC8544DS: fix board Makefile for silent build (with -s)
24174
24175 Signed-off-by: Wolfgang Denk <wd@denx.de>
24176
24177commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
24178Author: Wolfgang Denk <wd@denx.de>
24179Date: Sun Jan 13 16:44:08 2008 +0100
24180
24181 PMC440 board: fix board Makefile for out-of-tree building
24182
24183 Signed-off-by: Wolfgang Denk <wd@denx.de>
24184
24185commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
24186Author: Wolfgang Denk <wd@denx.de>
24187Date: Sun Jan 13 16:07:44 2008 +0100
24188
24189 Makalu: fix compile warning
24190
24191 Signed-off-by: Wolfgang Denk <wd@denx.de>
24192
24193commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
24194Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24195Date: Sun Jan 13 12:36:12 2008 +0100
24196
24197 cmd_nand : fix compiler warning.
24198
24199 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24200
24201commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
24202Author: Michael Schwingen <rincewind@discworld.dascon.de>
24203Date: Sat Jan 12 20:29:47 2008 +0100
24204
24205 CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
24206
24207 Signed-off-by: Michael Schwingen <michael@schwingen.org>
24208 Acked-by: Stefan Roese <sr@denx.de>
24209
24210commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
24211Author: Wolfgang Denk <wd@denx.de>
24212Date: Sun Jan 13 02:19:44 2008 +0100
24213
24214 MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
24215
24216 Signed-off-by: Wolfgang Denk <wd@denx.de>
24217
24218commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
24219Author: Wolfgang Denk <wd@denx.de>
24220Date: Sun Jan 13 02:19:13 2008 +0100
24221
24222 MPC8xx FEC driver: fix compiler warning.
24223
24224 Signed-off-by: Wolfgang Denk <wd@denx.de>
24225
24226commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
24227Author: Wolfgang Denk <wd@denx.de>
24228Date: Sun Jan 13 00:59:21 2008 +0100
24229
24230 Fix Makefile dependencies issues; allow silent build
24231
24232 - get rid of "version" target whichdidn't really work
24233 - make autoconf.mk depend on version_autogenerated.h to make sure
24234 to rebuild files as needed
24235 - add XECHO macro to allow for silent build using "make -s"
24236
24237 Signed-off-by: Wolfgang Denk <wd@denx.de>
24238
24239commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
24240Author: Wolfgang Denk <wd@denx.de>
24241Date: Sun Jan 13 00:55:47 2008 +0100
24242
24243 ADS5121e: fix compile warning
24244
24245 Signed-off-by: Wolfgang Denk <wd@denx.de>
24246
24247commit f2b6f4610627fe3d607620e25082916a01538875
24248Author: Wolfgang Denk <wd@denx.de>
24249Date: Sun Jan 13 00:55:18 2008 +0100
24250
24251 MUNICes: fix board Makefile for remote build directory
24252
24253 Signed-off-by: Wolfgang Denk <wd@denx.de>
24254
24255commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
24256Author: Oliver Weber <almoeli@gmx.de>
24257Date: Wed Jan 9 17:04:38 2008 +0100
24258
24259 MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
24260
24261 Signed-off-by: Oliver Weber <almoeli@gmx.de>
24262
24263commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
24264Author: Andreas Engel <andreas.engel@ericsson.com>
24265Date: Wed Jan 9 17:10:56 2008 +0100
24266
24267 Make bootretry work when command line editing is enabled
24268
24269 Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
24270 This patch fixes the problem.
24271
24272 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
24273
24274commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
24275Author: Larry Johnson <lrj@acm.org>
24276Date: Fri Jan 11 23:26:18 2008 -0500
24277
24278 Refactor code for "i2c sdram" command
24279
24280 Signed-off-by: Larry Johnson <lrj@acm.org>
24281
24282commit 0df6b8446c4721b91ce311548114891130371083
24283Author: Larry Johnson <lrj@acm.org>
24284Date: Thu Jan 10 22:23:39 2008 -0500
24285
24286 Fix "i2c sdram" command for DDR2 DIMMs
24287
24288 Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
24289 "i2c sdram" command. This patch provides correct alternative
24290 interpretations when DDR2 memory is detected.
24291
24292 Signed-off-by: Larry Johnson <lrj@acm.org>
24293
24294commit 64134f011254123618798ff77c42ba196b2ec485
24295Author: Wolfgang Denk <wd@denx.de>
24296Date: Sat Jan 12 20:31:39 2008 +0100
24297
24298 Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
24299
24300 With recent toolchain versions, some boards would not build because
24301 or errors like this one (here for ocotea board when building with
24302 ELDK 4.2 beta):
24303 ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
24304
24305 For many boards, the .bss section is big enough that it wraps around
24306 at the end of the address space (0xFFFFFFFF), so the problem will not
24307 be visible unless you use a 64 bit tool chain for development. On
24308 some boards however, changes to the code size (due to different
24309 optimizations) we bail out with section overlaps like above.
24310
24311 The fix is to add the NOLOAD attribute to the .bss and .sbss
24312 sections, telling the linker that .bss does not consume any space in
24313 the image.
24314
24315 Signed-off-by: Wolfgang Denk <wd@denx.de>
24316
24317commit 3afac79ec27b91df185f090b31dad9620779f440
24318Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24319Date: Fri Jan 11 20:42:58 2008 -0600
24320
24321 USB: Add Philips 1561 PCI-OHCI ids
24322 (needed for M5475EVB)
24323
24324 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
24325
24326commit 5e8def6731cd7bec74bff42a16b139de04010353
24327Author: Wolfgang Denk <wd@denx.de>
24328Date: Sat Jan 12 15:51:34 2008 +0100
24329
24330 Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
24331 boards.
24332
24333 Signed-off-by: Heiko Schocher <hs@denx.de>
24334 Signed-off-by: Wolfgang Denk <wd@denx.de>
24335
24336commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
24337Author: Grzegorz Bernacki <gjb@semihalf.com>
24338Date: Fri Jan 11 12:03:43 2008 +0100
24339
24340 MPC512X: Cleanup bus clock names.
24341
24342 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
24343
24344commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
24345Author: Grzegorz Bernacki <gjb@semihalf.com>
24346Date: Tue Jan 8 17:16:59 2008 +0100
24347
24348 MPC512X: Fixed typo in macro name.
24349
24350 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
24351
24352commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
24353Author: Grzegorz Bernacki <gjb@semihalf.com>
24354Date: Tue Jan 8 17:16:15 2008 +0100
24355
24356 ads5121: Added support for FDT.
24357
24358 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
24359
24360commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
24361Author: Wolfgang Denk <wd@denx.de>
24362Date: Sat Jan 12 01:05:50 2008 +0100
24363
24364 Coding Style cleanup; update CHANGELOG.
24365
24366 Signed-off-by: Wolfgang Denk <wd@denx.de>
24367
Wolfgang Denka10ff912008-01-12 01:05:50 +010024368commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
24369Author: Heiko Schocher <hs@denx.de>
24370Date: Fri Jan 11 15:15:17 2008 +0100
24371
24372 Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
24373
24374 Signed-off-by: Timur Tabi <timur@freescale.com>
24375 Signed-off-by: Heiko Schocher <hs@denx.de>
24376
24377commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
24378Author: Heiko Schocher <hs@denx.de>
24379Date: Fri Jan 11 15:15:16 2008 +0100
24380
24381 MUNICes: Set the right CFG_DEFAULT_MBAR value.
24382
24383 Signed-off-by: Heiko Schocher <hs@denx.de>
24384
24385commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
24386Author: Heiko Schocher <hs@denx.de>
24387Date: Fri Jan 11 15:15:15 2008 +0100
24388
24389 added the config File for the MUNICes board.
24390
24391 Signed-off-by: Heiko Schocher <hs@denx.de>
24392
24393commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
24394Author: Heiko Schocher <hs@denx.de>
24395Date: Fri Jan 11 15:15:14 2008 +0100
24396
24397 added basic support for the MUNICes board.
24398
24399 Signed-off-by: Heiko Schocher <hs@denx.de>
24400
24401commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
24402Author: Wolfgang Denk <wd@denx.de>
24403Date: Sat Jan 12 00:39:37 2008 +0100
24404
24405 Update CHANGELOG and MAINTAINERS files.
24406
24407 Signed-off-by: Wolfgang Denk <wd@denx.de>
24408
Wolfgang Denk3bb77fb2008-01-12 00:39:37 +010024409commit 5ba7390c3cb579172be66888a371707b47b5be4e
24410Author: Anatolij Gustschin <agust@denx.de>
24411Date: Fri Jan 11 02:15:02 2008 +0100
24412
24413 Fix compilation problem in common/cmd_bmp.c
24414
24415 common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
24416 isn't defined. This patch fix this.
24417
24418 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24419
24420commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
24421Author: Heiko Schocher <hs@denx.de>
24422Date: Fri Jan 11 01:12:09 2008 +0100
24423
24424 Fix defaultconfig for the mgcoge board.
24425
24426 Signed-off-by: Heiko Schocher <hs@denx.de>
24427
24428commit ac9db066b26935f31bff15c98168b19faeb603f3
24429Author: Heiko Schocher <hs@denx.de>
24430Date: Fri Jan 11 01:12:08 2008 +0100
24431
24432 Added support for the mgcoge board from keymile.
24433
24434 Signed-off-by: Heiko Schocher <hs@denx.de>
24435
24436commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
24437Author: Heiko Schocher <hs@denx.de>
24438Date: Fri Jan 11 01:12:07 2008 +0100
24439
24440 Enable SMC microcode relocation patch for SMC1.
24441
24442 Signed-off-by: Heiko Schocher <hs@denx.de>
24443
24444commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
24445Author: Heiko Schocher <hs@denx.de>
24446Date: Fri Jan 11 01:12:06 2008 +0100
24447
24448 Added support for the mgsuvd board from keymile.
24449
24450 Signed-off-by: Heiko Schocher <hs@denx.de>
24451
24452commit bf05293973b348f6946c9df92cd3c65ece42d0be
24453Author: James Yang <james.yang@freescale.com>
24454Date: Thu Jan 10 16:02:07 2008 -0600
24455
24456 Fix 64-bit vsprintf.
24457
24458 There were some size and unsigned problems.
24459 Also add support for "ll" size modifier in format string like glibc
24460
24461 Signed-off-by: James Yang <James.Yang@freescale.com>
24462 Acked-by: Jon Loeliger <jdl@freescale.com>
24463
24464commit 92fa37eac530860643afa26ae347af3d23d67309
24465Author: Larry Johnson <lrj@acm.org>
24466Date: Wed Jan 9 12:42:35 2008 -0500
24467
24468 Remove superfluous preprocessor conditionals from LM73 driver
24469
24470 (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
24471
24472 (2) Use conditional Makefile.o.
24473
24474 Signed-off-by: Larry Johnson <lrj@acm.org>
24475
24476commit efc6f447c1b940d1650c4b854c5598a595ddc3da
24477Author: Guennadi Liakhovetski <lg@denx.de>
24478Date: Thu Jan 10 17:59:07 2008 +0100
24479
24480 Add support for the TK885D baseboard from TELE-DATA
24481
24482 The TK885D board uses a TQM885D module from TQ, this port adds an
24483 own configuration file and adds a last_stage_init() method to
24484 configure the two PHYs, depending on the phy_auto_nego environment
24485 variable.
24486
24487 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24488
24489commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
24490Author: Kumar Gala <galak@kernel.crashing.org>
24491Date: Thu Jan 10 02:22:05 2008 -0600
24492
24493 Fix compiler warning
24494
24495 main.c: In function 'readline_into_buffer':
24496 main.c:927: warning: unused variable 'p_buf'
24497
24498 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24499
24500commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
24501Author: Anatolij Gustschin <agust@denx.de>
24502Date: Fri Jan 11 14:30:01 2008 +0100
24503
24504 Add Fujitsu CoralP/Lime video driver
24505
24506 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24507 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
24508
24509commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
24510Author: Anatolij Gustschin <agust@denx.de>
24511Date: Fri Jan 11 02:39:47 2008 +0100
24512
24513 Fix video console newline and carriage return handling
24514
24515 Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
24516 are not displayed correctly. This is an attempt to fix
24517 this issue. Also add carriage return handling.
24518
24519 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24520 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
24521
24522commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
24523Author: Stefan Roese <sr@denx.de>
24524Date: Fri Jan 11 15:53:58 2008 +0100
24525
24526 ppc4xx: Fix sdram init on Sequoia boards
24527
24528 Clear possible errors in MCSR resulting from data-eye-search.
24529 If not done, then we could get an interrupt later on when
24530 exceptions are enabled.
24531
24532 Signed-off-by: Stefan Roese <sr@denx.de>
24533
24534commit d610a60730b7464f6f659db49d264d89a7c71061
24535Author: Anatolij Gustschin <agust@denx.de>
24536Date: Fri Jan 11 15:31:09 2008 +0100
24537
24538 ppc4xx: Rework Lime support for lwmon5
24539
24540 Rework Lime support for lwmon5 using new video driver
24541
24542 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24543
24544commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
24545Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24546Date: Fri Jan 11 14:55:16 2008 +0100
24547
24548 ppc4xx: Update PMC440 config file
24549
24550 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24551
24552commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
24553Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24554Date: Fri Jan 11 14:55:08 2008 +0100
24555
24556 ppx4xx: Fix sdram init on PMC440 boards
24557
24558 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24559
24560commit 061aad4d320dddce26247699dcf2875ee2ea1366
24561Author: Dave Liu <r63238@freescale.com>
24562Date: Thu Jan 10 23:09:33 2008 +0800
24563
24564 mpc83xx: Fix the bug of 266MHz data rate DDR
24565
24566 The DDR doesn't work on the 266MHz data rate,
24567 the patch fix the bug.
24568
24569 Signed-off-by: Dave Liu <daveliu@freescale.com>
24570 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24571
24572commit ded08317ad9e340b887bf2eb46e9565a0f610a93
24573Author: Dave Liu <r63238@freescale.com>
24574Date: Thu Jan 10 23:08:26 2008 +0800
24575
24576 mpc83xx: Make the code more readable
24577
24578 Format the code, make it more readable
24579
24580 Signed-off-by: Dave Liu <daveliu@freescale.com>
24581 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24582
24583commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
24584Author: Dave Liu <r63238@freescale.com>
24585Date: Thu Jan 10 23:07:23 2008 +0800
24586
24587 mpc83xx: Reduce the latency of DDR
24588
24589 Reduce the AL from 2 to 1 clock to improve the performance.
24590
24591 Signed-off-by: Dave Liu <daveliu@freescale.com>
24592 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24593
24594commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
24595Author: Dave Liu <r63238@freescale.com>
24596Date: Thu Jan 10 23:06:05 2008 +0800
24597
24598 mpc83xx: Fix the wrong definition of MPC8315E
24599
24600 According to the latest user manual of MPC8315E,
24601 1) The SVCOD of HRCWL is different than 837x
24602 2) The SCCR has changes
24603
24604 Signed-off-by: Dave Liu <daveliu@freescale.com>
24605 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24606
24607commit ec2638ea08a537a1bd409db873aaaa33a053ebae
24608Author: Dave Liu <r63238@freescale.com>
24609Date: Thu Jan 10 23:05:00 2008 +0800
24610
24611 mpc83xx: Fix the typo in mpc83xx.h
24612
24613 The SPCR about TSEC priority is wrong.
24614
24615 Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
24616 Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
24617 Signed-off-by: Dave Liu <daveliu@freescale.com>
24618 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24619
24620commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
24621Author: Dave Liu <r63238@freescale.com>
24622Date: Thu Jan 10 23:04:13 2008 +0800
24623
24624 mpc83xx: Fix the typo in global data struct
24625
24626 Fix the typo in global_data.h
24627
24628 Signed-off-by: Dave Liu <daveliu@freescale.com>
24629 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24630
24631commit 2c5b48fc205c3e2752910da8f39209ed075929e5
24632Author: Dave Liu <r63238@freescale.com>
24633Date: Thu Jan 10 23:03:03 2008 +0800
24634
24635 mpc83xx: Remove cache config from config.h
24636
24637 clean up the cache config from configs.h of board
24638
24639 Signed-off-by: Dave Liu <daveliu@freescale.com>
24640 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24641
24642commit fab6f556bbbbd1bb35a5433161f7f173c18df559
24643Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24644Date: Wed Jan 9 20:57:47 2008 +0300
24645
24646 mpc83xx: add support for the MPC8360E-RDK
24647
24648 This is MPC8360E based board with:
24649 - 256MB fixed SDRAM;
24650 - 8MB Intel Strata NOR flash;
24651 - StMICRO 64MiB NAND flash;
24652 - two 10/100/1000 ethernet ports connected via Broadcom
24653 BCM5481 PHYs;
24654 - two 10/100 ethernet ports connected via National
24655 DP83848 PHYs;
24656 - one PCI and one miniPCI slots;
24657 - four serial ports (two NS16550-compatible, two UCCs);
24658 - four USB ports working through MPC8360E "FHCI" USB controller;
24659 - Fujitsu MB86277 graphics controller;
24660 - Analog to Digital Converter/Touchscreen controller, AD7843
24661 connected to SPI.
24662
24663 Features not supported in this patch are:
24664 - StMICRO 64MiB NAND flash (patch sent);
24665 - MINT framebuffer initialization (patch is pending);
24666 - Fetching production information from the EEPROM via I2C;
24667 - FHCI USB;
24668 - Two slow UCCs used as RS-485 UARTs.
24669
24670 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24671 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24672
24673commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
24674Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24675Date: Wed Jan 9 20:57:40 2008 +0300
24676
24677 mpc83xx: add "fsl, qe" compatible fixups
24678
24679 New device trees will use "fsl,qe" compatible properties.
24680
24681 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24682 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24683
24684commit 977b57583a7c34010e566a09a679ec3c1836f996
24685Author: Kim Phillips <kim.phillips@freescale.com>
24686Date: Wed Jan 9 15:24:06 2008 -0600
24687
24688 mpc83xx: add missing CONFIG_HAS_ETH0 defines
24689
24690 the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
24691 is defined; add the define to the missing board configs.
24692
24693 Thanks to Emilian Medve for finding this.
24694
24695 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24696
24697commit b830b7f1635984ba607219fcbd78597c28eeb529
24698Author: Becky Bruce <bgill@freescale.com>
24699Date: Thu Jan 10 14:00:28 2008 -0600
24700
24701 86xx: Support 2GB DIMMs
24702
24703 Configure the number of bits used to address the banks inside the SDRAM
24704 device. The default register value of 0 means 2 bits to address 4 banks.
24705 Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
24706
24707 Signed-off-by: Becky Bruce <bgill@freescale.com>
24708
24709commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
24710Author: Niklaus Giger <niklausgiger@gmx.ch>
24711Date: Thu Jan 10 18:50:33 2008 +0100
24712
24713 ppc4xx: Make Sequoia boot vxWorks
24714
24715 vxWorks expects in
24716 TLB 0 a entry for the Machine Check interrupt
24717 TLB 1 a entry for the RAM
24718 TLB 2 a entry for the EBC
24719 TLB 3 a entry for the boot flash
24720
24721 After changing the baudrate to 9600 I had no problems to boot the
24722 vxWorks image as distributed by WindRiver (Revision 2.0/1 from
24723 June 18, 2007)
24724
24725 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24726
24727commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
24728Author: Larry Johnson <lrj@arlinx.com>
24729Date: Wed Jan 9 23:10:27 2008 -0500
24730
24731 ppc4xx: Fix dflush() to restore DVLIM register
24732
24733 Signed-off-by: Larry Johnson <lrj@acm.org>
24734
24735commit 252f60b068d1f94190b5bcfda169db582387e15e
24736Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24737Date: Thu Jan 10 03:52:44 2008 -0500
24738
24739 Nios2: remove common/cmd_bdinfo.c unused variable.
24740
24741 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24742 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
24743
24744commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
24745Author: Ben Warren <biggerbadderben@gmail.com>
24746Date: Wed Jan 9 18:15:53 2008 -0500
24747
24748 Fix Ethernet init() return codes
24749
24750 Change return values of init() functions in all Ethernet drivers to conform
24751 to the following:
24752
24753 >=0: Success
24754 <0: Failure
24755
24756 All drivers going forward should return 0 on success. Current drivers that
24757 return 1 on success were left as-is to minimize changes.
24758
24759 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24760 Acked-by: Stefan Roese <sr@denx.de>
24761 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24762 Acked-by: Kim Phillips <kim.phillips@freescale.com>
24763 Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
24764 Acked-By: Timur Tabi <timur@freescale.com>
24765
24766commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
24767Author: Wolfgang Denk <wd@denx.de>
24768Date: Thu Jan 10 00:55:14 2008 +0100
24769
24770 Coding Style cleanup; update CHANGELOG
24771
24772 Signed-off-by: Wolfgang Denk <wd@denx.de>
24773
Wolfgang Denkd3a65322008-01-10 00:55:14 +010024774commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
24775Author: Kim Phillips <kim.phillips@freescale.com>
24776Date: Wed Jan 9 16:56:54 2008 -0600
24777
24778 Add QE brg freq and correct qe bus freq fdt update code
24779
24780 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24781 Signed-off-by: Andy Fleming <afleming@freescale.com>
24782
24783commit 890dfef06c2d169a3356359596890754dfb8ee1c
24784Author: Andy Fleming <afleming@freescale.com>
24785Date: Wed Jan 9 16:34:51 2008 -0600
24786
24787 Remove cache config from ATUM8548 and sbc8548 configs
24788
24789 These boards weren't updated by Kumar's config patch because they
24790 weren't in the tree, yet.
24791
24792 Signed-off-by: Andy Fleming <afleming@freescale.com>
24793
24794commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
24795Author: Timur Tabi <timur@freescale.com>
24796Date: Mon Jan 7 13:31:19 2008 -0600
24797
24798 85xx: add ability to upload QE firmware
24799
24800 Define the layout of a binary blob that contains a QE firmware and instructions
24801 on how to upload it. Add function qe_upload_firmware() to parse the blob and
24802 perform the actual upload. Add command-line command "qe fw" to take a firmware
24803 blob in memory and upload it. Update ft_cpu_setup() on 85xx to create the
24804 'firmware' device tree node if U-Boot has uploaded a firmware. Fully define
24805 'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
24806
24807 Signed-off-by: Timur Tabi <timur@freescale.com>
24808
24809commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
24810Author: Kumar Gala <galak@kernel.crashing.org>
24811Date: Tue Jan 8 01:22:21 2008 -0600
24812
24813 85xx: Remove cache config from configs.h
24814
24815 Either use the standard defines in asm/cache.h or grab the information
24816 at runtime from the L1CFG SPR.
24817
24818 Also, minor cleanup in cache.h to make the code a bit more readable.
24819
24820 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24821
24822commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
24823Author: robert lazarski <robertlazarski@gmail.com>
24824Date: Fri Dec 21 10:39:27 2007 -0500
24825
24826 mpc85xx: Add support for ATUM8548 (updated)
24827
24828 Add support for Instituto Atlantico's ATUM8548 board
24829
24830 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
24831 Signed-off-by: Andy Fleming <afleming@freescale.com>
24832
24833commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
24834Author: robert lazarski <robertlazarski@gmail.com>
24835Date: Fri Dec 21 10:36:37 2007 -0500
24836
24837 mpc85xx: Add support for ATUM8548 (updated)
24838
24839 Add support for Instituto Atlantico's ATUM8548 board
24840
24841 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
24842
24843commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
24844Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
24845Date: Thu Dec 13 06:45:14 2007 -0600
24846
24847 mpc85xx: Add support for SBC8548 (updated)
24848
24849 Add support for Wind River's SBC8548 reference board.
24850
24851 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
24852
24853commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
24854Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
24855Date: Thu Dec 13 06:45:08 2007 -0600
24856
24857 mpc85xx: Add support for SBC8548 (updated)
24858
24859 Add support for Wind River's SBC8548 reference board.
24860
24861 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
24862 Signed-off by: Andy Fleming <afleming@freescale.com>
24863
24864commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
24865Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24866Date: Mon Oct 22 19:58:19 2007 +0400
24867
24868 MPC8568E-MDS: set up QE pario for UART1
24869
24870 To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
24871 be set up appropriately.
24872
24873 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24874
24875commit ad162249cb371e9e38971676f09be791e5f3cf4a
24876Author: Anton Vorontsov <avorontsov@ru.mvista.com>
24877Date: Mon Oct 22 18:12:46 2007 +0400
24878
24879 MPC8568E-MDS: reset UCCs to use them reliably
24880
24881 In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
24882 UCCs.
24883
24884 p.s Similar code exists in the Linux kernel board file (for capability
24885 reasons with older U-Boots), but should be removed some day.
24886
24887 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
24888
24889commit 2146cf56821c3364786ca94a7306008c5824b238
24890Author: Kumar Gala <galak@kernel.crashing.org>
24891Date: Wed Dec 19 01:18:15 2007 -0600
24892
24893 Reworked FSL Book-E TLB macros to be more readable
24894
24895 The old macros made it difficult to know what WIMGE and perm bits
24896 were set for a TLB entry. Actually use the bit masks for these items
24897 since they are only a single bit.
24898
24899 Also moved the macros into mmu.h out of e500.h since they aren't specific
24900 to e500.
24901
24902 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24903
24904commit 1d47273d46925929f8f2c1913cd96d7257aade88
24905Author: Kumar Gala <galak@kernel.crashing.org>
24906Date: Tue Dec 18 23:21:51 2007 -0600
24907
24908 Use FSL Book-E MMU macros from Linux Kernel
24909
24910 Grab the FSL Book-E MAS register macros from Linux. Also added
24911 defines for page sizes up to 4TB and removed SHAREN since it doesnt
24912 really exist.
24913
24914 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24915
24916commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
24917Author: Andy Fleming <afleming@freescale.com>
24918Date: Wed Jan 9 13:51:32 2008 -0600
24919
24920 Fix my own merge stupidity
24921
24922 Way back in August I merged Heiko's patch:
24923 566a494f592: [PCS440EP] upgrade the PCS440EP board
24924
24925 with Jon's CONFIG_COMMANDS patches.
24926
24927 This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
24928
24929 However, in the process, I left out some of Heiko's good changes.
24930
24931 Now Heiko's and Jon's patches are properly merged in fat_register_device()
24932
24933 Signed-off-by: Andy Fleming <afleming@freescale.com>
24934
24935commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
24936Author: James Yang <James.Yang@freescale.com>
24937Date: Wed Jan 9 11:17:49 2008 -0600
24938
24939 Expose parse_line() globally.
24940
24941 Add new function readline_into_buffer() that allows the
24942 output of readline to be put into a pointer to char buffer.
24943
24944 This refactoring allows other functions besides the
24945 main command loop to also use the same input mechanism.
24946
24947 Signed-off-by: James Yang <James.Yang@freescale.com>
24948 Acked-by: Jon Loeliger <jdl@freescale.com>
24949
24950commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
24951Author: Guennadi Liakhovetski <lg@denx.de>
24952Date: Wed Jan 9 01:15:25 2008 +0100
24953
24954 trivial: fix consequences of a bad merge
24955
24956 Fix what looks like a merge artifact.
24957
24958 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24959
24960commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
24961Author: Zhang Wei <wei.zhang@freescale.com>
24962Date: Thu Jan 3 10:51:15 2008 +0800
24963
24964 Add Ctrl combo key support to usb keyboard driver.
24965
24966 Ctrl combo key support is added, which is very useful to input Ctrl-C
24967 for interrupt current job.
24968 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
24969 key input when tstc() is called.
24970
24971 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
24972
24973commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
24974Author: Marcel Ziswiler <marcel@ziswiler.com>
24975Date: Sun Dec 30 03:30:56 2007 +0100
24976
24977 fix various comments
24978
24979 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24980
24981commit 7817cb2083d982923752fe0f12b67c0e7c09a027
24982Author: Marcel Ziswiler <marcel@ziswiler.com>
24983Date: Sun Dec 30 03:30:46 2007 +0100
24984
24985 fix comments with new drivers organization
24986
24987 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24988
24989commit a9b410dc7d2a4721c408b13abfc037988150f145
24990Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
24991Date: Fri Dec 28 12:50:59 2007 +0900
24992
24993 Remove the obsolete terse version of do_mii()
24994
24995 We now have more useful version of do_mii() and everybody use it.
24996 Gerald Van Baren says:
24997
24998 > When I originally wrote the mii command 6(!) years ago, I wrote a
24999 > verbose version that printed human readable decomposition of the flags,
25000 > etc., and a terse one that didn't print as much stuff and thus had a
25001 > smaller memory footprint.
25002 >
25003 > It sounds like the terse version has withered and died, apparently
25004 > people are only using the verbose version (which is very understandable,
25005 > I do myself).
25006
25007 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
25008 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25009
25010commit 01c687aa6e065bd4faf80f723361e798941dd6b0
25011Author: Mike Frysinger <vapier@gentoo.org>
25012Date: Thu Dec 27 13:42:56 2007 -0500
25013
25014 Do not reference sha1.c when building mkimage.
25015
25016 remove sha1.o from mkimage linking since it isn't actually used.
25017
25018 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
25019
25020commit b9173af73e524d37c812f210173cf83385c5171a
25021Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
25022Date: Thu Dec 27 15:39:54 2007 +0900
25023
25024 common/cmd_mii.c: Add sanity argc check
25025
25026 If type mii command without arguments, we suffer from uninitialized argv[]
25027 entries; for example we MIPS get stuck by TLB error.
25028
25029 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
25030
25031commit 500856eb1707ed17d9204baa61dd59948d3b2899
25032Author: Rafal Jaworowski <raj@semihalf.com>
25033Date: Wed Jan 9 19:39:36 2008 +0100
25034
25035 API for external applications.
25036
25037 This is an API for external (standalone) applications running on top of
25038 U-Boot, and is meant to be more extensible and robust than the existing
25039 jumptable mechanism. It is similar to UNIX syscall approach. See api/README
25040 for more details.
25041
25042 Included is the demo application using this new framework (api_examples).
25043
25044 Please note this is still an experimental feature, and is turned off by
25045 default.
25046
25047 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
25048
Wolfgang Denk3bb77fb2008-01-12 00:39:37 +010025049commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
25050Author: Jon Loeliger <jdl@freescale.com>
25051Date: Wed Jan 9 12:14:55 2008 -0600
25052
25053 86xx: Remove cache config from configs.h
25054
25055 Just use the standard defines in asm/cache.h.
25056
25057 Signed-off-by: Jon Loeliger <jdl@freescale.com>
25058
Wolfgang Denkd3a65322008-01-10 00:55:14 +010025059commit 26a41790f8eba19ad450e18ae91351daf485b3e2
25060Author: Rafal Jaworowski <raj@semihalf.com>
25061Date: Wed Jan 9 18:05:27 2008 +0100
25062
25063 Globalize envmatch()
25064
25065 The newly introduced API (routines related to env vars) will need to call
25066 it.
25067
25068 Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
25069
Wolfgang Denk3bb77fb2008-01-12 00:39:37 +010025070commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
25071Author: Jon Loeliger <jdl@freescale.com>
25072Date: Fri Jan 4 12:07:27 2008 -0600
25073
25074 Convert MPC8610HPCD to use libfdt.
25075
25076 Assumes the presence of the aliases node in the DTS to
25077 locate the pci and serial nodes for fixups.
25078
25079 Use consistent fdtaddr and fdtfile in environment variables.
25080
25081 Signed-off-by: Jon Loeliger <jdl@freescale.com>
25082
25083commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
25084Author: Jon Loeliger <jdl@freescale.com>
25085Date: Fri Jan 4 11:58:23 2008 -0600
25086
25087 8610: Fix lingering compile warnings.
25088
25089 Turn off DEBUG.
25090
25091 Signed-off-by: Jon Loeliger <jdl@freescale.com>
25092
Wolfgang Denkd3a65322008-01-10 00:55:14 +010025093commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
25094Author: Wolfgang Denk <wd@denx.de>
25095Date: Wed Jan 9 15:14:46 2008 +0100
25096
25097 Coding Style cleanup, update CHANGELOG
25098
25099 Signed-off-by: Wolfgang Denk <wd@denx.de>
25100
Wolfgang Denk6007f322008-01-09 15:14:46 +010025101commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
25102Author: Mike Frysinger <vapier@gentoo.org>
25103Date: Tue Dec 18 04:29:55 2007 -0500
25104
25105 fix easylogo on big endian dev systems
25106
25107 didnt realize how out of shape easylogo actually was until i tried using it.
25108 this patch does byte swapping as need be on the input tga header since the tga
25109 is in little endian but the host could just as well be big endian. i didnt
25110 bother using bswap macros or such stuff from system headers as nothing in
25111 POSIX dictates byte swapping functionality.
25112
25113 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
25114
25115commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
25116Author: Mike Frysinger <vapier@gentoo.org>
25117Date: Tue Dec 18 03:23:25 2007 -0500
25118
25119 cleanup easylogo
25120
25121 - make the Makefile not suck
25122 - include proper headers for prototypes
25123 - fix obvious broken handling of strchr() when handling '.' in filenames
25124
25125 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
25126
25127commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
25128Author: raptorbrino@aim.com <raptorbrino@aim.com>
25129Date: Thu Dec 13 21:23:28 2007 -0500
25130
25131 Fix build problems under Cygwin
25132
25133 This patch allows u-boot to build without error in a cygwin
25134 environment. Cygwin does not define __u64 in it's
25135 include/asm/types.h file. The -idirafter flag in the u-boot
25136 build causes the inclusion of the cygwin types.h file as opposed
25137 to u-bot/include/asm/types.h file which does define __u64.
25138 Subsequently, sha1.c compile fails due to unknown symbol.
25139
25140 Signed-off-by: Brian Miller <raptorbrino@netscape.net>
25141
25142commit 43ef1c381f9195504a2488f5cb909227eb97d475
25143Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
25144Date: Fri Nov 30 17:29:59 2007 +0100
25145
25146 cmd_bmp: Add support for displaying gzip compressed bmps
25147
25148 The existing code can show information about a gzip compressed BMP
25149 image, but can't actually display it.
25150
25151 Therefore, move the decompression code out of bmp_info() and use it in
25152 bmp_display() as well in order to display a compressed BMP image.
25153
25154 Also, clean things up a bit and fix a memory leak while we're at it.
25155
25156 [hskinnemoen@atmel.com: a bit of refactoring]
25157 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
25158
25159commit d197ffd8172c6fdef38733424640a9a47295d6e9
25160Author: Guennadi Liakhovetski <lg@denx.de>
25161Date: Thu Nov 29 21:15:56 2007 +0100
25162
25163 Fix and optimize MII operations on FEC (MPC8xx) controllers
25164
25165 This patch fixes several issues at least on a MPC885 based system with two
25166 FEC interfaces used in MII mode.
25167
25168 1. PHY discovery should first read PHY_PHYIDR2 register and only then
25169 PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
25170 otherwise the values read are wrong. Also notice, that PHY discovery
25171 cannot work on MPC88x / MPC87x in setups with both FECs active at all
25172 in its present form, because for both interfaces the registers from FEC
25173 1 are used to communicate over MII.
25174
25175 2. Remove code duplication for resetting the FEC by isolating it into a
25176 separate function.
25177
25178 3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
25179
25180 4. Optimize mii_init() to only reset the FEC 1 controller once.
25181
25182 5. Fix a typo in mii_init() using index i instead of j thus potentially
25183 leading to unpredictable results.
25184
25185 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25186
25187commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
25188Author: Guennadi Liakhovetski <lg@denx.de>
25189Date: Tue Nov 20 13:14:20 2007 +0100
25190
25191 Fix endianness conversions in rtl8169 driver
25192
25193 It is unclear on what platforms this driver has been tested, since
25194 noone up to now defines CONFIG_RTL8169 in the board configuration
25195 header. Now it has been fixed for a big-endian mpc8241 based
25196 linkstation platform. This patch presents the necessary endianness
25197 conversion fixes.
25198
25199 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25200
Wolfgang Denkd3a65322008-01-10 00:55:14 +010025201commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
25202Author: Zhang Wei <wei.zhang@freescale.com>
25203Date: Thu Jan 3 10:51:15 2008 +0800
25204
25205 Add Ctrl combo key support to usb keyboard driver.
25206
25207 Ctrl combo key support is added, which is very useful to input Ctrl-C
25208 for interrupt current job.
25209 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
25210 key input when tstc() is called.
25211
25212 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
25213 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25214
Wolfgang Denk6007f322008-01-09 15:14:46 +010025215commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
25216Author: Wolfgang Denk <wd@denx.de>
25217Date: Wed Jan 9 13:43:38 2008 +0100
25218
25219 Coding Style clenaup; update CHANGELOG
25220
25221 Signed-off-by: Wolfgang Denk <wd@denx.de>
25222
Wolfgang Denk07eb0262008-01-09 13:43:38 +010025223commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
25224Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25225Date: Thu Dec 27 17:13:11 2007 +0100
25226
25227 Remove bit swapping in Xilinx Spartan bitfile loading
25228
25229 This patch removes the unnecessary bit swapping when
25230 booting .bit files with the 'fpga loadb' command.
25231
25232 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25233
25234commit 437fc7327f0611f82937858f2d80e4cd61b40984
25235Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25236Date: Thu Dec 27 17:13:05 2007 +0100
25237
25238 Fix MSB check in Xilinx Spartan slave serial mode
25239
25240 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25241
25242commit 3bff4ffa33729a42645e328a21e8d16488872958
25243Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25244Date: Thu Dec 27 17:12:56 2007 +0100
25245
25246 Add new Xilinx Spartan FPGA types
25247
25248 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25249
25250commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
25251Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25252Date: Thu Dec 27 17:12:43 2007 +0100
25253
25254 Add pre and post configuration callbacks for Spartan FPGAs
25255
25256 This patch adds a post configuration callback for Spartan2/3 FPGAs.
25257 pre and post configuration callback are now optional and
25258 not called when the function pointer is set to NULL.
25259
25260 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25261
25262commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
25263Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25264Date: Thu Dec 27 17:12:34 2007 +0100
25265
25266 Improve configuration of FPGA subsystem
25267
25268 This patch removes the FPGA subsystem configuration through
25269 the CONFIG_FPGA bitmask configuration option.
25270
25271 See README for the new options:
25272
25273 CONFIG_FPGA,
25274 CONFIG_FPGA_<vendor>,
25275 CONFIG_FPGA_<family>
25276
25277 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25278
25279commit 95c6bc7d4a3588b452baca610f8c795a83630477
25280Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25281Date: Thu Dec 27 16:55:17 2007 +0100
25282
25283 Add Epson RX8025 RTC support
25284
25285 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25286
25287commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
25288Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25289Date: Thu Dec 27 16:57:23 2007 +0100
25290
25291 serial: Make default_serial_console() a weak function
25292
25293 With this patch it is possible to reimplement default_serial_console()
25294 in board specific code. This will be done in the upcomming PMC440
25295 U-Boot port. This also allows the lwmon board maintainer to
25296 remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
25297
25298 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25299
25300commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
25301Author: Harald Welte <laforge@openmoko.org>
25302Date: Wed Dec 19 14:14:47 2007 +0100
25303
25304 add 'terminal program' functionality
25305
25306 This patch adds a 'cu' like serial terminal command to u-boot
25307 using which you can access other serial ports from the system console.
25308
25309 OpenMoko uses this in their Neo1973 phones to get access to the GSM
25310 Modem and GPS chip from the bootloader.
25311
25312 Signed-off-by: Harald Welte <laforge@openmoko.org>
25313
25314commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
25315Author: Harald Welte <laforge@openmoko.org>
25316Date: Wed Dec 19 14:12:53 2007 +0100
25317
25318 Re-introduce the 'nand read.oob' and 'nand write.oob' commands
25319 that used to exist with the legacy NAND code
25320
25321 Signed-off-by: Harald Welte <laforge@openmoko.org>
25322
25323commit f540c42d9564854b19ce9bbb70affe172529fe70
25324Author: Harald Welte <laforge@openmoko.org>
25325Date: Wed Dec 19 14:09:58 2007 +0100
25326
25327 Fix building with CRAMFS but not JFFS2 support
25328
25329 Signed-off-by: Harald Welte <laforge@openmoko.org>
25330
25331commit 23d0baf967fecdaf1804f045f6339337c5607eec
25332Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25333Date: Sat Dec 22 15:52:58 2007 +0100
25334
25335 Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
25336
25337 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25338 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25339
25340commit 23776ff292966a85d811126933830bed48211826
25341Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25342Date: Tue Dec 11 10:53:12 2007 +0100
25343
25344 ARM: support board-specific ethernet PHY init
25345
25346 Add until the new phylib will be arrived
25347
25348 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25349
25350commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
25351Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25352Date: Sat Dec 8 16:34:08 2007 +0100
25353
25354 IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
25355
25356 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25357
25358commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
25359Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25360Date: Sun Dec 9 11:01:10 2007 +0100
25361
25362 Add missing file in gitignore and comments
25363
25364 based on Linux source tree's .gitignore files
25365
25366 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25367
25368commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
25369Author: Wolfgang Denk <wd@denx.de>
25370Date: Wed Jan 9 11:36:21 2008 +0100
25371
25372 Coding Style cleanup, update CHANGELOG
25373
25374 Signed-off-by: Wolfgang Denk <wd@denx.de>
25375
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010025376commit b2e2142c500c48a57f18f9dd30e66c13caea0971
25377Author: Stefan Roese <sr@denx.de>
25378Date: Wed Jan 9 10:38:58 2008 +0100
25379
25380 POST: Execute SPR test after relocation
25381
25382 On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
25383 self modifying code and this doesn't work with stack in d-cache, since
25384 I can't move the code from d-cache to i-cache. We move the SPR test to
25385 be executed a little later, after relocation. Then stack is located in
25386 SDRAM and this self-modifying code is no problem anymore.
25387
25388 Signed-off-by: Stefan Roese <sr@denx.de>
25389
25390commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
25391Author: Stefan Roese <sr@denx.de>
25392Date: Wed Jan 9 10:28:20 2008 +0100
25393
25394 ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
25395
25396 This patch configures the LWMON5 port to use d-cache as init-ram and
25397 the unused GPT0_COMP6 as POST WORD storage.
25398
25399 Signed-off-by: Stefan Roese <sr@denx.de>
25400
25401commit 1754f50b710194f886b6f2831803d8960171a14d
25402Author: Stefan Roese <sr@denx.de>
25403Date: Wed Jan 9 10:25:46 2008 +0100
25404
25405 ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
25406
25407 The privious 4xx POST implementation only supported storing the POST
25408 WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
25409 we need to store the POST WORD in some other non volatile location.
25410 This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
25411 a location.
25412
25413 Signed-off-by: Stefan Roese <sr@denx.de>
25414
25415commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
25416Author: Stefan Roese <sr@denx.de>
25417Date: Wed Jan 9 10:23:16 2008 +0100
25418
25419 ppc4xx: Add 44x cache locking to better support init-ram in d-cache
25420
25421 This patch adds support for locking the init-ram/stack in d-cache,
25422 so that other regions may use d-cache as well
25423
25424 Note, that this current implementation locks exactly 4k of d-cache,
25425 so please make sure that you don't define a bigger init-ram area. Take
25426 a look at the lwmon5 440EPx implementation as a reference.
25427
25428 Signed-off-by: Stefan Roese <sr@denx.de>
25429
25430commit 0ddb89601a8d29e808db450366752ffdc6267c53
25431Author: Wolfgang Denk <wd@denx.de>
25432Date: Wed Jan 9 10:16:33 2008 +0100
25433
25434 Fix memset bug in ext2fs_read_file()
25435
25436 ext2fs_read_file() had the function arguments swapped.
25437
25438 Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
25439
25440 Signed-off-by: Wolfgang Denk <wd@denx.de>
25441
25442commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
25443Author: Markus Klotzbücher <mk@denx.de>
25444Date: Tue Jan 5 08:17:15 1988 +0100
25445
25446 Fix problems with usb storage devices on MPC5200 /TQM5200
25447
25448 The MPC5200 OHCI controller operates in big endian, so
25449 CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
25450
25451 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25452
25453commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
25454Author: Wolfgang Denk <wd@denx.de>
25455Date: Tue Jan 8 22:58:27 2008 +0100
25456
25457 Fix compile problem with new env code.
25458
25459 Signed-off-by: Wolfgang Denk <wd@denx.de>
25460
25461commit 64b3727b9779d86127cd576e392a987de5ebb9fd
25462Author: Markus Klotzbücher <mk@denx.de>
25463Date: Tue Nov 27 10:23:20 2007 +0100
25464
25465 tools: fix fw_printenv tool to compile again
25466
25467 This patch updates the fw_printenv/fw_setenv userspace tool to include
25468 the correct MTD header in order to compile against current kernel
25469 headers. Backward compatibility is preserved by introducing an option
25470 MTD_VERSION which can be set to "old" for compilation using the old MTD
25471 headers. Along with this a number of warnings are fixed.
25472
25473 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25474
25475commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
25476Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25477Date: Tue Jan 8 15:40:09 2008 +0100
25478
25479 ppc4xx: assign PCI interrupts on seuqoia boards
25480
25481 Some operating systems rely on assigned PCI interrupts.
25482
25483 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25484
25485commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
25486Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25487Date: Tue Jan 8 15:50:49 2008 +0100
25488
25489 ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
25490
25491 This patch allows the use of 4xx interrupt vector number defines
25492 in board specific code outside cpu/ppc4xx.
25493
25494 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25495
25496commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
25497Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25498Date: Tue Jan 8 15:39:01 2008 +0100
25499
25500 ppc4xx: Fix UIC2 vector number base
25501
25502 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25503
25504commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
25505Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25506Date: Tue Jan 8 12:49:58 2008 +0100
25507
25508 ppc4xx: Update PLB/PCI divider for PMC440 board
25509
25510 This patch updates the PLB/PCI divider when running at
25511 400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
25512
25513 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25514
25515commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
25516Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25517Date: Tue Jan 8 11:13:09 2008 +0100
25518
25519 ppc4xx: Disable error message when no NAND chip is installed on PMC440
25520
25521 Add CFG_NAND_QUIET_TEST option to disable error message when
25522 no NAND chip is installed on PMC440 boards.
25523
25524 Disable a couple of config defines that are only used for NAND_U_BOOT.
25525
25526 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25527
Wolfgang Denkd3a65322008-01-10 00:55:14 +010025528commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
25529Author: Wolfgang Denk <wd@denx.de>
25530Date: Tue Jan 8 22:58:27 2008 +0100
25531
25532 Fix compile problem with new env code.
25533
25534 Signed-off-by: Wolfgang Denk <wd@denx.de>
25535
25536commit 6de66b35426312a21174a9bf0576a094e2904bea
25537Author: Markus Klotzbücher <mk@denx.de>
25538Date: Tue Nov 27 10:23:20 2007 +0100
25539
25540 tools: fix fw_printenv tool to compile again
25541
25542 This patch updates the fw_printenv/fw_setenv userspace tool to include
25543 the correct MTD header in order to compile against current kernel
25544 headers. Backward compatibility is preserved by introducing an option
25545 MTD_VERSION which can be set to "old" for compilation using the old MTD
25546 headers. Along with this a number of warnings are fixed.
25547
25548 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25549
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010025550commit ad3006fe7e84667021753b74247b0bafd97ba35f
25551Author: Gerald Van Baren <vanbaren@cideas.com>
25552Date: Mon Jan 7 23:47:32 2008 -0500
25553
25554 LIBFDT: use memmove() instead of memcpy()
25555
25556 This is partial patch from the DTC/libfdt
25557 commit 67b6b33b9b413a450a72135b5dc59c0a1e33e647
25558 Author: David Gibson <david@gibson.dropbear.id.au>
25559 Date: Wed Nov 21 11:56:14 2007 +1100
25560
25561 The patch also fixes one genuine bug caught by valgrind -
25562 _packblocks() in fdt_rw.c was using memcpy() where it should have been
25563 using memmove().
25564
25565 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25566
25567commit aec7135bc300e3340d18f203347ee00c5b5f68c0
25568Author: David Gibson <david@gibson.dropbear.id.au>
25569Date: Mon Dec 17 14:42:07 2007 +1100
25570
25571 libfdt: Add more documentation (patch the seventh)
25572
25573 This patch adds more documenting comments to libfdt.h. Specifically,
25574 these document the read/write functions (not including fdt_open_into()
25575 and fdt_pack(), for now).
25576
25577 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25578
25579commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
25580Author: David Gibson <david@gibson.dropbear.id.au>
25581Date: Mon Dec 17 14:41:52 2007 +1100
25582
25583 libfdt: Add more documentation (patch the sixth)
25584
25585 This patch adds some more documenting comments to libfdt.h.
25586 Specifically this documents all the write-in-place functions.
25587
25588 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
25589
25590commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
25591Author: Gerald Van Baren <vanbaren@cideas.com>
25592Date: Sat Dec 29 22:45:27 2007 -0500
25593
25594 Fine grained per property /chosen updating.
25595
25596 Implement a suggestion by Scott Wood to make the /chosen handling fine
25597 grained. Don't overwrite pre-existing properties on a per-property basis,
25598 so if /chosen exists but a necessary /chosen/property doesn't, it gets
25599 created. If a /chosen property exists, it is NOT overwritten unless the
25600 "force" flag is true.
25601
25602 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25603
25604commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
25605Author: Gerald Van Baren <vanbaren@cideas.com>
25606Date: Sat Jan 5 15:33:29 2008 -0500
25607
25608 Improve the FDT help message.
25609
25610 Add a note that "fdt copy" makes the new address active.
25611 Remove most of the extra hints at the end of the fdt help.
25612
25613 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25614
25615commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
25616Author: Gerald Van Baren <vanbaren@cideas.com>
25617Date: Sat Jan 5 14:52:04 2008 -0500
25618
25619 Support setting FDT properties with optional values.
25620
25621 Fix a bug found and documented by Bartlomiej Sieka where the optional
25622 value on "fdt set <path> <prop> [<val>]" wasn't optional.
25623
25624 => fdt mknode / testnode
25625 => fdt print /testnode
25626 testnode {
25627 };
25628 => fdt set /testnode testprop
25629 => fdt print /testnode
25630 testnode {
25631 testprop;
25632 };
25633
25634 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
25635
25636commit 22fb2246df91bfc840d87f0c5910818bad55577a
25637Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25638Date: Fri Dec 28 11:56:30 2007 +0100
25639
25640 Add fdt_find_and_setprop() to fdt_support.h
25641
25642 fdt_find_and_setprop() is used by several 4xx boards and it's
25643 missing in the appropriate header. This patch eliminates a
25644 warning when building U-Boot for such boards.
25645
25646 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25647 Acked-by: Stefan Roese <sr@denx.de>
25648
25649commit 802b769bac17b0560d3535a42c502469ee190cd1
25650Author: Stefan Roese <sr@denx.de>
25651Date: Tue Jan 8 18:39:30 2008 +0100
25652
25653 ppc4xx: Return 0 on success in 4xx ethernet driver
25654
25655 Signed-off-by: Stefan Roese <sr@denx.de>
25656
25657commit 6775c68683a53c7abc778774641aac6f833a2cbf
25658Author: Kim Phillips <kim.phillips@freescale.com>
25659Date: Tue Jan 8 09:59:49 2008 -0600
25660
25661 mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
25662
25663 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25664
25665commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
25666Author: Kim Phillips <kim.phillips@freescale.com>
25667Date: Thu Dec 20 16:28:34 2007 -0600
25668
25669 mpc83xx: rm remaining FLAT_TREE code
25670
25671 ..in board pci.c files
25672
25673 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25674
25675commit b3458d2cd55d01732e30a76d898afd99e871cd67
25676Author: Kim Phillips <kim.phillips@freescale.com>
25677Date: Thu Dec 20 15:57:28 2007 -0600
25678
25679 mpc83xx: remove FLAT_TREE code
25680
25681 need to rm it from pci code, too!
25682
25683 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25684
25685commit 5b8bc606c61456566af6912f818a153b6b06f242
25686Author: Kim Phillips <kim.phillips@freescale.com>
25687Date: Thu Dec 20 14:09:22 2007 -0600
25688
25689 mpc83xx: convert to using do_fixup_*()
25690
25691 convert to using simpler mpc85xx style fdt update code; streamline by
25692 eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
25693 the old school FLAT_TREE code from 83xx (since the sbc8349 was just
25694 converted over to using libfdt).
25695
25696 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25697
25698commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
25699Author: Paul Gortmaker <paul.gortmaker@windriver.com>
25700Date: Thu Dec 20 12:58:51 2007 -0500
25701
25702 sbc8349: enable libfdt by default on WRS SBC8349 board.
25703
25704 Make libfdt the default for the WRS SBC8349 board.
25705 Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
25706 done for the other 83xx based boards. Also fix a typo in CONFIG_PCI.
25707
25708 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
25709
25710commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
25711Author: Paul Gortmaker <paul.gortmaker@windriver.com>
25712Date: Thu Dec 20 12:58:16 2007 -0500
25713
25714 sbc8349: migrate board to libfdt
25715
25716 This adds libfdt support code for the Wind River sbc8349 board.
25717
25718 Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
25719 the other Freescale 83xx boards.
25720
25721 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
25722
25723commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
25724Author: Paul Gortmaker <paul.gortmaker@windriver.com>
25725Date: Thu Dec 20 12:56:19 2007 -0500
25726
25727 sbc8349: Remove board specific ECC code
25728
25729 ECC code is now shared for all 83xx boards, so remove board specific one.
25730 See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
25731
25732 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
25733
25734commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
25735Author: Kim Phillips <kim.phillips@freescale.com>
25736Date: Thu Dec 20 01:30:48 2007 -0600
25737
25738 mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
25739
25740 continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
25741
25742 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25743
25744commit ccf21c311e68d48399eff1e72936052885f6e3f7
25745Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
25746Date: Thu Dec 6 16:43:40 2007 +0100
25747
25748 Add support CONFIG_UEC_ETH3 in MPC83xx
25749
25750 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
25751
25752commit e6af9932d31171e35db880e7b2f29f903b1b7660
25753Author: Kumar Gala <galak@kernel.crashing.org>
25754Date: Mon Nov 26 11:00:54 2007 -0600
25755
25756 Remove CONFIG options related to OF that we dont use
25757
25758 The MPC8360E MDS config defined:
25759 CONFIG_OF_HAS_BD_T
25760 CONFIG_OF_HAS_UBOOT_ENV
25761
25762 Which we don't use or ever needed. This seems like copy-paste feature creep.
25763
25764 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25765
25766commit f602082b4b7ed4ee16432067cc67a0a24fedc715
25767Author: Kim Phillips <kim.phillips@freescale.com>
25768Date: Mon Dec 10 14:16:22 2007 -0600
25769
25770 mpc83xx: supress compiler warning
25771
25772 mpc8360emds.c: In function ‘ft_board_setup’:
25773 mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
25774 mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
25775
25776 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25777
25778commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
25779Author: Kim Phillips <kim.phillips@freescale.com>
25780Date: Tue Nov 27 14:17:29 2007 -0600
25781
25782 mpc83xx: fix remaining fdt_find_node_by_path references
25783
25784 rename to fdt_path_offset
25785
25786 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25787
25788commit 921d4b19ad1be704df58725485d9292dc0414adf
25789Author: Kim Phillips <kim.phillips@freescale.com>
25790Date: Mon Nov 19 12:30:09 2007 -0600
25791
25792 mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
25793
25794 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
25795 This change guarantees that the environment will be located on the
25796 first flash sector after the U-Boot image.
25797
25798 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25799
25800commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
25801Author: Kim Phillips <kim.phillips@freescale.com>
25802Date: Fri Nov 9 14:28:08 2007 -0600
25803
25804 mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
25805
25806 u-boot itself uses GMII mode on the 8360. Fix up UCC phy-connection-type
25807 properties in the device tree so the PHY gets configured for internal delay on
25808 RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
25809
25810 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25811
25812commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
25813Author: Dave Liu <r63238@freescale.com>
25814Date: Tue Sep 18 12:41:15 2007 +0800
25815
25816 mpc83xx: update the CREDITS and MAINTAINERS
25817
25818 update the CREDITS and MAINTAINERS.
25819
25820 Signed-off-by: Dave Liu <daveliu@freescale.com>
25821
25822commit b21add4b42af7b767448251b599b91066a160e0d
25823Author: Dave Liu <r63238@freescale.com>
25824Date: Tue Sep 18 12:40:21 2007 +0800
25825
25826 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
25827
25828 Add the MAINTAINER and MAKEALL entries for mpc837xemds
25829
25830 Signed-off-by: Dave Liu <daveliu@freescale.com>
25831
25832commit f8900ce9094c462355eb792eea264ff16ac8fd16
25833Author: Dave Liu <r63238@freescale.com>
25834Date: Tue Sep 18 12:38:53 2007 +0800
25835
25836 mpc83xx: Add the MPC837xEMDS board readme
25837
25838 Add the README.mpc837xemds to /doc
25839
25840 Signed-off-by: Dave Liu <daveliu@freescale.com>
25841
25842commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
25843Author: Dave Liu <r63238@freescale.com>
25844Date: Tue Sep 18 12:37:57 2007 +0800
25845
25846 mpc83xx: Add the support of MPC837xEMDS board
25847
25848 The MPC837xEMDS board support:
25849 * DDR2 400MHz hardcoded and SPD init
25850 * Local bus NOR Flash
25851 * I2C, UART, MII and RTC
25852 * eTSEC RGMII
25853 * PCI host
25854
25855 Signed-off-by: Dave Liu <daveliu@freescale.com>
25856
25857commit 555da61702771fe0f76f3de23b4e7590f3704161
25858Author: Dave Liu <r63238@freescale.com>
25859Date: Tue Sep 18 12:36:58 2007 +0800
25860
25861 mpc83xx: Add the support of MPC8315E SoC
25862
25863 The MPC8315E SoC including e300c3 core and new IP blocks,
25864 such as TDM, PCI Express and SATA controller.
25865
25866 Signed-off-by: Dave Liu <daveliu@freescale.com>
25867
25868commit 03051c3d35c9981ceaa059005660e699f3eacf1c
25869Author: Dave Liu <r63238@freescale.com>
25870Date: Tue Sep 18 12:36:11 2007 +0800
25871
25872 mpc83xx: Add the support of MPC837x SoC
25873
25874 The MPC837x SoC including e300c4 core and new IP blocks,
25875 such as SDHC, PCI Express and SATA controller.
25876
25877 Signed-off-by: Dave Liu <daveliu@freescale.com>
25878
25879commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
25880Author: Anton Vorontsov <avorontsov@ru.mvista.com>
25881Date: Wed Nov 14 18:54:53 2007 +0300
25882
25883 MPC8360E-MDS: configure and enable second UART
25884
25885 Despite user manual, BCSR9.7 is negated (high) on HRST, so
25886 UART2 is disabled. Fix that and configure QE pins properly.
25887
25888 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
25889
25890commit b2893e1fcb28fad8c8b317104df8cee0142c7631
25891Author: Timur Tabi <timur@freescale.com>
25892Date: Mon Nov 5 09:34:06 2007 -0600
25893
25894 83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
25895
25896 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
25897 currently-defined 83xx boards. This change guarantees that the environment
25898 will be located on the first flash sector after the U-Boot image.
25899
25900 Signed-off-by: Timur Tabi <timur@freescale.com>
25901 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25902
25903commit e05329516a13616b53240cd85b739217c2bf87f1
25904Author: Larry Johnson <lrj@acm.org>
25905Date: Fri Jan 4 13:27:02 2008 -0500
25906
25907 ppc4xx: Remove weak binding from common Denali data-eye search code
25908
25909 Now that there are no board-specific versions of
25910 "denali_core_search_data_eye()", the weak binding on the common version
25911 can be removed.
25912
25913 Signed-off-by: Larry Johnson <lrj@acm.org>
25914
25915commit 5ba576c01602fd328800a427964c36a0a05c5dce
25916Author: Stefan Roese <sr@denx.de>
25917Date: Sat Jan 5 09:13:46 2008 +0100
25918
25919 ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
25920
25921 Signed-off-by: Stefan Roese <sr@denx.de>
25922
25923commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
25924Author: Stefan Roese <sr@denx.de>
25925Date: Sat Jan 5 09:12:41 2008 +0100
25926
25927 ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
25928
25929 On Katmai the complete auto-calibration somehow doesn't seem to
25930 produce the best results, meaning optimal values for RQFD/RFFD.
25931 This was discovered by GDA using a high bandwidth scope,
25932 analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
25933 so now on Katmai "only" RFFD is auto-calibrated.
25934
25935 This patch also adds RDCC calibration as mentioned on page 7 of
25936 the AMCC PowerPC440SP/SPe DDR2 application note:
25937 "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
25938
25939 Signed-off-by: Stefan Roese <sr@denx.de>
25940
25941commit 49db47b8ae6afff2b898be312948ff501357dc80
25942Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25943Date: Wed Jan 2 16:48:42 2008 +0100
25944
25945 ppc4xx: Remove sdram.h from PMC440 board
25946
25947 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25948
25949commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
25950Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25951Date: Wed Jan 2 16:48:34 2008 +0100
25952
25953 ppc4xx: use common denali core defines and data eye search code for PMC440
25954
25955 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25956
25957commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
25958Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25959Date: Wed Jan 2 12:05:14 2008 +0100
25960
25961 ppc4xx: More cleanup for esd's LCD code
25962
25963 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25964
25965commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
25966Author: Stefan Roese <sr@denx.de>
25967Date: Fri Jan 4 12:00:01 2008 +0100
25968
25969 ppc4xx: Fix Sequoia NAND booting target
25970
25971 The Sequoia NAND booting target now uses the recently extracted
25972 cpu/ppc4xx/denali_data_eye.c file too.
25973
25974 Signed-off-by: Stefan Roese <sr@denx.de>
25975
25976commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
25977Author: Lawrence R. Johnson <lrj@acm.org>
25978Date: Thu Jan 3 15:02:02 2008 -0500
25979
25980 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
25981
25982 Signed-off-by: Larry Johnson <lrj@acm.org>
25983
25984commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
25985Author: Lawrence R. Johnson <lrj@acm.org>
25986Date: Fri Jan 4 02:11:56 2008 -0500
25987
25988 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
25989
25990 Note: this patch changes the configuration of some GPIO registers:
25991
25992 Register Old Value New Value
25993 --------------- ---------- ----------
25994 DCR GPIO0_TCR 0x0000000F 0x0000F0CF
25995 DCR GPIO0_TSRH 0x55005000 0x00000000
25996 DCR GPIO1_TCR 0xC2000000 0xE2000000
25997 DCR GPIO1_TSRL 0x0C000000 0x00200000
25998 DCR GPIO1_ISR2L 0x00050000 0x00110000
25999
26000 Signed-off-by: Larry Johnson <lrj@acm.org>
26001
26002commit 5ab884b254ca2e707ab50545cd705f30108cf491
26003Author: Lawrence R. Johnson <lrj@acm.org>
26004Date: Thu Jan 3 18:54:00 2008 -0500
26005
26006 ppc4xx: Add functionality to GPIO support
26007
26008 This patch makes two additions to GPIO support:
26009
26010 First, it adds function gpio_read_in_bit() to read the a bit from the
26011 GPIO Input Register (GPIOx_IR) in the same way that function
26012 gpio_read_out_bit() reads a bit from the GPIO Output Register
26013 (GPIOx_OR).
26014
26015 Second, it modifies function gpio_set_chip_configuration() to provide
26016 an additional option for configuring the GPIO from the
26017 "CFG_4xx_GPIO_TABLE".
26018
26019 According to the 440EPx User's Manual, when an alternate output is used,
26020 the three-state control is configured in one of two ways, depending on
26021 the particular output. The first option is to select the corresponding
26022 alternate three-state control in the GPIOx_TRSH/L registers. The second
26023 option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
26024 the GPIOx_TRSH/L registers, and set the corresponding bit in the
26025 GPIOx_TCR register to enable the output. For example, the Manual
26026 specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
26027 the alternate three-state control (first option), and specifies
26028 configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
26029 enabled in the GPIOx_TCR register (second option).
26030
26031 Currently, gpio_set_chip_configuration() configures all alternate signal
26032 outputs to use the first option. This patch allow the second option to
26033 be selected by setting the "out_val" element in the table entry to
26034 "GPIO_OUT_1". The first option is used when the "out_val" element is
26035 set to "GPIO_OUT_0". Because "out_val" is not currently used when an
26036 alternate signal is selected, and because all current GPIO tables set
26037 "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
26038 not change any existing configurations.
26039
26040 Signed-off-by: Larry Johnson <lrj@acm.org>
26041
26042commit 196404cdc1de495d6182e84731c200fc5748df15
26043Author: Larry Johnson <lrj@arlinx.com>
26044Date: Sun Dec 30 01:01:54 2007 -0500
26045
26046 PPC4xx: Remove sdram.h from board/lwmon5
26047
26048 These definitions are now in "include/ppc440.h".
26049
26050 Signed-off-by: Larry Johnson <lrj@acm.org>
26051
26052commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
26053Author: Larry Johnson <lrj@arlinx.com>
26054Date: Sun Dec 30 01:01:32 2007 -0500
26055
26056 PPC4xx: Use common code for LWMON5 board SDRAM support
26057
26058 This patch also modifies the functionality of the code so that the data-eye
26059 search is now done with with the cache disabled.
26060
26061 Signed-off-by: Larry Johnson <lrj@acm.org>
26062
26063commit 62cc3951ab72135d9c101f1845b794e63a0fa189
26064Author: Larry Johnson <lrj@arlinx.com>
26065Date: Sun Dec 30 01:01:14 2007 -0500
26066
26067 PPC4xx: Remove sdram.h from board/amcc/sequoia
26068
26069 These definitions are now in "include/ppc440.h".
26070
26071 Signed-off-by: Larry Johnson <lrj@acm.org>
26072
26073commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
26074Author: Larry Johnson <lrj@arlinx.com>
26075Date: Sun Dec 30 01:00:50 2007 -0500
26076
26077 PPC4xx: Use common code for Sequoia board SDRAM support
26078
26079 Signed-off-by: Larry Johnson <lrj@acm.org>
26080
26081commit 8b0c5c127690335758100c25eaec2b84db97c101
26082Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26083Date: Thu Dec 27 16:58:41 2007 +0100
26084
26085 net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
26086
26087 When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
26088 networking stack does not automatically switch to
26089 another interface. This patch does not touch the default
26090 behavior.
26091
26092 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26093 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26094
26095commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
26096Author: Upakul Barkakaty <upakul@gmail.com>
26097Date: Thu Nov 29 12:16:13 2007 +0530
26098
26099 NET: Proper return code handling in eth_init() function in file eth.c
26100
26101 This patch modifies the return code handling in the eth_init()
26102 function, to be compatible with the handling of the return codes in
26103 the other network stack files. It now returns a 0 on Success and -1 on
26104 error.
26105
26106 Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
26107 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26108
26109commit 5ca2d0953e4579a80810966cca2077e20d912c97
26110Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26111Date: Mon Nov 19 20:27:04 2007 +0900
26112
26113 net/eth.c: Fix env_enetaddr signed overflow
26114
26115 Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
26116 warned as below:
26117
26118 U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
26119
26120 DRAM: 256 MB
26121 Flash: 32 MB
26122 In: serial
26123 Out: serial
26124 Err: serial
26125 Net: NEC-Candy
26126 Warning: NEC-Candy MAC addresses don't match:
26127 Address in SROM is 00:00:4C:80:92:A2
26128 Address in environment is FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
26129
26130 This patch changes env_enetaddr type from `char' to `unsigned char'.
26131
26132 Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
26133 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26134 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26135
26136commit f85b60710571b37293d2233933b76e2aa3db5635
26137Author: Rafal Jaworowski <raj@semihalf.com>
26138Date: Thu Dec 27 18:19:02 2007 +0100
26139
26140 Introduce new eth_receive routine
26141
26142 The purpose of this routine is receiving a single network frame, outside of
26143 U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
26144 U-Boot will let them utilise networking facilities. For sending a raw frame
26145 the already existing eth_send() can be used.
26146
26147 The direct consumer of this routine is the newly introduced API layer for
26148 external applications (enabled with CONFIG_API).
26149
26150 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
26151 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
26152 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26153
26154commit 5c740711f0ea5b51414b341b71597c4a0751be74
26155Author: Jon Loeliger <jdl@freescale.com>
26156Date: Thu Jan 3 10:41:04 2008 -0600
26157
26158 8610: Move include of config.h earlier.
26159
26160 Include config.h earlier in the set of #includes
26161 so as to avoid a incidental and duplicate definition
26162 of CFG_CACHELINE_SIZE.
26163
26164 Signed-off-by: Jon Loeliger
26165
26166commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
26167Author: Jon Loeliger <jdl@freescale.com>
26168Date: Tue Dec 4 10:53:34 2007 -0600
26169
26170 Don't slam #undef DEBUG in the 8641HPCN config file.
26171
26172 Doing so prevents it from being individually set
26173 and useful in other files.
26174
26175 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26176
26177commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
26178Author: Jon Loeliger <jdl@freescale.com>
26179Date: Wed Nov 28 14:47:18 2007 -0600
26180
26181 Convert MPC8641HPCN to use libfdt.
26182
26183 Assumes the presence of the aliases node in the DTS to
26184 locate the ethernet, pci and serial nodes for fixups.
26185
26186 Use consistent fdtaddr and fdtfile in environment variables.
26187
26188 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26189
26190commit ce37422d0002e10490e268392e0c4e3028e52cec
26191Author: Stefan Roese <sr@denx.de>
26192Date: Wed Jan 2 14:06:26 2008 +0100
26193
26194 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
26195
26196 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
26197 flash chips connected to a 32bit wide port.
26198
26199 Signed-off-by: Stefan Roese <sr@denx.de>
26200
26201commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
26202Author: Wolfgang Denk <wd@denx.de>
26203Date: Wed Jan 2 15:58:44 2008 +0100
26204
26205 Fix compile problem introduced by "cleanup" commit 3dfd708c
26206
26207 Signed-off-by: Wolfgang Denk <wd@denx.de>
26208
26209commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
26210Author: Wolfgang Denk <wd@denx.de>
26211Date: Wed Jan 2 15:54:45 2008 +0100
26212
26213 Make scripts and Makefiles POSIX compliant
26214
26215 The bash builtin versions of the "test" (resp. "[") command allow
26216 using "==" for string comparisons, but POSIX compatible implemen-
26217 tations (like /usr/bin/test) insist on using "=" only. On such systems
26218 you will see:
26219
26220 $ /usr/bin/test a == a && echo OK
26221 /usr/bin/test: ==: binary operator expected
26222
26223 This patch fixes Makefiles and scripts to use POSIX style.
26224
26225 Signed-off-by: Wolfgang Denk <wd@denx.de>
26226
Wolfgang Denk865f0f92008-01-23 14:31:17 +010026227commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
26228Author: Stefan Roese <sr@denx.de>
26229Date: Wed Jan 2 14:05:37 2008 +0100
26230
26231 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
26232
26233 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
26234 flash chips connected to a 32bit wide port.
26235
26236 Signed-off-by: Stefan Roese <sr@denx.de>
26237
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010026238commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
26239Author: Wolfgang Denk <wd@denx.de>
26240Date: Wed Jan 2 12:38:43 2008 +0100
26241
26242 Minor coding style cleanup.
26243
26244 Signed-off-by: Wolfgang Denk <wd@denx.de>
26245
26246commit e174ac34adf5d5653df12bc3cf19c52063a71269
26247Author: Stefan Roese <sr@denx.de>
26248Date: Fri Dec 28 17:29:56 2007 +0100
26249
26250 ppc4xx: Coding style cleanup
26251
26252 Signed-off-by: Stefan Roese <sr@denx.de>
26253
26254commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
26255Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26256Date: Fri Dec 28 17:07:24 2007 +0100
26257
26258 ppc4xx: Complete PMC440 board support
26259
26260 This patch brings the PMC440 board configuration file.
26261 Finally it enables the PMC440 board support.
26262
26263 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26264
26265commit 407843a582560fc5231299561ab3c2b6b6cd3397
26266Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26267Date: Fri Dec 28 17:07:18 2007 +0100
26268
26269 ppc4xx: Add FPGA support and BSP commands for PMC440 boards
26270
26271 This patch adds some BSP commands and FPGA booting support
26272 for esd's PMC440 boards.
26273
26274 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26275
26276commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
26277Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26278Date: Fri Dec 28 17:07:14 2007 +0100
26279
26280 ppc4xx: Add initial esd PMC440 board files
26281
26282 This patch adds the first files for the new esd PMC440 boards.
26283 The next two patches will complete the PMC440 board support.
26284
26285 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26286
26287commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
26288Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26289Date: Fri Dec 28 17:10:36 2007 +0100
26290
26291 ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
26292
26293 - add EEPROM write protection for esd PLU405 boards.
26294 - initialize NAND GPIOs
26295 - use correct io accessors
26296 - cleanup
26297
26298 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26299
26300commit 77660c4b59055d621d2a8595bd4c18bb277268fc
26301Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26302Date: Fri Dec 28 17:10:44 2007 +0100
26303
26304 ppc4xx: use correct io accessors for esd's LCD code
26305
26306 This patch fixes esd's LCD dectection code to work correctly with
26307 newer gcc versions.
26308
26309 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26310
26311commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
26312Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26313Date: Fri Dec 28 17:10:42 2007 +0100
26314
26315 ppc4xx: Maintenance patch for VOH405 boards
26316
26317 - add EEPROM write protection
26318 - initialize NAND GPIOs
26319 - use correct io accessors
26320 - slow down I2C clock to 100kHz
26321 - enable ext. I2C bus
26322 - cleanup
26323
26324 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26325
26326commit c05569066dbcba3fdf36d4d1943df265dc316a86
26327Author: Stefan Roese <sr@denx.de>
26328Date: Fri Dec 28 16:08:08 2007 +0100
26329
26330 ppc4xx: Enable 405EP PCI arbiter per default on all boards
26331
26332 In an attmemt to clean up the 4xx start.S file, I removed the enabling
26333 of the internal 405EP PCI arbiter. This is needed for multiple other
26334 405EP platforms, like most of the esd 405EP. Now the internal PCI
26335 arbiter is enabled again per default as it has been before.
26336
26337 Signed-off-by: Stefan Roese <sr@denx.de>
26338 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26339
26340commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
26341Author: Stefan Roese <sr@denx.de>
26342Date: Fri Dec 28 15:53:46 2007 +0100
26343
26344 ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
26345
26346 Signed-off-by: Stefan Roese <sr@denx.de>
26347 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26348
26349commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
26350Author: Stefan Roese <sr@denx.de>
26351Date: Fri Dec 28 06:06:04 2007 +0100
26352
26353 ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
26354
26355 Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
26356 platforms mentioned above.
26357
26358 Signed-off-by: Stefan Roese <sr@denx.de>
26359
26360commit b568fd25574181a3b12ae3d66b2913903442cb83
26361Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26362Date: Thu Dec 27 17:03:46 2007 +0100
26363
26364 Remove CPCI440 board
26365
26366 This board never left prototyping state and it
26367 became a millstone round my neck. So remove it.
26368
26369 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26370
26371commit c591dffe0cbacd896ccbad06011fe6d6afa080da
26372Author: Larry Johnson <lrj@arlinx.com>
26373Date: Thu Dec 27 11:28:51 2007 -0500
26374
26375 Add support for Korat PPC440EPx board
26376
26377 These patches add support for the PPC440EPx-based "Korat" board to
26378 U-Boot. They are based primarily on support for the Sequoia board.
26379
26380 Signed-off-by: Larry Johnson <lrj@acm.org>
26381
26382commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
26383Author: Larry Johnson <lrj@arlinx.com>
26384Date: Sat Dec 22 15:16:25 2007 -0500
26385
26386 Add configuration file for Korat board
26387
26388 This patch supplies the configuration file for the Korat PPC440EPx-
26389 processor board.
26390
26391 Signed-off-by: Larry Johnson <lrj@acm.org>
26392
26393commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
26394Author: Larry Johnson <lrj@arlinx.com>
26395Date: Sat Dec 22 15:16:11 2007 -0500
26396
26397 Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
26398
26399 Signed-off-by: Larry Johnson <lrj@acm.org>
26400
26401commit aba19604d848b2838cfb9ebe818909e6a216058e
26402Author: Larry Johnson <lrj@arlinx.com>
26403Date: Thu Dec 27 10:54:48 2007 -0500
26404
26405 Add 440EPx DDR2 SPD DIMM support
26406
26407 This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
26408 controller. It should also work on the 440GRx. It is based on the DDR2
26409 SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
26410
26411 This code has been tested on prototype Korat boards with three Kingston
26412 DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
26413 (two ranks). The Korat board has a single DIMM socket, but support has
26414 been provided (though not tested) for boards with two DIMM sockets.
26415
26416 Signed-off-by: Larry Johnson <lrj@acm.org>
26417
26418commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
26419Author: Larry Johnson <lrj@arlinx.com>
26420Date: Sat Dec 22 15:15:30 2007 -0500
26421
26422 Copy 440EPx/GRx SDRAM data-eye search to common directory
26423
26424 This patch creates a non-board-specific file for performing the SDRAM
26425 data-eye search. It also adds ECC error checking to the test of valid
26426 data on readback when ECC is enabled.
26427
26428 Signed-off-by: Larry Johnson <lrj@acm.org>
26429
26430commit c46f53333b22b1f9098676bea8884fc7db820cf3
26431Author: Larry Johnson <lrj@arlinx.com>
26432Date: Sat Dec 22 15:15:13 2007 -0500
26433
26434 Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
26435
26436 This patch adds the Denali SDRAM controller definitions to "ppc440.h".
26437 It also fixes two typos in the definitions, so the board-specific
26438 "sdram.h" files containing these definitions are also fixed to avoid
26439 compiler warnings.
26440
26441 Signed-off-by: Larry Johnson <lrj@acm.org>
26442
26443commit c348578bf612d0c56d8d376d23cae16defbd86af
26444Author: Larry Johnson <lrj@arlinx.com>
26445Date: Thu Dec 27 10:50:55 2007 -0500
26446
26447 Add Ethernet 1000BASE-X support for PPC4xx
26448
26449 This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG". When this symbol
26450 is defined, the PHY will advertise it's capabilities for autonegotiation
26451 based on the capabilities shown in the PHY's status registers, including
26452 1000BASE-X. When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
26453 advertise hard-coded capabilities, as before.
26454
26455 Signed-off-by: Larry Johnson <lrj@acm.org>
26456
26457commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
26458Author: Larry Johnson <lrj@arlinx.com>
26459Date: Thu Dec 27 09:52:17 2007 -0500
26460
26461 Add driver for National Semiconductor LM73 temperature sensor
26462
26463 This driver is based on the driver for the LM75.
26464
26465 Signed-off-by: Larry Johnson <lrj@acm.org>
26466
26467commit 12618278688ea9b3d76536960a5ad2e3790fac40
26468Author: Larry Johnson <lrj@arlinx.com>
26469Date: Sat Dec 22 15:14:00 2007 -0500
26470
26471 Add driver for STMicroelectronics M41T60 RTC
26472
26473 This driver is based on the driver for the M41T11. In the intended
26474 application, the RTC will be powered by a large capacitor, rather than a
26475 battery. The driver therefore checks to see whether the RTC has lost
26476 power. The chip's OUT bit is normally reset from its power-up state. If
26477 the OUT bit is read as set, or if the date and time are not valid, then the
26478 RTC is assumed to have lost power, and its date and time are reset to
26479 1900-01-01 00:00:00.
26480
26481 Support for adjusting the speed of the clock to improve accuracy is
26482 provided through an environment variable.
26483
26484 Signed-off-by: Larry Johnson <lrj@acm.org>
26485
26486commit d3471173e14b7544bb60339eda8d3d3906694b0a
26487Author: Larry Johnson <lrj@arlinx.com>
26488Date: Sat Dec 22 15:34:39 2007 -0500
26489
26490 Use out_be32() and friends to access memory-mapped registers in sequoia.c
26491
26492 Signed-off-by: Larry Johnson <lrj@acm.org>
26493
26494commit c68f59fe3ec16769f82b5fca7421983c336d3aac
26495Author: Larry Johnson <lrj@arlinx.com>
26496Date: Sat Dec 22 15:34:20 2007 -0500
26497
26498 Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
26499
26500 Signed-off-by: Larry Johnson <lrj@acm.org>
26501
26502commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
26503Author: Larry Johnson <lrj@arlinx.com>
26504Date: Sat Dec 22 15:23:50 2007 -0500
26505
26506 Cosmetic changes to ECC POST for AMCC Denali core
26507
26508 Signed-off-by: Larry Johnson <lrj@acm.org>
26509
26510commit 2e583d6c81034f80a267b89fa55498ae063ccef1
26511Author: Stefan Roese <sr@denx.de>
26512Date: Wed Dec 26 20:20:19 2007 +0100
26513
26514 ppc4xx: Fix compilation problem in 405 cache POST test
26515
26516 Signed-off-by: Stefan Roese <sr@denx.de>
26517
26518commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
26519Author: Stefan Roese <sr@denx.de>
26520Date: Sat Dec 22 12:20:09 2007 +0100
26521
26522 ppc4xx: Move virtual address of POST cache test to bigger address
26523
26524 On Sequoia & LWMON5 the virtual address of the POST cache test is now
26525 moved to a bigger address. This enables usage of more memory on those
26526 boards.
26527
26528 Signed-off-by: Stefan Roese <sr@denx.de>
26529
26530commit d91722102cf63f77a0148ed3f3d54a26d87575e9
26531Author: Stefan Roese <sr@denx.de>
26532Date: Sat Dec 22 12:18:26 2007 +0100
26533
26534 ppc4xx: Fix problem in 44x cache POST routine
26535
26536 As repoted by Larry Johnson, running "diag run cache" caused a crash
26537 in U-Boot. This problem was introduced by a patch that removed the
26538 TLB entry for the cache test after the test has completed. Since this
26539 TLB was only setup once, a 2nd attempt to run this cache test
26540 failed with a crash. Now this TLB entry is created every time the
26541 routine is called.
26542
26543 Signed-off-by: Stefan Roese <sr@denx.de>
26544
26545commit b0265b576bb8fa9465f99e99c323768b562fadc2
26546Author: Stefan Roese <sr@denx.de>
26547Date: Fri Dec 21 07:51:29 2007 +0100
26548
26549 ppc4xx: Update Makalu fdt support
26550
26551 Signed-off-by: Stefan Roese <sr@denx.de>
26552
26553commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
26554Author: Stefan Roese <sr@denx.de>
26555Date: Wed Dec 19 09:05:40 2007 +0100
26556
26557 ppc4xx: Add fdt support to AMCC Katmai eval board
26558
26559 Signed-off-by: Stefan Roese <sr@denx.de>
26560
26561commit 328a340392a5df9aaf00792be989df73e750859e
26562Author: Stefan Roese <sr@denx.de>
26563Date: Tue Dec 18 08:44:51 2007 +0100
26564
26565 ppc4xx: fdt: Cleanup setup of cpu node setup
26566
26567 Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
26568 without using the absolute path to the cpu node. This makes it possible
26569 to use this U-Boot version with both versions of cpu-node naming
26570 "cpu@0" and the former "PowerPC,440EPx@0".
26571
26572 Signed-off-by: Stefan Roese <sr@denx.de>
26573
26574commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
26575Author: Stefan Roese <sr@denx.de>
26576Date: Mon Dec 17 17:26:21 2007 +0100
26577
26578 ppc4xx: Fix lwmon5 compilation problem
26579
26580 Now that the 440EPx ECC test is not board specific anymore
26581 remove this Makefile.
26582
26583 Signed-off-by: Stefan Roese <sr@denx.de>
26584
26585commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
26586Author: Anatolij Gustschin <agustschin@t-online.de>
26587Date: Wed Dec 5 17:43:20 2007 +0100
26588
26589 Fix ppc4xx clear_bss() code
26590
26591 ppc4xx clear_bss() fails if BSS segment size is not
26592 divisible by 4 without remainder. This patch provides
26593 fix for this problem.
26594
26595 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26596
26597commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
26598Author: Niklaus Giger <niklausgiger@gmx.ch>
26599Date: Fri Nov 30 18:35:11 2007 +0100
26600
26601 PPC4xx: Minimal changes to add vxWorks support
26602
26603 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26604
26605commit 052440b022ca8981d39b6f8c10d1aa6326f47480
26606Author: Markus Klotzbücher <mk@denx.de>
26607Date: Fri Nov 23 13:09:18 2007 +0100
26608
26609 ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
26610
26611 When using dhcp/bootp the "netmask" environment variable is not
26612 set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
26613 desireable, so the following patch adds this this option to the board
26614 config.
26615
26616 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
26617 Signed-off-by: Stefan Roese <sr@denx.de>
26618
26619commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
26620Author: Larry Johnson <lrj@arlinx.com>
26621Date: Sat Oct 27 12:48:15 2007 -0400
26622
26623 Fix/enhance ECC POST for 440EPx/GRx
26624
26625 This patch allows the ECC POST to be used for different boards with the
26626 PPC440 Denali SDRAM controller. Modifications include skipping the test
26627 if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
26628 to prevent timing errors.
26629
26630 Signed-off-by: Larry Johnson <lrj@acm.org>
26631
26632commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
26633Author: Larry Johnson <lrj@arlinx.com>
26634Date: Sat Oct 27 12:48:05 2007 -0400
26635
26636 PPC4xx: Move/rename ECC POST for 440EPx/GRx
26637
26638 Signed-off-by: Larry Johnson <lrj@acm.org>
26639
26640commit c29d2d3680046d430022c55e50fcb27f5866517e
26641Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26642Date: Fri Dec 14 11:20:33 2007 +0100
26643
26644 ppc4xx: use correct io accessors for 4xx ethernet POST
26645
26646 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26647
26648commit ba79fde58a48c0a6ff8e2a96caba951594142203
26649Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26650Date: Fri Dec 14 11:19:56 2007 +0100
26651
26652 ppc4xx: fix flush + invalidate_dcache_range arguments
26653
26654 flush + invalidate_dcache_range() expect the start and stop+1 address.
26655 So the stop address is the first address behind (!) the range.
26656
26657 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26658
26659commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
26660Author: Stefan Roese <sr@denx.de>
26661Date: Fri Dec 14 08:41:29 2007 +0100
26662
26663 ppc4xx: fdt: use fdt_fixup_ethernet()
26664
26665 By using aliases in the dts file, the ethernet node fixup is
26666 much easier with the recently added functions.
26667
26668 Please note that the dts file needs the aliases for this to work.
26669
26670 Signed-off-by: Stefan Roese <sr@denx.de>
26671
26672commit 136288847e3b04f2ff357a067ad45e10afa0a24c
26673Author: Stefan Roese <sr@denx.de>
26674Date: Thu Dec 13 14:52:53 2007 +0100
26675
26676 ppc4xx: Bring 4xx fdt support up-to-date
26677
26678 This patch update the 4xx fdt support. It enabled fdt booting
26679 on the AMCC Kilauea and Sequoia for now. More can follow later
26680 quite easily.
26681
26682 Signed-off-by: Stefan Roese <sr@denx.de>
26683
26684commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
26685Author: Stefan Roese <sr@denx.de>
26686Date: Thu Dec 27 07:50:54 2007 +0100
26687
26688 cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
26689
26690 The check for an sufficiently erased destination was missing in the
26691 buffered write function of the cfi flash driver (when
26692 CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
26693 writing to such a region will fail with the currect error message.
26694
26695 Signed-off-by: Stefan Roese <sr@denx.de>
26696
26697commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
26698Author: Martin Krause <martin.krause@tqs.de>
26699Date: Mon Nov 12 10:56:17 2007 +0100
26700
26701 Some configuration updates for the TQM5200 based TB5200 board:
26702
26703 - enable command line history
26704 - increase malloc space (because of bigger flash sectors)
26705
26706 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26707
26708commit e318d9e9021a0af7508171f84ed09d0e79f0284e
26709Author: Martin Krause <martin.krause@tqs.de>
26710Date: Thu Sep 27 11:10:08 2007 +0200
26711
26712 TQM8xx: use the CFI flash driver on all TQM8xx boards
26713
26714 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26715
26716commit 11d9eec479b470eab9242ab937fca70a876d9376
26717Author: Martin Krause <martin.krause@tqs.de>
26718Date: Wed Sep 26 17:55:56 2007 +0200
26719
26720 TQM885D: adjust for doubled flash sector size + some minor fixes
26721
26722 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26723
26724commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
26725Author: Jens Gehrlein <jens.gehrlein@tqs.de>
26726Date: Wed Sep 26 17:55:54 2007 +0200
26727
26728 TQM885D: Exchanged SDRAM timing by a more relaxed timing.
26729
26730 CAS-Latency=2, Write Recovery Time tWR=2
26731 The max. supported bus frequency is 66 MHz. Therefore, changed
26732 threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
26733
26734 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26735
26736commit b988b8cd443989be65161888eea0127ad03f846f
26737Author: Martin Krause <martin.krause@tqs.de>
26738Date: Wed Sep 26 17:55:56 2007 +0200
26739
26740 TQM885D: use calculated cpuclk instead of measuring it
26741
26742 On the TQM885D the measurement of cpuclk with the PIT reference
26743 timer ist not necessary. Since all module variants use the same
26744 external 10 MHz oscillator, the cpuclk only depends on the PLL
26745 configuration - which is readable by software.
26746
26747 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26748
26749commit 492c7049869348d31168de8dad89651315e468e0
26750Author: Jens Gehrlein <jens.gehrlein@tqs.de>
26751Date: Thu Sep 27 14:54:46 2007 +0200
26752
26753 TQM885D: fix SDRAM refresh
26754
26755 At 133 MHz the current SDRAM refresh rate is too fast
26756 (measured 4 * 1.17 us).
26757 CFG_MAMR_PTA changes from 39 to 128. This result
26758 in a refresh rate of 4 * 7.8 us at the default clock
26759 66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
26760 This is a compromise until a new method is found to
26761 adjust the refresh rate.
26762
26763 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26764
26765commit dabad4b9bc46908e301f73ce76b38b23626a96e9
26766Author: Jens Gehrlein <jens.gehrlein@tqs.de>
26767Date: Thu Sep 27 14:54:46 2007 +0200
26768
26769 TQM860M: Support for 10col SDRAMs, max. 128 MiB
26770
26771 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26772
26773commit 61fb15c516fef5631e305f1976d7b3a679725856
26774Author: Wolfgang Denk <wd@denx.de>
26775Date: Thu Dec 27 01:52:50 2007 +0100
26776
26777 Fix coding style issues; update CHANGELOG.
26778
26779 Signed-off-by: Wolfgang Denk <wd@denx.de>
26780
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010026781commit 467bcee11fe26ad422f2de971aa70866079870f2
26782Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26783Date: Fri Dec 14 15:36:18 2007 +0100
26784
26785 cfi_flash: Add manufacturer-specific fixups
26786
26787 Run fixups based on the JEDEC manufacturer ID independent of the
26788 command set ID.
26789
26790 This changes current behaviour: Previously, geometry reversal for AMD
26791 chips were done based on the command set ID, while they are now done
26792 based on the JEDEC manufacturer and device ID.
26793
26794 Also add fixup for top-boot Atmel chips. A fixup is needed for
26795 AT49BV6416(T) too, but since u-boot currently only reads the low byte
26796 of the device ID, there's no way to tell it apart from AT49BV642D,
26797 which should not have this fixup. Since AT49BV642D support is
26798 necessary to get ATNGW100 board support into mainline, I've commented
26799 out the fixup for now.
26800
26801 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26802
26803commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
26804Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26805Date: Fri Dec 14 15:36:17 2007 +0100
26806
26807 cfi_flash: Add cmdset-specific init functions
26808
26809 Move things like reading JEDEC IDs and fixing up geometry reversal
26810 into separate functions. The geometry reversal fixup is now performed
26811 by altering the qry structure directly, which makes the sector init
26812 code slightly cleaner.
26813
26814 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26815
26816commit e23741f4a6d8047520ef0d4971762749b3587d32
26817Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26818Date: Fri Dec 14 15:36:16 2007 +0100
26819
26820 cfi_flash: Read whole QRY structure in one go
26821
26822 Read out the whole CFI Standard Query structure after successful cfi
26823 identification. This allows subsequent code to access this information
26824 directly without having to go through flash_read_uchar() and friends.
26825
26826 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26827
26828commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
26829Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26830Date: Mon Dec 17 11:02:44 2007 +0100
26831
26832 AVR32: Fix logic inversion in disable_interrupts()
26833
26834 disable_interrupts() should return nonzero if interrupts were
26835 _enabled_ before, not disabled.
26836
26837 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26838
26839commit acac475212cbedb17b321a363a1c878e2b47b37f
26840Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26841Date: Fri Dec 14 16:51:22 2007 +0100
26842
26843 AVR32: Enable interrupts at bootup
26844
26845 The timer code depends on the timer interrupt to keep track of the
26846 upper 32 bits of the cycle counter. This obviously doesn't work when
26847 interrupts are disabled the whole time.
26848
26849 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26850
26851commit 9570bcd87f4db255514f43b6701746c412f8fef0
26852Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26853Date: Thu Nov 15 10:03:45 2007 +0100
26854
26855 AVR32: Fix wrong pin setup for USART3
26856
26857 As reported by Gerhard Berghofer:
26858
26859 in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
26860 instead of PB18 and PB19.
26861
26862 which is obviously correct. There's currently no code that uses
26863 USART3, but custom boards may run into problems.
26864
26865 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26866
26867commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
26868Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26869Date: Thu Nov 1 12:44:20 2007 +0100
26870
26871 README: Remove ATSTK1000 daughterboard list
26872
26873 As noted by Kim Phillips, these lists tend to become out of date.
26874
26875 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26876
26877commit c81cbbad21cb0ae983e2e796211202234cdc8be2
26878Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26879Date: Tue Oct 30 14:56:36 2007 +0100
26880
26881 Add ATSTK100[234] to MAINTAINERS
26882
26883 Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
26884 "mother". Also update the entry for ATSTK1000 to be not only about the
26885 AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
26886
26887 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26888
26889commit 64ff2357b1727213803591813dbc779c924bf772
26890Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26891Date: Mon Oct 29 13:02:54 2007 +0100
26892
26893 AVR32: Add support for the ATSTK1004 board
26894
26895 ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
26896 which is a derivative of AT32AP7000.
26897
26898 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26899
26900commit 667568db157f374b85abd7e03596ddd1f0b25681
26901Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26902Date: Mon Oct 29 13:02:54 2007 +0100
26903
26904 AVR32: Add support for the ATSTK1003 board
26905
26906 ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
26907 which is a derivative of AT32AP7000.
26908
26909 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26910
26911commit 5fee84a794a51ec830548cda485a770efb018b92
26912Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26913Date: Mon Oct 29 13:23:33 2007 +0100
26914
26915 AVR32: Make some AT32AP700x peripherals optional
26916
26917 Add a chip-features file providing definitions of the form
26918
26919 AT32AP700x_CHIP_HAS_<peripheral>
26920
26921 to indicate the availability of the given peripheral on the currently
26922 selected chip.
26923
26924 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26925
26926commit 36f28f8a9605ee5dcfa330482cfc62171261af97
26927Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26928Date: Mon Oct 29 13:09:56 2007 +0100
26929
26930 AVR32: Rename at32ap7000 -> at32ap700x
26931
26932 The SoC-specific code for all the AT32AP700x CPUs is practically
26933 identical; the only difference is that some chips have less features
26934 than others. By doing this rename, we can add support for the AP7000
26935 derivatives simply by making some features conditional.
26936
26937 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26938
26939commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
26940Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26941Date: Fri Jun 29 18:22:34 2007 +0200
26942
26943 atmel_mci: Show SR when block read fails
26944
26945 Show controller status as well as card status when an error occurs
26946 during block read.
26947
26948 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26949
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010026950commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
26951Author: Stefan Roese <sr@denx.de>
26952Date: Thu Dec 13 14:52:53 2007 +0100
26953
26954 ppc4xx: Bring 4xx fdt support up-to-date
26955
26956 This patch update the 4xx fdt support. It enabled fdt booting
26957 on the AMCC Kilauea and Sequoia for now. More can follow later
26958 quite easily.
26959
26960 Signed-off-by: Stefan Roese <sr@denx.de>
26961
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010026962commit 12d30aa79779c2aa7a998bbae4c075f822a53004
26963Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26964Date: Thu Dec 13 12:56:34 2007 +0100
26965
26966 cfi_flash: Use map_physmem() and unmap_physmem()
26967
26968 Use map_physmem() and unmap_physmem() to convert from physical to
26969 virtual addresses. This gives the arch a chance to provide an uncached
26970 mapping for flash accesses.
26971
26972 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26973
26974commit 4d7d6936eb29af7cca330937808312aa5f61454d
26975Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26976Date: Thu Dec 13 12:56:33 2007 +0100
26977
26978 Introduce map_physmem() and unmap_physmem()
26979
26980 map_physmem() returns a virtual address which can be used to access a
26981 given physical address without involving the cache. unmap_physmem()
26982 should be called when the virtual address returned by map_physmem() is
26983 no longer needed.
26984
26985 This patch adds a stub implementation which simply returns the
26986 physical address cast to a uchar * for all architectures except AVR32,
26987 which converts the physical address to an uncached virtual mapping.
26988 unmap_physmem() is a no-op on all architectures, but if any
26989 architecture needs to do such mappings through the TLB, this is the
26990 hook where those TLB entries can be invalidated.
26991
26992 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
26993
26994commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
26995Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
26996Date: Thu Dec 13 12:56:32 2007 +0100
26997
26998 cfi_flash: Introduce read and write accessors
26999
27000 Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
27001 them to access the flash memory. This makes it clearer when the flash
27002 is actually being accessed; merely dereferencing a volatile pointer
27003 looks just like any other kind of access.
27004
27005 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27006
27007commit 812711ce6b3a386125dcf0d6a59588e461abbb87
27008Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27009Date: Thu Dec 13 12:56:31 2007 +0100
27010
27011 Implement __raw_{read,write}[bwl] on all architectures
27012
27013 This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
27014 m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
27015 from Linux.
27016
27017 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27018
27019commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
27020Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27021Date: Sat Oct 6 18:55:36 2007 +0200
27022
27023 cfi_flash: Reorder functions and eliminate extra prototypes
27024
27025 Reorder the functions in cfi_flash.c so that each function only uses
27026 functions that have been defined before it. This allows the static
27027 prototype declarations near the top to be eliminated and might allow
27028 gcc to do a better job inlining functions.
27029
27030 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27031
27032commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
27033Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27034Date: Thu Dec 13 12:56:29 2007 +0100
27035
27036 cfi_flash: Make some needlessly global functions static
27037
27038 Make functions not declared in any header file static.
27039
27040 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27041
27042commit 7e5b9b471518c5652febc68ba62b432193d6abf4
27043Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
27044Date: Thu Dec 13 12:56:28 2007 +0100
27045
27046 cfi_flash: Break long lines
27047
27048 This patch tries to keep all lines in the cfi_flash driver below 80
27049 columns. There are a few lines left which don't fit this requirement
27050 because I couldn't find any trivial way to break them (i.e. it would
27051 take some restructuring, which I intend to do in a later patch.)
27052
27053 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27054
27055commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
27056Author: Bartlomiej Sieka <tur@semihalf.com>
27057Date: Tue Dec 11 13:59:57 2007 +0100
27058
27059 CFI: synchronize command offsets with Linux CFI driver
27060
27061 Fixes non-working CFI Flash on the Inka4x0 board.
27062
27063 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
27064
27065commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
27066Author: Kumar Gala <galak@kernel.crashing.org>
27067Date: Fri Dec 7 12:17:34 2007 -0600
27068
27069 Handle MPC85xx PCIe reset errata (PCI-Ex 38)
27070
27071 On the MPC85xx boards that have PCIe enable the PCIe errata fix.
27072 (MPC8544DS, MPC8548CDS, MPC8568MDS).
27073
27074 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27075
27076commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
27077Author: Kumar Gala <galak@kernel.crashing.org>
27078Date: Fri Dec 7 12:04:30 2007 -0600
27079
27080 Update Freescale MPC85xx ADS/CDS/MDS board config
27081
27082 * Enabled CONFIG_CMD_ELF
27083
27084 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27085
27086commit d435793229ce29a42797c1edc39f5b34f987f91a
27087Author: Kumar Gala <galak@kernel.crashing.org>
27088Date: Fri Dec 7 04:59:26 2007 -0600
27089
27090 Handle Asynchronous DDR clock on 85xx
27091
27092 The MPC8572 introduces the concept of an asynchronous DDR clock with
27093 regards to the platform clock.
27094
27095 Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
27096 mode.
27097
27098 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27099
27100commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
27101Author: Kumar Gala <galak@kernel.crashing.org>
27102Date: Thu Nov 29 10:34:28 2007 -0600
27103
27104 Update Freescale MPC85xx ADS/CDS/MDS board config
27105
27106 * Removed some misc environment setup
27107 * Enabled CONFIG_CMDLINE_EDITING
27108
27109 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27110
27111commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
27112Author: Kumar Gala <galak@kernel.crashing.org>
27113Date: Thu Nov 29 10:47:44 2007 -0600
27114
27115 Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
27116
27117 Minor path corrections needed to ensure buildability.
27118
27119 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27120
27121commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
27122Author: Kumar Gala <galak@kernel.crashing.org>
27123Date: Thu Nov 29 10:16:18 2007 -0600
27124
27125 Move the MPC8540 ADS board under board/freescale.
27126
27127 Minor path corrections needed to ensure buildability.
27128
27129 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27130
27131commit 870ceac5b3a3486c109396e005af81ae762b5710
27132Author: Kumar Gala <galak@kernel.crashing.org>
27133Date: Thu Nov 29 10:14:50 2007 -0600
27134
27135 Move the MPC8560 ADS board under board/freescale.
27136
27137 Minor path corrections needed to ensure buildability.
27138
27139 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27140
27141commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
27142Author: Kumar Gala <galak@kernel.crashing.org>
27143Date: Thu Nov 29 10:13:47 2007 -0600
27144
27145 Move the MPC8568 MDS board under board/freescale.
27146
27147 Minor path corrections needed to ensure buildability.
27148
27149 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27150
27151commit a853d56c59b33415304531443633808736acfc6e
27152Author: Kumar Gala <galak@kernel.crashing.org>
27153Date: Thu Nov 29 02:18:59 2007 -0600
27154
27155 Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
27156
27157 We already had defines for LAWAR_TRGT_IF_* that we should use
27158 rather than creating new ones. Also, added some missing defines for
27159 PCIE targets.
27160
27161 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27162
27163commit 04db400892da37b76a585e332a0c137954ad2015
27164Author: Kumar Gala <galak@kernel.crashing.org>
27165Date: Thu Nov 29 02:10:09 2007 -0600
27166
27167 Stop using immap_t on 85xx
27168
27169 In the future the offsets to various blocks may not be in same location.
27170 Move to using CFG_MPC85xx_*_ADDR as the base of the registers
27171 instead of getting it via &immap.
27172
27173 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27174
27175commit 2714223f8e04ab3e4133ff65872eef366d90bfea
27176Author: Kumar Gala <galak@kernel.crashing.org>
27177Date: Thu Nov 29 01:23:09 2007 -0600
27178
27179 Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
27180
27181 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27182
27183commit c480861bf000156e6a3e932c258db59ff2212dd3
27184Author: Kumar Gala <galak@kernel.crashing.org>
27185Date: Thu Nov 29 01:06:19 2007 -0600
27186
27187 Update MPC8568 MDS to use libfdt
27188
27189 Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
27190 ethernet, pci, and serial for the various fixups that are done.
27191
27192 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27193
27194commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
27195Author: Haiying Wang <Haiying.Wang@freescale.com>
27196Date: Wed Nov 14 15:52:06 2007 -0500
27197
27198 Add PCI Express support on MPC8568MDS
27199
27200 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27201 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27202
27203commit b90d25497625b90ffa3f2911a0895ca237556ff5
27204Author: Kumar Gala <galak@kernel.crashing.org>
27205Date: Thu Nov 29 00:11:44 2007 -0600
27206
27207 Update MPC85xx CDS to use libfdt
27208
27209 Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
27210 ethernet, pci, and serial for the various fixups that are done.
27211
27212 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27213
27214commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
27215Author: Kumar Gala <galak@kernel.crashing.org>
27216Date: Wed Nov 28 22:54:27 2007 -0600
27217
27218 Update MPC8540 ADS to use libfdt
27219
27220 Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
27221 ethernet, pci, and serial for the various fixups that are done.
27222
27223 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27224
27225commit 5ce715802f6c50dc78b3405b92f184b1e3710519
27226Author: Kumar Gala <galak@kernel.crashing.org>
27227Date: Wed Nov 28 22:40:31 2007 -0600
27228
27229 Update MPC8560 ADS to use libfdt
27230
27231 Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
27232 ethernet, pci, and serial for the various fixups that are done.
27233
27234 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27235
27236commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
27237Author: Kumar Gala <galak@kernel.crashing.org>
27238Date: Wed Nov 28 00:36:33 2007 -0600
27239
27240 Stop using immap_t for cpm offset on 85xx
27241
27242 In the future the offsets to various blocks may not be in same location.
27243 Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
27244 instead of getting it via &immap->im_cpm.
27245
27246 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27247
27248commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
27249Author: Kumar Gala <galak@kernel.crashing.org>
27250Date: Tue Nov 27 23:25:02 2007 -0600
27251
27252 Stop using immap_t for guts offset on 85xx
27253
27254 In the future the offsets to various blocks may not be in same location.
27255 Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
27256 instead of getting it via &immap->im_gur.
27257
27258 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27259
27260commit 50c03c8cf494d91cdec39670d95337c743e16ec9
27261Author: Kumar Gala <galak@kernel.crashing.org>
27262Date: Tue Nov 27 22:42:34 2007 -0600
27263
27264 Update MPC8544 DS config
27265
27266 * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
27267 * Removed some misc environment setup
27268 * Moved to using fdtfile & fdtaddr as fdt env var names
27269 * Enabled CONFIG_CMDLINE_EDITING
27270
27271 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27272
27273commit addce57e2e4c49e77ffb2020a84690713bb18b47
27274Author: Kumar Gala <galak@kernel.crashing.org>
27275Date: Mon Nov 26 17:12:24 2007 -0600
27276
27277 Update MPC8544DS to use libfdt
27278
27279 Updated the MPC8544DS config to use libfdt and assume use of aliases for
27280 ethernet, pci, and serial for the various fixups that are done.
27281
27282 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27283
27284commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
27285Author: Kumar Gala <galak@kernel.crashing.org>
27286Date: Thu Nov 29 00:15:30 2007 -0600
27287
27288 Add libfdt based ft_cpu_setup for mpc85xx
27289
27290 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27291
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010027292commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
27293Author: Stefan Roese <sr@denx.de>
27294Date: Tue Dec 11 13:38:19 2007 +0100
27295
27296 ppc4xx: Correct GPIO offset in gpio_config()
27297
27298 Thanks to Gary Jennejohn for pointing this out.
27299
27300 Signed-off-by: Stefan Roese <sr@denx.de>
27301
27302commit 8809a2713b1ceaf3da55d9d785470294f15de06a
27303Author: Stefan Roese <sr@denx.de>
27304Date: Tue Dec 11 11:46:01 2007 +0100
27305
27306 rtc: Fix merging problem
27307
27308 Signed-off-by: Stefan Roese <sr@denx.de>
27309
27310commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
27311Author: Stefan Roese <sr@denx.de>
27312Date: Sat Dec 8 14:47:34 2007 +0100
27313
27314 ppc4xx: 405EX: Correctly enable USB pins
27315
27316 This patch selects the USB data pins in the 405EX GPIO and MFC (multi
27317 function control) registers. This is done for the AMCC Kilauea and
27318 Makalu eval boards.
27319
27320 Signed-off-by: Stefan Roese <sr@denx.de>
27321
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010027322commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
27323Author: Stefan Roese <sr@denx.de>
27324Date: Sat Dec 8 08:25:09 2007 +0100
27325
27326 CFI: Coding style cleanup
27327
27328 Signed-off-by: Stefan Roese <sr@denx.de>
27329
27330commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
27331Author: Michael Schwingen <michael@schwingen.org>
27332Date: Fri Dec 7 23:35:02 2007 +0100
27333
27334 CFI: support JEDEC flash roms in CFI-flash framework
27335
27336 The following patch adds support for non-CFI flash ROMS, by hooking into the
27337 CFI flash code and using most of its code, as recently discussed here in the
27338 thread "Mixing CFI and non-CFI flashs".
27339
27340 Signed-off-by: Michael Schwingen <michael@schwingen.org>
27341 Signed-off-by: Stefan Roese <sr@denx.de>
27342
27343commit c01b17dd856fa120b2970f50d9598546a4927ec3
27344Author: Gerald Van Baren <vanbaren@cideas.com>
27345Date: Wed Nov 28 21:24:50 2007 -0500
27346
27347 Conditionally compile fdt_fixup_ethernet()
27348
27349 Fix compiler warnings: On boards that don't have ethernets defined,
27350 don't compile fdt_fixup_ethernet().
27351
27352commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
27353Author: Kumar Gala <galak@kernel.crashing.org>
27354Date: Tue Nov 27 21:59:46 2007 -0600
27355
27356 Convert boards that set memory node to use fdt_fixup_memory()
27357
27358 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27359
27360commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
27361Author: Kumar Gala <galak@kernel.crashing.org>
27362Date: Mon Nov 26 17:06:15 2007 -0600
27363
27364 Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
27365
27366 We use a combination of the serialN alias and CONFIG_CONS_INDEX to
27367 determine which serial alias we should set linux,stdout-path to.
27368
27369 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27370
27371commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
27372Author: Kumar Gala <galak@kernel.crashing.org>
27373Date: Mon Nov 26 14:57:45 2007 -0600
27374
27375 Add common memory fixup function
27376
27377 Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
27378
27379 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27380
27381commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
27382Author: Kumar Gala <galak@kernel.crashing.org>
27383Date: Mon Nov 26 11:19:12 2007 -0600
27384
27385 Conditionally compile fdt_support.c
27386
27387 Modify common/Makefile to conditionally compile fdt_support.c based
27388 on CONFIG_OF_LIBFDT.
27389
27390 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27391
27392commit d88e7ba0980773479e1a64badb293116071b7ef0
27393Author: Kumar Gala <galak@kernel.crashing.org>
27394Date: Mon Nov 26 10:41:40 2007 -0600
27395
27396 Fix build breakage due to libfdt import
27397
27398 The IDS8247 got lost in the update and need an API update
27399 do to rename of functions in libfdt.
27400
27401 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27402
27403commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
27404Author: Gerald Van Baren <vanbaren@cideas.com>
27405Date: Fri Nov 23 19:43:20 2007 -0500
27406
27407 Add spaces around the = in the fdt print format.
27408
27409 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27410
27411commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
27412Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27413Date: Fri Dec 7 01:25:38 2007 +0900
27414
27415 sh: Moved driver of the SuperH dependence
27416
27417 The composition of the directory in the drivers/ changed.
27418 I moved SuperH serial driver and marubun PCMCIA driver.
27419
27420 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27421
27422commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
27423Author: Wolfgang Denk <wd@denx.de>
27424Date: Thu Dec 6 10:21:19 2007 +0100
27425
27426 Release v1.3.1
27427
27428 Signed-off-by: Wolfgang Denk <wd@denx.de>
27429
27430commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
27431Author: Wolfgang Denk <wd@denx.de>
27432Date: Thu Dec 6 10:21:03 2007 +0100
27433
27434 ADS5121 Board: fix compile problem.
27435
27436 Signed-off-by: Wolfgang Denk <wd@denx.de>
27437
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010027438commit a27044b14a9e93678a82d7b35f202b93e7687abc
27439Author: Stefan Roese <sr@denx.de>
27440Date: Thu Dec 6 05:58:43 2007 +0100
27441
27442 ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
27443
27444 This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
27445 setting the FIXD bit in the SDR0_MFR register. Here a description of the
27446 symptoms:
27447
27448 Problem Description
27449 ------------------------------
27450 If a DMA is performed between memory and PCI with the DMA 1 Controller
27451 using prefetch, and as a result uses a special purpose buffer selected by
27452 the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
27453 the first part of the transfer sequence is performed twice. The
27454 PPC440SPe PCI Controller requests more data than was needed such that in
27455 the case of enforce memory protection, a host CPU exception can occur.
27456 No data is corrupted, because data transfer is stopped in the PCI
27457 Controller. Prefetch enable is specified by setting DMA Configuration
27458 Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
27459
27460 Behavior that may be observed in a running system
27461 ---------------------------------------------------------------------------
27462
27463 1. DMA performance is decreased because of the double access on the PCI bus
27464 interface.
27465 2. If an illegal access to some address on the PCI bus is detected at the
27466 system level, a machine check or similar system error may occur.
27467
27468 Workarounds Available
27469 ----------------------------------
27470
27471 1. Do not program prefetch. Note that a prefetch command cannot be programmed
27472 without selecting a special purpose buffer.
27473 2. To avoid crossing a physical boundary of the PCI slave device, add 512
27474 bytes of address to the PCI address range.
27475
27476 This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
27477 from AMCC and slighly changed.
27478
27479 Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
27480 Signed-off-by: Stefan Roese <sr@denx.de>
27481
27482commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
27483Author: Stefan Roese <sr@denx.de>
27484Date: Tue Dec 4 16:29:48 2007 +0100
27485
27486 ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
27487
27488 Signed-off-by: Stefan Roese <sr@denx.de>
27489
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010027490commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
27491Author: Wolfgang Denk <wd@denx.de>
27492Date: Mon Dec 3 00:15:28 2007 +0100
27493
27494 Prepare for 1.3.1-rc1
27495
27496 Signed-off-by: Wolfgang Denk <wd@denx.de>
27497
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010027498commit e15e33433e7c05111968dc9b434a52fd42cbd221
27499Author: Stefan Roese <sr@denx.de>
27500Date: Fri Nov 30 07:15:41 2007 +0100
27501
27502 ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
27503
27504 This manual PCIe reset triggering solves the problem seen with the
27505 Intel EPRO/1000 card, which was not detected (link not established)
27506 upon power-up reset.
27507
27508 Signed-off-by: Stefan Roese <sr@denx.de>
27509
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010027510commit 260eea5676ca46903a335686cc020b29c4ca46fe
27511Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27512Date: Thu Nov 29 01:21:54 2007 +0900
27513
27514 sh: Add SuperH boards maintainer to MAINTAINERS file
27515
27516 Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
27517
27518 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27519
27520commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
27521Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27522Date: Thu Nov 29 00:13:04 2007 +0900
27523
27524 sh: Add ms7750se support in MAKEALL
27525
27526 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27527
27528commit c7144373427a178332bf9754131c8c34c52c200a
27529Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27530Date: Tue Nov 27 09:44:53 2007 +0100
27531
27532 sh: Add sh3 and sh4 support in MAKEALL
27533
27534 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27535 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27536
27537commit 130080874a3d28450098481a262c5f7c855e908d
27538Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27539Date: Sun Nov 25 02:51:17 2007 +0900
27540
27541 sh: Add document for SuperH.
27542
27543 This document is a summary of information concerning SuperH of U-Boot.
27544
27545 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27546
27547commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
27548Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27549Date: Sun Nov 25 02:39:31 2007 +0900
27550
27551 sh: Add marubun's pcmcia driver
27552
27553 Marubun pcmcia is a chip for PCMCIA used with SuperH.
27554 Of course, this can be used even by other architectures.
27555 When use this driver, came to be able to use CompactFlash
27556 and Ethernet.
27557
27558 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27559
27560commit febd86b969b975289ed948f1ac0eb9722da41ced
27561Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27562Date: Sun Nov 25 02:32:13 2007 +0900
27563
27564 sh: Update SuperH SCIF driver
27565
27566 - Changed volatile unsigned to vu_.
27567 - Changed Makefile for kconfig.
27568
27569 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27570
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010027571commit 8be760903645af09871be50ad0a6f9ebb62b311d
27572Author: Stefan Roese <sr@denx.de>
27573Date: Tue Nov 27 11:57:35 2007 +0100
27574
27575 ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
27576
27577 After an error in the AMCC 405EX users manual now correctly configure
27578 IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
27579 usage.
27580
27581 Signed-off-by: Stefan Roese <sr@denx.de>
27582
Wolfgang Denk8d4f0402007-12-03 00:15:28 +010027583commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
27584Author: Wolfgang Denk <wd@denx.de>
27585Date: Mon Nov 26 19:18:21 2007 +0100
27586
27587 Cleanup coding style; update CHANGELOG
27588
27589 Signed-off-by: Wolfgang Denk <wd@denx.de>
27590
27591commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
27592Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27593Date: Sun Nov 25 22:39:25 2007 +0100
27594
27595 MAKEALL: add missing 512x boards in ppc
27596
27597 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27598
27599commit a340c325e668ca7386c2276387681720be9c3757
27600Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27601Date: Sun Nov 25 18:45:47 2007 +0100
27602
27603 Makefile : fix tags ctags etags with new drivers organization
27604
27605 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27606
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010027607commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
27608Author: Stefan Roese <sr@denx.de>
27609Date: Mon Nov 26 15:06:14 2007 +0100
27610
27611 ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
27612
27613 As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
27614 operation.
27615
27616 Signed-off-by: Stefan Roese <sr@denx.de>
27617
27618commit ca1ce226287270bb01e25b8e3674c701f12edf19
27619Author: Stefan Roese <sr@denx.de>
27620Date: Mon Nov 26 15:01:45 2007 +0100
27621
27622 ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
27623
27624 Signed-off-by: Stefan Roese <sr@denx.de>
27625
Wolfgang Denka5f601f2007-11-26 19:18:21 +010027626commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
27627Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27628Date: Sun Nov 25 18:45:47 2007 +0100
27629
27630 Makefile : fix tags ctags etags with new drivers organization
27631
27632 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27633
27634commit 59829cc189378c142c13d2aa8d9a897d8bef3961
27635Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27636Date: Sat Nov 24 21:26:56 2007 +0100
27637
27638 drivers/mtd : move mtd drivers to drivers/mtd
27639
27640 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27641
27642commit 318c0b90431f2648552e5ade78833f42652ce859
27643Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27644Date: Sat Nov 24 21:17:55 2007 +0100
27645
27646 drivers/misc : move misc drivers to drivers/misc
27647
27648 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27649
27650commit 33daf5b7858807cb4ce4158c2c56524671c14c08
27651Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27652Date: Sat Nov 24 21:13:59 2007 +0100
27653
27654 drivers/block : move block drivers to drivers/block
27655
27656 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27657
27658commit 0c698dcaa70275eb8814f665b545547cee013892
27659Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27660Date: Sat Nov 24 20:59:50 2007 +0100
27661
27662 drivers/rtc : move rtc drivers to drivers/rtc
27663
27664 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27665
27666commit f868cc5a50757d94f36c312395481cb0f187d9e6
27667Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27668Date: Sat Nov 24 20:14:44 2007 +0100
27669
27670 drivers/hwmon : move hardware monitor drviers to drivers/hwmon
27671
27672 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27673
27674commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
27675Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27676Date: Sat Nov 24 19:46:45 2007 +0100
27677
27678 drivers/input : move input drivers to drivers/input
27679
27680 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27681
27682commit e4558666293364fc3af1c1d9381ca933fa0f1275
27683Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27684Date: Sat Nov 24 19:40:11 2007 +0100
27685
27686 drivers/usb : move usb drivers to drivers/usb
27687
27688 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27689
27690commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
27691Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27692Date: Sat Nov 24 19:33:38 2007 +0100
27693
27694 drivers/serial : move serial drivers to drivers/serial
27695
27696 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27697
27698commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
27699Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27700Date: Wed Nov 21 21:19:24 2007 +0100
27701
27702 drivers/net : move net drivers to drivers/net
27703
27704 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27705
27706commit 352d259130b349fe9593b8dada641bd78a9659e5
27707Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27708Date: Tue Nov 20 20:41:48 2007 +0100
27709
27710 drivers/video : move video drivers to drivers/video
27711
27712 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27713
27714commit 73646217186aa17afc8e305c5f06f06dd335eaad
27715Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27716Date: Tue Nov 20 20:33:09 2007 +0100
27717
27718 drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
27719
27720 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27721
27722commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
27723Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27724Date: Tue Nov 20 20:28:09 2007 +0100
27725
27726 drivers/pci : move pci drivers to drivers/pci
27727
27728 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27729
27730commit 9162352817579840d7802da6d85872b3ca003c97
27731Author: Gerald Van Baren <vanbaren@cideas.com>
27732Date: Thu Nov 22 17:23:23 2007 -0500
27733
27734 Fix fdt printing for updated libfdt
27735
27736 Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
27737
27738 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27739
27740commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
27741Author: Kumar Gala <galak@kernel.crashing.org>
27742Date: Wed Nov 21 13:30:15 2007 -0600
27743
27744 Add additional fdt fixup helper functions
27745
27746 Added the following fdt fixup helpers:
27747 * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
27748 * do_fixup_by_compat{_u32} - Find matching nodes by compat
27749
27750 The _u32 variants work the same only the property they are setting
27751 is know to be a 32-bit integer instead of a byte buffer.
27752
27753 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27754
27755commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
27756Author: Kumar Gala <galak@kernel.crashing.org>
27757Date: Wed Nov 21 11:11:03 2007 -0600
27758
27759 Add fdt_fixup_ethernet helper to set mac addresses
27760
27761 Added a fixup helper that uses aliases to set mac addresses
27762 in the device tree based on the bd_t
27763
27764 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27765
27766commit dbaf07ce620aab249e3502b20a986234a6af1d3a
27767Author: Kumar Gala <galak@kernel.crashing.org>
27768Date: Wed Nov 21 14:07:46 2007 -0600
27769
27770 Fix warnings from import of libfdt
27771
27772 cmd_fdt.c: In function fdt_print:
27773 cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
27774 cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
27775 cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
27776 cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
27777
27778 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27779
27780commit 8d04f02f6224e6983f4812ea4da704950ec8539c
27781Author: Kumar Gala <galak@kernel.crashing.org>
27782Date: Wed Oct 24 11:04:22 2007 -0500
27783
27784 Update libfdt from device tree compiler (dtc)
27785
27786 Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
27787 the device tree compiler (dtc) project.
27788
27789 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27790
27791commit e93becf80d732b64aef81b23e8b6ece02c40533d
27792Author: Kumar Gala <galak@kernel.crashing.org>
27793Date: Sat Nov 3 19:46:28 2007 -0500
27794
27795 Move do_fixup* for libfdt into common code
27796
27797 Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
27798 into common/fdt_support.c and renamed:
27799
27800 do_fixup() -> do_fixup_by_path()
27801 do_fixup_u32() -> do_fixup_by_path_u32()
27802
27803 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27804
27805commit f738b4a75998f42a7408defadc9baac7a31c92db
27806Author: Kumar Gala <galak@kernel.crashing.org>
27807Date: Thu Oct 25 16:15:07 2007 -0500
27808
27809 Make no options to fdt print default to '/'
27810
27811 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27812
27813commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
27814Author: Kumar Gala <galak@kernel.crashing.org>
27815Date: Wed Oct 24 10:21:57 2007 -0500
27816
27817 Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
27818
27819 Removed:
27820 fdt_node_is_compatible
27821 fdt_find_node_by_type
27822 fdt_find_compatible_node
27823
27824 To ease merge of newer libfdt as we aren't using them anywhere at this time.
27825
27826 Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
27827 reason.
27828
27829 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27830
27831commit 98e2867cc85409b919f862e6c16026461ec955df
27832Author: Grant Likely <grant.likely@secretlab.ca>
27833Date: Wed Nov 21 09:19:37 2007 -0700
27834
27835 [BUILD] Remove libraries when updating autoconf.mk
27836
27837 Fix library problems caused by conditional compilation. Using
27838 autoconf.mk to decide which files to compile has caused a problem when
27839 changing configuration from one board to another without clearing out
27840 the library (*.a) files.
27841
27842 It used to be that the linker was always passed the same list of .o
27843 files when building the .a files. However, that is not longer true
27844 with conditional compilation. Now, a different board config will have
27845 a different file list passed to the linker. The problem occurs when
27846 a library has already been built and the board config is changed.
27847
27848 Since the linker will update instead of replace a preexisting library,
27849 then if the file list changes to remove some object files the old
27850 objects will still exist in the library.
27851
27852 The solution is to remove all old library files when autoconf.mk is
27853 made.
27854
27855 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
27856
27857commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
27858Author: Kumar Gala <galak@kernel.crashing.org>
27859Date: Wed Nov 21 08:49:50 2007 -0600
27860
27861 [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
27862
27863 Modify libfdt/Makefile to conditionally compile the *.c files based
27864 on the board config.
27865
27866 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27867
27868commit 4a43719a7738712811d822ca8125427b27a55cdc
27869Author: Grant Likely <grant.likely@secretlab.ca>
27870Date: Mon Sep 24 09:05:31 2007 -0600
27871
27872 [BUILD] conditionally compile common/cmd_*.c in common/Makefile
27873
27874 Modify common/Makefile to conditionally compile the cmd_*.c files based
27875 on the board config.
27876
27877 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
27878
27879commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
27880Author: Grant Likely <grant.likely@secretlab.ca>
27881Date: Mon Sep 24 09:05:31 2007 -0600
27882
27883 [BUILD] Generate include/autoconf.mk from board config files
27884
27885 Use cpp and sed to postprocess config.h and import the defined values
27886 into include/autoconf.mk. autoconf.mk is then included by config.mk to
27887 give 'make' access to the board configuration.
27888
27889 Doing this enables conditional compilation at the Makefile level instead
27890 of by wrapping every .c file with #ifdef/#endif wrappers.
27891
27892 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
27893
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010027894commit 68b88999da87ab88e71e1306192905be3450198e
27895Author: Jon Loeliger <jdl@freescale.com>
27896Date: Tue Nov 20 15:02:26 2007 -0600
27897
27898 8610HPCD: Enable the 8610 Display Interface Unit
27899
27900 Signed-off-by: Jon Loeliger <jdl@freescale.com>
27901
27902commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
27903Author: Jon Loeliger <jdl@freescale.com>
27904Date: Tue Nov 20 15:00:53 2007 -0600
27905
27906 Move 8610 DIU interface structure definitions to header file.
27907
27908 These two structures are still needed during the
27909 initialization and setup of the DIU hardware.
27910 So move them to the fsl_diu_fb.h file for now.
27911 Official "blah".
27912
27913 Noticed-by: York Sun <yorksun@freescale.com>
27914 Signed-off-by: Jon Loeliger <jdl@freescale.com>
27915
Wolfgang Denka5f601f2007-11-26 19:18:21 +010027916commit 080c646dbf474a109c3f85718fb01ce042a38c45
27917Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27918Date: Tue Nov 20 20:14:18 2007 +0100
27919
27920 drivers/i2c : move i2c drivers to drivers/i2c
27921
27922 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27923
27924commit 9a337ddc154a10a26f117fd147b009abcdeba75a
27925Author: Wolfgang Denk <wd@denx.de>
27926Date: Mon Nov 19 22:20:24 2007 +0100
27927
27928 Prepare for 1.3.0 release.
27929
27930 Signed-off-by: Wolfgang Denk <wd@denx.de>
27931
Wolfgang Denk9a337dd2007-11-19 22:20:24 +010027932commit f30ad49b16bf998b03c1a5228b6c86369d61c258
27933Author: Haiying Wang <Haiying.Wang@freescale.com>
27934Date: Mon Nov 19 10:02:13 2007 -0500
27935
27936 Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
27937
27938 CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
27939
27940 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27941
27942commit f8c320609366176b31104d9bf5e295232e1c7f1d
27943Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
27944Date: Mon Nov 19 11:14:16 2007 +0900
27945
27946 [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
27947
27948 lowlevel_init.S: Assembler messages:
27949 lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
27950
27951 Looking at codes, the `memtest' and `clearmem' are intentional mixed
27952 use of `global symbols' and `label' for debugging purpose. To make it
27953 build, just disable global-symbols-use for now. As a result `memtest'
27954 still remains as unused, but leave it be...
27955
27956 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
27957
27958commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
27959Author: Wolfgang Denk <wd@denx.de>
27960Date: Mon Nov 19 12:59:14 2007 +0100
27961
27962 Fix build problems with mp2usb board
27963
27964 Signed-off-by: Wolfgang Denk <wd@denx.de>
27965
27966commit 6bf4c686afca1e86e1c384d59218f914605713bf
27967Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27968Date: Sun Nov 18 18:36:11 2007 +0100
27969
27970 s3c24x0: Fix usb_ohci.c missing in Makefile
27971 and usb_ohci.c warning differ in signedness
27972
27973 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27974
27975commit 6073f61e078da5ddb521b56256bcc36508589883
27976Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27977Date: Sun Nov 18 12:55:02 2007 +0100
27978
27979 pb1x00 board: Fix u16 status declaration when PCMCIA is defined
27980
27981 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27982
27983commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
27984Author: Wolfgang Denk <wd@denx.de>
27985Date: Sun Nov 18 17:11:09 2007 +0100
27986
27987 Fix compiler warnings for ARM systems.
27988
27989 Signed-off-by: Wolfgang Denk <wd@denx.de>
27990
27991commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
27992Author: Wolfgang Denk <wd@denx.de>
27993Date: Sun Nov 18 16:36:27 2007 +0100
27994
27995 Fix compiler warnings for PPC systems. Update CHANGELOG.
27996
27997 Signed-off-by: Wolfgang Denk <wd@denx.de>
27998
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010027999commit 653811a3c2b35856bf12e196dcc8c4694e28e420
28000Author: Stefan Roese <sr@denx.de>
28001Date: Sun Nov 18 14:44:44 2007 +0100
28002
28003 ppc4xx: Correct 405EX PCIe UTL register mapping
28004
28005 Map 4k mem space for UTL registers for each port.
28006
28007 Signed-off-by: Stefan Roese <sr@denx.de>
28008
Wolfgang Denk409ecdc2007-11-18 16:36:27 +010028009commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
28010Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28011Date: Sat Nov 17 11:31:10 2007 +0100
28012
28013 Fix warning differ in signedness in net/net.c and net/nfs.c
28014
28015commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
28016Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28017Date: Sat Nov 17 20:42:45 2007 +0900
28018
28019 gth2.c: Fix a warning on gth2 build.
28020
28021 gth2.c: In function 'misc_init_r':
28022 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
28023
28024 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28025
28026commit 2309c130aa4c84b91bd874a41269c923eb61b555
28027Author: Stefan Roese <sr@denx.de>
28028Date: Sat Nov 17 07:58:25 2007 +0100
28029
28030 Fix warning differ in signedness in common/cmd_scsi.c
28031
28032 Signed-off-by: Stefan Roese <sr@denx.de>
28033
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010028034commit 9ea61b57968554eaf0f474ec7e088b17d367f474
28035Author: Stefan Roese <sr@denx.de>
28036Date: Sat Nov 17 14:52:29 2007 +0100
28037
28038 ppc4xx: Update AMCC Kilauea config file
28039
28040 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
28041
28042 Signed-off-by: Stefan Roese <sr@denx.de>
28043
Wolfgang Denk409ecdc2007-11-18 16:36:27 +010028044commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
28045Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28046Date: Sat Nov 17 20:05:26 2007 +0900
28047
28048 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
28049
28050 Current trick to pick up GNU assembler minor version does not work with the
28051 latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
28052 "(GNU Binutils) ".
28053
28054 $ sde-as --version |grep "GNU assembler"
28055 GNU assembler 2.15.94 mipssde-6.02.02-20050602
28056 $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
28057 2.15.94
28058 $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
28059 15
28060 $
28061
28062 $ mips-linux-as --version |grep "GNU assembler"
28063 GNU assembler (GNU Binutils) 2.18
28064 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
28065 (GNU
28066 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
28067 (no output)
28068 $
28069
28070 As a result of above, you'll see many noises with such binutils:
28071
28072 make -C cpu/mips/
28073 /bin/sh: line 0: [: : integer expression expected
28074 /bin/sh: line 0: [: : integer expression expected
28075 make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
28076 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
28077 /bin/sh: line 0: [: : integer expression expected
28078 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
28079 /bin/sh: line 0: [: : integer expression expected
28080 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
28081 /bin/sh: line 0: [: : integer expression expected
28082
28083 This patch simplifies the trick and makes it work with both versions of gas.
28084 I also replace an expensive `awk (or gawk)' with `cut'.
28085
28086 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28087
28088commit 16664f72850846e645616da1c0fa5afcd6d15f15
28089Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28090Date: Sat Nov 17 20:05:26 2007 +0900
28091
28092 [MIPS] Remove useless instructions for initializing $gp.
28093
28094 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28095
28096commit 03c031d5660ea946c39af6e2e16267da857c609f
28097Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28098Date: Sat Oct 27 15:27:06 2007 +0900
28099
28100 [MIPS] MIPS 4K core: Coding style cleanups
28101
28102 No logical changes.
28103
28104 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28105
28106commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
28107Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28108Date: Sat Nov 17 20:05:20 2007 +0900
28109
28110 [MIPS] gth2.c: Fix a warning on gth2 build.
28111
28112 gth2.c: In function 'misc_init_r':
28113 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
28114
28115 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28116
28117commit 4fbd0741b2b6441da10be93e10267122581b7079
28118Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28119Date: Sat Oct 27 15:22:33 2007 +0900
28120
28121 [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
28122
28123 au1x00_eth.c: In function 'au1x00_miiphy_write':
28124 au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
28125
28126 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28127
28128commit f01320459736f156707425cf8112f98606301aa4
28129Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28130Date: Sat Oct 27 15:00:25 2007 +0900
28131
28132 [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
28133
28134 au1x00_eth.c: In function 'au1x00_enet_initialize':
28135 au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
28136 au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
28137 au1x00_eth.c:246: error: for each function it appears in.)
28138 au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
28139 au1x00_eth.c: In function 'au1x00_miiphy_write':
28140 au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
28141 make[1]: *** [au1x00_eth.o] Error 1
28142
28143 Fixed by moving these two functions forward.
28144
28145 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28146
28147commit b09258c5393edd1087c5f39ae68338f16b49f8b3
28148Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28149Date: Sat Oct 27 15:00:25 2007 +0900
28150
28151 MAKEALL: Added missing pb1000 board
28152
28153 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28154
28155commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
28156Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28157Date: Sat Oct 27 15:00:24 2007 +0900
28158
28159 [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
28160
28161 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28162
28163commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
28164Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28165Date: Sat Oct 27 15:00:24 2007 +0900
28166
28167 [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
28168
28169 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28170
28171commit 5947f6999aafa7c54c1390983d264a8463dfea8e
28172Author: Wolfgang Denk <wd@denx.de>
28173Date: Sat Nov 17 02:34:38 2007 +0100
28174
28175 Update CHANGELOIG, prepare for -rc4
28176
28177 Signed-off-by: Wolfgang Denk <wd@denx.de>
28178
Wolfgang Denk5947f692007-11-17 02:34:38 +010028179commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
28180Author: Luotao Fu <l.fu@pengutronix.de>
28181Date: Wed Nov 14 18:58:33 2007 +0100
28182
28183 Fix the i2c frequency and default address in rsdproto board
28184
28185 rsdproto board support has wrong I2C frequency and wrong return value
28186 handling.
28187
28188 Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
28189
28190commit 429c180edad038f91c989cb14b478228092e7054
28191Author: Wolfgang Denk <wd@denx.de>
28192Date: Sat Nov 17 01:45:38 2007 +0100
28193
28194 powerpc: Backout relocation changes for MPC5121, too.
28195
28196 Apply Grant Likely's backout to MPC5121 code, too.
28197
28198 Pointed out by Rafal Jaworowski <raj@semihalf.com>
28199
28200 Signed-off-by: Wolfgang Denk <wd@denx.de>
28201
28202commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
28203Author: Grant Likely <grant.likely@secretlab.ca>
28204Date: Tue Nov 13 22:18:33 2007 -0700
28205
28206 powerpc: Backout relocation changes.
28207
28208 Ugh. I *hate* to back this change out, but these compiler flags don't
28209 work for relocation on all versions of GCC. I've not been able to
28210 reproduce the environment in my setup (and hence, not been able to
28211 find a combination that *does* work), so I've got no choice but to go
28212 back to the old gcc flags and linker script.
28213
28214 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28215
28216commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
28217Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28218Date: Tue Nov 13 09:11:05 2007 +0100
28219
28220 Fixed mips_io_port_base build errors.
28221
28222 This patch has been sent on:
28223 - 29 Sep 2007
28224
28225 Although mips_io_port_base is currently a part of IDE command, it is quite
28226 fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
28227 it to MIPS general part, and introduce `set_io_port_base()' from Linux.
28228
28229 This patch is triggered by multiple definition of `mips_io_port_base' build
28230 error on gth2 (and tb0229 also needs this fix.)
28231
28232 board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
28233 /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
28234 common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
28235 make: *** [u-boot] Error 1
28236
28237 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28238 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28239
28240commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
28241Author: Wolfgang Denk <wd@denx.de>
28242Date: Sat Nov 17 01:30:40 2007 +0100
28243
28244 Fix a bug in the slave serial programming mode for the Xilinx
28245 Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
28246 the most significant bit was set, which did not work on any
28247 architecture where "char" defaulted to be an unsigned type.
28248
28249 Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
28250
28251 Signed-off-by: Wolfgang Denk <wd@denx.de>
28252
28253commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
28254Author: Jon Loeliger <jdl@freescale.com>
28255Date: Thu Nov 1 12:23:29 2007 -0500
28256
28257 86xx: Fix broken variable reference when #def DEBUGing.
28258
28259 Sometimes you can't reference the DDR2 controller variables.
28260
28261 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28262
28263commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
28264Author: Jason Jin <Jason.jin@freescale.com>
28265Date: Fri Oct 26 18:32:00 2007 +0800
28266
28267 make 8610 board use pixis reset
28268
28269 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28270
28271commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
28272Author: Jason Jin <Jason.jin@freescale.com>
28273Date: Mon Oct 29 19:26:21 2007 +0800
28274
28275 Unify pixis_reset altbank across board families
28276
28277 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
28278 into the separate board config files.
28279
28280 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28281 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28282
28283commit 64bf555465c7926be13e1046ac0d0f05ac72829c
28284Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28285Date: Wed Nov 7 08:19:21 2007 +0100
28286
28287 Fix warning: pointer targets in assignment differ in signedness
28288
28289 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28290
28291commit 7a60ee7c6248a958c5757d3660a1702723a2786d
28292Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28293Date: Wed Nov 7 08:19:19 2007 +0100
28294
28295 Fix warning differ in signedness in common/cmd_ide.c
28296
28297 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28298
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010028299commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
28300Author: Stefan Roese <sr@denx.de>
28301Date: Fri Nov 16 14:16:54 2007 +0100
28302
28303 ppc4xx: Enable 405EX PCIe UTL register configuration
28304
28305 Till now the UTL registers on 405EX were not initialized but left with
28306 their default values. This patch new initializes some of the UTL
28307 registers on 405EX.
28308
28309 Signed-off-by: Stefan Roese <sr@denx.de>
28310
28311commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
28312Author: Stefan Roese <sr@denx.de>
28313Date: Fri Nov 16 14:00:59 2007 +0100
28314
28315 ppc4xx: Update AMCC Makalu for board rev 1.1
28316
28317 This patch adds changes needed for Makalu rev 1.1:
28318
28319 - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
28320 - Enable 2nd ethernet port EMAC1
28321 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
28322 - Reset PCIe ports via GPIO upon bootup
28323
28324 Signed-off-by: Stefan Roese <sr@denx.de>
28325
Wolfgang Denka5f601f2007-11-26 19:18:21 +010028326commit 4d4faae65e115e327425cd514c1a35146a85166b
28327Author: Grant Likely <grant.likely@secretlab.ca>
28328Date: Mon Sep 24 09:05:31 2007 -0600
28329
28330 Group PCI and PCMCIA drivers in drivers/Makefile
28331
28332 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28333
28334commit 5798f87dc10a496d79d3177b9f5a76488987fd35
28335Author: Grant Likely <grant.likely@secretlab.ca>
28336Date: Mon Sep 24 09:05:31 2007 -0600
28337
28338 Group block/flash drivers in drivers/Makefile
28339
28340 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28341
28342commit df58c81551700f058b44cacf55a7997fa63bfe0a
28343Author: Grant Likely <grant.likely@secretlab.ca>
28344Date: Mon Sep 24 09:05:31 2007 -0600
28345
28346 Group USB drivers in drivers/Makefile
28347
28348 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28349
28350commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
28351Author: Grant Likely <grant.likely@secretlab.ca>
28352Date: Mon Sep 24 09:05:30 2007 -0600
28353
28354 Group i2c drivers in drivers/Makefile
28355
28356 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28357
28358commit ec00c76de0e5971273905998d62d6bb119324218
28359Author: Grant Likely <grant.likely@secretlab.ca>
28360Date: Mon Sep 24 09:05:30 2007 -0600
28361
28362 Group console drivers in drivers/Makefile
28363
28364 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28365
28366commit 754f230aa01b8c789fc31f8013c2487954073300
28367Author: Grant Likely <grant.likely@secretlab.ca>
28368Date: Mon Sep 24 09:05:30 2007 -0600
28369
28370 Group network drivers in drivers/Makefile
28371
28372 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28373
28374commit f0037c56b0d12cd46215124667b9f83d60ef9391
28375Author: Grant Likely <grant.likely@secretlab.ca>
28376Date: Mon Sep 24 09:05:30 2007 -0600
28377
28378 Build: split COBJS value into multiple lines
28379
28380 This change is in preparation for condtitionial compile support in the
28381 build system. By spliting them all into seperate lines now, subsequent
28382 patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
28383 be less invasive and easier to review
28384
28385 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28386
28387commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
28388Author: Grant Likely <grant.likely@secretlab.ca>
28389Date: Mon Sep 24 09:05:30 2007 -0600
28390
28391 Add .gitignore files
28392
28393 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28394 Acked-by: Kim Phillips <kim.phillips@freescale.com>
28395
Wolfgang Denk5947f692007-11-17 02:34:38 +010028396commit 955413f35f054a82e40042f1dbcf501c6a05719b
28397Author: Grant Likely <grant.likely@secretlab.ca>
28398Date: Thu Nov 15 08:27:52 2007 -0700
28399
28400 Revert "Correct relocation fixup for mpc5xx"
28401
28402 This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
28403 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28404
28405commit e15633888a058aacb31a62d2cf1278e1e4c236ab
28406Author: Grant Likely <grant.likely@secretlab.ca>
28407Date: Thu Nov 15 08:24:32 2007 -0700
28408
28409 Revert "Correct fixup relocation for MPC5xxx"
28410
28411 This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
28412 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28413
28414commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
28415Author: Grant Likely <grant.likely@secretlab.ca>
28416Date: Thu Nov 15 08:21:04 2007 -0700
28417
28418 Revert "Correct fixup relocation for mpc8220"
28419
28420 This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
28421 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28422
28423commit 70922342369e5e39b286fe21e768a239ca07a514
28424Author: Grant Likely <grant.likely@secretlab.ca>
28425Date: Thu Nov 15 08:20:57 2007 -0700
28426
28427 Revert "Correct fixup relocation for mpc824x"
28428
28429 This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
28430 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28431
28432commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
28433Author: Grant Likely <grant.likely@secretlab.ca>
28434Date: Thu Nov 15 08:20:50 2007 -0700
28435
28436 Revert "Correct fixup relocation for mpc8260"
28437
28438 This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
28439 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28440
28441commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
28442Author: Grant Likely <grant.likely@secretlab.ca>
28443Date: Thu Nov 15 08:20:43 2007 -0700
28444
28445 Revert "Correct fixup relocation for mpc83xx"
28446
28447 This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
28448 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28449
28450commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
28451Author: Grant Likely <grant.likely@secretlab.ca>
28452Date: Thu Nov 15 08:20:25 2007 -0700
28453
28454 Revert "[MPC512x] Correct fixup relocation"
28455
28456 This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
28457 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
28458
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010028459commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
28460Author: Stefan Roese <sr@denx.de>
28461Date: Thu Nov 15 14:25:09 2007 +0100
28462
28463 ppc4xx: Small AMCC Kilauea cleanup
28464
28465 Remove not needed pci_target_init() function.
28466
28467 Signed-off-by: Stefan Roese <sr@denx.de>
28468
28469commit aee747f19b460a0e9da20ff21e90fdaac1cec359
28470Author: Stefan Roese <sr@denx.de>
28471Date: Thu Nov 15 14:23:55 2007 +0100
28472
28473 ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
28474
28475 - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
28476 - Cleanup of the 4xx GPIO functions
28477 - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
28478
28479 Signed-off-by: Stefan Roese <sr@denx.de>
28480
28481commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
28482Author: Stefan Roese <sr@denx.de>
28483Date: Thu Nov 15 14:20:08 2007 +0100
28484
28485 ppc4xx: AMCC Taihu board config file cleanup
28486
28487 This patch makes the AMCC Taihu a little more compatible to the other
28488 AMCC eval boards.
28489
28490 Signed-off-by: Stefan Roese <sr@denx.de>
28491
28492commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
28493Author: Marian Balakowicz <m8@semihalf.com>
28494Date: Thu Nov 15 13:37:28 2007 +0100
28495
28496 [INKA4x0] NG hardware: flash support
28497
28498 Disabled and remove inka4x0 custom flash driver, use CFI flash
28499 driver instead.
28500
28501 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28502
28503commit 5fb6d7191e206cdde0e23140fd8111caed93a595
28504Author: Marian Balakowicz <m8@semihalf.com>
28505Date: Thu Nov 15 13:29:55 2007 +0100
28506
28507 [INKA4x0] NG hardware: SDRAM support
28508
28509 Add support for three new DDR chips that may be present on a NG
28510 INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
28511
28512 Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
28513
28514 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28515
28516commit f23cb34c367bb27585a4fdb8a75277370e7d0596
28517Author: Marian Balakowicz <m8@semihalf.com>
28518Date: Thu Nov 15 13:24:43 2007 +0100
28519
28520 [INKA4x0] NG hardware: platform code update
28521
28522 - Cleanup compile warnings.
28523 - Add missing '\0' in default environment.
28524 - Increase CFG_MONITOR_LEN to 256 KiB.
28525 - Add required CFG_USE_PPCENV.
28526
28527 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28528
28529commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
28530Author: Peter Pearse <peter.pearse@arm.com>
28531Date: Thu Nov 15 08:58:00 2007 +0000
28532
28533 Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
28534 Remove warnings re onenand_read() & write()
28535
28536commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
28537Author: Peter Pearse <peter.pearse@arm.com>
28538Date: Thu Nov 15 08:45:13 2007 +0000
28539
28540 Correction patch
28541
28542commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
28543Author: Roy Zang <tie-fei.zang@freescale.com>
28544Date: Thu Sep 13 18:52:28 2007 +0800
28545
28546 Enable ULi1575 Ethernet support in 8610HPCD config
28547
28548 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
28549 Acked-by: Jon Loeliger <jdl@freescale.com>
28550
Wolfgang Denk5947f692007-11-17 02:34:38 +010028551commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
28552Author: Stefan Roese <sr@denx.de>
28553Date: Tue Nov 13 08:18:20 2007 +0100
28554
28555 ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
28556
28557 Signed-off-by: Stefan Roese <sr@denx.de>
28558
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010028559commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
28560Author: Stefan Roese <sr@denx.de>
28561Date: Tue Nov 13 08:06:11 2007 +0100
28562
28563 ppc4xx: Fix 405EX PCIe UTLSET register setup
28564
28565 Signed-off-by: Stefan Roese <sr@denx.de>
28566
Wolfgang Denk5947f692007-11-17 02:34:38 +010028567commit 1ce55151c85d068f70317a8d65c61058b891afb4
28568Author: Heiko Schocher <hs@denx.de>
28569Date: Tue Nov 13 07:50:29 2007 +0100
28570
28571 [UC101] SRAM now with 2 MB working.
28572
28573 Signed-off-by: Heiko Schocher <hs@denx.de>
28574
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010028575commit 2d14684341109a69616e4d6016cd61402d55086f
28576Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28577Date: Fri Nov 9 15:37:53 2007 +0100
28578
28579 ppc4xx: Use generic usb-ohci driver for sequoia board
28580
28581 This patch makes the sequoia board use the generic usb-ohci driver
28582 instead of cpu/ppc4xx/usb_ohci.c.
28583
28584 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28585 Signed-off-by: Stefan Roese <sr@denx.de>
28586
28587commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
28588Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28589Date: Fri Nov 9 15:37:23 2007 +0100
28590
28591 ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
28592
28593 This patch disables the 44x d-cache on 'usb start' and
28594 reenables it on 'usb stop'. This should be seen as a
28595 temporary fix until the generic usb-ohci driver can
28596 life with d-cache enabled.
28597
28598 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28599 Signed-off-by: Stefan Roese <sr@denx.de>
28600
28601commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
28602Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28603Date: Fri Nov 9 15:36:44 2007 +0100
28604
28605 ppc4xx: Remove redundant code from 4xx network driver
28606
28607 This patch removes some redundant code and decrements the end
28608 address of cache flush and invalidate by 1.
28609
28610 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28611 Signed-off-by: Stefan Roese <sr@denx.de>
28612
28613commit 5ca9881aad8c413ac2a82868a5e3719178254502
28614Author: Peter Pearse <peter.pearse@arm.com>
28615Date: Fri Nov 9 15:24:26 2007 +0000
28616
28617 Add apollon board support
28618 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
28619
28620commit b53313dbfc74525d85f1e7e0102f902d5c863beb
28621Author: Stefan Roese <sr@denx.de>
28622Date: Fri Nov 9 12:19:58 2007 +0100
28623
28624 ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
28625
28626 Signed-off-by: Stefan Roese <sr@denx.de>
28627
28628commit c7f69c340277935a6c19a956421852da944a365f
28629Author: Stefan Roese <sr@denx.de>
28630Date: Fri Nov 9 12:18:54 2007 +0100
28631
28632 ppc4xx: Make output a little shorter on I2C bootrom detection
28633
28634 Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
28635 already print a line with the information which I2C bootrom is
28636 used for bootstrap configuration. So we don't need this extra line
28637 with "I2C boot EEPROM en-/dis-abled".
28638
28639 This patch also has a little code cleanup integrated.
28640
28641 Signed-off-by: Stefan Roese <sr@denx.de>
28642
Wolfgang Denk5947f692007-11-17 02:34:38 +010028643commit 8d737a28152ec12873f8544cca1fb39a49e5e693
28644Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28645Date: Thu Nov 8 12:50:18 2007 -0600
28646
28647 ColdFire: MCF5329 - Remove reset registers from CCM
28648
28649 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28650
28651commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
28652Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28653Date: Thu Nov 8 12:31:11 2007 -0600
28654
28655 ColdFire: MCF5329 - Add Reset structure to immap_5329.h
28656
28657 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28658
28659commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
28660Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28661Date: Thu Nov 8 12:19:01 2007 -0600
28662
28663 ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
28664
28665 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28666
28667commit 225a24b5e062ad94627424508ae814f51dbe1a34
28668Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28669Date: Wed Nov 7 18:00:54 2007 -0600
28670
28671 ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
28672
28673 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28674
28675commit 248c7c14835f34d5d910b45e5600050e58ca6cab
28676Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28677Date: Wed Nov 7 17:56:15 2007 -0600
28678
28679 ColdFire: MCF532x - Update do_reset() using core reset
28680
28681 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28682
28683commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
28684Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28685Date: Wed Nov 7 17:51:00 2007 -0600
28686
28687 ColdFire: Update cpu flag for 4.2-xx compiler
28688
28689 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
28690
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010028691commit 070ba56115b4da63b46e974287fa4550d4023386
28692Author: York Sun <yorksun@freescale.com>
28693Date: Wed Oct 31 14:59:04 2007 -0500
28694
28695 8610: Add console frame buffer support to FSL 8610 DIU driver.
28696
28697 Add cfb console support to FSL 8610 DIU driver.
28698 Inspect board version from PIXIS to obtain correct pixel format.
28699
28700 Use #define CONFIG_VIDEO in config file to enable fb console.
28701
28702 To switch monitor, set monitor variable to
28703 0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
28704 followed by "diufb init".
28705
28706 Preserve logo bitmap at the top of the fb console.
28707
28708 Signed-off-by: York Sun <yorksun@freescale.com>
28709 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28710
28711commit a877880c6949e948bd63cd6ea4e216573d2f53dd
28712Author: York Sun <yorksun@freescale.com>
28713Date: Mon Oct 29 13:58:39 2007 -0500
28714
28715 8610: Add 8610 DIU display driver
28716
28717 1280x1024 and 1024x768 @ 32 bpp are supported now.
28718 DVI, Single-link LVDS, Double-link LVDS are all supported.
28719
28720 Environmental variable "monitor" is used to specify monitor port.
28721
28722 A new command "diufb" is introduced to reinitialize monitor
28723 and display a BMP file in the memory. So far, 1-bit, 4-bit,
28724 8-bit and 24-bit BMP formats are supported.
28725
28726 diufb init
28727 - initialize the diu driver
28728 Enable the port specified in the environmental variable "monitor"
28729
28730 diufb addr
28731 - display bmp file in memory.
28732 The bmp image should be no bigger than the resolution, 1280x1024
28733 for DVI and double-link LVDS, 1024x768 for single-link LVDS.
28734
28735 Note, this driver allocate memory but doesn't free it after use
28736 It is written on purpose -- to avoid a failure of reallocation
28737 due to memory fragement.
28738
28739 ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
28740
28741 Signed-off-by: York Sun <yorksun@freescale.com>
28742 Signed-off-by: Jon loeliger <jdl@freescale.com>
28743
28744commit 52e5ddfecdda308f75782fae206b677b1810f5f9
28745Author: York Sun <yorksun@freescale.com>
28746Date: Wed Oct 31 10:43:59 2007 -0500
28747
28748 FSL: Add a freescale bitmap logo.
28749
28750 This Freescale logo is a 340 x 128 x 4bpp BMP file
28751 that can be displayed by the DIU Framebuffer driver.
28752
28753 Signed-off-by: York Sun <yorksun@freescale.com>
28754 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28755
28756commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
28757Author: York Sun <yorksun@freescale.com>
28758Date: Mon Oct 29 13:57:53 2007 -0500
28759
28760 8610: Make some extra debug environment variables conditional.
28761
28762 One may #define ENV_DEBUG to get them back again.
28763
28764 Signed-off-by: York Sun <yorksun@freescale.com>
28765
28766commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
28767Author: Jason Jin <Jason.jin@freescale.com>
28768Date: Mon Oct 29 19:26:21 2007 +0800
28769
28770 8610: Actually enable pixis_reset CONFIGs
28771
28772 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28773
28774commit f3bceaab230b4748d0afc4109b6837308f018b40
28775Author: Jason Jin <Jason.jin@freescale.com>
28776Date: Fri Oct 26 18:31:59 2007 +0800
28777
28778 Fix the BAT definition of PCI IO on 8610 board
28779
28780 The address in the BAT register is aligned with the BAT size.
28781 The original definition actually did not define BAT for PCIE2 IO.
28782 This patch fix this.
28783
28784 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28785
28786commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
28787Author: Jason Jin <Jason.jin@freescale.com>
28788Date: Mon Oct 29 19:26:21 2007 +0800
28789
28790 Unify pixis_reset altbank across board families
28791
28792 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
28793 into the separate board config files.
28794
28795 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28796 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28797
28798commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
28799Author: Jason Jin <Jason.jin@freescale.com>
28800Date: Fri Oct 26 18:32:00 2007 +0800
28801
28802 make 8610 board use pixis reset
28803
28804 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
28805
28806commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
28807Author: Jon Loeliger <jdl@freescale.com>
28808Date: Thu Nov 1 12:23:29 2007 -0500
28809
28810 86xx: Fix broken variable reference when #def DEBUGing.
28811
28812 Sometimes you can't reference the DDR2 controller variables.
28813
28814 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28815
Wolfgang Denk5947f692007-11-17 02:34:38 +010028816commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
28817Author: Roy Zang <tie-fei.zang@freescale.com>
28818Date: Mon Nov 5 17:39:24 2007 +0800
28819
28820 Implement general ULi 526x Ethernet driver support in U-boot
28821
28822 This patch implements general ULi 526x Ethernet driver.
28823 Until now, it is the only native Ethernet port on
28824 MPC8610HPCD board, but it could be used on other boards
28825 with ULi 526x Ethernet port as well.
28826
28827 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
28828 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
28829 Acked-by: Jon Loeliger <jdl@freescale.com>
28830 Signed-off-by: Ben Warren <bwarren@qstreams.com>
28831
28832commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
28833Author: Larry Johnson <lrj@arlinx.com>
28834Date: Thu Nov 1 08:46:50 2007 -0500
28835
28836 NET: Add Ethernet 1000BASE-X support for PPC4xx
28837
28838 This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
28839 "miiphy_duplex()". It also adds function "miiphy_is_1000base_x ()", which
28840 returns non-zero iff the PHY registers are configured for 1000BASE-X. The
28841 "mii info" command is modified to distinguish between 1000BASE-T and -X.
28842
28843 Signed-off-by: Larry Johnson <lrj@acm.org>
28844 Signed-off-by: Ben Warren <bwarren@qstreams.com>
28845
28846commit 298035df4948b113d29ac0e694717d34b95bc5dc
28847Author: Larry Johnson <lrj@arlinx.com>
28848Date: Wed Oct 31 11:21:29 2007 -0500
28849
28850 NET: Cosmetic changes
28851
28852 Signed-off-by: Larry Johnson <lrj@acm.org>
28853 Signed-off-by: Ben Warren <bwarren@qstreams.com>
28854
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010028855commit 654f38b3a387886996a5a75771fbfc29cb4f225e
28856Author: Stefan Roese <sr@denx.de>
28857Date: Mon Nov 5 07:43:05 2007 +0100
28858
28859 ppc4xx: Make output a little shorter on PCIe detection
28860
28861 Now not max 3 lines but 2 lines are printed per PCIe port.
28862
28863 Signed-off-by: Stefan Roese <sr@denx.de>
28864
Wolfgang Denk5947f692007-11-17 02:34:38 +010028865commit 992742a5b09d9040adbd156fb90756af66ade310
28866Author: Wolfgang Denk <wd@denx.de>
28867Date: Sat Nov 3 23:09:27 2007 +0100
28868
28869 Cleanup coding style; update CHANGELOG
28870
28871 Signed-off-by: Wolfgang Denk <wd@denx.de>
28872
Wolfgang Denk992742a2007-11-03 23:09:27 +010028873commit e881cb563e32f45832b7b6db77bdcd017adcbb41
28874Author: Bruce Adler <bruce.adler@ccpu.com>
28875Date: Fri Nov 2 13:15:42 2007 -0700
28876
28877 fix wording in README
28878
28879 Changed the wording to properly describe the shadowing
28880 of the environment from ROM to RAM
28881
28882 Signed-off-by: Bruce Adler <bruce.adler@acm.org>
28883
28884commit ad845beef06245426c57b53dcdc01b7dc70e0d45
28885Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28886Date: Wed Oct 31 02:18:15 2007 +0900
28887
28888 blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
28889
28890 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28891
28892commit ec22755799466c8a103664bb3a5e647bf9c238f4
28893Author: Vlad Lungu <vlad@comsys.ro>
28894Date: Thu Oct 25 16:08:14 2007 +0300
28895
28896 Trimmed some variables in ne2000.c
28897
28898 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
28899
28900commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
28901Author: Zhang Wei <wei.zhang@freescale.com>
28902Date: Thu Oct 25 17:51:27 2007 +0800
28903
28904 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
28905
28906 The scan code of the key 'z' is 0x1d, which should be handled.
28907
28908 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
28909 controller.
28910
28911 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
28912
28913commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
28914Author: Zhang Wei <wei.zhang@freescale.com>
28915Date: Thu Oct 25 17:30:04 2007 +0800
28916
28917 Fix USB support issue for MPC8641HPCN board.
28918
28919 The configuration file has already enabled USB, but it
28920 missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
28921 on MPC8641HPCN can not work because of the wrong USB
28922 register endian.
28923
28924 And add the USB command to U-Boot commands list.
28925
28926 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
28927
28928commit 4e62041023dc3de9d98d977bb080235bc6d035e0
28929Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28930Date: Wed Oct 24 18:16:01 2007 +0200
28931
28932 Use config_cmd_default.h instead of config_cmd_all.h
28933
28934 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28935
28936commit 56622f87857439b1c221e9deef11a9d5bb5d4308
28937Author: Marian Balakowicz <m8@semihalf.com>
28938Date: Wed Oct 24 01:37:36 2007 +0200
28939
28940 TQM5200: Call usb_cpu_init() during board init
28941
28942 usb_cpu_init() configures GPS USB pins, clocks, etc. and
28943 is required for proper operation of kernel USB subsystem.
28944 This setup was previously done in the kernel by the fixup
28945 code which is being removed, thus low level init must be
28946 done by U-boot now.
28947
28948 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
28949
28950commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
28951Author: Guennadi Liakhovetski <lg@denx.de>
28952Date: Tue Oct 23 16:25:50 2007 +0200
28953
28954 Fix typo in nfs.c
28955
28956 An obvious typo. Originally fixed in linkstation u-boot port.
28957
28958 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28959
28960commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
28961Author: Guennadi Liakhovetski <lg@denx.de>
28962Date: Tue Oct 23 14:35:05 2007 +0200
28963
28964 Fix a typo in cpu/mpc824x/interrupts.c
28965
28966 Since December 2003 the timer_interrupt_cpu() function in
28967 cpu/mpc824x/interrupts.c contains what seems to be a superfluous
28968 parameter. Remove it.
28969
28970 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
28971
28972commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
28973Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
28974Date: Wed Oct 17 11:13:51 2007 +0200
28975
28976 add ft_cpu_setup(..) on mpc8260
28977
28978 Add ft_cpu_setup(..)-function to adapt it for use with libfdt
28979 based on code from mpc5xxx
28980
28981 Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
28982 --
28983
28984commit 6abd82e19ae93c0b4d104e50165e235915ec0875
28985Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
28986Date: Wed Oct 17 11:18:42 2007 +0200
28987
28988 changes for IDS8247 board support
28989
28990 To get the IDS8247 board working following are done:
28991 - FCC2 is deactivated
28992 - FCC1 is activated
28993 - I2C is activated
28994 - CFI driver is activated
28995 - Adapted for use with LIBFDT
28996
28997 Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
28998 --
28999
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010029000commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
29001Author: Stefan Roese <sr@denx.de>
29002Date: Sat Nov 3 12:08:28 2007 +0100
29003
29004 ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
29005
29006 This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
29007 Again, only one image supports both targets.
29008
29009 Signed-off-by: Stefan Roese <sr@denx.de>
29010
Wolfgang Denk992742a2007-11-03 23:09:27 +010029011commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
29012Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29013Date: Wed Oct 24 15:48:37 2007 +0200
29014
29015 ATSTK1002: Remove default ethernet addresses
29016
29017 Wolfgang is right: It's not a good idea to set up default initial
29018 ethernet addresses for a board, even though they belong to the local
29019 range.
29020
29021 This will change the failure mode from "IT manager screams at you for
29022 using duplicate ethernet addresses" to a nice error message explaining
29023 that the ethernet address hasn't been set properly.
29024
29025 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29026
29027commit e5c794e491a57d829b6d8733e2ed8368a2269abf
29028Author: Justin Flammia <jflammia@savantav.com>
29029Date: Mon Oct 29 17:40:35 2007 -0400
29030
29031 DHCP Client Fix
29032
29033 This is a multi-part message in MIME format.
29034
29035 commit e6e505eae94ed721e123e177489291fc4544b7b8
29036 Author: Justin Flammia <jflammia@savantav.com>
29037 Date: Mon Oct 29 17:19:03 2007 -0400
29038
29039 Found a bug in the way the DHCP Request packet is built, where the IP address
29040 that is offered by the server is bound to prematurely. This patch is a fix of
29041 that bug where the IP address offered by the DHCP server is not used until
29042 after the DHCP ACK from the server is received.
29043
29044 Signed-off-by: Justin Flammia <jflammia@savantav.com>
29045 Signed-off-by: Ben Warren <bwarren@qstreams.com>
29046
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010029047commit 5d96d40d3f36da33348e68f9ea993f383e11f997
29048Author: Stefan Roese <sr@denx.de>
29049Date: Wed Oct 31 20:58:34 2007 +0100
29050
29051 ppc4xx: Fix acadia_nand build problem
29052
29053 Since the cache handling functions were moved from start.S into cache.S
29054 the acadia NAND booting Makfile needs to be adapted accordingly.
29055
29056 Signed-off-by: Stefan Roese <sr@denx.de>
29057
29058commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
29059Author: Stefan Roese <sr@denx.de>
29060Date: Wed Oct 31 20:57:11 2007 +0100
29061
29062 ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
29063
29064 This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
29065 and to the Sequoia TLB init code. Now the cache can be enabled on 44x
29066 boards by defining CONFIG_4xx_DCACHE in the board config file. This
29067 option will disappear, when more boards use is successfully and no
29068 more known problems exist.
29069
29070 This is tested successfully on Sequoia and Katmai. The only problem that
29071 needs to be fixed is, that USB is not working on Sequoia right now, since
29072 it will need some cache handling code too, similar to the 4xx EMAC driver.
29073
29074 Signed-off-by: Stefan Roese <sr@denx.de>
29075
29076commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
29077Author: Stefan Roese <sr@denx.de>
29078Date: Wed Oct 31 20:51:10 2007 +0100
29079
29080 ppc4xx: Enable CPU POST test for 4xx with dcache enabled
29081
29082 Now with caches enabled (i- and d-cache) on 44x, we need a chance to
29083 disable the cache for the CPU POST tests, since these tests consist
29084 of self modifying code. This is done via the new change_tlb() function.
29085
29086 Signed-off-by: Stefan Roese <sr@denx.de>
29087
29088commit f71b2888b4b3c870909a0341427b2a914246f81f
29089Author: Stefan Roese <sr@denx.de>
29090Date: Wed Oct 31 20:47:26 2007 +0100
29091
29092 ppc4xx: Change 4xx POST ethernet test to handle cached memory too
29093
29094 This patch enables the 4xx EMAC POST driver to work too, when dcache is
29095 enabled.
29096
29097 Signed-off-by: Stefan Roese <sr@denx.de>
29098
29099commit a2685904061b35a17583d65fe47cdc2686a69eaa
29100Author: Stefan Roese <sr@denx.de>
29101Date: Wed Oct 31 20:45:53 2007 +0100
29102
29103 ppc4xx: Remove temporary TLB entry in POST cache test only for 440
29104
29105 Signed-off-by: Stefan Roese <sr@denx.de>
29106
29107commit ff768cb168d8157c24a25016dbfbeb465e47f420
29108Author: Stefan Roese <sr@denx.de>
29109Date: Wed Oct 31 18:01:24 2007 +0100
29110
29111 ppc4xx: Change 4xx ethernet driver to handle cached memory too
29112
29113 This patch enables the 4xx EMAC driver to work too, when dcache is
29114 enabled.
29115
29116 Signed-off-by: Stefan Roese <sr@denx.de>
29117
29118commit 483e09a223c666269ef81d3573a6591b1046b0ef
29119Author: Stefan Roese <sr@denx.de>
29120Date: Wed Oct 31 17:59:22 2007 +0100
29121
29122 ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
29123
29124 This function is used to either turn cache on or off in a specific
29125 memory area.
29126
29127 Signed-off-by: Stefan Roese <sr@denx.de>
29128
29129commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
29130Author: Stefan Roese <sr@denx.de>
29131Date: Wed Oct 31 17:57:52 2007 +0100
29132
29133 ppc4xx: Remove cache definition from 4xx board config files
29134
29135 All 4xx board config files don't need the cache definitions anymore.
29136 These are now defined in common headers.
29137
29138 Signed-off-by: Stefan Roese <sr@denx.de>
29139
29140commit 9b94ac61d2176185c30adf0793e079ec30e68687
29141Author: Stefan Roese <sr@denx.de>
29142Date: Wed Oct 31 17:55:58 2007 +0100
29143
29144 ppc4xx: Rework 4xx cache support
29145
29146 New cache handling functions added and all existing functions
29147 moved from start.S into seperate cache.S.
29148
29149 Signed-off-by: Stefan Roese <sr@denx.de>
29150
29151commit 06713773da4ac3d390c63d82641eb553224b27c2
29152Author: Stefan Roese <sr@denx.de>
29153Date: Tue Oct 23 18:03:12 2007 +0200
29154
29155 ppc4xx: Remove compiler warning from previous commit
29156
29157 Signed-off-by: Stefan Roese <sr@denx.de>
29158
29159commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
29160Author: Stefan Roese <sr@denx.de>
29161Date: Tue Oct 23 14:40:30 2007 +0200
29162
29163 ppc4xx: Remove temporary TLB entry in POST cache test
29164
29165 Signed-off-by: Stefan Roese <sr@denx.de>
29166
29167commit 1338e6a81834099ba19733b69aafd8ef5f098094
29168Author: Stefan Roese <sr@denx.de>
29169Date: Tue Oct 23 14:05:08 2007 +0200
29170
29171 ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
29172
29173 I lately noticed, that newer 4xx board with GBit support sometimes don't
29174 finish link autonegotiation in 4 seconds. Changing this timeout to 5
29175 seconds seems fine here.
29176
29177 Signed-off-by: Stefan Roese <sr@denx.de>
29178
29179commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
29180Author: Stefan Roese <sr@denx.de>
29181Date: Tue Oct 23 14:03:17 2007 +0200
29182
29183 ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
29184
29185 This patch changes all in32/out32 calls to use the recommended in_be32/
29186 out_be32 macros instead.
29187
29188 Signed-off-by: Stefan Roese <sr@denx.de>
29189
29190commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
29191Author: Stefan Roese <sr@denx.de>
29192Date: Thu Oct 25 12:24:59 2007 +0200
29193
29194 ppc4xx: Fix POST ethernet test for Haleakala
29195
29196 The POST ethernet test needed to be changed to dynamically determine
29197 the count of ethernet devices. This code is cloned from the 4xx
29198 ethernet driver.
29199
29200 Signed-off-by: Stefan Roese <sr@denx.de>
29201
29202commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
29203Author: Stefan Roese <sr@denx.de>
29204Date: Tue Oct 23 11:31:05 2007 +0200
29205
29206 ppc4xx: Correct UART input clock calculation and passing to fdt
29207
29208 We now use a value in the gd (global data) structure for the UART input
29209 frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
29210 in get_sys_info().
29211
29212 Signed-off-by: Stefan Roese <sr@denx.de>
29213
29214commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
29215Author: Stefan Roese <sr@denx.de>
29216Date: Tue Oct 23 10:10:08 2007 +0200
29217
29218 ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
29219
29220 The Haleakala is nearly identical with the Kilauea eval board. The only
29221 difference is that the 405EXr only supports one EMAC and one PCIe
29222 interface. This patch adds support for the Haleakala board by using
29223 the identical image for Kilauea and Haleakala. The distinction is done
29224 by comparing the PVR.
29225
29226 Signed-off-by: Stefan Roese <sr@denx.de>
29227
29228commit 9f798766aa85e62eb8fa8c721e148df609b78137
29229Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
29230Date: Tue Oct 23 08:29:10 2007 +0200
29231
29232 ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
29233
29234 This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
29235
29236 Note:
29237 As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
29238 DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
29239 modules are still plugged in. So it is recommended to remove the DIMM
29240 modules while using the NAND booting code with the fixed SDRAM setup!
29241
29242 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
29243 Signed-off-by: Stefan Roese <sr@denx.de>
29244
29245commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
29246Author: Stefan Roese <sr@denx.de>
29247Date: Mon Oct 22 16:24:44 2007 +0200
29248
29249 ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
29250
29251 Signed-off-by: Stefan Roese <sr@denx.de>
29252
29253commit 3248f63ad89cb031491edb7016587fe6e9a238b9
29254Author: Stefan Roese <sr@denx.de>
29255Date: Mon Oct 22 16:22:40 2007 +0200
29256
29257 ppc4xx: Rework of 4xx serial driver (4)
29258
29259 Change 4xx_uart.c:
29260
29261 - Use in_8/out_8 macros instead of in8/out8
29262 - No need for UART_BASE marco anymore, now really handled via function
29263 parameter
29264 - serial_init_common() introduced
29265 - Further coding style cleanup
29266
29267 Signed-off-by: Stefan Roese <sr@denx.de>
29268
29269commit e61cb8163a66b8a135696ae232e2bead1ce0a049
29270Author: Stefan Roese <sr@denx.de>
29271Date: Mon Oct 22 15:45:49 2007 +0200
29272
29273 ppc4xx: Rework of 4xx serial driver (3)
29274
29275 Change all linker scripts to reference the changed driver name iop480_uart.o.
29276
29277 Signed-off-by: Stefan Roese <sr@denx.de>
29278
29279commit 882ae41274921f9016131806bdeb27e19606f47a
29280Author: Stefan Roese <sr@denx.de>
29281Date: Mon Oct 22 15:44:39 2007 +0200
29282
29283 ppc4xx: Rework of 4xx serial driver (2)
29284
29285 Change all linker scripts to reference the changed driver name 4xx_uart.o.
29286
29287 Note: In most cased all these explicit referencing of these object files
29288 in the linker scripts is not neccessary. Only for manually embedded
29289 environment into the U-Boot image, which is not done is most cases.
29290
29291 Signed-off-by: Stefan Roese <sr@denx.de>
29292
29293commit ad31e40bed042cb670d0036fea96435007afb838
29294Author: Stefan Roese <sr@denx.de>
29295Date: Mon Oct 22 15:09:59 2007 +0200
29296
29297 ppc4xx: Rework of 4xx serial driver (1)
29298
29299 This patch starts the rework of the PPC4xx serial driver. First we split
29300 the file into two seperate files, one 4xx_uart.c with the 405/440 UART
29301 handling code and the other one iop480_uart.c with the UART code for the
29302 PLX-Tech IOP480 PPC (PPC403 based).
29303
29304 Signed-off-by: Stefan Roese <sr@denx.de>
29305
29306commit 764e7417ee5f6e25b1715720e7d7dd3487109385
29307Author: Stefan Roese <sr@denx.de>
29308Date: Mon Oct 22 10:30:38 2007 +0200
29309
29310 ppc4xx: Correct UART input clock calculation and passing to fdt
29311
29312 Signed-off-by: Stefan Roese <sr@denx.de>
29313
29314commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
29315Author: Stefan Roese <sr@denx.de>
29316Date: Mon Oct 22 07:34:34 2007 +0200
29317
29318 ppc4xx: Add initial AMCC Makalu 405EX support
29319
29320 Signed-off-by: Stefan Roese <sr@denx.de>
29321
29322commit fa8aea20456e6f1dba43f46bcc72024dd9499998
29323Author: Stefan Roese <sr@denx.de>
29324Date: Mon Oct 22 07:33:52 2007 +0200
29325
29326 ppc4xx: Add freqUART to CPU speed detection
29327
29328 This value is needed later for the device tree configuration of
29329 the uart clock.
29330
29331 Signed-off-by: Stefan Roese <sr@denx.de>
29332
29333commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
29334Author: Stefan Roese <sr@denx.de>
29335Date: Sun Oct 21 14:26:29 2007 +0200
29336
29337 ppc: Small Kilauea cleanup of config file
29338
29339 Signed-off-by: Stefan Roese <sr@denx.de>
29340
29341commit 758c037aeead34b49631b8da3a90b1bba14c0410
29342Author: Stefan Roese <sr@denx.de>
29343Date: Sun Oct 21 08:16:12 2007 +0200
29344
29345 rtc: Add Xicor/Intersil X1205 RTC support
29346
29347 This patch adds support for the Xicor/Intersil X1205 RTC used on the
29348 AMCC Makalu eval board. This driver is basically cloned from the Linux
29349 driver version (2.6.23).
29350
29351 This patch also introduces the Linux bcd.h header for the BCD2BIN/
29352 BIN2BCD conversions. In the future some of the other U-Boot RTC driver
29353 should be converted to also use this header instead of implementing
29354 their own local copy of these functions/macros.
29355
29356 Signed-off-by: Stefan Roese <sr@denx.de>
29357
29358commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
29359Author: Stefan Roese <sr@denx.de>
29360Date: Sun Oct 21 08:12:41 2007 +0200
29361
29362 ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
29363
29364 This patch moves some common 4xx macros and the PPC405_SYS_INFO/
29365 PPC440_SYS_INFO structure into the common ppc4xx.h header.
29366
29367 Lot's of other macros are good candidates to be consolidated this way
29368 in the future.
29369
29370 Signed-off-by: Stefan Roese <sr@denx.de>
29371
29372commit 770c7af5800f598d22730d1f4b70f16c9b33512e
29373Author: Stefan Roese <sr@denx.de>
29374Date: Sun Oct 21 08:05:18 2007 +0200
29375
29376 ppc4xx: Fix size setup in Kilauea DDR2 init routine
29377
29378 The size was initilized wrong. Instead of 256MB, the DDR2 controller
29379 was setup to 512MB. Now the correct values is used.
29380
29381 This patch also does a little cleanup and adds a comment here.
29382
29383 Signed-off-by: Stefan Roese <sr@denx.de>
29384
29385commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
29386Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
29387Date: Thu Oct 18 17:29:04 2007 +0200
29388
29389 ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
29390
29391 CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
29392 number is used to access system registers.
29393
29394 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
29395 Signed-off-by: Stefan Roese <sr@denx.de>
29396
29397commit c36c68160333ac5fe41ec3db12a728b7075b3912
29398Author: Stefan Roese <sr@denx.de>
29399Date: Thu Oct 18 07:42:27 2007 +0200
29400
29401 ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
29402
29403 On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
29404 is the internal SRAM. Since I now ported and tested this endpoint mode
29405 on Kilauea successfully to map to 0 (SDRAM), I also changed this for
29406 Katmai.
29407
29408 Yucca will stay at internal SRAM for now. Not sure if somebody relies on
29409 this setup.
29410
29411 Signed-off-by: Stefan Roese <sr@denx.de>
29412
29413commit 5cb4af4791f61843432155142b6cfac901f66c10
29414Author: Stefan Roese <sr@denx.de>
29415Date: Thu Oct 18 07:39:38 2007 +0200
29416
29417 ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
29418
29419 This patch adds endpoint support for the AMCC Kilauea eval board. It can
29420 be tested by connecting a reworked PCIe cable (only 1x lane singles
29421 connected) to another root-complex.
29422
29423 In this test setup, a 64MB inbound window is configured at BAR0 which maps
29424 to 0 on the PLB side. So accessing this BAR0 from the root-complex will
29425 access the first 64MB of the SDRAM on the PPC side.
29426
29427 Signed-off-by: Stefan Roese <sr@denx.de>
29428
29429commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
29430Author: Stefan Roese <sr@denx.de>
29431Date: Sat Oct 13 16:43:23 2007 +0200
29432
29433 ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
29434
29435 This patch adds support for dynamic configuration of PCIe ports for the
29436 AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
29437 boards Yucca & Katmai and the 405EX board Kilauea.
29438
29439 This dynamic configuration is done via the "pcie_mode" environement
29440 variable. This variable can be set to "EP" or "RP" for endpoint or
29441 rootpoint mode. Multiple values can be joined via the ":" delimiter.
29442 Here an example:
29443
29444 pcie_mode=RP:EP:EP
29445
29446 This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
29447 as endpoint.
29448
29449 Per default Yucca will be configured as:
29450 pcie_mode=RP:EP:EP
29451
29452 Per default Katmai will be configured as:
29453 pcie_mode=RP:RP:REP
29454
29455 Per default Kilauea will be configured as:
29456 pcie_mode=RP:RP
29457
29458 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
29459 Signed-off-by: Stefan Roese <sr@denx.de>
29460
29461commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
29462Author: Stefan Roese <sr@denx.de>
29463Date: Thu Oct 11 11:15:59 2007 +0200
29464
29465 ppc4xx: Enable device tree support (fdt) on Kilauea per default
29466
29467 This patch enables the fdt support on the AMCC Kilauea eval board.
29468 Additionally now EBC ranges fdt fixup is included to support NOR
29469 FLASH mapping via the Linux physmap_of driver.
29470
29471 This Kilauea port now support booting arch/ppc and arch/powerpc
29472 Linux kernels. The default environment "net_nfs" is for arch/ppc
29473 and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
29474 support will be removed.
29475
29476 Signed-off-by: Stefan Roese <sr@denx.de>
29477
29478commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
29479Author: Stefan Roese <sr@denx.de>
29480Date: Thu Oct 11 11:11:45 2007 +0200
29481
29482 ppc4xx: Add additional debug info to 4xx fdt support
29483
29484 Signed-off-by: Stefan Roese <sr@denx.de>
29485
29486commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
29487Author: Stefan Roese <sr@denx.de>
29488Date: Fri Oct 5 21:28:58 2007 +0200
29489
29490 ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
29491
29492 Signed-off-by: Stefan Roese <sr@denx.de>
29493
29494commit 1941cce71b1ae975602854045061e82f94ecd012
29495Author: Stefan Roese <sr@denx.de>
29496Date: Fri Oct 5 17:35:10 2007 +0200
29497
29498 ppc4xx: Fix small merge problem in 4xx_enet.c
29499
29500 Signed-off-by: Stefan Roese <sr@denx.de>
29501
29502commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
29503Author: Stefan Roese <sr@denx.de>
29504Date: Fri Oct 5 17:11:30 2007 +0200
29505
29506 ppc4xx: Add initial AMCC Kilauea 405EX support
29507
29508 Signed-off-by: Stefan Roese <sr@denx.de>
29509
29510commit dbbd125721aea6645fdb962f36bd41f59e272f9d
29511Author: Stefan Roese <sr@denx.de>
29512Date: Fri Oct 5 17:10:59 2007 +0200
29513
29514 ppc4xx: Add PPC405EX support
29515
29516 Signed-off-by: Stefan Roese <sr@denx.de>
29517
29518commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
29519Author: Stefan Roese <sr@denx.de>
29520Date: Fri Oct 5 17:09:36 2007 +0200
29521
29522 ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
29523
29524 Signed-off-by: Stefan Roese <sr@denx.de>
29525
29526commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
29527Author: Stefan Roese <sr@denx.de>
29528Date: Fri Oct 5 17:07:50 2007 +0200
29529
29530 ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
29531
29532 Signed-off-by: Stefan Roese <sr@denx.de>
29533
29534commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
29535Author: Stefan Roese <sr@denx.de>
29536Date: Fri Oct 5 17:04:57 2007 +0200
29537
29538 POST: Add 405EX support to 4xx UART POST test
29539
29540 Signed-off-by: Stefan Roese <sr@denx.de>
29541
29542commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
29543Author: Stefan Roese <sr@denx.de>
29544Date: Fri Oct 5 15:10:02 2007 +0200
29545
29546 DTT: Prepare DS1775 driver for use of different I2C addresses
29547
29548 Signed-off-by: Stefan Roese <sr@denx.de>
29549
29550commit 19e93b1e16d267220440d827b920fbad8abfa70f
29551Author: Stefan Roese <sr@denx.de>
29552Date: Fri Oct 5 14:23:43 2007 +0200
29553
29554 ppc4xx: 4xx_pcie: Change PCIe status output to match common style
29555
29556 Signed-off-by: Stefan Roese <sr@denx.de>
29557
29558commit ff68f66bcb0da847845aa2fac11eba6c25938c99
29559Author: Stefan Roese <sr@denx.de>
29560Date: Fri Oct 5 09:22:33 2007 +0200
29561
29562 ppc4xx: 4xx_pcie: Disable debug output as default
29563
29564 Signed-off-by: Stefan Roese <sr@denx.de>
29565
29566commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
29567Author: Stefan Roese <sr@denx.de>
29568Date: Fri Oct 5 09:18:23 2007 +0200
29569
29570 ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
29571
29572 Signed-off-by: Stefan Roese <sr@denx.de>
29573
29574commit 4dbee8a90df613eb517aadbecebd70f168913d30
29575Author: Stefan Roese <sr@denx.de>
29576Date: Fri Oct 5 07:57:20 2007 +0200
29577
29578 ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
29579
29580 128MB seems to be the smallest possible value for the memory size
29581 for on PCIe port. With this change now the BAR's of the PCIe cards
29582 are accessible under U-Boot.
29583
29584 One big note: This only works for PCIe port 0 & 1. For port 2 this
29585 currently doesn't work, since the base address is now 0xc0000000
29586 (0xb0000000 + 2 * 0x08000000), and this is already occupied by
29587 CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
29588 to change the base addresses completely and this change would have
29589 too much impact right now.
29590
29591 This patch adds debug output to the 4xx pcie driver too.
29592
29593 Signed-off-by: Stefan Roese <sr@denx.de>
29594
29595commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
29596Author: Stefan Roese <sr@denx.de>
29597Date: Wed Oct 3 21:16:32 2007 +0200
29598
29599 ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
29600
29601 Signed-off-by: Stefan Roese <sr@denx.de>
29602
29603commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
29604Author: Stefan Roese <sr@denx.de>
29605Date: Wed Oct 3 15:01:02 2007 +0200
29606
29607 ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
29608
29609 These files were introduced with the IBM 405GP but are currently used on all
29610 4xx PPC platforms. So the name doesn't match the content anymore. This patch
29611 renames the files to 4xx_pci.c/h.
29612
29613 Signed-off-by: Stefan Roese <sr@denx.de>
29614
29615commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
29616Author: Stefan Roese <sr@denx.de>
29617Date: Wed Oct 3 14:14:58 2007 +0200
29618
29619 ppc4xx: Add a comment for 405EX PCIe endpoint configuration
29620
29621 Signed-off-by: Stefan Roese <sr@denx.de>
29622
29623commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
29624Author: Stefan Roese <sr@denx.de>
29625Date: Wed Oct 3 10:38:09 2007 +0200
29626
29627 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
29628
29629 (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
29630 the SDR registers of the PCIe ports. This makes the overall design
29631 clearer, since it removed a lot of switch statements which are not
29632 needed anymore.
29633
29634 Also, the functions ppc4xx_init_pcie_rootport() and
29635 ppc4xx_init_pcie_entport() are merged into a single function
29636 ppc4xx_init_pcie_port(), since most of the code was duplicated.
29637 This makes maintainance and porting to other 4xx platforms
29638 easier.
29639
29640 Signed-off-by: Stefan Roese <sr@denx.de>
29641
29642commit 026f71106871f31d17d0ea0db9a7547ff92934bc
29643Author: Stefan Roese <sr@denx.de>
29644Date: Wed Oct 3 07:48:09 2007 +0200
29645
29646 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
29647
29648 This patch is the first patch of a series to make the 440SPe PCIe code
29649 usable on different 4xx PPC platforms. In preperation for the new 405EX
29650 which is also equipped with PCIe interfaces.
29651
29652 (2) This patch renames the functions from 440spe_ to 4xx_ with a
29653 little additional cleanup
29654
29655 Signed-off-by: Stefan Roese <sr@denx.de>
29656
29657commit c7c6da23028f146d912514b95aefa3da7cf37699
29658Author: Stefan Roese <sr@denx.de>
29659Date: Wed Oct 3 07:34:10 2007 +0200
29660
29661 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
29662
29663 This patch is the first patch of a series to make the 440SPe PCIe code
29664 usable on different 4xx PPC platforms. In preperation for the new 405EX
29665 which is also equipped with PCIe interfaces.
29666
29667 (1) This patch renames the files from 440spe_pcie to 4xx_pcie
29668
29669 Signed-off-by: Stefan Roese <sr@denx.de>
29670
Wolfgang Denkd3a65322008-01-10 00:55:14 +010029671commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
29672Author: Marian Balakowicz <m8@semihalf.com>
29673Date: Wed Oct 24 01:37:36 2007 +0200
29674
29675 TQM5200: Call usb_cpu_init() during board init
29676
29677 usb_cpu_init() configures GPS USB pins, clocks, etc. and
29678 is required for proper operation of kernel USB subsystem.
29679 This setup was previously done in the kernel by the fixup
29680 code which is being removed, thus low level init must be
29681 done by U-boot now.
29682
29683 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
29684 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29685
29686commit b5af773f8d92677e06f3295b45557c9d0a487c24
29687Author: Zhang Wei <wei.zhang@freescale.com>
29688Date: Thu Oct 25 17:51:27 2007 +0800
29689
29690 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
29691
29692 The scan code of the key 'z' is 0x1d, which should be handled.
29693
29694 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
29695 controller.
29696
29697 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
29698 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29699
29700commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
29701Author: Rodolfo Giometti <giometti@enneenne.com>
29702Date: Mon Oct 15 11:59:17 2007 +0200
29703
29704 PXA USB OHCI: "usb stop" implementation.
29705
29706 Some USB keys need to be switched off before loading the kernel
29707 otherwise they can remain in an undefined status which prevents them
29708 to be correctly recognized by the kernel.
29709
29710 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
29711 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29712
Wolfgang Denk5947f692007-11-17 02:34:38 +010029713commit 31548249decf18a6b877a18436b6139dd483fe4a
29714Author: Justin Flammia <jflammia@savantav.com>
29715Date: Mon Oct 29 17:40:35 2007 -0400
29716
29717 DHCP Client Fix
29718
29719 This is a multi-part message in MIME format.
29720
29721 commit e6e505eae94ed721e123e177489291fc4544b7b8
29722 Author: Justin Flammia <jflammia@savantav.com>
29723 Date: Mon Oct 29 17:19:03 2007 -0400
29724
29725 Found a bug in the way the DHCP Request packet is built, where the IP address
29726 that is offered by the server is bound to prematurely. This patch is a fix of
29727 that bug where the IP address offered by the DHCP server is not used until
29728 after the DHCP ACK from the server is received.
29729
29730 Signed-off-by: Justin Flammia <jflammia@savantav.com>
29731 Signed-off-by: Ben Warren <bwarren@qstreams.com>
29732
Wolfgang Denk992742a2007-11-03 23:09:27 +010029733commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
29734Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29735Date: Thu Oct 25 17:16:22 2007 -0500
29736
29737 ColdFire 54455: Fix correct boot location for atmel and intel
29738
29739 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29740
29741commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
29742Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29743Date: Thu Oct 25 17:14:00 2007 -0500
29744
29745 ColdFire: Fix build error when CONFIG_WATCHDOG is defined
29746
29747 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29748
29749commit c67e12e705b204cfe914e3e3e693d69a445dcabf
29750Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29751Date: Thu Oct 25 17:12:36 2007 -0500
29752
29753 ColdFire 5329: Assign correct SDRAM size and fix cache
29754
29755 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29756
29757commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
29758Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29759Date: Thu Oct 25 17:10:23 2007 -0500
29760
29761 ColdFire 5253: Assign correct SDRAM size
29762
29763 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29764
29765commit 2acefa72ee0026f862ab65597ca687428f63a973
29766Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29767Date: Thu Oct 25 17:09:17 2007 -0500
29768
29769 ColdFire 5282: Fix external flash boot and return dramsize
29770
29771 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
29772
29773commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
29774Author: Bartlomiej Sieka <tur@semihalf.com>
29775Date: Thu Oct 25 17:20:01 2007 +0200
29776
29777 TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
29778
29779 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29780
29781commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
29782Author: Martin Krause <martin.krause@tqs.de>
29783Date: Wed Oct 24 08:42:25 2007 +0200
29784
29785 TQM5200: fix spurious characters on second serial interface
29786
29787 With this patch PSC3 is configured as UART. This is done, because if
29788 the pins of PSC3 are not configured at all (-> all pins are GPI),
29789 due to crosstalk, spurious characters may be send over the RX232_2_TXD
29790 signal line.
29791
29792 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29793 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
29794
29795commit be4a87f11e297a5cededbf7dd71c0248f3874acd
29796Author: Martin Krause <martin.krause@tqs.de>
29797Date: Wed Oct 24 08:41:27 2007 +0200
29798
29799 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
29800
29801 Some commands for the STK52xx base board try to access the SM501 grafic
29802 controller. But the TQM5200S has no grafic controller (only the TQM5200
29803 and the TQM5200B have). This patch deactivates the commands accessing
29804 the SM501 for the TQM5200S.
29805
29806 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29807 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
29808
29809commit b31f64343ead9482cd439b1adbe4c34026a641b1
29810Author: Martin Krause <martin.krause@tqs.de>
29811Date: Mon Oct 22 16:45:53 2007 +0200
29812
29813 TQM5200: fix spurious characters on second serial interface
29814
29815 With this patch PSC3 is configured as UART. This is done, because if
29816 the pins of PSC3 are not configured at all (-> all pins are GPI),
29817 due to crosstalk, spurious characters may be send over the RX232_2_TXD
29818 signal line.
29819
29820 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29821
29822commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
29823Author: Martin Krause <martin.krause@tqs.de>
29824Date: Mon Oct 22 16:40:06 2007 +0200
29825
29826 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
29827
29828 Some commands for the STK52xx base board try to access the SM501 grafic
29829 controller. But the TQM5200S has no grafic controller (only the TQM5200
29830 and the TQM5200B have). This patch deactivates the commands accessing
29831 the SM501 for the TQM5200S.
29832
29833 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29834
29835commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
29836Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29837Date: Sun Oct 21 09:14:28 2007 +0200
29838
29839 Mips: Fix string functions differ prototype declaration
29840
29841 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29842
29843commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
29844Author: Ed Swarthout <Ed.Swarthout@freescale.com>
29845Date: Fri Oct 19 17:51:40 2007 -0500
29846
29847 fsl_pci_init enable COMMAND_MEMORY if inbound window
29848
29849 Patch 16e23c3f removed PCSRBAR allocation. But passing zero windows
29850 to pciauto_setup_device has the side effect of not getting
29851 COMMAND_MEMORY set.
29852
29853 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
29854
29855commit e9d0d527992566ebef9826962ff1745b2f082b92
29856Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29857Date: Fri Oct 19 10:55:24 2007 +0200
29858
29859 delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
29860
29861 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29862
29863commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
29864Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29865Date: Fri Oct 19 08:10:15 2007 +0200
29866
29867 fix warning: no return statement in function returning non-void
29868
29869 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29870
29871commit e78220f6e514206757acfe247297fc9a328a881f
29872Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29873Date: Fri Oct 19 06:33:45 2007 +0200
29874
29875 xsengine: Fix no partition type specified, use DOS as default
29876
29877 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29878
29879commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
29880Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29881Date: Fri Oct 19 00:24:59 2007 +0200
29882
29883 lubbock: Fix no partition type specified, use DOS as default
29884
29885 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29886
29887commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
29888Author: Wolfgang Denk <wd@denx.de>
29889Date: Tue Oct 23 16:50:03 2007 +0200
29890
29891 Coding style: keep lists sorted; update CHANGELOG
29892
29893 Signed-off-by: Wolfgang Denk <wd@denx.de>
29894
Wolfgang Denk41b4d282007-10-23 16:50:03 +020029895commit 58b74b05c621e2835ecf4e2d3243042cf4186777
29896Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29897Date: Fri Oct 19 00:09:05 2007 +0200
29898
29899 Fix missing drivers makefile entries ds1722.c mw_eeprom.c
29900
29901 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29902
29903commit 96455bfebc9887837095c9051d216f53c61b5f10
29904Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29905Date: Fri Oct 19 00:07:39 2007 +0200
29906
29907 Fix warning differ in signedness in board/innokom/innokom.c
29908
29909 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29910
29911commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
29912Author: Marcel Ziswiler <marcel@ziswiler.com>
29913Date: Fri Oct 19 00:25:33 2007 +0200
29914
29915 fix pxa255_idp board
29916
29917 The pxa255_idp being an old unmaintained board showed several issues:
29918 1. CONFIG_INIT_CRITICAL was still defined.
29919 2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
29920 3. Symbol flash_addr was undeclared.
29921 4. The boards lowlevel_init function was still called memsetup.
29922 5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
29923 6. Using -march=armv5 instead of -march=armv5te resulted in lots of
29924 'target CPU does not support interworking' warnings on recent compilers.
29925 7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
29926 indexes rather than the register definitions from the pxa-regs header
29927 file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
29928 avoid any ambiguities.
29929 8. There were several redefinition warnings concerning ICMR, OSMR3,
29930 OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
29931 9. The board configuration file was rather outdated.
29932 10. The part header file defined the vendor, product and revision arrays
29933 as unsigned chars instead of just chars in the block_dev_desc_t
29934 structure.
29935
29936 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
29937
29938commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
29939Author: Rune Torgersen <runet@innovsys.com>
29940Date: Wed Oct 17 11:56:31 2007 -0500
29941
29942 Make MPC8266ADS command selection more robust
29943
29944 Fix MPC8266 command line definition so it won't break when new commands
29945 are added to u-boot.
29946 Signed-off-by Rune Torgersen <runet@innovsys.com>
29947
Wolfgang Denk992742a2007-11-03 23:09:27 +010029948commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
29949Author: Bartlomiej Sieka <tur@semihalf.com>
29950Date: Tue Oct 23 13:14:10 2007 +0200
29951
29952 Motion-PRO: Update configuration to accomodate next generation board.
29953
29954 New board has faster oscillator and a different Flash chip. This affects:
29955 - CFG_MPC5XXX_CLKIN
29956 - SDRAM timings
29957 - Flash CS configuration (timings)
29958 - Flash sector size, and thus MTD partition layout
29959 - malloc() arena size (due to bigger Flash sectors)
29960 - smaller memory test range (due to bigger malloc() arena)
29961
29962 This patch also enables more extensive memory testing via "mtest".
29963
29964 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29965
29966commit eff501904df2bf1724a750062628ba2c51dbb1f8
29967Author: Bartlomiej Sieka <tur@semihalf.com>
29968Date: Tue Oct 23 11:36:07 2007 +0200
29969
29970 Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
29971
29972 Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
29973 register must be written a value of 0x00000004 as the first step of the
29974 SDRAM contorller configuration.
29975
29976 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29977
29978commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
29979Author: Peter Pearse <peter.pearse@arm.com>
29980Date: Tue Oct 23 10:22:16 2007 +0100
29981
29982 Move PL01* serial drivers to drivers/serial and adjust Makefiles.
29983
Wolfgang Denk5947f692007-11-17 02:34:38 +010029984commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
29985Author: Stefan Roese <sr@denx.de>
29986Date: Tue Oct 23 10:17:42 2007 +0200
29987
29988 ppc4xx: lwmon5: Some further GPIO config changes
29989
29990 Signed-off-by: Stefan Roese <sr@denx.de>
29991
Wolfgang Denk992742a2007-11-03 23:09:27 +010029992commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
29993Author: Vlad Lungu <vlad@comsys.ro>
29994Date: Sun Oct 21 22:10:10 2007 +0900
29995
29996 [MIPS] Fix UNCACHED_SDRAM
29997
29998 PHYSADDR is for physical address, KSEG1ADDR is for uncached.
29999
30000 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
30001 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30002
30003commit 00101dd7a32d12f698150123e47e4b3420279f86
30004Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30005Date: Sun Oct 21 21:30:42 2007 +0900
30006
30007 [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
30008
30009 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30010
30011commit eb700636db017d310edaeb559b13d82588560674
30012Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30013Date: Sun Oct 21 10:55:37 2007 +0900
30014
30015 [MIPS] u-boot.lds: Define _gp in a standard manner
30016
30017 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30018
30019commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
30020Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30021Date: Sun Oct 21 10:55:36 2007 +0900
30022
30023 [MIPS] Fix $gp usage
30024
30025 Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
30026 As a general principle, we should use _gp for $gp.
30027
30028 Thanks to linker script's help we fortunately have _gp which equals to
30029 _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
30030 be able to access to GOT entires, global variables and procedure entry
30031 points. The right thing to do is to use _gp.
30032
30033 This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
30034 which holds the offset from _gp. When updating GOT entries, we use this
30035 offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
30036
30037 This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
30038 I made some change to leave over num_got_entries.
30039
30040 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30041 Cc: Vlad Lungu <vlad@comsys.ro>
30042
30043commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
30044Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30045Date: Sun Oct 21 10:55:36 2007 +0900
30046
30047 [MIPS] u-boot.lds: Fix __got_start and __got_end
30048
30049 Ensure that __got_start points to top of the `.got', and __got_end points
30050 to bottom as well, so that we never fail to count num_got_entries.
30051
30052 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30053
30054commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
30055Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30056Date: Sun Oct 21 10:55:36 2007 +0900
30057
30058 [MIPS] u-boot.lds: Remove duplicated .sdata section
30059
30060 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30061
Wolfgang Denk41b4d282007-10-23 16:50:03 +020030062commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
30063Author: Wolfgang Denk <wd@denx.de>
30064Date: Sun Oct 21 01:01:17 2007 +0200
30065
30066 Minor coding style cleanup; update CHANGELOG
30067
30068 Signed-off-by: Wolfgang Denk <wd@denx.de>
30069
Wolfgang Denk05bf4912007-10-21 01:01:17 +020030070commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
30071Author: Vlad Lungu <vlad@comsys.ro>
30072Date: Thu Oct 4 20:47:10 2007 +0300
30073
30074 Fix NE2000 driver:
30075
30076 Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
30077 to do anything in eth_stop() if eth_init() was not called.
30078 Simplified RX path in order to avoid timeouts on really really
30079 fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
30080 clever enough to cope with 1 packet per eth_rx().
30081
30082 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
30083
Wolfgang Denk992742a2007-11-03 23:09:27 +010030084commit df90968b48fb34fa9072fab150db2ac89678f537
30085Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
30086Date: Mon Sep 24 13:32:13 2007 -0400
30087
30088 Setting MSR[DE] in do_reset
30089
30090 Hello,
30091 This patch ensures the soft reset of the board for the 85xx boards
30092 by setting the MSR[DE] in the do_reset function.
30093
30094 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
30095
30096commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
30097Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
30098Date: Mon Sep 24 13:36:01 2007 -0400
30099
30100 MSR overwrite fix
30101
30102 Hello,
30103 This patch fixes the MSR overwrite in the start.S when moving out of
30104 the last 4K page.
30105
30106 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
30107
30108commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
30109Author: Dan Wilson <dwilson@fulcrummicro.com>
30110Date: Fri Oct 19 11:33:48 2007 -0500
30111
30112 tsec driver should clear RHALT on startup
30113
30114 This was causing problems for some people.
30115
30116 Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
30117 Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
30118 Signed-off-by: Andy Fleming <afleming@freescale.com>
30119
30120commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
30121Author: Kumar Gala <galak@kernel.crashing.org>
30122Date: Thu Oct 11 00:29:18 2007 -0500
30123
30124 Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
30125
30126 On the MPC85xx CDS we have two issues:
30127
30128 1. The device tree fixup code did not check to see if the property we are
30129 trying to update is actually found. Its possible that it would update
30130 random memory starting at 0.
30131
30132 2. Newer Linux kernel's have moved the location of the PCI nodes to be
30133 sibilings of the soc node and not children. The explicit PATH to the PCI
30134 node would not be found for these device trees. Add the ability to handle
30135 both paths. In the future we shouldn't handle such fixups by explicit path.
30136
30137 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30138
30139commit a3063eec775719b7e91023bbec3f64b3118791df
30140Author: Kumar Gala <galak@kernel.crashing.org>
30141Date: Thu Oct 11 00:18:48 2007 -0500
30142
30143 Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
30144
30145 On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
30146 console. Make it so we match that config what we tell Linux as the early
30147 STDOUT console.
30148
30149 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30150
30151commit e1ce3cb617bb06f91f82f98915391175addf3e82
30152Author: Kumar Gala <galak@kernel.crashing.org>
30153Date: Tue Oct 2 11:12:27 2007 -0500
30154
30155 Remove magic numbers from cache related operations for mpc85xx
30156
30157 The mpc85xx start code uses some magic numbers that we actually
30158 have #defines for in <config.h> so use those instead.
30159
30160 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30161
Wolfgang Denk05bf4912007-10-21 01:01:17 +020030162commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
30163Author: Detlev Zundel <dzu@denx.de>
30164Date: Fri Oct 19 16:47:26 2007 +0200
30165
30166 Fix two typos.
30167
30168 Signed-off-by: Detlev Zundel <dzu@denx.de>
30169
30170commit 281df457c1aa50d2752165d0c5c3282d4027b974
30171Author: Tony Li <tony.li@freescale.com>
30172Date: Thu Oct 18 17:47:19 2007 +0800
30173
30174 mpc83xx: Add configure entry for MPC83xx ATM support
30175
30176 Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
30177 Makfile and MAKEALL
30178
30179 Signed-off-by: Tony Li <tony.li@freescale.com>
30180 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30181
30182commit d2646554f529a9577515eceb0ec5eceee18244ba
30183Author: Tony Li <tony.li@freescale.com>
30184Date: Thu Oct 18 17:44:38 2007 +0800
30185
30186 mpc83xx: pq-mds-pib.c typo error
30187
30188 Correct to val8 from val.
30189
30190 Signed-off-by: Tony Li <tony.li@freescale.com>
30191 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30192
30193commit 3e11ae80fec1ee12194940955431186abf6009c2
30194Author: Stefan Roese <sr@denx.de>
30195Date: Wed Oct 17 15:40:19 2007 +0200
30196
30197 ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
30198
30199 Signed-off-by: Stefan Roese <sr@denx.de>
30200
Wolfgang Denk435dc8f2008-01-09 11:36:21 +010030201commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
30202Author: Jon Loeliger <jdl@freescale.com>
30203Date: Tue Oct 16 15:27:43 2007 -0500
30204
30205 Initial mpc8610hpcd Makefile files.
30206
30207 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30208 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
30209 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30210 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30211
30212commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
30213Author: Jon Loeliger <jdl@freescale.com>
30214Date: Tue Oct 16 15:26:51 2007 -0500
30215
30216 Initial mpc8610hpcd cpu/, README and include/ files.
30217
30218 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30219 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
30220 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30221 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30222
30223commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
30224Author: Jon Loeliger <jdl@freescale.com>
30225Date: Tue Oct 16 13:54:01 2007 -0500
30226
30227 Initial mpc8610hpcd board files.
30228
30229 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30230 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
30231 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30232 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30233
Wolfgang Denk05bf4912007-10-21 01:01:17 +020030234commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
30235Author: runet@innovsys.com <runet@innovsys.com>
30236Date: Tue Oct 16 14:50:40 2007 -0500
30237
30238 Make MPC8266ADS board compile again.
30239
30240 Signed-off-by: Runet Torgersen <runet@innovsys.com>
30241
30242commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
30243Author: Jon Loeliger <jdl@freescale.com>
30244Date: Mon Aug 27 12:41:03 2007 -0500
30245
30246 86xx: Allow for fewer DDR slots per memory controller.
30247
30248 As a direct correlation exists between DDR DIMM slots
30249 and SPD EEPROM addresses used to configure them, use
30250 the individually defined SPD_EEPROM_ADDRESS* values to
30251 determine if a DDR DIMM slot should have its SPD
30252 configuration read or not.
30253
30254 Effectively, this now allows for 1 or 2 DIMM slots
30255 per memory controller.
30256
30257 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30258
30259commit 4d4a945e189a2f384c66432316da2788a0ac1607
30260Author: Rodolfo Giometti <giometti@enneenne.com>
30261Date: Mon Oct 15 11:59:17 2007 +0200
30262
30263 PXA USB OHCI: "usb stop" implementation.
30264
30265 Some USB keys need to be switched off before loading the kernel
30266 otherwise they can remain in an undefined status which prevents them
30267 to be correctly recognized by the kernel.
30268
30269 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
30270
30271commit e2e93442e558cf1500e92861f99713b2f045ea22
30272Author: Stefan Roese <sr@denx.de>
30273Date: Mon Oct 15 11:39:00 2007 +0200
30274
30275 ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
30276
30277 The I2C bootstrap values that can be setup via the "bootstrap" command,
30278 were setup incorrect regarding the generation of the internal sync PCI
30279 clock. The values for PLB clock == 133MHz were slighly incorrect and the
30280 values for PLB clock == 166MHz were totally incorrect. This could
30281 lead to a hangup upon booting while PCI configuration scan.
30282
30283 This patch fixes this issue and configures valid PCI divisor values
30284 for the sync PCI clock, with respect to the provided external async
30285 PCI frequency.
30286
30287 Here the values of the formula in the chapter 14.2 "PCI clocking"
30288 from the 440EPx users manual:
30289
30290 AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
30291
30292 33MHz async PCI frequency:
30293 PLB = 133:
30294 => 32 <= 44.3 <= 65 (div = 3)
30295
30296 PLB = 166:
30297 => 32 <= 55.3 <= 65 (div = 3)
30298
30299 66MHz async PCI frequency:
30300 PLB = 133:
30301 => 65 <= 66.5 <= 132 (div = 2)
30302
30303 PLB = 166:
30304 => 65 <= 83 <= 132 (div = 2)
30305
30306 Signed-off-by: Stefan Roese <sr@denx.de>
30307
30308commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
30309Author: Stefan Roese <sr@denx.de>
30310Date: Mon Oct 15 11:29:33 2007 +0200
30311
30312 ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
30313
30314 The BCSR status bit for the 66MHz PCI operation was correctly
30315 addressed (MSB/LSB problem). Now the correct currently setup
30316 PCI frequency is displayed upon bootup.
30317
30318 This patch also fixes this problem on Rainier & Yellowstone, since these
30319 boards use the same souce code as Sequoia & Yosemite do.
30320
30321 Signed-off-by: Stefan Roese <sr@denx.de>
30322
30323commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
30324Author: Martin Krause <martin.krause@tqs.de>
30325Date: Wed Sep 26 17:55:56 2007 +0200
30326
30327 TQM860M: adjust for doubled flash sector size.
30328
30329 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
30330 doubled sector size.
30331
30332 Signed-off-by: Martin Krause <martin.krause@tqs.de>
30333
30334commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
30335Author: Jens Gehrlein <jens.gehrlein@tqs.de>
30336Date: Wed Sep 26 17:55:54 2007 +0200
30337
30338 TQM8xx: Fix CAN timing.
30339
30340 Signed-off-by: Martin Krause <martin.krause@tqs.de>
30341
30342commit d43e489baf02afae49077791fb22332d240d8656
30343Author: Martin Krause <martin.krause@tqs.de>
30344Date: Thu Sep 27 14:54:36 2007 +0200
30345
30346 TQM866M: fix SDRAM refresh
30347
30348 At 133 MHz the current SDRAM refresh rate is too fast
30349 (measured 4 * 1.17 us).
30350 CFG_MAMR_PTA changes from 39 to 97. This result
30351 in a refresh rate of 4 * 7.8 us at the default clock
30352 50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
30353 This is a compromise until a new method is found to
30354 adjust the refresh rate.
30355
30356 Signed-off-by: Martin Krause <martin.krause@tqs.de>
30357
30358commit 9ef57bbee1c67cc01da2026c242c4692db32be36
30359Author: Martin Krause <martin.krause@tqs.de>
30360Date: Wed Sep 26 17:55:55 2007 +0200
30361
30362 TQM866M: adjust for doubled flash sector size.
30363
30364 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
30365 doubled sector size.
30366
30367 Signed-off-by: Martin Krause <martin.krause@tqs.de>
30368
30369commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
30370Author: Michal Simek <monstr@monstr.eu>
30371Date: Sun Oct 14 16:12:29 2007 +0200
30372
30373 [FIX] XUPV2P change command handling
30374 and remove code violation
30375
30376commit 636400198228d96983c06657b17f760f5989958e
30377Author: Wolfgang Denk <wd@denx.de>
30378Date: Sun Oct 14 00:13:19 2007 +0200
30379
30380 Prepare for 1.3.0-rc3 release
30381
30382 Signed-off-by: Wolfgang Denk <wd@denx.de>
30383
Wolfgang Denk63640012007-10-14 00:13:19 +020030384commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
30385Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30386Date: Sat Sep 29 13:41:37 2007 +0200
30387
30388 Fix warning differ in signedness in cpu/pxa/mmc.c
30389
30390 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30391
30392commit fc19e36f741e8bc727c0a330170b3b5db90399ef
30393Author: Wolfgang Denk <wd@denx.de>
30394Date: Sat Oct 13 23:51:14 2007 +0200
30395
30396 Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
30397
30398 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30399 Signed-off-by: Wolfgang Denk <wd@denx.de>
30400
30401commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
30402Author: Wolfgang Denk <wd@denx.de>
30403Date: Sat Oct 13 21:15:39 2007 +0200
30404
30405 Coding Style cleanup.
30406
30407 Signed-off-by: Wolfgang Denk <wd@denx.de>
30408
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030409commit e1893815b0999410d7a327589611c7b38e95299e
30410Author: Wolfgang Denk <wd@denx.de>
30411Date: Fri Oct 12 15:49:39 2007 +0200
30412
30413 GP3 SSA: enable RTC
30414
30415 Signed-off-by: Wolfgang Denk <wd@denx.de>
30416
30417commit 8002012041f1ff9f997a5727abe5015f70cd2e46
30418Author: Grzegorz Bernacki <gjb@semihalf.com>
30419Date: Tue Oct 9 13:58:24 2007 +0200
30420
30421 [ads5121] EEPROM support added.
30422
30423 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
30424
Wolfgang Denk63640012007-10-14 00:13:19 +020030425commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
30426Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
30427Date: Sat Oct 6 18:55:35 2007 +0200
30428
30429 AVR32: Initialize bi_flash* in board_init_r
30430
30431 The ATSTK1000-specific flash driver intializes bi_flashstart,
30432 bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
30433 driver, don't.
30434
30435 Initialize these in board_init_r instead so that things will still be
30436 set up correctly when we switch to the CFI driver.
30437
30438 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30439
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030440commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
30441Author: Marian Balakowicz <m8@semihalf.com>
30442Date: Fri Oct 5 10:40:54 2007 +0200
30443
30444 tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
30445
30446 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30447
30448commit 92869195ef8210758d2176230c0a36897afd50ed
30449Author: Bartlomiej Sieka <tur@semihalf.com>
30450Date: Fri Oct 5 09:46:06 2007 +0200
30451
30452 CM5200: Fix missing null-termination in hostname manipulation code
30453
30454 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30455
Wolfgang Denk63640012007-10-14 00:13:19 +020030456commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
30457Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
30458Date: Tue Oct 2 19:09:01 2007 +0200
30459
30460 Fix memtest breakage
30461
30462 CFG_MEMTEST_START uses weird magic involving gd, which fails to
30463 compile. Use hardcoded values instead (we actually know how much RAM
30464 we have on board.)
30465
30466 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30467
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030468commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
30469Author: Stefan Roese <sr@denx.de>
30470Date: Tue Oct 2 11:44:46 2007 +0200
30471
30472 ppc4xx: Coding style cleanup
30473
30474 Signed-off-by: Stefan Roese <sr@denx.de>
30475
30476commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
30477Author: Stefan Roese <sr@denx.de>
30478Date: Tue Oct 2 11:44:19 2007 +0200
30479
30480 ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
30481
30482 Signed-off-by: Stefan Roese <sr@denx.de>
30483
30484commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
30485Author: Grzegorz Bernacki <gjb@semihalf.com>
30486Date: Mon Oct 1 09:51:50 2007 +0200
30487
30488 Program EPLD to force full duplex mode for PHY.
30489
30490 EPLD forces modes of PHY operation. By default full duplex is turned off.
30491 This fix turns it on.
30492
30493 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
30494
Wolfgang Denk05bf4912007-10-21 01:01:17 +020030495commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
30496Author: Timo Ketola <timo.ketola@exertus.fi>
30497Date: Mon Sep 24 14:50:32 2007 +0300
30498
30499 Bugfix: Use only one PTD for one endpoint
30500
30501 Original isp116x-hcd code prepared multiple PTDs for longer than 16
30502 byte transfers for one endpoint. That is unnecessary because the
30503 ISP116x is able to split long data from one PTD into multiple
30504 transactions based on the buffer size of the endpoint. It also caused
30505 serious problems if the endpoint NAKed some of the transactions. In
30506 that case ISP116x wouldn't notice that the other PTDs were for the same
30507 endpoint and would try the other PTDs possibly out of order. That would
30508 break the whole transfer.
30509
30510 This patch makes isp116x_submit_job to use one PTD for one transfer.
30511
30512 Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
30513 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
30514
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030515commit 86ec86c04326c3913178a7679aa910de071da75d
30516Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30517Date: Thu Sep 27 23:27:47 2007 +0200
30518
30519 Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
30520
30521 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30522
30523commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
30524Author: Stefan Roese <sr@denx.de>
30525Date: Tue Sep 11 14:12:55 2007 +0200
30526
30527 ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
30528
30529 Signed-off-by: Stefan Roese <sr@denx.de>
30530
Wolfgang Denk992742a2007-11-03 23:09:27 +010030531commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
30532Author: Ed Swarthout <Ed.Swarthout@freescale.com>
30533Date: Wed Sep 26 16:35:54 2007 -0500
30534
30535 85xx io out functions need sync after write.
30536
30537 This fixes the mc146818 rtc_read/write functions for 85xx.
30538
30539 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
30540
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030541commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
30542Author: Grant Likely <grant.likely@secretlab.ca>
30543Date: Tue Sep 25 15:48:05 2007 -0600
30544
30545 Fpga: fix incorrect test of CFG_FPGA_XILINX macro
30546
30547 CFG_FPGA_XILINX is a bit value used to test against the value in
30548 CONFIG_FPGA. Testing for a value will always return TRUE. I don't
30549 think that is the intention in this code.
30550
30551 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30552
Wolfgang Denk63640012007-10-14 00:13:19 +020030553commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
30554Author: Michal Simek <monstr@monstr.eu>
30555Date: Mon Sep 24 00:41:30 2007 +0200
30556
30557 [FIX] change command handling and removing code violation
30558
30559commit f240356507038e5ce55e8a24cb2607e9eae6d10c
30560Author: Michal Simek <monstr@monstr.eu>
30561Date: Mon Sep 24 00:36:06 2007 +0200
30562
30563 [FIX] change sets of commands
30564 because changing of command handling brings
30565 compilation problems
30566
30567commit cb1bc63b75a232571eb69aa2c8aa919321655845
30568Author: Michal Simek <monstr@monstr.eu>
30569Date: Mon Sep 24 00:30:42 2007 +0200
30570
30571 [FIX] Email reparation & Copyright
30572 Both codes are written by myself without any
30573 support from CTU
30574
30575commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
30576Author: Michal Simek <monstr@monstr.eu>
30577Date: Mon Sep 24 00:25:11 2007 +0200
30578
30579 [PATCH] Change macro name for UartLite
30580 because PowerPC 405 can use UartLite as console
30581
30582commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
30583Author: Michal Simek <monstr@monstr.eu>
30584Date: Mon Sep 24 00:21:19 2007 +0200
30585
30586 [PATCH] Add support for design without interrupt controller
30587 Polling timer
30588
30589commit 0731933ec8ec45d02ba89b52df673d526873cdde
30590Author: Michal Simek <monstr@monstr.eu>
30591Date: Mon Sep 24 00:19:48 2007 +0200
30592
30593 [FIX] resolve problem with cpu without barrel shifter
30594
30595commit db14d77995ce515b728b178b63f82babe60e3d56
30596Author: Michal Simek <monstr@monstr.eu>
30597Date: Mon Sep 24 00:18:46 2007 +0200
30598
30599 [FIX] repair email address
30600
30601commit 481d4328618804add1f818a6c96296121cd0528e
30602Author: Michal Simek <monstr@monstr.eu>
30603Date: Mon Sep 24 00:17:42 2007 +0200
30604
30605 [FIX] repair MFSL commands
30606
30607commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
30608Author: Michal Simek <monstr@monstr.eu>
30609Date: Mon Sep 24 00:08:37 2007 +0200
30610
30611 synchronizition with mainline
30612
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010030613commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
30614Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30615Date: Sun Sep 23 02:42:38 2007 +0900
30616
30617 sh: Add support command of ide with sh
30618
30619 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30620
30621commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
30622Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30623Date: Sun Sep 23 02:38:42 2007 +0900
30624
30625 sh: Update Makefile
30626
30627 Add support MS7722SE01 to Makefile.
30628
30629 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30630
30631commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
30632Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30633Date: Sun Sep 23 02:31:13 2007 +0900
30634
30635 sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
30636
30637 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30638
30639commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
30640Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30641Date: Sun Sep 23 02:19:24 2007 +0900
30642
30643 sh: Update MS7750SE01 platform
30644
30645 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30646
30647commit 516ad760db3553766267ada01b7d5d727faa4bbd
30648Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30649Date: Sun Sep 23 02:17:08 2007 +0900
30650
30651 sh: Remove comment out code from include/asm-sh/cpu_sh4.h
30652
30653 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30654
30655commit b02bad128669e567fce87d8df823b06a0144b8db
30656Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30657Date: Sun Sep 23 02:12:30 2007 +0900
30658
30659 sh: Update core code of SuperH.
30660
30661 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30662
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030663commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
30664Author: Wolfgang Denk <wd@denx.de>
30665Date: Thu Sep 20 00:04:14 2007 +0200
30666
30667 v1.3.0-rc2
30668
30669 Signed-off-by: Wolfgang Denk <wd@denx.de>
30670
Wolfgang Denk66dcad32007-09-20 00:04:14 +020030671commit 135e19bc2773ebca487e9a8371f67e1ba202313a
30672Author: Wolfgang Denk <wd@denx.de>
30673Date: Tue Sep 18 21:36:35 2007 +0200
30674
30675 Avoid compiler warning.
30676
30677 Signed-off-by: Wolfgang Denk <wd@denx.de>
30678
30679commit 8a783a65851bc7421ab69f442261215e21b8891a
30680Author: Grant Likely <grant.likely@secretlab.ca>
30681Date: Tue Sep 18 12:24:57 2007 -0600
30682
30683 Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
30684
30685 /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
30686 nulls in a string differently. For example, the following statement:
30687 echo "this is a string\0" > afile
30688 Will produce the following with /bin/bash:
30689 "this is a string\0"
30690 But with /bin/dash, will produce:
30691 "this is a string
30692
30693 Bug fixed by moving the embedded null out of the makefile and into the
30694 config header. Also renamed the macro to avoid usage colision with the same
30695 macro used by other board ports.
30696
30697 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30698
30699commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
30700Author: Wolfgang Denk <wd@denx.de>
30701Date: Tue Sep 18 17:40:27 2007 +0200
30702
30703 MCC200: fix build warning
30704
30705 The MCC200 board config file includes version.h for some customer-
30706 specific setting, which causes warnings with "make depend"; build
30707 version.h before depend.
30708
30709 Signed-off-by: Wolfgang Denk <wd@denx.de>
30710
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030711commit bd86220f58b99d6896198c385fda132f0c980915
30712Author: Peter Pearse <peter.pearse@arm.com>
30713Date: Tue Sep 18 13:07:54 2007 +0100
30714
30715 Move coloured led API to status_led.h
30716 Improve indentation in drivers/at45.c
30717
Wolfgang Denk63640012007-10-14 00:13:19 +020030718commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
30719Author: Eirik Aanonsen <eaa@wprmedical.com>
30720Date: Tue Sep 18 08:47:20 2007 +0200
30721
30722 Update atstk1002 bootargs.
30723
30724 Updates to atstk1002 U-Boot header file:
30725 - Changed bootargs:
30726 * Set the bootargs for at1002 to point to the SD-card partition instead
30727 * ... of the boot flash.
30728 * Removing the rootfstype since that argument are not needed.
30729
30730 Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
30731 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30732
30733commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
30734Author: Eirik Aanonsen <eaa@wprmedical.com>
30735Date: Wed Sep 12 13:32:37 2007 +0200
30736
30737 Add some comments to clocks in atstk1002.h
30738
30739 This patch applies some clarifying comments to how the different
30740 clocks are setup according to atstk1002.h Some of the previous
30741 comments where stating wrongful information.
30742
30743 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
30744
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030745commit 97213f32416ead885deafea86774e912ffd60ad0
30746Author: David Saada <David.Saada@ecitele.com>
30747Date: Mon Sep 17 17:04:47 2007 +0200
30748
30749 Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
30750
30751 Signed-off-by: David Saada <david.saada@ecitele.com>
30752
Wolfgang Denk63640012007-10-14 00:13:19 +020030753commit 30363e98fa470fbecea5e8bc0f1443352754f303
30754Author: Stefan Roese <sr@denx.de>
30755Date: Mon Sep 17 08:20:47 2007 +0200
30756
30757 Small whitespace cleanup of OneNAND patch
30758
30759 Signed-off-by: Stefan Roese <sr@denx.de>
30760
30761commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
30762Author: Kyungmin Park <kmpark@infradead.org>
30763Date: Mon Sep 10 17:15:14 2007 +0900
30764
30765 OneNAND support (take #2)
30766
30767 [PATCH 3/3] OneNAND support (take #2)
30768
30769 OneNAND support at U-Boot
30770
30771 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30772
30773commit 17aa2800457df0c06b41516f46f126712c196219
30774Author: Kyungmin Park <kmpark@infradead.org>
30775Date: Mon Sep 10 17:14:34 2007 +0900
30776
30777 OneNAND support (take #2)
30778
30779 [PATCH 2/3] OneNAND support (take #2)
30780
30781 OneNAND support at U-Boot
30782
30783 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30784
30785commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
30786Author: Kyungmin Park <kmpark@infradead.org>
30787Date: Mon Sep 10 17:13:49 2007 +0900
30788
30789 OneNAND support (take #2)
30790
30791 [PATCH 1/3] OneNAND support (take #2)
30792
30793 OneNAND support at U-Boot
30794
30795 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30796
Wolfgang Denk05bf4912007-10-21 01:01:17 +020030797commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
30798Author: Michal Simek <monstr@monstr.eu>
30799Date: Sun Sep 16 20:51:57 2007 +0200
30800
30801 [FIX] remove files form repository
30802
Wolfgang Denk66dcad32007-09-20 00:04:14 +020030803commit 67c31036acaaaa992fc346cc89db0909a7e733c4
30804Author: Wolfgang Denk <wd@denx.de>
30805Date: Sun Sep 16 17:10:04 2007 +0200
30806
30807 TQM8xx[LM]: Fix broken environment alignment.
30808
30809 With recent toolchains, the environment sectors were no longer aligned to
30810 sector boundaries. The reason was a combination of two bugs:
30811
30812 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
30813 for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
30814 this gets defined, is not included here (and cannot be included
30815 without causing lots of problems).
30816
30817 Added a new #define CFG_USE_PPCENV for all boards which really
30818 want to put the environment is a ".ppcenv" section.
30819
30820 2) The linker scripts just include environment.o, silently assuming
30821 that the objects in that file are really in the order in which
30822 they are coded in the C file, i. e. "environment" first, then
30823 "redundand_environment", and "env_size" last. However, current
30824 toolchains (GCC-4.x) reorder the objects, causing the environment
30825 data not to start on a flash sector boundary:
30826
30827 Instead of: we got:
30828
30829 40008000 T environment 40008000 T env_size
30830 4000c000 T redundand_environment 40008004 T redundand_environment
30831 40010000 T env_size 4000c004 T environment
30832
30833 Note: this patch fixes just the first part, and cures the alignment
30834 problem by making sure that "env_size" gets placed correctly. However,
30835 we still have a potential issue because primary and redundant
30836 environment sectors are actually swapped, i. e. we have now:
30837
30838 40008000 T redundand_environment
30839 4000c000 T environment
30840 40010000 T env_size
30841
30842 This shall be fixed in the next version.
30843
30844 Signed-off-by: Wolfgang Denk <wd@denx.de>
30845
30846commit eb6da8050797c204c9d010548424186c7ce32fc1
30847Author: Wolfgang Denk <wd@denx.de>
30848Date: Sun Sep 16 02:39:35 2007 +0200
30849
30850 TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
30851
30852 Signed-off-by: Wolfgang Denk <wd@denx.de>
30853
30854commit cd2d1602c54cc6957bdef3872272a4b264893960
30855Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
30856Date: Mon Sep 10 14:54:56 2007 -0400
30857
30858 Typo fix in tsec.c
30859
30860 Fixup for the break statement in wrong place.
30861
30862 [Patch by urwithsughosh@gmail.com]
30863 Acked-by: Andy Fleming <afleming@freescale.com>
30864 Signed-off-by: Wolfgang Denk <wd@denx.de>
30865
30866commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
30867Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30868Date: Tue Sep 11 17:04:00 2007 +0200
30869
30870 Fix do_div() usage in nand process output
30871
30872 Fix usage of do_div() in nand erase|read|write process output.
30873
30874 The last patch to nand_util.c introduced do_div() instead of libgcc's
30875 implementation. But do_div() returns the quotient in its first
30876 macro parameter and not as result.
30877
30878 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30879
30880commit c750d2e6692a000a82f29de7bf24e3dc21239161
30881Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30882Date: Wed Sep 12 12:36:53 2007 +0200
30883
30884 NAND: Add CFG_NAND_QUIET option
30885
30886 This config option sets the default for the progress information
30887 output behavior that can also be configured through the 'quiet'
30888 environment variable.
30889
30890 The legacy NAND code does not print the current progress info
30891 on the console. So this option is for backward compatibility for
30892 units that are in the field and where setting the quiet variable
30893 is not an option. With CFG_NAND_QUIET set to '1' the console
30894 progress info is turned off. This can still be overwritten
30895 through the environment variable.
30896
30897 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30898
30899commit dcb88630290d2bcd803386dd4c2be73142994c4f
30900Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
30901Date: Thu Sep 13 16:06:05 2007 -0700
30902
30903 ColdFire: fix build error becasue of bad type of mii_init()
30904
30905 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30906
30907commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
30908Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
30909Date: Thu Sep 13 16:04:05 2007 -0700
30910
30911 ColdFire: Fix build error caused by pixis.c
30912
30913 Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
30914
30915 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
30916
30917commit e21659e30660a1377c42af135a6114efe39801d9
30918Author: Sam Sparks <SSparks@twacs.com>
30919Date: Fri Sep 14 11:14:42 2007 -0600
30920
30921 Update MPC8349ITX*_config to place config.tmp in right place.
30922
30923 MPC834ITX*_config does not store config.tmp at the correct locatation,
30924 causing MPC8349ITXGP to have the wrong TEXT_BASE.
30925
30926 Signed-off-by: Sam Sparks <SSparks@twacs.com>
30927 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30928
30929commit 1218abf1b5817a39a82399b4b928b00750575bda
30930Author: Wolfgang Denk <wd@denx.de>
30931Date: Sat Sep 15 20:48:41 2007 +0200
30932
30933 Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
30934
30935 Signed-off-by: Wolfgang Denk <wd@denx.de>
30936
30937commit 66b3f24d665be678a9dbb125b1e84185400f63b5
30938Author: Dirk Behme <dirk.behme@googlemail.com>
30939Date: Sat Sep 15 11:55:42 2007 +0200
30940
30941 Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
30942
30943 As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
30944 function local.
30945
30946 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
30947
30948 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
30949
Wolfgang Denk05bf4912007-10-21 01:01:17 +020030950commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
30951Author: Michal Simek <monstr@monstr.eu>
30952Date: Sat Sep 15 00:03:35 2007 +0200
30953
30954 Synchronize with U-BOOT mainline
30955
30956commit d7fee32b7e61fe11c64e371cde79faa4768e8350
30957Author: Sam Sparks <SSparks@twacs.com>
30958Date: Fri Sep 14 11:14:42 2007 -0600
30959
30960 Update MPC8349ITX*_config to place config.tmp in right place.
30961
30962 MPC834ITX*_config does not store config.tmp at the correct locatation,
30963 causing MPC8349ITXGP to have the wrong TEXT_BASE.
30964
30965 Signed-off-by: Sam Sparks <SSparks@twacs.com>
30966 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30967 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30968
Wolfgang Denk66dcad32007-09-20 00:04:14 +020030969commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
30970Author: Bartlomiej Sieka <tur@semihalf.com>
30971Date: Thu Sep 13 18:21:48 2007 +0200
30972
30973 cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
30974
30975 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30976
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030977commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
30978Author: Bartlomiej Sieka <tur@semihalf.com>
30979Date: Thu Sep 13 16:33:59 2007 +0200
30980
30981 tqm5200: Restore customary env. variable boot commands for powerpc kernels
30982
30983 - update default definitions of kernel_addr and fdt_addr env. variables
30984 - make arch/powerpc booting the default scenario
30985 - update MTD partition layout to match the above
30986
30987 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30988
Wolfgang Denk66dcad32007-09-20 00:04:14 +020030989commit f34024d4a328e6edd906456da98d2c537155c4f7
30990Author: Wolfgang Denk <wd@denx.de>
30991Date: Wed Sep 12 00:48:57 2007 +0200
30992
30993 Fix memory corruption problem on STX GP3 SSA Board.
30994
30995 Signed-off-by: Wolfgang Denk <wd@denx.de>
30996
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020030997commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
30998Author: Peter Pearse <peter.pearse@arm.com>
30999Date: Tue Sep 11 15:35:01 2007 +0100
31000
31001 Final tidy
31002
Wolfgang Denk66dcad32007-09-20 00:04:14 +020031003commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
31004Author: Grzegorz Bernacki <gjb@semihalf.com>
31005Date: Tue Sep 11 15:42:11 2007 +0200
31006
31007 [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
31008 scan on second pci bus.
31009
31010 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31011
31012commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
31013Author: Grzegorz Bernacki <gjb@semihalf.com>
31014Date: Tue Sep 11 12:57:52 2007 +0200
31015
31016 [ppc4xx] Individual handling of sdram.c for bamboo_nand build
31017
31018 Bamboo has a file sdram.c which needs special treatment when building in
31019 separate directory. It has to be linked to build directory otherwise it is
31020 not seen.
31021
31022 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31023
Wolfgang Denk63640012007-10-14 00:13:19 +020031024commit d45963854eff39d575124d859419bb4953ce2c87
31025Author: Michal Simek <monstr@monstr.eu>
31026Date: Tue Sep 11 00:37:04 2007 +0200
31027
31028 [FIX] Microblaze ML401 - repare FLASH handling
31029
Wolfgang Denk66dcad32007-09-20 00:04:14 +020031030commit 38c1ef728d19950414a8ab1ccfc53767848fa346
31031Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
31032Date: Mon Sep 10 16:55:59 2007 +0100
31033
31034 Allocate CPU Architecture Code for STMicroelectronics' ST200.
31035
31036 Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
31037 ---------------------------------------------------
31038
31039commit 754bac48156f8958d8f6a53a51eda88ab5758929
31040Author: Wolfgang Denk <wd@denx.de>
31041Date: Mon Sep 10 20:42:31 2007 +0200
31042
31043 Update version to match current state.
31044
31045 Signed-off-by: Wolfgang Denk <wd@denx.de>
31046
31047commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
31048Author: Grzegorz Bernacki <gjb@semihalf.com>
31049Date: Mon Sep 10 17:39:08 2007 +0200
31050
31051 [MPC512x] Streamline frame handling in the FEC driver
31052
31053 - convert frame size settings to be derived from a single base
31054 - set frame size to the recommended default value
31055
31056 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31057
31058commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
31059Author: Kyungmin Park <kmpark@infradead.org>
31060Date: Mon Sep 10 11:34:00 2007 +0900
31061
31062 Remove compiler warning: target CPU does not support interworking
31063
31064 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31065
31066commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
31067Author: Wolfgang Denk <wd@denx.de>
31068Date: Sun Sep 9 21:21:33 2007 +0200
31069
31070 Fix compile error in spc1920 config.
31071
31072 Signed-off-by: Markus Klotzbücher <mk@denx.de>
31073 Signed-off-by: Wolfgang Denk <wd@denx.de>
31074
31075commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
31076Author: Grant Likely <grant.likely@secretlab.ca>
31077Date: Fri Sep 7 09:25:07 2007 -0600
31078
31079 Bugfix: make bootm+libfdt compile on boards with no flash
31080
31081 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31082
31083commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
31084Author: Grzegorz Bernacki <gjb@semihalf.com>
31085Date: Fri Sep 7 18:35:37 2007 +0200
31086
31087 [PPC440SPe] PCIe environment settings for Katmai and Yucca
31088
31089 - 'pciconfighost' is set by default in order to be able to scan bridges
31090 behind the primary host/PCIe
31091
31092 - 'pciscandelay' env variable is recognized to allow for user-controlled
31093 delay before the PCIe bus enumeration; some peripheral devices require a
31094 significant delay before they can be scanned (e.g. LSI8408E); without the
31095 delay they are not detected
31096
31097 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31098
31099commit 7f1913938984ef6c6a46cb53e003719196d9c5de
31100Author: Grzegorz Bernacki <gjb@semihalf.com>
31101Date: Fri Sep 7 18:20:23 2007 +0200
31102
31103 [PPC440SPe] Improve PCIe configuration space access
31104
31105 - correct configuration space mapping
31106 - correct bus numbering
31107 - better access to config space
31108
31109 Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
31110 first device on the first bus. We now allow to configure up to 16 buses;
31111 also, scanning for devices behind the PCIe-PCIe bridge is supported, so
31112 peripheral devices farther in hierarchy can be identified.
31113
31114 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31115
31116commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
31117Author: Grzegorz Bernacki <gjb@semihalf.com>
31118Date: Fri Sep 7 17:46:18 2007 +0200
31119
31120 [PPC440SPe] Convert machine check exceptions handling
31121
31122 Convert using fixup mechanism to suppressing MCK for the duration of config
31123 read/write transaction: while fixups work fine with the case of a precise
31124 exception, we identified a major drawback with this approach when there's
31125 an imprecise case. In this scenario there is the following race condition:
31126 the fixup is (by design) set to catch the instruction following the one
31127 actually causing the exception; if an interrupt (e.g. decrementer) happens
31128 between those two instructions, the ISR code is executed before the fixup
31129 handler the machine check is no longer protected by the fixup handler as it
31130 appears as within the ISR code. In consequence the fixup approach is being
31131 phased out and replaced with explicit suppressing of MCK during a PCIe
31132 config read/write cycle.
31133
31134 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31135
31136commit ff7640c9ead8806b5d827f2b29f9cb2632add729
31137Author: Wolfgang Denk <wd@denx.de>
31138Date: Fri Sep 7 17:43:36 2007 +0200
31139
31140 Fix typo in MAKEALL script.
31141
31142 Signed-off-by: Wolfgang Denk <wd@denx.de>
31143
31144commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
31145Author: Grzegorz Bernacki <gjb@semihalf.com>
31146Date: Fri Sep 7 17:09:21 2007 +0200
31147
31148 [MPC512x] Proper handling of larger frames in the FEC driver
31149
31150 When frame larger than local RX buffer is received, it is split and handled
31151 by two buffer descriptors. Prior to this patch the FEC driver discarded
31152 contents of a buffer descriptor without the 'LAST' bit set, so the first
31153 part of the frame was lost in case of larger frames. This fix allows to
31154 safely combine the two pieces into the whole frame.
31155
31156 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
31157
31158commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
31159Author: Rafal Jaworowski <raj@semihalf.com>
31160Date: Fri Sep 7 17:05:36 2007 +0200
31161
31162 [MPC512x] Correct fixup relocation
31163
31164 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
31165
31166commit a89cbbd27a60e6740772000fd0688ffba1c2576a
31167Author: Wolfgang Denk <wd@denx.de>
31168Date: Fri Sep 7 01:21:25 2007 +0200
31169
31170 Update CHANGELOG, minor coding style cleanup.
31171
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020031172commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
31173Author: stefano babic <sbabic@denx.de>
31174Date: Thu Aug 30 23:01:49 2007 +0200
31175
31176 PXA270: Added support for TrizepsIV board.
31177
31178 This patch add support for the Trizeps IV module (520Mhz).
31179
31180 Signed-off-by: Stefano Babic <sbabic@denx.de>
31181
31182commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
31183Author: stefano babic <sbabic@denx.de>
31184Date: Thu Aug 30 22:57:04 2007 +0200
31185
31186 PXA270: Add support for multiple serial ports.
31187
31188 This patch adds support for multiple serial ports to the PXA target.
31189 FFUART, BTUART and STUART are supported.
31190
31191 Signed-off-by: Stefano Babic <sbabic@denx.de>
31192
31193commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
31194Author: stefano babic <sbabic@denx.de>
31195Date: Thu Aug 30 22:48:47 2007 +0200
31196
31197 PXA270: fix compile issue (invalid lvalue)
31198
31199 Code is broken for PXA270 due to "invalid lvalue in assignment".
31200
31201 This patch fix it in pxa-regs.h
31202
31203 Signed-off-by: Stefano Babic <sbabic@denx.de>
31204
31205commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
31206Author: Jason Jin <Jason.jin@freescale.com>
31207Date: Thu Aug 30 18:19:05 2007 +0800
31208
31209 Add BUILD_DIR support for bios emulator.
31210
31211 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
31212
31213commit b4d8a55145442f136982634862341a3e02002bda
31214Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31215Date: Fri Aug 31 14:41:51 2007 +0900
31216
31217 [MIPS] Remove inline asm string functions
31218
31219 Stop using inline string functions on MIPS as other ARCHs do so,
31220 since the optimized inline asm versions are not small.
31221
31222 This change is triggered by a following MIPS build error:
31223 common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
31224 common/exports.c:32: undefined reference to `strcmp'
31225 make: *** [u-boot] Error 1
31226
31227 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31228
31229commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
31230Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31231Date: Fri Aug 31 14:41:45 2007 +0900
31232
31233 [MIPS] Update asm string header
31234
31235 This patches contains several bugfixes and cleanups in the latest upstream:
31236
31237 - Don't include linux/config.h
31238 - Remove buggy inline version of memscan.
31239 - Merge with Linux 2.6.11-rc3.
31240 - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
31241 - Goodbye mips64. 31704 lines of code bite the dust.
31242 - Replace extern inline with static inline.
31243 - Fix return value of strncpy.
31244 - Remove a bunch more "$1" clobbers.
31245
31246 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31247
31248commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
31249Author: Bartlomiej Sieka <tur@semihalf.com>
31250Date: Tue Sep 4 17:31:22 2007 +0200
31251
31252 Fix do_bootm_linux() so that multi-file images with FDT blob boot.
31253
31254 Fix incorrect blob address calculation in do_bootm_linux() that prevents
31255 booting the kernel from a multi-file image (kernel + initrd + blob).
31256
31257 Also, make minor updates to the U-Boot's output and to the coding style.
31258
31259 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31260
31261commit 041a2554ad619e80dce520c1a33210affcb6a3f2
31262Author: Gary Jennejohn <gary.jennejohn@freenet.de>
31263Date: Fri Aug 31 14:29:04 2007 +0200
31264
31265 Add support for Sil680 IDE controller.
31266
31267 o add drivers/sil680.c to support the Sil680 IDE-controller.
31268 o drivers/Makefile: add sil680.o.
31269
31270 Signed-off-by: Gary Jennejohn <garyj@denx.de>
31271
31272commit e79021223bc339df655e360645a52c457a74b067
31273Author: Grant Likely <grant.likely@secretlab.ca>
31274Date: Thu Sep 6 09:47:40 2007 -0600
31275
31276 bootm/fdt: Only process the fdt if an fdt address was provided
31277
31278 Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
31279 kernels using the board info structure (instead of passing a device tree)
31280 This change allows the old style booting to be used if the fdt argument
31281 was not passed to 'bootm'.
31282
31283 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31284 Acked-by: Kim Phillips <kim.phillips@freescale.com>
31285
31286commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
31287Author: Grant Likely <grant.likely@secretlab.ca>
31288Date: Thu Sep 6 09:46:23 2007 -0600
31289
31290 Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
31291
31292 Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
31293
31294 Tested on: lite5200b
31295
31296 Note: the fixup functions have not been moved to a common place. This
31297 patch is targeted for immediate merging as in solves a build issue, but
31298 the final name/location of the fixups is still subject to debate. I
31299 propose to merge this now, and move the fixups in the next merge window
31300 to be usable by all targets.
31301
31302 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31303
31304commit 41bb76e941929f54a73206fb132f7a4c275543a3
31305Author: Grant Likely <grant.likely@secretlab.ca>
31306Date: Thu Sep 6 09:46:17 2007 -0600
31307
31308 libfdt: add convenience function fdt_find_and_setprop()
31309
31310 Given the path to a node, fdt_find_and_setprop() allows a property value
31311 to be set directly.
31312
31313 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31314
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020031315commit 80767a6cead9990d9e77e62be947843c2c72f469
31316Author: Peter Pearse <peter.pearse@arm.com>
31317Date: Wed Sep 5 16:04:41 2007 +0100
31318
31319 Changed API name to coloured_led.h
31320 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
31321 Tidied other cpu/arm920t/start.S code
31322
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020031323commit 56a9270521baaa00e12639a978302a67f61ef060
31324Author: Kumar Gala <galak@kernel.crashing.org>
31325Date: Thu Aug 30 16:18:18 2007 -0500
31326
31327 Fix ULI RTC support on MPC8544 DS
31328
31329 The RTC on the M1575 ULI chipset requires a dummy read before
31330 we are able to talk to the RTC. We accomplish this by adding a
31331 second memory region to the PHB the ULI is on and read from it.
31332
31333 The second region is added to maintain compatiabilty with Linux's
31334 view of the PCI memory map.
31335
31336 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31337
31338commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
31339Author: Ed Swarthout <Ed.Swarthout@freescale.com>
31340Date: Thu Aug 30 01:58:48 2007 -0500
31341
31342 ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
31343
31344 pcie is now differentiated from pci. Add 8641 bus-range updates.
31345
31346 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
31347
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020031348commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
31349Author: Peter Pearse <peter.pearse@arm.com>
31350Date: Tue Sep 4 16:18:38 2007 +0100
31351
31352 Add coloured led interface for ARM boards.
31353 Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
31354
31355commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
31356Author: Peter Pearse <peter.pearse@arm.com>
31357Date: Tue Sep 4 14:49:28 2007 +0100
31358
31359 Move include/led.h to board/at91rm9200dk
31360
31361commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
31362Author: Peter Pearse <peter.pearse@arm.com>
31363Date: Tue Sep 4 14:25:51 2007 +0100
31364
31365 Ran Lindent on drivers/at45.c
31366
31367commit 557ab89d294f08dd532f21d19861b40093200a33
31368Author: Peter Pearse <peter.pearse@arm.com>
31369Date: Tue Sep 4 14:23:50 2007 +0100
31370
31371 Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
31372
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020031373commit 81b73dec16fd1227369a191e725e10044a9d56b8
31374Author: Gary Jennejohn <garyj@denx.de>
31375Date: Fri Aug 31 15:21:46 2007 +0200
31376
31377 ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
31378
31379 The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
31380 set to non-zero, because it doesn't support MRM (memory-read-
31381 multiple) correctly. We now added the possibility to configure
31382 this register in the board config file, so that the default value
31383 of 8 can be overridden.
31384
31385 Here the details of this patch:
31386
31387 o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
31388 board-specific settings. As an example the sequoia board requires 0.
31389 Idea from Stefan Roese <sr@denx.de>.
31390 o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
31391 PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
31392 o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
31393 CFG_PCI_CACHE_LINE_SIZE to 0.
31394
31395 Signed-off-by: Gary Jennejohn <garyj@denx.de>
31396 Signed-off-by: Stefan Roese <sr@denx.de>
31397
31398commit 60174746c668b309378a91488dded898e9553eae
31399Author: Wolfgang Denk <wd@denx.de>
31400Date: Fri Aug 31 10:01:51 2007 +0200
31401
31402 Fix TFTP OACK code for short packets.
31403
31404 The old code had a loop limit overflow bug which caused a semi-
31405 infinite loop for small packets, because in "i<len-8", "i" was signed,
31406 but "len" was unsigned, and "len-8" became a huge number for small
31407 values of "len".
31408
31409 This is a workaround which replaces broken commit 8f1bc284.
31410
31411 Signed-off-by: Wolfgang Denk <wd@denx.de>
31412
Wolfgang Denk63640012007-10-14 00:13:19 +020031413commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
31414Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
31415Date: Thu Aug 30 15:03:05 2007 +0200
31416
31417 Reduce BOOTDELAY variable to 1 second by default for STK1002
31418
31419 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
31420 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
31421
31422commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
31423Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
31424Date: Thu Aug 30 15:03:04 2007 +0200
31425
31426 Remove double quotation marks around MAC address for STK1002
31427
31428 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
31429 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
31430
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020031431commit ff13ac8c7bbebb238e339592de765c546dba1073
31432Author: Wolfgang Denk <wd@denx.de>
31433Date: Thu Aug 30 14:42:15 2007 +0200
31434
31435 Backout commit 8f1bc284 as it causes TFTP to fail.
31436
31437 Signed-off-by: Wolfgang Denk <wd@denx.de>
31438
31439commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
31440Author: Ed Swarthout <Ed.Swarthout@freescale.com>
31441Date: Thu Aug 30 02:26:17 2007 -0500
31442
31443 Revert "Fix MPC8544DS PCIe3 scsi."
31444
31445 This reverts commit 9468e680.
31446 Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
31447
31448 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
31449
31450commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
31451Author: Grant Likely <grant.likely@secretlab.ca>
31452Date: Wed Aug 29 18:26:24 2007 -0600
31453
31454 tftp: don't implicity trust the format of recevied packets
31455
31456 The TFTP OACK code trusts that the incoming packet is formated as
31457 ASCII text and can be processed by string functions. It also has a
31458 loop limit overflow bug where if the packet length is less than 8, it
31459 ends up looping over *all* of memory to find the 'blksize' string.
31460
31461 This patch solves the problem by forcing the packet to be null
31462 terminated and using strstr() to search for the sub string.
31463
31464 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31465
Wolfgang Denkde74b9e2007-10-13 21:15:39 +020031466commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
31467Author: Stefan Roese <sr@denx.de>
31468Date: Wed Aug 29 16:31:18 2007 +0200
31469
31470 ppc4xx: Change lwmon5 default environment to support Linux RTC
31471
31472 The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
31473 to supply the RTC I2C address as bootline parameter. This patch
31474 adds support for this rtc probing parameter to the bootargs:
31475
31476 "rtc-pcf8563.probe=0,0x51"
31477
31478 Signed-off-by: Stefan Roese <sr@denx.de>
31479
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020031480commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
31481Author: Kim Phillips <kim.phillips@freescale.com>
31482Date: Wed Aug 29 09:06:05 2007 -0500
31483
31484 sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
31485
31486 this had slipped through the cracks, since the sbc board was added
31487 after I wrote the original patch to remove all these symbols, and
31488 before it was merged.
31489
31490 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31491
31492commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
31493Author: Wolfgang Denk <wd@denx.de>
31494Date: Wed Aug 29 14:05:30 2007 +0200
31495
31496 Add mii_init() prototype
31497
31498 to get rid of a *lot* of compiler warnings.
31499
31500 Signed-off-by: Wolfgang Denk <wd@denx.de>
31501
31502commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
31503Author: Wolfgang Denk <wd@denx.de>
31504Date: Wed Aug 29 13:35:03 2007 +0200
31505
31506 Disable network support on cmi_mpc5xx board
31507
31508 ..because it caused compiler errors and there seems to be no
31509 board maintainer to take care of this.
31510
31511 Signed-off-by: Wolfgang Denk <wd@denx.de>
31512
31513commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
31514Author: Kumar Gala <galak@kernel.crashing.org>
31515Date: Mon Aug 20 09:44:00 2007 -0500
31516
31517 Fix MPC8544DS PCIe3 scsi.
31518
31519 <ed.swarthout@freescale.com>
31520
31521 The problem is pciauto_setup_device() getting called from fsl_pci_init.c
31522 is allocating memory space it doesn't need.
31523
31524 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
31525 Signed-off-by: Andy Fleming <afleming@freescale.com>
31526
31527commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
31528Author: Ed Swarthout <Ed.Swarthout@freescale.com>
31529Date: Tue Aug 21 09:38:59 2007 -0500
31530
31531 8548cds fixes
31532
31533 Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
31534 correct consoledev needed for linux boot.
31535 Standardize on fdt{file,addr} var to hold dtb file name.
31536
31537 Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
31538
31539 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
31540
31541commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
31542Author: Haiying Wang <Haiying.Wang@freescale.com>
31543Date: Thu Aug 23 15:20:54 2007 -0400
31544
31545 Enable L2 cache for MPC8568MDS board
31546
31547 The L2 cache size is 512KB for 8568, print out the correct informaiton.
31548
31549 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31550
31551commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
31552Author: Jason Jin <Jason.jin@freescale.com>
31553Date: Wed Aug 22 17:54:49 2007 +0800
31554
31555 Remove the bios emulator binary files from MAI board
31556
31557 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
31558
31559commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
31560Author: Kim Phillips <kim.phillips@freescale.com>
31561Date: Tue Aug 21 17:00:17 2007 -0500
31562
31563 support board vendor-common makefiles
31564
31565 if a board/$(VENDOR)/common/Makefile exists, build it.
31566
31567 also add the first such case, board/freescale/common/Makefile, to
31568 handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
31569 dictated by board configuration.
31570
31571 thusly get rid of alternate build dir errors such as:
31572
31573 FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
31574
31575 by putting the common/ mkdir command in its proper place (the common
31576 Makefile). Common bits from existing individual board Makefiles have
31577 been removed.
31578
31579 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31580
31581commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
31582Author: stefano babic <sbabic@denx.de>
31583Date: Tue Aug 21 15:52:33 2007 +0200
31584
31585 Fix: TFTP is not working on little endian systems
31586
31587 TFTP does not work anymore after multicast tftp
31588 patch was applied on little endian systems.
31589 This patch fix it.
31590
31591 Signed-off-by: Stefano Babic <sbabic@denx.de>
31592
31593commit 5f470948570526e9186f053a3003da7719604e90
31594Author: stefano babic <sbabic@denx.de>
31595Date: Tue Aug 21 15:50:33 2007 +0200
31596
31597 Fix MAC address setting in DM9000 driver.
31598
31599 The logic to check if there is a correct MAC address in the DM9000
31600 EEPROM, added in the last patch, is wrong. Now the MAC address is
31601 always taken from the environment, even if a suitable MAC is present
31602 in the EEPROM.
31603
31604 Signed-off-by: Stefano Babic <sbabic@denx.de>
31605
31606commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
31607Author: Martin Krause <martin.krause@tqs.de>
31608Date: Tue Aug 21 12:40:34 2007 +0200
31609
31610 MPC5xxx: fix some compiler warnings in USB code
31611
31612 Fix the following warnings:
31613 - usb.c:xx: warning: function declaration isn't a prototype
31614 - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
31615 from pointer wihtout a cast
31616
31617 Signed-off-by: Martin Krause <martin.krase@tqs.de>
31618
31619commit 16e23c3f5dab6937f5109365416808c7f15c122b
31620Author: Ed Swarthout <Ed.Swarthout@freescale.com>
31621Date: Mon Aug 20 23:55:33 2007 -0500
31622
31623 fsl_pci_init - Remove self PCSRBAR allocation
31624
31625 CPU physical address space was being wasted by allocating a
31626 PCSRBAR PCI inbound region to it's memory space.
31627
31628 As a rule, PCSRBAR should be left alone since it does not affect
31629 transactions from self and other masters may have changed it.
31630
31631 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
31632
31633commit 0e700ce03a23bb1921149bc77008ace7103d5289
31634Author: Martin Krause <martin.krause@tqs.de>
31635Date: Mon Aug 20 13:56:47 2007 +0200
31636
31637 Fix compiler warning in include/s3c2410.h
31638
31639 This patch fixes the "type qualifiers ignored on fuction return tpye"
31640 warning for include/s3c2410.h
31641
31642 Signed-off-by: Martin Krause <martin.krause@tqs.de>
31643
31644commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
31645Author: Dirk Behme <dirk.behme@googlemail.com>
31646Date: Mon Aug 20 07:09:05 2007 +0200
31647
31648 Fix compilation error for omap2420h4_config.
31649
31650 omap2420h4 switched to cfi, so remove old (already disabled) flash.c
31651 and flash_probe() calls in env_flash.c.
31652
31653 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
31654
31655commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
31656Author: Kim Phillips <kim.phillips@freescale.com>
31657Date: Fri Aug 10 14:34:14 2007 -0500
31658
31659 fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
31660
31661 and make some minor corrections to the FDT part of the README.
31662
31663 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31664
31665commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
31666Author: Wolfgang Denk <wd@denx.de>
31667Date: Wed Aug 29 01:32:05 2007 +0200
31668
31669 Minor coding style cleanup.
31670
31671 Signed-off-by: Wolfgang Denk <wd@denx.de>
31672
31673commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
31674Author: Heiko Schocher <hs@pollux.denx.de>
31675Date: Tue Aug 28 17:40:33 2007 +0200
31676
31677 [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
31678
31679 Signed-off-by: Heiko Schocher <hs@denx.de>
31680
31681commit f98984cb194bb34dbe1db9429d3b51133af30d07
31682Author: Heiko Schocher <hs@pollux.denx.de>
31683Date: Tue Aug 28 17:39:14 2007 +0200
31684
31685 IDE: - make ide_inb () and ide_outb () "weak", so boards can
31686 define there own I/O functions.
31687 (Needed for the pcs440ep board).
31688 - The default I/O Functions are again 8 Bit accesses.
31689 - Added CONFIG_CMD_IDE for the pcs440ep Board.
31690
31691 Signed-off-by: Heiko Schocher <hs@denx.de>
31692
Wolfgang Denk63640012007-10-14 00:13:19 +020031693commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
31694Author: Semih Hazar <semih.hazar@indefia.com>
31695Date: Mon Aug 20 19:00:01 2007 +0300
31696
31697 AVR32: Change prototype of memset
31698
31699 Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
31700 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
31701
Wolfgang Denka89cbbd2007-09-07 01:21:25 +020031702commit 9c02defc29b57945b600714cf61ddfd02b02fb14
31703Author: Yuri Tikhonov <yur@emcraft.com>
31704Date: Sat Aug 25 05:07:16 2007 +0200
31705
31706 POST: limit memory test area to not touch global data anymore
31707
31708 As experienced on lwmon5, on some boards the POST memory test can
31709 corrupt the global data buffer (bd). This patch fixes this issue
31710 by checking and limiting this area.
31711
31712 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
31713 Signed-off-by: Stefan Roese <sr@denx.de>
31714
31715commit 75e1a84d483e36be10e206e539b028c4889e1158
31716Author: Stefan Roese <sr@denx.de>
31717Date: Fri Aug 24 15:41:42 2007 +0200
31718
31719 ppc4xx: Add RTC POST test to lwmon5 board configuration
31720
31721 Since this RTC POST test is taking quite a while to complete
31722 it's only initiated upon special keypress same as the complete
31723 memory POST.
31724
31725 Signed-off-by: Stefan Roese <sr@denx.de>
31726
31727commit d7bfa620037a6d2210159387571bdf93aa32c162
31728Author: Stefan Roese <sr@denx.de>
31729Date: Fri Aug 24 15:19:10 2007 +0200
31730
31731 ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
31732
31733 Signed-off-by: Stefan Roese <sr@denx.de>
31734
31735commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
31736Author: Stefan Roese <sr@denx.de>
31737Date: Thu Aug 23 11:02:37 2007 +0200
31738
31739 ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
31740
31741 This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
31742 board. Now the "eeprom" command can be used to read/write from/to this
31743 device. Additionally a new command was added "eepromwp" to en-/disable
31744 the write-protect of this 2nd EEPROM.
31745
31746 The 1st EEPROM is not affected by this write-protect command.
31747
31748 Signed-off-by: Stefan Roese <sr@denx.de>
31749
31750commit c64fb30e4c5976007d56fc1789c7a0666082b536
31751Author: Stefan Roese <sr@denx.de>
31752Date: Wed Aug 22 08:56:09 2007 +0200
31753
31754 ppc4xx: Remove unused option CFG_INIT_RAM_OCM
31755
31756 Signed-off-by: Stefan Roese <sr@denx.de>
31757
31758commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
31759Author: Stefan Roese <sr@denx.de>
31760Date: Tue Aug 21 16:27:57 2007 +0200
31761
31762 ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
31763
31764 This patch adds support for the matrix keyboard on the lwmon5 board.
31765 Since the implementation in the dsPCI is kind of compatible with the
31766 "old" lwmon board, most of the code is copied from the lwmon
31767 board directory.
31768
31769 Signed-off-by: Stefan Roese <sr@denx.de>
31770
31771commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
31772Author: Wolfgang Denk <wd@denx.de>
31773Date: Sun Aug 19 10:27:34 2007 +0200
31774
31775 Fix some build errors.
31776
31777 Signed-off-by: Wolfgang Denk <wd@denx.de>
31778
31779commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
31780Author: Wolfgang Denk <wd@denx.de>
31781Date: Sat Aug 18 22:00:38 2007 +0200
31782
31783 Update CHANGELOG.
31784
Wolfgang Denk05675732007-08-18 22:00:38 +020031785commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
31786Author: Kim Phillips <kim.phillips@freescale.com>
31787Date: Thu Aug 16 22:52:39 2007 -0500
31788
31789 lib_ppc: make board_add_ram_info weak
31790
31791 platforms wishing to display RAM diagnostics in addition to size,
31792 can do so, on one line, in their own board_add_ram_info()
31793 implementation.
31794
31795 this consequently eliminates CONFIG_ADD_RAM_INFO.
31796
31797 Thanks to Stefan for the hint.
31798
31799 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31800
31801commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
31802Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31803Date: Fri Aug 17 12:43:44 2007 +0900
31804
31805 PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
31806
31807 This patch has been sent on:
31808 - 6 Jun 2007
31809
31810 Many users of PCI config read routines tend to ignore the function
31811 ret value, and are only concerned about the contents of *val. Based
31812 on this, pci_hose_read_config_{byte,word}_via_dword should initialize
31813 the *val on dword read error.
31814
31815 Without this fix, for example, we'll go on scanning bus with vendor or
31816 header_type uninitialized. This brings many unnecessary config trials.
31817
31818 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
31819
31820commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
31821Author: Stefan Roese <sr@denx.de>
31822Date: Sat Aug 18 14:37:52 2007 +0200
31823
31824 ColdFire: Fix some remaining problems with CFG_CMD_
31825
31826 Signed-off-by: Stefan Roese <sr@denx.de>
31827
31828commit 8280f6a1c43247616b68224675188e5ccd124650
31829Author: Stefan Roese <sr@denx.de>
31830Date: Sat Aug 18 14:33:02 2007 +0200
31831
31832 Coding style cleanup
31833
31834 Signed-off-by: Stefan Roese <sr@denx.de>
31835
31836commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
31837Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31838Date: Thu Aug 16 19:23:50 2007 -0500
31839
31840 ColdFire: Add M5235EVB Platform for MCF523x
31841
31842 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31843
31844commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
31845Author: Kim Phillips <kim.phillips@freescale.com>
31846Date: Fri Aug 17 09:30:00 2007 -0500
31847
31848 mpc83xx: fix typo in DDR2 programming
31849
31850 introduced in the implement board_add_ram_info patch as I was cleaning out the
31851 magic numbers. sorry.
31852
31853 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31854
31855commit e58fe95784d2514fc9c21028dc59f2b319a35d80
31856Author: Kim Phillips <kim.phillips@freescale.com>
31857Date: Thu Aug 16 22:53:09 2007 -0500
31858
31859 mpc83xx: move freescale boards to boards/freescale
31860
31861 includes build fixes.
31862
31863 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31864
31865commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
31866Author: Kim Phillips <kim.phillips@freescale.com>
31867Date: Thu Aug 16 22:52:59 2007 -0500
31868
31869 mpc83xx: suppress unused variable 'val8' warning
31870
31871 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31872
31873commit bbea46f76f767b919070b4829bf34c86bd223248
31874Author: Kim Phillips <kim.phillips@freescale.com>
31875Date: Thu Aug 16 22:52:48 2007 -0500
31876
31877 mpc83xx: implement board_add_ram_info
31878
31879 add board_add_ram_info, to make memory diagnostic output more
31880 consistent. u-boot banner output now looks like:
31881
31882 DRAM: 256 MB (DDR1, 64-bit, ECC on)
31883
31884 and for boards with SDRAM on the local bus, a line such as this is
31885 added:
31886
31887 SDRAM: 64 MB (local bus)
31888
31889 also replaced some magic numbers with their equivalent define names.
31890
31891 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31892
31893commit 14778585d1389d86d5846efec29e5fce892680ce
31894Author: Tony Li <tony.li@freescale.com>
31895Date: Fri Aug 17 10:35:59 2007 +0800
31896
31897 mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
31898
31899 The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
31900 And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
31901
31902 Signed-off-by Tony Li <tony.li@freescale.com>
31903
31904commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
31905Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31906Date: Thu Aug 16 15:05:11 2007 -0500
31907
31908 ColdFire: Add M54455EVB for MCF5445x
31909
31910 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31911
31912commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
31913Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31914Date: Thu Aug 16 13:20:50 2007 -0500
31915
31916 ColdFire: Add M5253EVBE platform for MCF52x2
31917
31918 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31919
31920commit a605aacd8324094199402816cc6d9124aba57b8d
31921Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31922Date: Thu Aug 16 05:04:31 2007 -0500
31923
31924 ColdFire: Add M5249EVB platform for MCF52x2
31925
31926 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31927
31928commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
31929Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31930Date: Wed Aug 15 20:32:06 2007 -0500
31931
31932 ColdFire: Update Freescale MCF52x2 platforms
31933
31934 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31935
31936commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
31937Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31938Date: Wed Aug 15 19:55:10 2007 -0500
31939
31940 ColdFire: Update EB+MCF-EV123 platform
31941
31942 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31943
31944commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
31945Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31946Date: Wed Aug 15 19:46:38 2007 -0500
31947
31948 ColdFire: update TASREG platform for MCF52x2
31949
31950 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31951
31952commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
31953Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31954Date: Wed Aug 15 19:45:51 2007 -0500
31955
31956 ColdFire: update r5200 platform for MCF52x2
31957
31958 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31959
31960commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
31961Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31962Date: Wed Aug 15 19:43:20 2007 -0500
31963
31964 ColdFire: idmr platform MCF52x2 update
31965
31966 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31967
31968commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
31969Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31970Date: Wed Aug 15 19:41:06 2007 -0500
31971
31972 ColdFire: cobra5272 platform for MCF52x2 update
31973
31974 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31975
31976commit 56115665b4a64c10c01440c57749b265e0908fa4
31977Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31978Date: Wed Aug 15 19:38:15 2007 -0500
31979
31980 ColdFire: MCF52x2 Header files update
31981
31982 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31983
31984commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
31985Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31986Date: Wed Aug 15 19:21:21 2007 -0500
31987
31988 ColdFire: MCF52x2 update
31989
31990 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31991
31992commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
31993Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31994Date: Wed Aug 15 18:46:11 2007 -0500
31995
31996 ColdFire: MCF5329 update cache
31997
31998 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31999
32000commit 7171977fb8fd77cfb6676953fa9a05789c450513
32001Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32002Date: Wed Aug 15 15:40:20 2007 -0500
32003
32004 ColdFire: MCF5329 header file clean up
32005
32006 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32007
32008commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
32009Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32010Date: Wed Aug 15 15:39:17 2007 -0500
32011
32012 ColdFire: MCF5329 Update and cleanup
32013
32014 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32015
32016commit 10327dc5541f947c0cf7e31fef86c4706169607a
32017Author: Andy Fleming <afleming@freescale.com>
32018Date: Thu Aug 16 16:35:02 2007 -0500
32019
32020 Add CONFIG_HAS_ETH0 to all boards with TSEC
32021
32022 The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
32023 to update TSEC1's device-tree node, so we need to add it
32024 to all the boards with TSECs. Do this for 83xx and 86xx, too,
32025 since they will eventually do something similar.
32026
32027 Signed-off-by: Andy Fleming <afleming@freescale.com>
32028
32029commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
32030Author: Kumar Gala <galak@kernel.crashing.org>
32031Date: Thu Aug 16 15:05:04 2007 -0500
32032
32033 Update MPC8544 DS PCI memory map
32034
32035 The PCIe bus that the ULI M1575 is connected to has no possible way of
32036 needing more than the fixed amount of IO & Memory space needed by the ULI.
32037
32038 So make it use far less IO & memory space and have it use the shared LAW. This
32039 free's up a LAW for PCIe1 IO space. Also reduce the amount of IO space needed
32040 by each bus.
32041
32042 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32043
32044commit ea5877e31ed63ade948fd1293895ec23fe01472e
32045Author: Kumar Gala <galak@kernel.crashing.org>
32046Date: Thu Aug 16 11:01:21 2007 -0500
32047
32048 Fix up some fdt issues on 8544DS
32049
32050 It looks like we had a merge issue that duplicated a bit of code
32051 in ft_board_setup. Also, we need to set CONFIG_HAS_ETH0 to get
32052 the MAC address properly set in the device tree on boot for TSEC1
32053
32054 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32055
32056commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
32057Author: Niklaus Giger <niklaus.giger@netstal.com>
32058Date: Thu Aug 16 15:16:03 2007 +0200
32059
32060 PPC4xx:HCU4/5 cleanup
32061
32062 Minor cleanups to confirm to the u-boot coding style.
32063 Some german expressions -> english.
32064 HCU5 enforces a unique IP adress for a given slot in the rack.
32065
32066 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32067
32068commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
32069Author: Niklaus Giger <niklaus.giger@netstal.com>
32070Date: Thu Aug 16 15:16:02 2007 +0200
32071
32072 PPC4xx:HCU4/5 cleanup ecc/sdram init
32073
32074 Make ecc initialisation robust, as DDR2-ECC errors may be generated
32075 while zeroing the RAM.
32076
32077 Return 16 bytes (a cacheline) less than the available memory, as the
32078 board and/or PPC440EPx might have problems accessing the last bytes.
32079
32080 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32081
32082commit d35b508a55508535b6e8445b718585d27df733d3
32083Author: Kim Phillips <kim.phillips@freescale.com>
32084Date: Wed Aug 15 22:29:56 2007 -0500
32085
32086 fdt: suppress unused variable 'bd' warning
32087
32088 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32089
32090commit 82bd9ee77490588d4da785d75829ca63d0176baf
32091Author: Andy Fleming <afleming@freescale.com>
32092Date: Wed Aug 15 20:06:50 2007 -0500
32093
32094 Fix warnings from of_data copy fix
32095
32096 Forgot to cast of_flat_tree to ulong.
32097
32098 Signed-off-by: Andy Fleming <afleming@freescale.com>
32099
32100commit 7613afda77d5eec0f47d303025b0c661b70e4c73
32101Author: Andy Fleming <afleming@freescale.com>
32102Date: Wed Aug 15 20:03:44 2007 -0500
32103
32104 Don't wait for disconnected TSECs
32105
32106 The TSEC driver's PHY code waits a long time for autonegotiation to
32107 complete, even if the link is down. The PHY knows the link is
32108 down or up before autonegotiation completes, so we can short-circuit
32109 the process if the link is down.
32110
32111 Signed-off-by: Andy Fleming <afleming@freescale.com>
32112
32113commit b96c83d4ae475a70ef2635cd0e748174c44c8601
32114Author: Andy Fleming <afleming@freescale.com>
32115Date: Wed Aug 15 20:03:34 2007 -0500
32116
32117 Fix numerous bugs in the 8568 UEC support
32118
32119 Actually, fixed a large bug in the UEC for *all* platforms.
32120 How did this ever work?
32121
32122 uec_init() did not follow the spec for eth_init(), and returned
32123 0 on success. Switch it to return the link like tsec_init()
32124 (and 0 on error)
32125
32126 The immap for the 8568 was defined based on MPC8568, rather than
32127 CONFIG_MPC8568
32128
32129 CONFIG_QE was off
32130
32131 CONFIG_ETHPRIME was set to "Freescale GETH". Now is "FSL UEC0"
32132
32133 Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
32134 enabled
32135
32136 Signed-off-by: Andy Fleming <afleming@freescale.com>
32137
32138commit 3a79013e2adda53332dfd0b511066a805e929a9d
32139Author: Andy Fleming <afleming@freescale.com>
32140Date: Wed Aug 15 20:03:25 2007 -0500
32141
32142 Define tsec flag values in config files
32143
32144 The tsec_info structure and array has a "flags" field for each
32145 ethernet controller. This field is the only reason there are
32146 settings. Switch to defining TSECn_FLAGS for each controller
32147 in the config header, and we can greatly simplify the array, and
32148 also simplify the addition of future boards.
32149
32150 Signed-off-by: Andy Fleming <afleming@freescale.com>
32151
32152commit ec7238229507e7f47533a611ea8c53319d234cf3
32153Author: Andy Fleming <afleming@freescale.com>
32154Date: Wed Aug 15 20:03:13 2007 -0500
32155
32156 Add support for building all boards with a TSEC
32157
32158 Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
32159 Now we can do a MAKEALL test on all of them!
32160
32161 Signed-off-by: Andy Fleming <afleming@freescale.com>
32162
32163commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
32164Author: Andy Fleming <afleming@freescale.com>
32165Date: Wed Aug 15 17:30:56 2007 -0500
32166
32167 Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
32168
32169 The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
32170 neglected to *also* put the code inside the similar #ifdef
32171 for CONFIG_OF_FLAT_TREE.
32172
32173 Signed-off-by: Andy Fleming <afleming@freescale.com>
32174
32175commit 78f9fef7f406078c8bf7191e665a73f795157746
32176Author: Scott Wood <scottwood@freescale.com>
32177Date: Wed Aug 15 15:46:46 2007 -0500
32178
32179 mpc885ads: Don't define CONFIG_BZIP2.
32180
32181 bzip2 requires a significant chunk of malloc space, and there isn't
32182 enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
32183 and a downloaded image at 0x400000.
32184
32185 Signed-off-by: Scott Wood <scottwood@freescale.com>
32186
32187commit 002275a3ed8b114885f6702d6d544d0780dfe689
32188Author: Michal Simek <Monstr@seznam.cz>
32189Date: Thu Aug 16 08:54:10 2007 +0200
32190
32191 Bios emulator - fix microblaze toolchain problem
32192
32193 microblaze CPU have problem with bios_emulator code.
32194 Microblaze toolchain doesn't support PRAGMA PACK.
32195
32196 Signed-off-by: Michal Simek <monstr@monstr.eu>
32197
32198commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
32199Author: Wolfgang Denk <wd@denx.de>
32200Date: Thu Aug 16 11:51:04 2007 +0200
32201
32202 Minor Coding Style fix; Update CHANGELOG file.
32203
32204 Signed-off-by: Wolfgang Denk <wd@denx.de>
32205
32206commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
32207Author: Stefan Roese <sr@denx.de>
32208Date: Thu Aug 16 11:21:49 2007 +0200
32209
32210 ppc4xx: Remove #warning in esd auto_update.c
32211
32212 Signed-off-by: Stefan Roese <sr@denx.de>
32213
Wolfgang Denka5a38f42007-08-16 11:51:04 +020032214commit 2d78074d2e806edc380c1464eb9e5df335ece65e
32215Author: Stefan Roese <sr@denx.de>
32216Date: Fri Jun 22 17:32:28 2007 +0200
32217
32218 ppc7xx: Update CPCI750 board
32219
32220 This small CPCI750 update extends the board specific command
32221 "show_config" to display the Marvell strapping registers and
32222 extends the PCI IDE controller.
32223
32224 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
32225 Signed-off-by: Stefan Roese <sr@denx.de>
32226
Wolfgang Denk63640012007-10-14 00:13:19 +020032227commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
32228Author: Michal Simek <monstr@monstr.eu>
32229Date: Thu Aug 16 10:46:28 2007 +0200
32230
32231 [FIX] Changes for bios_emulator code for others architecture
32232
32233commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
32234Author: Michal Simek <monstr@monstr.eu>
32235Date: Thu Aug 16 10:45:09 2007 +0200
32236
32237 [FIX] Remove unused include file
32238
Wolfgang Denk05675732007-08-18 22:00:38 +020032239commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
32240Author: Stefan Roese <sr@denx.de>
32241Date: Thu Aug 16 10:18:33 2007 +0200
32242
32243 ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
32244
32245 Signed-off-by: Stefan Roese <sr@denx.de>
32246
32247commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
32248Author: Stefan Roese <sr@denx.de>
32249Date: Thu Aug 16 09:54:51 2007 +0200
32250
32251 Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
32252
32253 Signed-off-by: Stefan Roese <sr@denx.de>
32254
32255commit 02ba7022f62bb75908296c58c63866e1d294b69a
32256Author: Stefan Roese <sr@denx.de>
32257Date: Thu Aug 16 09:52:29 2007 +0200
32258
32259 ppc4xx: Update Sequoia/Rainier bootstrap command
32260
32261 As suggested by David Mitchell, here an update for the Sequoia/Rainier
32262 bootstrap command.
32263
32264 Signed-off-by: Stefan Roese <sr@denx.de>
32265
32266commit 35cc4e4823668e8745854899cfaedd4489beb0ef
32267Author: Kim Phillips <kim.phillips@freescale.com>
32268Date: Wed Aug 15 22:30:39 2007 -0500
32269
32270 mpc83xx: enable libfdt by default on freescale boards
32271
32272 this enables libfdt code by default for the
32273 freescale mpc8313erdb, mpc832xemds, mpc8349emds,
32274 mpc8349itx and gp boards.
32275
32276 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32277
32278commit 3fde9e8b22cfbd7af489214758f9839a206576cb
32279Author: Kim Phillips <kim.phillips@freescale.com>
32280Date: Wed Aug 15 22:30:33 2007 -0500
32281
32282 mpc83xx: migrate remaining freescale boards to libfdt
32283
32284 this adds libfdt support code for the freescale
32285 mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
32286 and gp boards.
32287
32288 Boards remain compatible with OF_FLAT_TREE.
32289
32290 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32291
32292commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
32293Author: Kim Phillips <kim.phillips@freescale.com>
32294Date: Wed Aug 15 22:30:26 2007 -0500
32295
32296 mpc83xx: move common /memory node update mechanism to cpu.c
32297
32298 also adds common prototypes to include/common.h.
32299
32300 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32301
32302commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
32303Author: Kim Phillips <kim.phillips@freescale.com>
32304Date: Wed Aug 15 22:30:19 2007 -0500
32305
32306 mpc83xx: remaining 8360 libfdt fixes
32307
32308 PCI clocks and QE frequencies weren't being updated, and the core clock
32309 was being updated incorrectly. This patch also adds a /memory node if
32310 it doesn't already exist prior to update.
32311
32312 plus some cosmetic trimming to single line comments.
32313
32314 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32315
32316commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
32317Author: Kim Phillips <kim.phillips@freescale.com>
32318Date: Wed Aug 15 22:30:12 2007 -0500
32319
32320 mpc83xx: fix UEC2->1 typo in libfdt setup code
32321
32322 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32323
32324commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
32325Author: Kim Phillips <kim.phillips@freescale.com>
32326Date: Wed Aug 15 22:30:05 2007 -0500
32327
32328 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
32329
32330 and reorder the existing 83xx maintainers alpha.
32331
32332 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32333
Wolfgang Denk63640012007-10-14 00:13:19 +020032334commit 5b4de9309d7a03aa1db2e5391ab696363391f460
32335Author: Michal Simek <monstr@monstr.eu>
32336Date: Wed Aug 15 21:15:05 2007 +0200
32337
32338 [FIX] Resolve problem with warnings
32339 microblaze toolchain don't support PRAGMA PACK.
32340
32341commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
32342Author: Michal Simek <monstr@monstr.eu>
32343Date: Wed Aug 15 21:05:07 2007 +0200
32344
32345 [FIX] Correction command setting for Microblaze boards
32346
32347commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
32348Author: Michal Simek <monstr@monstr.eu>
32349Date: Wed Aug 15 21:03:41 2007 +0200
32350
32351 [FIX] Correction command definition
32352
Wolfgang Denka5a38f42007-08-16 11:51:04 +020032353commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
32354Author: Jon Loeliger <jdl@freescale.com>
32355Date: Wed Aug 15 11:55:35 2007 -0500
32356
32357 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
32358
32359 Remove a leftover in net/tftp.c while we're at it.
32360
32361 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32362
32363commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
32364Author: Jon Loeliger <jdl@freescale.com>
32365Date: Wed Aug 15 12:20:40 2007 -0500
32366
32367 Move the MPC8641HPCN board under board/freescale.
32368
32369 Minor path corrections needed to ensure buildability.
32370
32371 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32372
32373commit 8662577fe36fdb6a44b55b998d9daac6392a736a
32374Author: Jon Loeliger <jdl@freescale.com>
32375Date: Wed Aug 15 11:46:22 2007 -0500
32376
32377 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
32378
32379 Remove a leftover in net/tftp.c while we're at it.
32380
32381 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32382
32383commit 210f463c71917b7a4495c2103c228b9c179ae64d
32384Author: Jerry Van Baren <gvb.uboot@gmail.com>
32385Date: Wed Aug 15 11:13:15 2007 -0400
32386
32387 Fix where the #ifdef CFG_BOOTMAPSZ is placed.
32388
32389 Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
32390 interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
32391 when it should have gone inside of the conditional. As a result, it
32392 broke non-LIBFDT board builds.
32393
32394 Also added a missing "not." to the comment.
32395
32396 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32397
Wolfgang Denk05675732007-08-18 22:00:38 +020032398commit 0e19209767194a97cec6d93dba9e64d1da8d548e
32399Author: Niklaus Giger <niklaus.giger@netstal.com>
32400Date: Wed Aug 15 12:14:23 2007 +0200
32401
32402 PPC4xx:HCU4/5-Board fix compile warning
32403
32404 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32405
Wolfgang Denka5a38f42007-08-16 11:51:04 +020032406commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
32407Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32408Date: Tue Aug 14 14:06:45 2007 -0500
32409
32410 Fix malloc size error in ahci_init_one.
32411
32412 Typically this causes scsi init to corrupt the
32413 devlist and break the coninfo command.
32414 Fix a compiler size warning.
32415
32416 Signed-off-by: Jason Jin <jason.jin@freescale.com>
32417 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32418 Acked-by: Andy Fleming <afleming@freescale.com>
32419
32420commit b361acd64fd2525c081b9b288b0804efe209c0e9
32421Author: ksi@koi8.net <ksi@koi8.net>
32422Date: Tue Aug 14 10:02:16 2007 -0700
32423
32424 TI DaVinci - fix unsupported %hhx format
32425
32426 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
32427
32428commit f01dbb5424a81453c81190dd30e945891466f621
32429Author: Wolfgang Denk <wd@denx.de>
32430Date: Tue Aug 14 18:42:36 2007 +0200
32431
32432 Coding style cleanup. Update CHANGELOG.
32433
32434 Signed-off-by: Wolfgang Denk <wd@denx.de>
32435
Wolfgang Denkf01dbb52007-08-14 18:42:36 +020032436commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
32437Author: Andy Fleming <afleming@freescale.com>
32438Date: Tue Aug 14 10:32:59 2007 -0500
32439
32440 Fix initrd/dtb interaction
32441
32442 The original code would wrongly relocate the blob to be right before
32443 the initrd if it existed. The blob *must* be within CFG_BOOTMAPSZ,
32444 if it is defined. So we make two changes:
32445
32446 1) flag the blob for relocation whenever its address is above BOOTMAPSZ
32447
32448 2) If the blob is being relocated, relocate it before kbd, not initrd
32449
32450 Signed-off-by: Andy Fleming <afleming@freescale.com>
32451
32452commit e54b970173769307a116bd34028b6d0c2eea2a4e
32453Author: Peter Pearse <peter.pearse@arm.com>
32454Date: Tue Aug 14 15:40:00 2007 +0100
32455
32456 Supply spi interface in at45.c
32457
Wolfgang Denka5a38f42007-08-16 11:51:04 +020032458commit 4ce846ec59f36b85d6644a769690ad3feb667575
32459Author: Stefan Roese <sr@denx.de>
32460Date: Tue Aug 14 15:12:01 2007 +0200
32461
32462 POST: Fix merge problem
32463
32464 Signed-off-by: Stefan Roese <sr@denx.de>
32465
32466commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
32467Author: Stefan Roese <sr@denx.de>
32468Date: Tue Aug 14 15:03:17 2007 +0200
32469
32470 Coding style cleanup
32471
32472 Signed-off-by: Stefan Roese <sr@denx.de>
32473
32474commit 779e975117a75e91fcebe226a63104dbfb924ab1
32475Author: Stefan Roese <sr@denx.de>
32476Date: Tue Aug 14 14:44:41 2007 +0200
32477
32478 ppc4xx: Add initial Zeus (PPC405EP) board support
32479
32480 Signed-off-by: Stefan Roese <sr@denx.de>
32481
32482commit c5a172a5fd636c12467429e3f7910e53773979c6
32483Author: Stefan Roese <sr@denx.de>
32484Date: Tue Aug 14 14:41:55 2007 +0200
32485
32486 POST: Add option for external ethernet loopback test
32487
32488 When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
32489 is not done using an internal loopback connection, but by assuming
32490 that an external loopback connector is plugged into the board.
32491
32492 Signed-off-by: Stefan Roese <sr@denx.de>
32493
32494commit eb2b4010ae426245172988804ee8d9193fb41038
32495Author: Stefan Roese <sr@denx.de>
32496Date: Tue Aug 14 14:39:44 2007 +0200
32497
32498 POST: Add ppc405 support to cache and UART POST
32499
32500 Signed-off-by: Stefan Roese <sr@denx.de>
32501
Wolfgang Denkf01dbb52007-08-14 18:42:36 +020032502commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
32503Author: Peter Pearse <peter.pearse@arm.com>
32504Date: Tue Aug 14 10:46:32 2007 +0100
32505
32506 Replace lost end of at45.c.
32507
32508commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
32509Author: Peter Pearse <peter.pearse@arm.com>
32510Date: Tue Aug 14 10:30:06 2007 +0100
32511
32512 Update Makefiles for merged and split at45.c.
32513
32514commit 3454cece2db57cb9eb7087995f7e73066a163f71
32515Author: Peter Pearse <peter.pearse@arm.com>
32516Date: Tue Aug 14 10:21:06 2007 +0100
32517
32518 Delete the merged files.
32519
32520commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
32521Author: Peter Pearse <peter.pearse@arm.com>
32522Date: Tue Aug 14 10:14:05 2007 +0100
32523
32524 Add the files.
32525
32526commit d4fc6012fd0a5c211b825691f44b06f8032c0551
32527Author: Peter Pearse <peter.pearse@arm.com>
32528Date: Tue Aug 14 10:10:52 2007 +0100
32529
32530 Add MACH_TYPE records for several AT91 boards.
32531 Merge to two at45.c files into a common file, split to at45.c and spi.c
32532 Fix spelling error in DM9161 PHY Support.
32533 Initialize at91rm9200 board (and set LED).
32534 Add PIO control for at91rm9200dk LEDs and Mux.
32535 Change dataflash partition boundaries to be compatible with Linux 2.6.
32536
32537 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
32538 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
32539
32540commit 4ef35e53c693556c54b0c22d6f873de87bade253
32541Author: Wolfgang Denk <wd@denx.de>
32542Date: Tue Aug 14 09:54:46 2007 +0200
32543
32544 Coding style cleanup, update CHANGELOG
32545
32546 Signed-off-by: Wolfgang Denk <wd@denx.de>
32547
Wolfgang Denk4ef35e52007-08-14 09:54:46 +020032548commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
32549Author: Wolfgang Denk <wd@denx.de>
32550Date: Tue Aug 14 09:47:27 2007 +0200
32551
32552 Coding style cleanup; rebuild CHANGELOG
32553
32554commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
32555Author: Randy Vinson <rvinson@linuxbox.(none)>
32556Date: Tue Feb 27 19:42:22 2007 -0700
32557
32558 85xxCDS: Add make targets for legacy systems.
32559
32560 The PCI ID select values on the Arcadia main board differ depending
32561 on the version of the hardware. The standard configuration supports
32562 Rev 3.1. The legacy target supports Rev 2.x.
32563
32564 Signed-off-by Randy Vinson <rvinson@mvista.com>
32565
32566commit e41094c7e38177c755fbd9b182018069614f080d
32567Author: Andy Fleming <afleming@freescale.com>
32568Date: Tue Aug 14 01:50:09 2007 -0500
32569
32570 85xxCDS: Enable the VIA PCI-to-ISA bridge.
32571
32572 Author: Randy Vinson <rvinson@linuxbox.(none)>
32573
32574 Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
32575 Arcadia main board.
32576
32577 Signed-off-by: Randy Vinson <rvinson@mvista.com>
32578 Signed-off-by: York Sun <yorksun@freescale.com>
32579
32580commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
32581Author: Andy Fleming <afleming@freescale.com>
32582Date: Tue Aug 14 00:14:25 2007 -0500
32583
32584 Add support for UEC to 8568
32585
32586 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32587 Signed-off-by: Andy Fleming <afleming@freescale.com>
32588
32589commit c59e4091ffe0148398b9e9ff14a019ea038b7432
32590Author: Haiying Wang <Haiying.Wang@freescale.com>
32591Date: Tue Jun 19 14:18:34 2007 -0400
32592
32593 Add PCI support for MPC8568MDS board
32594
32595 This patch is against u-boot-mpc85xx.git of www.denx.com
32596
32597 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32598 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
32599
32600commit d111d6382c99fdea08c2312eeeae8786945e189a
32601Author: Haiying Wang <Haiying.Wang@freescale.com>
32602Date: Tue Jun 19 14:18:32 2007 -0400
32603
32604 Empirically set cpo and clk_adjust for mpc85xx DDR2 support
32605
32606 This patch is against u-boot-mpc85xx.git of www.denx.com
32607
32608 Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
32609 both MPC8548CDS board and MPC8568MDS board, especially for supporting
32610 533MHz DDR2.
32611
32612 Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
32613 DDR2 on all current board versions especially ver 1.92 or later to bring
32614 up.
32615
32616 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
32617
32618commit 3db0bef59eab1155801618cef5c481e97553b597
32619Author: Kumar Gala <galak@kernel.crashing.org>
32620Date: Tue Aug 7 18:07:27 2007 -0500
32621
32622 Use an absolute address when jumping out of 4k boot page
32623
32624 On e500 when we leave the 4k boot page we should use an absolute address since
32625 we don't know where the board code may want us to be really running at.
32626
32627 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32628
32629commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
32630Author: Andy Fleming <afleming@freescale.com>
32631Date: Mon Aug 13 14:49:59 2007 -0500
32632
32633 MPC85xx BA bits not set for 3-bit bank address DIMM
32634
32635 The current implementation does not set the number of bank address bits
32636 (BA) in the processor. The default assumes 2 logical bank bits. This
32637 works fine for a DIMM that uses devices with 4 internal banks (SPD
32638 byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
32639 devices with 8 internal banks (SPD byte17 = 0x8).
32640
32641 Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
32642
32643commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
32644Author: Andy Fleming <afleming@freescale.com>
32645Date: Mon Aug 13 14:38:06 2007 -0500
32646
32647 Fix minor 85xx warnings
32648
32649 Some patches had inserted warnings into the build:
32650 * mpc8560ads declared data without using it
32651 * cpu_init declared ecm and immap without using it in all CONFIGs
32652 * MPC8548CDS.h had its default filenames changed so that they contained
32653 "\m" in the paths. Made the defaults not Windows-specific (or
32654 anything-specific)
32655
32656 Signed-off-by: Andy Fleming <afleming@freescale.com>
32657
32658commit f2cff6b104f82b993bef6086ce0c97159bbe1add
32659Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32660Date: Fri Jul 27 01:50:52 2007 -0500
32661
32662 8548cds PCIE support.
32663
32664 Make the early L1 cache stack region guarded to prevent speculative
32665 fetches outside the locked range.
32666
32667 Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
32668 init.S whitespace cleanup.
32669
32670 Allow TEXT_BASE value to be specified on command line. This allows it
32671 to be set to 0xfffc0000 which cuts the uboot binary in half.
32672
32673 Clear and enable lbc and ecm errors.
32674
32675 Update last_busno in device-tree for pci and pcie.
32676
32677 Remove load of obsolete cpu/mpc85xx/pci.0
32678
32679 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32680 Acked-by: Andy Fleming <afleming@freescale.com>
32681
32682commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
32683Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32684Date: Fri Jul 27 01:50:51 2007 -0500
32685
32686 8544ds PCIE support
32687
32688 PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
32689
32690 Enable LBC and ECM errors and clear error registers.
32691
32692 Add tftpflash env var to get uboot from tftp server and flash it.
32693
32694 Add pci/pcie convenience env vars to display register space:
32695 "run pcie3regs" to see all pcie3 ccsr registers
32696 "run pcie3cfg" to see all cfg registers
32697 Whitespace cleanup and MPC8544DS.h
32698
32699 Enable CONFIG_INTERRUPTS.
32700
32701 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32702 Acked-by: Andy Fleming <afleming@freescale.com>
32703
32704commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
32705Author: Andy Fleming <afleming@freescale.com>
32706Date: Tue Aug 14 01:34:21 2007 -0500
32707
32708 85xx start.S cleanup and exception support
32709
32710 From: Ed Swarthout <Ed.Swarthout@freescale.com>
32711
32712 Support external interrupts from platform to eliminate system hangs.
32713 Define CONFIG_INTERRUPTS board configure option to enable.
32714 Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
32715
32716 Remove extra cpu initialization redundant with hardware initialization.
32717 Whitespace cleanup.
32718
32719 Define and use _START_OFFSET consistent with other processors using
32720 ppc_asm.tmpl
32721
32722 Move additional code from .text to boot page to make room for
32723 exception vectors at start of image.
32724
32725 Handle Machine Check, External and Critical exceptions.
32726
32727 Fix e500 machine check error determination in traps.c
32728
32729 TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
32730
32731 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32732 Acked-by: Andy Fleming <afleming@freescale.com>
32733
32734commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
32735Author: Andy Fleming <afleming@freescale.com>
32736Date: Tue Aug 14 01:33:18 2007 -0500
32737
32738 Add MPC8544DS README
32739
32740 Signed-off-by: Andy Fleming <afleming@freescale.com>
32741
32742commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
32743Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32744Date: Fri Jul 27 01:50:48 2007 -0500
32745
32746 85xx allow debugger to configure ddr.
32747
32748 Only check for mpc8548 rev 1 when compiled for 8548.
32749
32750 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32751 Acked-by: Andy Fleming <afleming@freescale.com>
32752
32753commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
32754Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32755Date: Fri Jul 27 01:50:47 2007 -0500
32756
32757 mpc85xx L2 cache reporting and SRAM relocation option.
32758
32759 Allow debugger to override flash cs0/cs1 settings to enable alternate
32760 boot regions
32761
32762 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32763 Acked-by: Andy Fleming <afleming@freescale.com>
32764
32765commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
32766Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32767Date: Fri Jul 27 01:50:46 2007 -0500
32768
32769 e500 needs ppc_asm.tmp MCK_EXCEPTION
32770
32771 Always define MCK_EXCEPTION macro - so e500 can use it too.
32772
32773 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32774 Acked-by: Andy Fleming <afleming@freescale.com>
32775
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +020032776commit 53a5c424bf8655b7b4e2c305a441963259a26a81
32777Author: David Updegraff <dave@cray.com>
32778Date: Mon Jun 11 10:41:07 2007 -0500
32779
32780 multicast tftp: RFC2090
32781
32782 Implemented IETF RFC2090, Multicast TFTP. Initial implementation
32783 on Realtek RTL8139 and Freescale TSEC.
32784
32785 Signed-off-by: David Updegraff <dave@cray.com>
32786 Signed-off-by: Ben Warren <bwarren@qstreams.com>
32787
32788commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
32789Author: Wilson Callan <wcallan@savantav.com>
32790Date: Sat Jul 28 10:56:13 2007 -0400
32791
32792 New CONFIG_BOOTP_SERVERIP option
32793
32794 Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
32795 from the bootp server
32796
32797 Signed-off-by: Wilson Callan <wcallan@savantav.com>
32798 Signed-off-by: Ben Warren <bwarren@qstreams.com>
32799
32800commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
32801Author: Mike Rapoport <mike@compulab.co.il>
32802Date: Sun Aug 12 08:48:27 2007 +0300
32803
32804 Add ability to take MAC address from the environment to DM9000 driver
32805
32806 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
32807 Signed-off-by: Ben Warren <bwarren@qstreams.com>
32808
32809commit be5d72d10d47609326226225181e301fb9a33b58
32810Author: Wolfgang Denk <wd@denx.de>
32811Date: Mon Aug 13 21:57:53 2007 +0200
32812
32813 Minor coding style cleanup. Update CHANGELOG.
32814
32815 Signed-off-by: Wolfgang Denk <wd@denx.de>
32816
32817commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
32818Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
32819Date: Sat Aug 11 06:54:58 2007 -0500
32820
32821 Modify SBC8641D to use new Freescale PCI routines
32822
32823 PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
32824 adapter.
32825
32826 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
32827 Signde-off-by: Jon Loeliger <jdl@freescale.com>
32828
Wolfgang Denkbe5d72d2007-08-13 21:57:53 +020032829commit a08458303e7f9db67f296980036d3292c35cb45c
32830Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32831Date: Fri Jun 29 18:38:51 2007 +0200
32832
32833 atmel_mci: Fix data timeout value
32834
32835 Calculate the data timeout based on values from the CSD instead of
32836 just using a hardcoded DTOR value. This is a backport of a similar fix
32837 in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
32838 instead of down.
32839
32840 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32841
32842commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
32843Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32844Date: Mon Aug 13 17:22:31 2007 +0200
32845
32846 AVR32: Include <div64.h> instead of <asm/div64.h>
32847
32848 include/asm-avr32/div64.h was recently moved to include/div64.h, but
32849 cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
32850 the patch was merged perhaps?)
32851
32852 This patch updates cpu/at32ap/interrupts.c so that the avr32 port
32853 compiles again.
32854
32855 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32856
32857commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
32858Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32859Date: Wed Jun 27 13:34:26 2007 +0200
32860
32861 atmel_mci: Use 512 byte blocksize if possible
32862
32863 Instead of always using the largest blocksize the card supports, check
32864 if it can support smaller block sizes and use 512 bytes if possible.
32865 Most cards do support this, and other parts of u-boot seem to have
32866 trouble with block sizes different from 512 bytes.
32867
32868 Also enable underrun/overrun protection.
32869
32870 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
32871 Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
32872
Wolfgang Denka5a38f42007-08-16 11:51:04 +020032873commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
32874Author: Stefan Roese <sr@denx.de>
32875Date: Mon Aug 13 09:05:33 2007 +0200
32876
32877 ppc4xx: Fix problem in PLL clock calculation
32878
32879 This patch was originall provided by David Mitchell <dmitchell@amcc.com>
32880 and fixes a bug in the PLL clock calculation.
32881
32882 Signed-off-by: Stefan Roese <sr@denx.de>
32883
Wolfgang Denkbe5d72d2007-08-13 21:57:53 +020032884commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
32885Author: Wolfgang Denk <wd@denx.de>
32886Date: Sun Aug 12 21:34:50 2007 +0200
32887
32888 Update CHANGELOG
32889
Wolfgang Denk9986bc32007-08-12 21:34:50 +020032890commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
32891Author: Wolfgang Denk <wd@denx.de>
32892Date: Sun Aug 12 21:34:34 2007 +0200
32893
32894 Minor alignment of output, 2nd try.
32895 Also update CHANGELOG
32896
32897 Signed-off-by: Wolfgang Denk <wd@denx.de>
32898
32899commit 6b309f22a724fad8418e811751a0741b893419cf
32900Author: Wolfgang Denk <wd@denx.de>
32901Date: Sun Aug 12 20:35:49 2007 +0200
32902
32903 Minor alignment of output
32904
32905 Signed-off-by: Wolfgang Denk <wd@denx.de>
32906
32907commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
32908Author: Wolfgang Denk <wd@denx.de>
32909Date: Sun Aug 12 18:28:18 2007 +0200
32910
32911 Cleanup output on ADS5121 board
32912
32913 Signed-off-by: Wolfgang Denk
32914
32915commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
32916Author: Wolfgang Denk <wd@denx.de>
32917Date: Sun Aug 12 15:11:38 2007 +0200
32918
32919 Adapt board configuration and fix kernel crash on MCC200 board.
32920
32921 The update procedure was modified to turn off the USB subsystem
32922 before exit for MCC200 and TRAB. This is necessary as otherwise the
32923 USB controller continues to write periodically to system memory!
32924
32925 MCC200-specific notes:
32926 - the patch disables the magic key check for MCC200
32927 - the patch contains the configuration changes made
32928 for the new revision of the board.
32929
32930 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
32931 Signed-off-by: Wolfgang Denk <wd@denx.de>
32932
32933commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
32934Author: Wolfgang Denk <wd@denx.de>
32935Date: Sun Aug 12 14:47:54 2007 +0200
32936
32937 Adjust default configuration of ADS5121 board.
32938
32939 Signed-off-by: Wolfgang Denk <wd@denx.de>
32940
32941commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
32942Author: Wolfgang Denk <wd@denx.de>
32943Date: Sun Aug 12 14:27:39 2007 +0200
32944
32945 Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
32946
32947 Signed-off-by: Wolfgang Denk <wd@denx.de>
32948
32949commit 5fe6be6208dda852c3564e384bd78d75784dea3e
32950Author: Gerald Van Baren <vanbaren@cideas.com>
32951Date: Tue Aug 7 21:14:22 2007 -0400
32952
32953 Improve error print messages.
32954
32955 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32956
32957commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
32958Author: Kim Phillips <kim.phillips@freescale.com>
32959Date: Tue Jul 17 13:57:04 2007 -0500
32960
32961 fdt: allow for builds that don't want env and bd_t nodes
32962
32963 protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
32964 area.
32965
32966 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32967
32968commit 91148bf7aeba142d6f348805db7625db7da64d6f
32969Author: Kim Phillips <kim.phillips@freescale.com>
32970Date: Tue Jul 17 13:56:53 2007 -0500
32971
32972 fdt: do board setup based on fdt address specified on bootm line
32973
32974 The last fdt patch to bootm did board setup based on the address
32975 specified by a prior fdt address command invocation. The bootm
32976 code, as its call to fdt_chosen does, should use the fdt specified
32977 by the user on the bootm command. Note this restores full
32978 functionality for the 8360's existing default boot environment
32979 values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
32980 before booting a kernel).
32981
32982 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32983
32984commit e125a2ffc209dd34794e326c7175658253beadf3
32985Author: Gerald Van Baren <vanbaren@cideas.com>
32986Date: Tue Jul 10 20:40:39 2007 -0400
32987
32988 Call ft_board_setup() from the bootm command.
32989
32990 In the patch titled "Create new fdt boardsetup command..." I removed the
32991 call to ft_board_setup() from the routine fdt_chosen(), but I forgot
32992 to add a direct call back into cmd_bootm.c
32993
32994 This fixes the oversight by adding the direct call to the bootm command.
32995
32996 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
32997
32998commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
32999Author: Gerald Van Baren <vanbaren@cideas.com>
33000Date: Mon Jun 25 23:25:28 2007 -0400
33001
33002 Create new fdt boardsetup command, fix bug parsing [] form of set values.
33003
33004 Previously ft_board_setup() was called by fdt_chosen() which was not
33005 really correctly structured. This splits ft_board_setup() out by creating
33006 a new fdt boardsetup command.
33007
33008 Fix a bug when parsing fdt set command values which have the square
33009 bracket form [00 11 22 33] - the length was updated incorrectly in when
33010 parsing that form.
33011
33012 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33013
33014commit 6f35ded9e85493595e0eb66a82b502a95326d049
33015Author: Gerald Van Baren <vanbaren@cideas.com>
33016Date: Mon Jun 25 20:55:58 2007 -0400
33017
33018 Tighten up the error messages.
33019
33020 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33021
33022commit c45874b05aae897a6c29d1a97d4bb708fca2756c
33023Author: Gerald Van Baren <vanbaren@cideas.com>
33024Date: Mon Jun 25 19:52:23 2007 -0400
33025
33026 Asthetic improvements: error messages and line lengths.
33027
33028 Tighten up the error messages, split overlength lines.
33029
33030 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33031
33032commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
33033Author: Gerald Van Baren <vanbaren@cideas.com>
33034Date: Fri May 25 22:08:57 2007 -0400
33035
33036 Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
33037
33038 The fdt_chosen() function was adding/seting some properties ad-hoc
33039 improperly and duplicated (poorly) what was done in ft_board_setup()
33040
33041 Clean up long lines (setting properties, printing errors).
33042
33043 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33044
33045commit 06e19a07701c968f15d72c083b5872a1a11c7b01
33046Author: Gerald Van Baren <vanbaren@cideas.com>
33047Date: Mon May 21 23:27:16 2007 -0400
33048
33049 For fdt_find_node_by_path(), handle the root path properly.
33050
33051 Also removes the special case root path detection in cmd_fdt.c since it
33052 is no longer necessary.
33053
33054 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33055
33056commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
33057Author: Gerald Van Baren <vanbaren@cideas.com>
33058Date: Thu May 17 23:54:36 2007 -0400
33059
33060 Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
33061
33062 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33063 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
33064
33065commit 1a861169bc3758f9de3aead62b058736c6891246
33066Author: Gerald Van Baren <vanbaren@cideas.com>
33067Date: Wed Jun 6 22:47:58 2007 -0400
33068
33069 Replace fdt_node_offset() with fdt_find_node_by_path().
33070
33071 The new name matches more closely the kernel's name, which is also
33072 a much better description.
33073
33074 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33075 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
33076
33077commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
33078Author: Gerald Van Baren <vanbaren@cideas.com>
33079Date: Wed May 16 22:39:59 2007 -0400
33080
33081 Fix cmd_fdt line lengths, refactor code.
33082
33083 Break lines that were greater than 80 characters in length.
33084 Move the fdt print and property parsing code to separate static functions
33085 to reduce coding clutter in the fdt_cmd handling body.
33086
33087 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33088
33089commit 25114033ab21788810c48ba4df103b649da1223b
33090Author: Gerald Van Baren <vanbaren@cideas.com>
33091Date: Sat May 12 09:47:25 2007 -0400
33092
33093 FDT command improvements.
33094
33095 Fix "fdt set" so that it will create a non-existing property.
33096 Add "fdt mknode" to create nodes.
33097
33098 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33099
33100commit 38eb508e8e811e2e57628f445de3a24a23c7d804
33101Author: Gerald Van Baren <vanbaren@cideas.com>
33102Date: Sat May 12 09:45:46 2007 -0400
33103
33104 Reorganize and fix problems (returns) in the bootm command.
33105
33106 Do *NOT* return after the "point of no return" has been passed.
33107 If something goes wrong, the board must be reset after that point.
33108 Move the "Transferring control to Linux" debug message back to where it
33109 belongs: just before transferring control to linux.
33110
33111 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33112
33113commit 89c8757d8f213c47709bdc4efe0695263a6080a6
33114Author: Gerald Van Baren <vanbaren@cideas.com>
33115Date: Tue May 8 21:27:35 2007 -0400
33116
33117 Fix bugs in the CONFIG_OF_LIBFDT
33118
33119 Stupid coding mistakes (identified by Timur Tabi, thanks).
33120
33121 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33122
33123commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
33124Author: Gerald Van Baren <vanbaren@cideas.com>
33125Date: Wed Apr 25 22:47:15 2007 -0400
33126
33127 Improve fdt move length handling.
33128
33129 Make the length parameter optional: if not specified, do the move using
33130 the current size unchanged.
33131
33132 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33133
33134commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
33135Author: Gerald Van Baren <vanbaren@cideas.com>
33136Date: Wed Apr 25 22:23:36 2007 -0400
33137
33138 Minor code clean up.
33139
33140 Declare the variable fdt properly as extern.
33141 Call the "set_fn" function pointer the "short way" without the full
33142 dereferencing syntax.
33143
33144 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33145
33146commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
33147Author: Gerald Van Baren <vanbaren@cideas.com>
33148Date: Wed Apr 25 21:24:27 2007 -0400
33149
33150 Improve error messages, more informative.
33151
33152 Print more than the raw libfdt error message strings. This is especially
33153 useful for cluing in the user when the bootm command aborts due to
33154 blob problems.
33155
33156 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33157
33158commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
33159Author: Gerald Van Baren <vanbaren@cideas.com>
33160Date: Fri Apr 20 22:46:53 2007 -0400
33161
33162 libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
33163
33164 This is the way u-boot reduces configured-out code. At Wolfgang
33165 Grandegger and Wolfgang Denk's request, make libfdt conform.
33166
33167 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33168
33169commit 923efd286411ed052d9e074f59f8986d6081061c
33170Author: Bruce Adler <bruce.adler@ccpu.com>
33171Date: Fri Aug 10 14:54:47 2007 -0700
33172
33173 add image size and descriptors for Spartan 3E FPGA chips
33174
33175 Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
33176
33177 Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
33178
33179commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
33180Author: Kim Phillips <kim.phillips@freescale.com>
33181Date: Fri Aug 10 15:34:48 2007 -0500
33182
33183 make MAKEALL more immune to merge conflicts
33184
33185 ..by placing board entries one per line, as suggested by jdl.
33186
33187 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33188
33189commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
33190Author: Kim Phillips <kim.phillips@freescale.com>
33191Date: Fri Aug 10 13:28:25 2007 -0500
33192
33193 README: Remove outdated cpu type, board type, and NAME_config lists
33194
33195 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33196
33197commit 49bb59912d21aacb507eb81fd21fb7af650c706c
33198Author: Dave Liu <r63238@freescale.com>
33199Date: Fri Aug 10 15:48:59 2007 +0800
33200
33201 mpc83xx: Suppress the warning 'burstlen'
33202
33203 suppress the warning 'burstlen' of spd_sdram.
33204
33205 Signed-off-by: Dave Liu <daveliu@freescale.com>
33206
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +020033207commit c646bba6465a45c60746d4cc1602cd06c1960f2d
33208Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
33209Date: Thu Aug 9 15:11:03 2007 -0500
33210
33211 Add support for SBC8641D. Config files.
33212
33213 Add support for Wind River's SBC8641D reference board.
33214
33215 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
33216 Acked-by: Wolfgang Denk <wd@denx.de>
33217 Acked-by: Jon Loeliger <jdl@freescale.com>
33218
33219commit 8ac273271d57321f90505c7a51cdb1ef2113b628
33220Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
33221Date: Thu Aug 9 15:10:53 2007 -0500
33222
33223 Add support for SBC8641D. Board files.
33224
33225 Add support for Wind River's SBC8641D reference board.
33226
33227 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
33228 Acked-by: Wolfgang Denk <wd@denx.de>
33229 Acked-by: Jon Loeliger <jdl@freescale.com>
33230
Wolfgang Denk9986bc32007-08-12 21:34:50 +020033231commit c2c0ab4aff86622b837a48a0e560351f9afafb95
33232Author: Stefan Roese <sr@denx.de>
33233Date: Fri Aug 10 20:34:58 2007 +0200
33234
33235 Conding style cleanup
33236
33237 Signed-off-by: Stefan Roese <sr@denx.de>
33238
33239commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
33240Author: Sergey Kubushyn <ksi@koi8.net>
33241Date: Fri Aug 10 20:26:18 2007 +0200
33242
33243 [ARM] TI DaVinci support, hopefully final
33244
33245 Add support for the following DaVinci boards:
33246 - DV_EVM
33247 - SCHMOOGIE
33248 - SONATA
33249
33250 Changes:
33251
33252 - Split into separate board directories
33253 - Removed changes to MTD_DEBUG (or whatever it's called)
33254 - New CONFIG_CMD party line followed
33255 - Some cosmetic fixes, cleanup etc.
33256 - Patches against the latest U-Boot tree as of now.
33257 - Fixed CONFIG_CMD_NET in net files.
33258 - Fixed CONFIG_CMD_EEPROM for schmoogie.
33259 - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
33260 DV_EVM. Can't check if it works on SONATA, don't have a board any more,
33261 but it at least compiles.
33262
33263 Here is an excerpt from session log on SCHMOOGIE...
33264
33265 U-Boot 1.2.0-g6c33c785-dirty (Aug 7 2007 - 13:07:17)
33266
33267 DRAM: 128 MB
33268 NAND: 128 MiB
33269 In: serial
33270 Out: serial
33271 Err: serial
33272 ARM Clock : 297MHz
33273 DDR Clock : 162MHz
33274 ETH PHY : DP83848 @ 0x01
33275 U-Boot > iprobe
33276 Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
33277 U-Boot > ping 192.168.253.10
33278 host 192.168.253.10 is alive
33279 U-Boot >
33280
33281 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
33282 Acked-by: Dirk Behme <dirk.behme@gmail.com>
33283 Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
33284 Acked-by: Stefan Roese <sr@denx.de>
33285
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +020033286commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
33287Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33288Date: Fri Jul 27 01:50:45 2007 -0500
33289
33290 fsl_pci_init cleanup.
33291
33292 Do not enable normal errors created during probe (master abort, perr,
33293 and pcie Invalid Configuration access).
33294
33295 Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
33296
33297 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33298 Acked-by: Andy Fleming <afleming@freescale.com>
33299
33300commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
33301Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33302Date: Fri Jul 27 01:50:44 2007 -0500
33303
33304 pciauto_setup_device bars_num fix
33305
33306 Passing bars_num=0 to pciauto_setup_device should assign no bars.
33307
33308 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33309 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33310 Acked-by: Andy Fleming <afleming@freescale.com>
33311
33312commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
33313Author: Jon Loeliger <jdl@freescale.com>
33314Date: Mon Aug 6 17:39:44 2007 -0500
33315
33316 8641hpcn: Do correct sized pointer math.
33317
33318 When I rebased Ed's patch and cleaned up a few compilation
33319 problems, I apparently rebased my brain on crack first.
33320 Fix that by doing (char *) sized pointer math as needed.
33321
33322 Signed-off-by: Jon Loeliger <jdl@freescale.com>
33323
33324commit cfc7a7f5bb3273c9951173c788001d45118f141f
33325Author: Jon Loeliger <jdl@freescale.com>
33326Date: Thu Aug 2 14:42:20 2007 -0500
33327
33328 cpu/86xx fixes.
33329
33330 Remove rev 1 fixes.
33331 Always set PICGCR_MODE.
33332 Enable machine check and provide board config option
33333 to set and handle SoC error interrupts.
33334
33335 Include MSSSR0 in error message.
33336
33337 Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
33338
33339 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33340 Signed-off-by: Jon Loeliger <jdl@freescale.com>
33341
Wolfgang Denka5a38f42007-08-16 11:51:04 +020033342commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
33343Author: Stefan Roese <sr@denx.de>
33344Date: Fri Aug 10 10:42:25 2007 +0200
33345
33346 Coding style cleanup
33347
33348 Signed-off-by: Stefan Roese <sr@denx.de>
33349
Wolfgang Denk9986bc32007-08-12 21:34:50 +020033350commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
33351Author: Dirk Behme <dirk.behme@googlemail.com>
33352Date: Thu Aug 2 17:42:08 2007 +0200
33353
33354 Make use of generic 64bit division in nand_util.c
33355
33356 Use generic 64bit division in nand_util.c. This makes nand_util.c
33357 independent of any toolchain 64bit division.
33358
33359 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
33360
33361commit f7c086e94e8ce9aad7268af97f73aa6884686f27
33362Author: Dirk Behme <dirk.behme@googlemail.com>
33363Date: Thu Aug 2 17:41:14 2007 +0200
33364
33365 Move 64bit division from avr32 to generic lib
33366
33367 Move the 64bit division from lib_avr32 to lib_generic. With this, all
33368 boards can do_div/__div64_32 if needed, not only avr one. Code is put
33369 to lib_generic, so no larger memory footprint if not used. No code
33370 modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
33371
33372 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
33373
Wolfgang Denka5a38f42007-08-16 11:51:04 +020033374commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
33375Author: Niklaus Giger <niklausgiger@gmx.ch>
33376Date: Fri Jul 27 11:31:22 2007 +0200
33377
33378 Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
33379
33380 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33381
33382commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
33383Author: Niklaus Giger <niklausgiger@gmx.ch>
33384Date: Fri Jul 27 11:30:33 2007 +0200
33385
33386 Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
33387
33388 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33389
33390commit e8397fc78c9394d71de233a4d810fbc9047e4c76
33391Author: Niklaus Giger <niklausgiger@gmx.ch>
33392Date: Fri Jul 27 11:38:26 2007 +0200
33393
33394 Add PPC4xx-HCU4 and HCU5 boards: common files
33395
33396 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33397
33398commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
33399Author: Niklaus Giger <niklausgiger@gmx.ch>
33400Date: Fri Jul 27 11:28:44 2007 +0200
33401
33402 Add PPC4xx-HCU4 and HCU5 boards: make related
33403
33404 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33405
33406commit 137fdd9f474ecb853efdace5200576308c67f18d
33407Author: Niklaus Giger <niklausgiger@gmx.ch>
33408Date: Fri Jul 27 11:28:03 2007 +0200
33409
33410 Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
33411
33412 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33413
33414commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
33415Author: Niklaus Giger <niklausgiger@gmx.ch>
33416Date: Fri Jul 27 11:27:15 2007 +0200
33417
33418 Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
33419
33420 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33421
33422commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
33423Author: Niklaus Giger <niklausgiger@gmx.ch>
33424Date: Fri Jul 27 11:25:31 2007 +0200
33425
33426 Add PPC4xx-HCU4 and HCU5 boards: READMEs
33427
33428 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33429
33430commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
33431Author: Niklaus Giger <niklausgiger@gmx.ch>
33432Date: Fri Jul 27 11:37:40 2007 +0200
33433
33434 Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
33435
33436 This series of patches adds support for 2 boards from Netstal Maschinen.
33437
33438 The HCU4 has a PPC405Gpr and
33439 the HCU5 has a PPC440EPX.
33440
33441 The HCU4 has a somehow complicated flash setup, as the booteprom is
33442 only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
33443 elegant solution.
33444
33445 The HCU5 has only a booteprom as the whole code will be downloaded from a
33446 different board which has HD, CD-ROM, etc and where all code is stored.
33447
33448 This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
33449 Thanks them a lot.
33450
33451 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
33452
33453commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
33454Author: Stefan Roese <sr@denx.de>
33455Date: Fri Aug 10 08:42:55 2007 +0200
33456
33457 ppc4xx: Update lwmon5 POST configuration
33458
33459 Signed-off-by: Stefan Roese <sr@denx.de>
33460
33461commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
33462Author: Yuri Tikhonov <yur@emcraft.com>
33463Date: Fri Aug 10 08:25:22 2007 +0200
33464
33465 POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
33466
33467 The patch adds support for UART POST on ppc44x-based boards with no
33468 external serial clocks installed.
33469
33470 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
33471 Acked-by: Stefan Roese <sr@denx.de>
33472
Wolfgang Denk9986bc32007-08-12 21:34:50 +020033473commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
33474Author: Kim Phillips <kim.phillips@freescale.com>
33475Date: Mon Aug 6 18:18:34 2007 -0500
33476
33477 mpc83xx: fix ITX[GP] O=builddir builds
33478
33479 make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'. Stop.
33480
33481 Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
33482 "BUILD_DIR=<some dir> ./MAKEALL ..."
33483
33484 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33485
33486commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
33487Author: Dave Liu <r63238@freescale.com>
33488Date: Wed Aug 1 15:00:59 2007 +0800
33489
33490 mpc83xx: Correct the README for DDR ECC
33491
33492 Update the README for DDR ECC, change the name
33493 to README.mpc83xx.ddrecc.
33494
33495 Signed-off-by: Dave Liu <daveliu@freescale.com>
33496 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33497
33498commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
33499Author: Dave Liu <r63238@freescale.com>
33500Date: Wed Aug 1 15:00:15 2007 +0800
33501
33502 mpc83xx: Consolidate the ECC support of 83xx
33503
33504 Remove the duplicated source code of ecc command on the <board>.c,
33505 for reused, move these code to cpu/mpc83xx directory.
33506
33507 Signed-off-by: Dave Liu <daveliu@freescale.com>
33508 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33509
33510commit 036575c544cf1b69654d8fb334bda69c6ff3da36
33511Author: Dave Liu <r63238@freescale.com>
33512Date: Sat Aug 4 13:37:39 2007 +0800
33513
33514 mpc83xx: Correct the burst length for DDR2 with 32 bits
33515
33516 The burst length should be 4 for DDR2 with 32 bits bus
33517
33518 Signed-off-by: Dave Liu <daveliu@freescale.com>
33519
33520commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
33521Author: Kim Phillips <kim.phillips@freescale.com>
33522Date: Wed Jul 25 19:25:33 2007 -0500
33523
33524 mpc83xx: add support for the MPC8323E RDB
33525
33526 MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
33527 five 10/100 ethernet ports connected via an ICPlus IP175C
33528 switch, one PCI slot, and serial. Features not supported
33529 in this patch are SD card interface, 2 USB ports, and the
33530 two phone ports.
33531
33532 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
33533 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33534
33535commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
33536Author: Kim Phillips <kim.phillips@freescale.com>
33537Date: Wed Jul 25 19:25:28 2007 -0500
33538
33539 mpc83xx: fixup generic pci for libfdt
33540
33541 add libfdt support to the generic 83xx pci code
33542
33543 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33544
33545commit f57ac7a7b37109245b69db80839ebee26179966a
33546Author: Kim Phillips <kim.phillips@freescale.com>
33547Date: Wed Jul 25 19:25:22 2007 -0500
33548
33549 mpc83xx: fix 8360 and cpu functions to update fdt being passed
33550
33551 ..and not the global fdt. Rename local fdt vars to blob so as not to
33552 be confused with the global var with the same three-letter name.
33553
33554 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33555
33556commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
33557Author: Jerry Van Baren <gvb.uboot@gmail.com>
33558Date: Wed Jul 4 21:34:24 2007 -0400
33559
33560 mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
33561
33562 Several node strings were not correct (trailing slashes and properties
33563 in the strings)
33564 Added setting of the timebase-frequency.
33565 Improved error messages and use debug() instead of printf().
33566
33567 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
33568 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33569
33570commit 26d02c9bbac1751c5e19294f000100b48d43a920
33571Author: Jerry Van Baren <gvb.uboot@gmail.com>
33572Date: Wed Jul 4 21:27:30 2007 -0400
33573
33574 mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
33575
33576 The new name matches more closely the kernel's name, which is also
33577 a much better description.
33578
33579 These are the mpc83xx changes made necessary by the function name change.
33580
33581 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
33582 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
33583 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33584
33585commit 9be39a67c9f8fef7107f5df09d673005f04d0963
33586Author: Dave Liu <daveliu@freescale.com>
33587Date: Mon Jun 25 10:41:56 2007 +0800
33588
33589 mpc83xx: Add support for the display of reset status
33590
33591 83xx processor family has many reset sources, such as
33592 power on reset, software hard reset, software soft reset,
33593 JTAG, bus monitor, software watchdog, check stop reset,
33594 external hard reset, external software reset.
33595 sometimes, to figure out the fault of system, we need to
33596 know the cause of reset early before the prompt of
33597 u-boot present.
33598
33599 Signed-off-by: Dave Liu <daveliu@freescale.com>
33600 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33601
33602commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
33603Author: Dave Liu <daveliu@freescale.com>
33604Date: Mon Jun 25 10:41:04 2007 +0800
33605
33606 mpc83xx: Fix the align bug of SDMA buffer
33607
33608 According to the latest user manual, the SDMA temporary
33609 buffer base address must be 4KB aligned.
33610
33611 Signed-off-by: Dave Liu <daveliu@freescale.com>
33612 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33613
33614commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
33615Author: Dave Liu <daveliu@freescale.com>
33616Date: Mon Jun 25 13:21:12 2007 +0800
33617
33618 mpc83xx: Revise the MPC8360EMDS readme doc
33619
33620 When the rev2.x silicon mount on the MPC8360EMDS baord,
33621 and if you are using the u-boot version after the commit
33622 3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
33623 to make the ethernet interface usable, we have to setup
33624 the jumpers correctly.
33625
33626 Signed-off-by: Dave Liu <daveliu@freescale.com>
33627 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33628
33629commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
33630Author: Timur Tabi <timur@freescale.com>
33631Date: Tue Jul 3 13:46:32 2007 -0500
33632
33633 FSL I2C driver programs the two I2C busses differently
33634
33635 The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
33636 The second I2C bus has its slave address programmed incorrectly and is
33637 missing a 5-us delay.
33638
33639 Signed-off-by: Timur Tabi <timur@freescale.com>
33640 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33641
33642commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
33643Author: Timur Tabi <timur@freescale.com>
33644Date: Tue Jul 3 13:04:34 2007 -0500
33645
33646 Update SCCR programming in cpu_init_f() to support all 83xx processors
33647
33648 Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
33649 bitfields for all 83xx processors. The code to update some bitfields was
33650 compiled only on some processors. Now, the bitfields are programmed as long
33651 as the corresponding CFG_SCCR option is defined in the board header file.
33652 This means that the board header file should not define any CFG_SCCR macros
33653 for bitfields that don't exist on that processor, otherwise the SCCR will be
33654 programmed incorrectly.
33655
33656 Signed-off-by: Timur Tabi <timur@freescale.com>
33657 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33658
33659commit 9546266999f0b9b51372636614211b88d90f0f25
33660Author: Martin Krause <martin.krause@tqs.de>
33661Date: Fri Jun 22 13:04:22 2007 +0200
33662
33663 TQM834x: cleanup configuraton
33664
33665 Remove irritating #undef DEBUG
33666
33667 Signed-off-by: Martin Krause <martin.krause@tqs.de>
33668 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33669
33670commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
33671Author: david.saada <David.Saada@ecitele.com>
33672Date: Mon Jun 18 09:09:53 2007 -0700
33673
33674 MPC83xx: Fix makefile to generate config.h file in the build directory
33675
33676 MPC83xx: Fix the Makefile config sections to generate the include/config.h
33677 file in the build directory instead of the source directory.
33678
33679 Signed-off-by: David Saada <david.saada@ecitele.com>
33680 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33681
33682commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
33683Author: Lee Nipper <Lee.Nipper@freescale.com>
33684Date: Thu Jun 14 20:07:33 2007 -0500
33685
33686 mpc83xx: Add support for 8360 silicon revision 2.1
33687
33688 This change adds 8360 silicon revision 2.1 support to u-boot.
33689
33690 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
33691 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33692
33693commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
33694Author: Kumar Gala <galak@kernel.crashing.org>
33695Date: Wed Aug 8 04:14:28 2007 -0500
33696
33697 Treat ppc64 host as ppc
33698
33699 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33700
33701commit 0dc4279b08ff82472bec2e2c90858602459febe8
33702Author: Jason Jin <Jason.jin@freescale.com>
33703Date: Wed Aug 8 09:01:46 2007 +0800
33704
33705 Minor fix for bios emulator makefile
33706
33707 Add $(obj) to LIB avoiding objects be built in the source dir
33708
33709 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33710
33711commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
33712Author: Jason Jin <Jason.jin@freescale.com>
33713Date: Wed Aug 8 08:33:11 2007 +0800
33714
33715 Add CONFIG_BIOSEMU define to guard all the bios emulator code
33716
33717 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33718
33719 This patch fix the compile issue on the board that did not enable the bios emulator
33720
33721commit ed8106433522f2ea8933e9808346860d061d7731
33722Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
33723Date: Tue Jul 31 12:27:25 2007 -0500
33724
33725 tsec: fix multiple PHY support
33726
33727 The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
33728 broke multiple PHY support in tsec.c. This fixes it.
33729
33730 Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
33731 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33732
33733commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
33734Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
33735Date: Thu Aug 9 09:08:18 2007 -0500
33736
33737 tsec: Allow Ten Bit Interface address to be configurable
33738
33739 Allow the address of the Ten Bit Interface (TBI) to be changed in the
33740 event of a conflict with another device.
33741
33742 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
33743
Wolfgang Denk05675732007-08-18 22:00:38 +020033744commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
33745Author: Stefan Roese <sr@denx.de>
33746Date: Wed Aug 8 09:54:26 2007 +0200
33747
33748 Coding style cleanup
33749
33750 Signed-off-by: Stefan Roese <sr@denx.de>
33751
33752commit a41de1f0d373e09c782dea558385a06247111ba5
33753Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33754Date: Sun Aug 5 05:15:18 2007 -0500
33755
33756 Port enabled for I2C signals and chipselects port configuration.
33757
33758 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33759
33760commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
33761Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33762Date: Sun Aug 5 04:31:18 2007 -0500
33763
33764 Added NAND support
33765
33766 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33767
33768commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
33769Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33770Date: Sun Aug 5 04:11:20 2007 -0500
33771
33772 Added I2C support
33773
33774 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33775
33776commit 99c03c175d2689093176facf17c58ce2cb320001
33777Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33778Date: Sun Aug 5 03:58:52 2007 -0500
33779
33780 Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
33781
33782 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33783
33784commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
33785Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33786Date: Sun Aug 5 03:55:21 2007 -0500
33787
33788 Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
33789
33790 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33791
33792commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
33793Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33794Date: Sun Aug 5 03:43:30 2007 -0500
33795
33796 Moved sync() from board file to include/asm-m68k/io.h
33797
33798 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33799
33800commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
33801Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33802Date: Sun Aug 5 03:30:44 2007 -0500
33803
33804 Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
33805
33806 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33807
33808commit 9998bd37ead85e93953559720710d3b0685c81e6
33809Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33810Date: Sun Aug 5 03:19:10 2007 -0500
33811
33812 Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
33813
33814 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33815
Wolfgang Denk9986bc32007-08-12 21:34:50 +020033816commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
33817Author: Jason Jin <Jason.jin@freescale.com>
33818Date: Tue Aug 7 16:17:06 2007 +0800
33819
33820 Add CONFIG_BIOSEMU define to guard all the bios emulator code
33821
33822 This patch fix the compile issue on the board that did not enable the bios emulator
33823
33824commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
33825Author: Wolfgang Denk <wd@denx.de>
33826Date: Tue Aug 7 16:02:13 2007 +0200
33827
33828 Fix missing brace error in fs/fat/fat.c
33829 [pointed out by Roderik Wildenburg]
33830
33831 Signed-off-by: Wolfgang Denk <wd@denx.de>
33832
Wolfgang Denk63640012007-10-14 00:13:19 +020033833commit 706714d97a0d08d59eda4de2268c39f504688329
33834Author: Michal Simek <monstr@monstr.eu>
33835Date: Mon Aug 6 23:41:53 2007 +0200
33836
33837 [FIX] remove cute code
33838
33839commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
33840Author: Michal Simek <monstr@monstr.eu>
33841Date: Mon Aug 6 23:35:26 2007 +0200
33842
33843 [FIX] Fix romfs code
33844
33845commit ab4b956d3143f8f8174089053f5dfabbb04762b0
33846Author: Michal Simek <monstr@monstr.eu>
33847Date: Mon Aug 6 23:31:49 2007 +0200
33848
33849 [FIX] Coding style cleanup - Wolfgang's suggestions
33850
Wolfgang Denk9986bc32007-08-12 21:34:50 +020033851commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
33852Author: Wolfgang Denk <wd@denx.de>
33853Date: Mon Aug 6 23:21:05 2007 +0200
33854
33855 Fixed typo in README (pointed out by Martin Jost).
33856
33857 Signed-off-by: Wolfgang Denk <wd@denx.de>
33858
Wolfgang Denka5a38f42007-08-16 11:51:04 +020033859commit 537223afa61f64480df31ce440a9cb386df4a814
33860Author: Stefan Roese <sr@denx.de>
33861Date: Mon Aug 6 21:10:17 2007 +0200
33862
33863 ppc4xx: Update AMCC Bamboo README doc/README.bamboo
33864
33865 As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
33866 here an updated Bamboo README.
33867
33868 Signed-off-by: Stefan Roese <sr@denx.de>
33869
Wolfgang Denk9986bc32007-08-12 21:34:50 +020033870commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
33871Author: Wolfgang Denk <wd@denx.de>
33872Date: Mon Aug 6 02:17:36 2007 +0200
33873
33874 Coding style cleanup. Update CHANGELOG.
33875
33876 Signed-off-by: Wolfgang Denk <wd@denx.de>
33877
33878commit 221838cc7eb178370ff62aa05920a582e12ac322
33879Author: Jason Jin <Jason.jin@freescale.com>
33880Date: Tue Jul 10 09:03:22 2007 +0800
33881
33882 Remove the bios emulator from MAI board.
33883
33884 The bios emulator in the MAI board can not pass compile
33885 and have a lot of crap in it. remove it and will have a
33886 clean and small bios emulator in the drivers directory
33887 which can be uesed for every board.
33888
33889 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33890
33891commit 5618332409bb96f4448d1712899369fc80c0b489
33892Author: Jason Jin <Jason.jin@freescale.com>
33893Date: Fri Jul 13 12:14:59 2007 +0800
33894
33895 Fix some compile issues for MAI board.
33896
33897 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33898
33899commit 0f460a1ee148b648ee242c3157650287d4296260
33900Author: Jason Jin <Jason.jin@freescale.com>
33901Date: Fri Jul 13 12:14:58 2007 +0800
33902
33903 Configurations for ATI video card BIOS emulator
33904
33905 This patch add definition of the BIOS emulator and the ATI framebuffer
33906 driver for MPC8641HPCN board.
33907
33908 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33909 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
33910
33911commit ece92f85053b8df613edcf05b26a416cbc3d629c
33912Author: Jason Jin <Jason.jin@freescale.com>
33913Date: Fri Jul 6 08:34:56 2007 +0800
33914
33915 This is a BIOS emulator, porting from SciTech for u-boot, mainly for
33916 ATI video card BIOS. and can be used for x86 code emulation by some
33917 modifications.
33918
33919 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33920
33921commit 5072188acabde3178fac7f5a597150e6e74fd40c
33922Author: Jason Jin <Jason.jin@freescale.com>
33923Date: Fri Jul 6 08:33:33 2007 +0800
33924
33925 This is a framebuffer driver for ATI video card, can work for PCI9200,
33926 X300, X700, X800 ATI video cards.
33927
33928 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
33929 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33930
Wolfgang Denk9c7e4b02007-08-06 02:17:36 +020033931commit 5728be389e65fd47f34b33c2596271eb4db751ae
33932Author: Wolfgang Denk <wd@denx.de>
33933Date: Mon Aug 6 01:01:49 2007 +0200
33934
33935 Coding style cleanup. Update CHANGELOG.
33936
33937 Signed-off-by: Wolfgang Denk <wd@denx.de>
33938
Wolfgang Denk5728be32007-08-06 01:01:49 +020033939commit 8092fef4c29b395958bb649647da7e3775731517
33940Author: Martin Krause <Martin.Krause@tqs.de>
33941Date: Tue Dec 12 14:26:01 2006 +0100
33942
33943 Add functions to list of exported functions
33944
33945 Additionally export the following fuctions (to make trab_config build again):
33946 - simple_strtol()
33947 - strcmp()
33948
33949 Also bump the ABI version to reflect this change
33950
33951 Signed-off-by: Martin Krause <martin.krause@tqs.de>
33952
33953commit 63cec5814fab5d2b1c86982327433807a5ac0249
33954Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33955Date: Thu Aug 2 14:09:49 2007 -0500
33956
33957 Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
33958
33959 All of the PCI/PCI-Express driver and initialization code that
33960 was in the MPC8641HPCN port has now been moved into the common
33961 drivers/fsl_pci_init.c. In a subsequent patch, this will be
33962 utilized by the 85xx ports as well.
33963
33964 Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
33965
33966 Also enable the second PCI-Express controller on 8641
33967 by getting its BATS and CFG_ setup right.
33968
33969 Fixed a u16 vendor compiler warning in AHCI driver too.
33970
33971 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33972 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
33973 Signed-off-by: Jon Loeliger <jdl@freescale.com>
33974
Wolfgang Denk63640012007-10-14 00:13:19 +020033975commit a274ca4f6d68830e7c916f897561cff8c4101c38
33976Author: Michal Simek <monstr@monstr.eu>
33977Date: Sun Aug 5 22:33:05 2007 +0200
33978
33979 [FIX] Coding style cleanup
33980
33981commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
33982Author: Michal Simek <monstr@monstr.eu>
33983Date: Sun Aug 5 16:13:31 2007 +0200
33984
33985 [FIX] Xilinx Uartlite driver
33986 Because PPC405 can use UARTLITE serial interface and
33987 Microblaze can use Uart16550 serial interface not only Uartlite.
33988
33989commit 98889edd50aadf862071eb5664747ad0d568a20e
33990Author: Michal Simek <monstr@monstr.eu>
33991Date: Sun Aug 5 15:54:53 2007 +0200
33992
33993 [FIX] Change configuration for XUPV2P Microblaze board
33994
33995commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
33996Author: Michal Simek <monstr@monstr.eu>
33997Date: Sun Aug 5 15:53:50 2007 +0200
33998
33999 [PATCH] Added support for Xilinx Emac community driver
34000
Wolfgang Denk9986bc32007-08-12 21:34:50 +020034001commit 86b116b1b1e165ca4840daefed36d2e3b8460173
34002Author: Bartlomiej Sieka <tur@semihalf.com>
34003Date: Fri Aug 3 12:08:16 2007 +0200
34004
34005 cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
34006
34007 Add the ability for modules from the Schindler cm5200 family to use a
34008 single U-Boot image:
34009 - rename cm1_qp1 to cm5200
34010 - add run-time module detection
34011 - parametrize SDRAM configuration according to the module we are running on
34012
34013 Few minor, board-specific fixes included in this patch:
34014 - better MAC address handling
34015 - updated default environment ('update' command uses +{filesize} now)
34016 - improved error messages in the auto-update code
34017 - allow booting U-Boot from RAM (CFG_RAMBOOT)
34018
34019 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
34020 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
34021 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34022
Wolfgang Denk5728be32007-08-06 01:01:49 +020034023commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
34024Author: Andy Fleming <afleming@freescale.com>
34025Date: Fri Aug 3 04:05:25 2007 -0500
34026
34027 Add Marvell 1149 PHY support to the TSEC
34028
Wolfgang Denkf2c2a932007-08-06 01:11:08 +020034029commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
Wolfgang Denk5728be32007-08-06 01:01:49 +020034030Author: Wolfgang Denk <wd@denx.de>
Wolfgang Denkf2c2a932007-08-06 01:11:08 +020034031Date: Thu Aug 2 21:27:46 2007 +0200
Wolfgang Denk5728be32007-08-06 01:01:49 +020034032
Wolfgang Denkf2c2a932007-08-06 01:11:08 +020034033 Coding style cleanup, update CHANGELOG
Wolfgang Denk5728be32007-08-06 01:01:49 +020034034
34035 Signed-off-by: Wolfgang Denk <wd@denx.de>
34036
Wolfgang Denk5728be32007-08-06 01:01:49 +020034037commit 63e22764d2f8653f68888c667eb65b3996b52680
34038Author: Wolfgang Denk <wd@denx.de>
34039Date: Thu Aug 2 10:11:18 2007 +0200
34040
34041 Minor cleanup of <board>_nand build rules.
34042
Wolfgang Denka5a38f42007-08-16 11:51:04 +020034043commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
34044Author: Stefan Roese <sr@denx.de>
34045Date: Thu Aug 2 08:33:56 2007 +0200
34046
34047 ppc4xx: Code cleanup
34048
34049 Signed-off-by: Stefan Roese <sr@denx.de>
34050
34051commit c92409812206ac67a7fa7aae298539a9c3804a46
34052Author: Grzegorz Bernacki <gjb@semihalf.com>
34053Date: Tue Jul 31 18:51:48 2007 +0200
34054
34055 [ppc440SPe] Graceful recovery from machine check during PCIe configuration
34056
34057 During config transactions on the PCIe bus an attempt to scan for a
34058 non-existent device can lead to a machine check exception with certain
34059 peripheral devices. In order to avoid crashing in such scenarios the
34060 instrumented versions of the config cycle read routines are introduced, so
34061 the exceptions fixups framework can gracefully recover.
34062
34063 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
34064 Acked-by: Rafal Jaworowski <raj@semihalf.com>
34065
34066commit dec99558b9ea75a37940d07f41a3565a50b54ad1
34067Author: Rafal Jaworowski <raj@semihalf.com>
34068Date: Tue Jul 31 18:19:54 2007 +0200
34069
34070 [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
34071
34072 This brings back separate settings for PCIe bus numbers depending on chip
34073 revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
34074 commit. 440SPe rev. A does NOT work properly with the same settings as for
34075 the rev. B (no devices are seen on the bus during enumeration).
34076
34077 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
34078
Wolfgang Denk5728be32007-08-06 01:01:49 +020034079commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
34080Author: Wolfgang Denk <wd@denx.de>
34081Date: Thu Aug 2 00:48:45 2007 +0200
34082
34083 Fix build errors and warnings / code cleanup.
34084
34085 Signed-off-by: Wolfgang Denk <wd@denx.de>
34086
Wolfgang Denka5a38f42007-08-16 11:51:04 +020034087commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
34088Author: Eugene OBrien <eugene.obrien@advantechamt.com>
34089Date: Tue Jul 31 10:24:56 2007 +0200
34090
34091 ppc4xx: Update AMCC Bamboo 440EP support
34092
34093 Changed storage type of cfg_simulate_spd_eeprom to const
34094 Changed storage type of gpio_tab to stack storage
34095 (Cannot access global data declarations in .bss until afer code relocation)
34096
34097 Improved SDRAM tests to catch problems where data is not uniquely addressable
34098 (e.g. incorrectly programmed SDRAM row or columns)
34099
34100 Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
34101 Fixed AM29LV320DT (OpCode Flash) sector map
34102
34103 Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
34104 Signed-off-by: Stefan Roese <sr@denx.de>
34105
34106commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
34107Author: Stefan Roese <sr@denx.de>
34108Date: Tue Jul 31 08:37:01 2007 +0200
34109
34110 ppc4xx: Update 440EPx lwmon5 board support
34111
34112 - Clear ECC status regs after ECC POST test
34113 - Set dcbz for ECC generation with caches enabled as default
34114 - Code cleanup
34115
34116 Signed-off-by: Stefan Roese <sr@denx.de>
34117
34118commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
34119Author: Stefan Roese <sr@denx.de>
34120Date: Mon Jul 30 11:04:57 2007 +0200
34121
34122 ppc4xx: Only print ECC related info when the error bis are set
34123
34124 Signed-off-by: Stefan Roese <sr@denx.de>
34125
34126commit e36220a4baf1f188ba60f17e9d0f043069b1362a
34127Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34128Date: Fri Jul 27 16:44:31 2007 +0200
34129
34130 new FPGA image for PLU405 board
34131
34132 new FPGA image for PLU405 board with improved CompactFlash timing
34133
34134 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34135
Wolfgang Denkb1b54e32007-08-02 21:27:46 +020034136commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
34137Author: Rafal Jaworowski <raj@semihalf.com>
34138Date: Fri Jul 27 14:43:59 2007 +0200
34139
34140 [ADS5121] Support for the ADS5121 board
34141
34142 The following MPC5121e subsystems are supported:
34143
34144 - low-level CPU init
34145 - NOR Boot Flash (common CFI driver)
34146 - DDR SDRAM
34147 - FEC
34148 - I2C
34149 - Watchdog
34150
34151 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
34152 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
34153 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
34154
34155commit 1863cfb7b100ba0ee3401799457a01dc058745f8
34156Author: Rafal Jaworowski <raj@semihalf.com>
34157Date: Fri Jul 27 14:22:04 2007 +0200
34158
34159 [PPC] Remove unused MSR_USER definition
34160
34161 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
34162
Wolfgang Denka5a38f42007-08-16 11:51:04 +020034163commit d4024bb72dd81695ec099b2199eda0d27c623e62
34164Author: John Otken <john@softadvances.com>
34165Date: Thu Jul 26 17:49:11 2007 +0200
34166
34167 ppc4xx: Add support for AMCC 405EP Taihu board
34168
34169 Signed-off-by: John Otken <john@softadvances.com>
34170
34171commit b66091de6c7390620312c2501db23d8391e7cabb
34172Author: Anatolij Gustschin <agust@denx.de>
34173Date: Thu Jul 26 15:08:01 2007 +0200
34174
34175 ppc4xx: lwmon5: Update Lime initialization
34176
34177 Change Lime SDRAM initialization to now support 100MHz and
34178 133MHz (if enabled). Also the framebuffer is initialized to
34179 display a blue rectangle with a white border.
34180
34181 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34182 Signed-off-by: Stefan Roese <sr@denx.de>
34183
34184commit 9f24a808f17fc0f37b7fb4805f734741335caecc
34185Author: Stefan Roese <sr@denx.de>
34186Date: Tue Jul 24 09:52:52 2007 +0200
34187
34188 ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
34189
34190 The used Intel NOR FLASH chips have internally two dies, and are now
34191 treated as two seperate chips.
34192
34193 Signed-off-by: Stefan Roese <sr@denx.de>
34194
34195commit aedf5bde179ecfbd0a96130d18996a96518b785f
34196Author: Stefan Roese <sr@denx.de>
34197Date: Tue Jul 24 07:20:09 2007 +0200
34198
34199 ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
34200
34201 As suggested by Hakan Eryigit, here an updated setup for the lwmon5
34202 interrupt controller.
34203
34204 Signed-off-by: Stefan Roese <sr@denx.de>
34205
34206commit a71d96eac8130b53a91f93cd10c70fca0db18d52
34207Author: Stefan Roese <sr@denx.de>
34208Date: Fri Jul 20 15:03:44 2007 +0200
34209
34210 ppc4xx: Fix bug with default GPIO output value
34211
34212 As spotted by Matthias Fuchs, the default output values for all GPIO1
34213 outputs were not setup correctly. This patch fixes this issue.
34214
34215 Signed-off-by: Stefan Roese <sr@denx.de>
34216
34217commit 531e3e8b831f357056448fa573137d5fb37000fd
34218Author: Pavel Kolesnikov <concord@emcraft.com>
34219Date: Fri Jul 20 15:03:03 2007 +0200
34220
34221 POST: Add ECC POST for the lwmon5 board
34222
34223 This patch adds ECC Post test for the Lwmon5 board based
34224 on PPC440EPx to U-Boot.
34225
34226 Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
34227 Acked-by: Yuri Tikhonov <yur@emcraft.com>
34228 Acked-by: Stefan Roese <sr@denx.de>
34229
Wolfgang Denkb1b54e32007-08-02 21:27:46 +020034230commit cc3023b9f95d7ac959a764471a65001062aecf41
34231Author: Rafal Jaworowski <raj@semihalf.com>
34232Date: Thu Jul 19 17:12:28 2007 +0200
34233
34234 Fix breakage of 8xx boards from recent commit.
34235
34236 This patch fixes the negative consequences for 8xx of the recent
34237 "ppc4xx: Clean up 440 exceptions handling" commit.
34238
34239 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
34240
Wolfgang Denk05675732007-08-18 22:00:38 +020034241commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
34242Author: Stefan Roese <sr@denx.de>
34243Date: Mon Jul 16 13:11:12 2007 +0200
34244
34245 Coding style cleanup
34246
34247 Signed-off-by: Stefan Roese <sr@denx.de>
34248
Wolfgang Denka5a38f42007-08-16 11:51:04 +020034249commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
34250Author: Stefan Roese <sr@denx.de>
34251Date: Mon Jul 16 10:02:12 2007 +0200
34252
34253 ppc4xx: Code cleanup
34254
34255 Signed-off-by: Stefan Roese <sr@denx.de>
34256
34257commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
34258Author: Stefan Roese <sr@denx.de>
34259Date: Mon Jul 16 10:01:38 2007 +0200
34260
34261 ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
34262
34263 Signed-off-by: Stefan Roese <sr@denx.de>
34264
34265commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
34266Author: Stefan Roese <sr@denx.de>
34267Date: Mon Jul 16 10:00:43 2007 +0200
34268
34269 ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
34270
34271 The new boardspecific DDR2 controller configuration is used for the Yucca
34272 board. Now the Yucca board with 440SPe Rev. A chips is also supported.
34273
34274 Signed-off-by: Stefan Roese <sr@denx.de>
34275
34276commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
34277Author: Stefan Roese <sr@denx.de>
34278Date: Mon Jul 16 09:57:00 2007 +0200
34279
34280 ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
34281
34282 The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
34283 support non default, boardspecific DDR(2) controller configuration.
34284
34285 Signed-off-by: Stefan Roese <sr@denx.de>
34286
34287commit 5743a9207a370b90f09b20ebd61167c806b937f3
34288Author: Stefan Roese <sr@denx.de>
34289Date: Mon Jul 16 08:53:51 2007 +0200
34290
34291 ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
34292
34293 The new function remove_tlb() can be used to remove the TLB's used to
34294 map a specific memory region. This is especially useful for the DDR(2)
34295 setup routines which configure the SDRAM area temporarily as a cached
34296 area (for speedup on auto-calibration and ECC generation) and later
34297 need this area uncached for normal usage.
34298
34299 Signed-off-by: Stefan Roese <sr@denx.de>
34300
Wolfgang Denk63640012007-10-14 00:13:19 +020034301commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
34302Author: Michal Simek <monstr@monstr.eu>
34303Date: Mon Jul 16 00:31:07 2007 +0200
34304
34305 [PATCH] Support for Xilinx EmacLite controller
34306
Wolfgang Denkb1b54e32007-08-02 21:27:46 +020034307commit 3a6cab844cf74f76639d795e0be8717e02c86af7
34308Author: Wolfgang Denk <wd@denx.de>
34309Date: Sat Jul 14 22:51:02 2007 +0200
34310
34311 Update CHANGELOG
34312
34313 Signed-off-by: Wolfgang Denk <wd@denx.de>
34314
Wolfgang Denk63640012007-10-14 00:13:19 +020034315commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
34316Author: Michal Simek <monstr@monstr.eu>
34317Date: Sat Jul 14 13:11:28 2007 +0200
34318
34319 [FIX] support for simply measuring time
34320
34321commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
34322Author: Michal Simek <monstr@monstr.eu>
34323Date: Sat Jul 14 12:41:23 2007 +0200
34324
34325 [FS] Added support for ROMFS
34326
Wolfgang Denk3a6cab82007-07-14 22:51:02 +020034327commit 011595307731a7a67a7445d107c279d031e8ab97
34328Author: Heiko Schocher <hs@pollux.denx.de>
34329Date: Sat Jul 14 01:06:58 2007 +0200
34330
34331 [PCS440EP] - fix compile error, if BUILD_DIR is used
34332
Wolfgang Denk63640012007-10-14 00:13:19 +020034333commit 5a2f1098d81ad58b309e5e558d0492643166a799
34334Author: Michal Simek <monstr@monstr.eu>
34335Date: Sat Jul 14 00:18:48 2007 +0200
34336
34337 [PATCH] Support time without timer
34338
34339commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
34340Author: Michal Simek <monstr@monstr.eu>
34341Date: Fri Jul 13 21:43:55 2007 +0200
34342
34343 [PATCH] Remove problem with disabled BARREL SHIFTER
34344
34345commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
34346Author: Michal Simek <monstr@monstr.eu>
34347Date: Fri Jul 13 21:41:44 2007 +0200
34348
34349 [FIX] correct help for rspr
34350
Wolfgang Denk3a6cab82007-07-14 22:51:02 +020034351commit fad63407154f46246ce80d53a9c669a44362ac67
34352Author: Heiko Schocher <hs@pollux.denx.de>
34353Date: Fri Jul 13 09:54:17 2007 +0200
34354
34355 make show_boot_progress () weak.
34356
34357 Signed-off-by: Heiko Schocher <hs@denx.de>
34358
34359commit 907902472391b6ca1876ec300687562ecaf459b1
34360Author: Heiko Schocher <hs@pollux.denx.de>
34361Date: Fri Jul 13 08:26:05 2007 +0200
34362
34363 [PCS440EP] - The DIAG LEDs are now blinking, if an error occur
34364 - fix compile error, if BUILD_DIR is used
34365
34366 Signed-off-by: Heiko Schocher <hs@denx.de>
34367
Wolfgang Denka5a38f42007-08-16 11:51:04 +020034368commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
34369Author: Stefan Roese <sr@denx.de>
34370Date: Thu Jul 12 16:32:08 2007 +0200
34371
34372 ppc4xx: Change receive buffer handling in the 4xx emac driver
34373
34374 This change fixes a bug in the receive buffer handling, that
34375 could lead to problems upon high network traffic (broadcasts...).
34376
34377 Signed-off-by: Stefan Roese <sr@denx.de>
34378
Wolfgang Denk3a6cab82007-07-14 22:51:02 +020034379commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
34380Author: Wolfgang Denk <wd@denx.de>
34381Date: Thu Jul 12 01:45:34 2007 +0200
34382
34383 Update CHANGELOG, minor coding style cleanup.
34384
34385 Signed-off-by: Wolfgang Denk <wd@denx.de>
34386
Wolfgang Denk5728be32007-08-06 01:01:49 +020034387commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
34388Author: Andy Fleming <afleming@freescale.com>
34389Date: Fri Jun 8 16:41:18 2007 -0500
34390
34391 Remove erroneous errata code from Marvel 88E1111S driver
34392
34393 The Marvel 88E1111S driver for the TSEC was copied from the
34394 88E1101 driver, and included a fix for an erratum which does not
Wolfgang Denkec06b272007-08-06 15:59:45 +020034395 exist on that part. Now it is removed
Wolfgang Denk5728be32007-08-06 01:01:49 +020034396
34397 Signed-off-by: Andy Fleming <afleming@freescale.com>
34398
34399commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
34400Author: Andy Fleming <afleming@freescale.com>
34401Date: Tue Jun 5 16:38:44 2007 -0500
34402
34403 From: eran liberty <eran.liberty@gmail.com>
34404
34405 adds the reset register to 85xx immap
34406
34407 Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
34408 Signed-off-by: Andy Fleming <afleming@freescale.com>
34409
34410commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
34411Author: Andy Fleming <afleming@freescale.com>
34412Date: Thu May 10 17:50:01 2007 -0500
34413
34414 Polished the 85xx ADS config files
34415
34416 Made the boot commands use device trees by default.
34417 Also moved the ramdisk to 1000000 (I think the previous address
34418 was getting overridden during boot).
34419
34420 Signed-off-by: Andy Fleming <afleming@freescale.com>
34421
34422commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
34423Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34424Date: Wed May 9 11:03:32 2007 -0500
34425
34426 8544ds: Fix Makefile after moving pixis to board/freescale.
34427
34428 The OBJTREE != SRCTREE build scenario was broken.
34429 This fixes it.
34430
34431 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34432 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34433
34434commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
34435Author: Andy Fleming <afleming@freescale.com>
34436Date: Wed May 9 00:54:20 2007 -0500
34437
34438 tsec: Fix PHY code to match first driver
34439
34440 Jarrold Wen noticed that the generic PHY code always matches
34441 under the current implementation. Change it so the first match
34442 wins, and *only* unknown PHYs trigger the generic driver
34443
34444 Signed-off-by: Andy Fleming <afleming@freescale.com>
34445
34446commit ccc091aac61a38cd998d575d92f7232e256d6312
34447Author: Andy Fleming <afleming@freescale.com>
34448Date: Tue May 8 17:27:43 2007 -0500
34449
34450 Add support for CPM device tree configuration to 8560 ADS
34451
34452 * Adds code to modify CPM frequencies
34453 * Cleans up the config file to #define TSEC and (for now) #undef FCC
34454 * Adds the MII command for all 8560 ADS configurations
34455 * Updates config file to provide convenience commands for booting
34456 with a device tree
34457
34458 Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
34459 Signed-off-by: Andy Fleming <afleming@freescale.com>
34460
34461commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
34462Author: Andy Fleming <afleming@freescale.com>
34463Date: Tue May 8 17:23:02 2007 -0500
34464
34465 Fix Marvell 88e1145 PHY init code
34466
34467 Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
34468 where the reset was being done after the errata code instead of
34469 before.
34470
34471 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
34472 Signed-off-by: Andy Fleming <afleming@freescale.com>
34473
34474commit 5dc210dec5bace98a50b6ba905347890091a9bb0
34475Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34476Date: Wed Jul 11 14:52:16 2007 -0500
34477
34478 Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
34479
34480 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34481
34482commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
34483Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34484Date: Wed Jul 11 14:52:08 2007 -0500
34485
34486 pciauto setup bridge
34487
34488 The P2P bridge bus numbers programmed into the device are relative to
34489 hose->first_busno.
34490
34491 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34492
34493commit 571f49fa717004ca4268b4e24057efc7bf9f987b
34494Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34495Date: Wed Jul 11 14:52:01 2007 -0500
34496
34497 Support PCIe extended config registers
34498
34499 FSL PCIe block has extended cfg registers in the 100 and 400 range.
34500 For example, to read the LTSSM register: pci display <busn>.0 404 1
34501
34502 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34503
34504commit ba5feb12581bb2912ce301e4866b71f846e9fc07
34505Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34506Date: Wed Jul 11 14:51:48 2007 -0500
34507
34508 Minor improvements to drivers/pci_auto.c
34509
34510 - Make pciauto_{pre,post}scan_setup_bridge non-static
34511 - Added physical address display in debug messages.
34512
34513 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34514
34515commit 40e81addab7bb74d20ddf681ce9babc880a828ee
34516Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34517Date: Wed Jul 11 14:51:35 2007 -0500
34518
34519 Start pci hose scan from hose->current_busno.
34520
34521 Ensure hose->current_busno is not less than first_busno. This fixes
34522 broken board code which leaves current_busno=0 when first_busno is
34523 greater than 0 for the cases with multiple controllers.
34524
34525 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34526
34527commit 3865b1fb7843a08ad49a6319a36415752276ff48
34528Author: Stefan Roese <sr@denx.de>
34529Date: Wed Jul 11 12:13:53 2007 +0200
34530
34531 Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
34532
34533 Signed-off-by: Stefan Roese <sr@denx.de>
34534
Wolfgang Denk239f05e2007-07-12 01:45:34 +020034535commit fa1df308926a6f70e3504c57514ef27ac31fd13a
34536Author: Bartlomiej Sieka <tur@semihalf.com>
34537Date: Wed Jul 11 20:11:07 2007 +0200
34538
34539 CM1.QP1: Support for the Schindler CM1.QP1 board.
34540
34541 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
34542 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
34543
34544commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
34545Author: Heiko Schocher <hs@pollux.denx.de>
34546Date: Wed Jul 11 18:39:11 2007 +0200
34547
34548 [PCS440EP] - Show on the DIAG LEDs, if the SHA1 check failed
34549 - now the Flash ST M29W040B is supported (not tested)
34550 - fix the "led" command
34551 - fix compile error, if BUILD_DIR is used
34552
34553 Signed-off-by: Heiko Schocher <hs@denx.de>
34554
Wolfgang Denk5728be32007-08-06 01:01:49 +020034555commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
34556Author: Stefan Roese <sr@denx.de>
34557Date: Sun Jul 8 13:44:27 2007 +0200
34558
34559 Fix malloc problem introduced with the relocation fixup for the PPC platform
34560
34561 The relocation fixup didn't handle the malloc pointer initialization
34562 correctly. This patch fixes this problem. Tested successfully on 4xx.
34563 The relocation fixup patches for 4xx will follow soon.
34564
34565 Signed-off-by: Stefan Roese <sr@denx.de>
34566
Wolfgang Denk05675732007-08-18 22:00:38 +020034567commit 0dca874db62718e41253659e60f3a1de7eb418ce
34568Author: TsiChung <tcliew@Goku.(none)>
34569Date: Tue Jul 10 15:45:43 2007 -0500
34570
34571 Cache update and added CFG_UNIFY_CACHE
34572
34573 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.
34574
34575 Signed-off-by: TsiChung <tcliew@Goku.(none)>
34576
34577commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
34578Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34579Date: Thu Jul 5 23:36:16 2007 -0500
34580
34581 Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
34582
34583 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
34584
34585 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34586
34587commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
34588Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34589Date: Thu Jul 5 23:31:25 2007 -0500
34590
34591 Update header files
34592
34593 Include immap.h and renamed mcfrtc.h to rtc.h
34594
34595 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34596
34597commit 2870e98ac8e5553e9187b12a47e5f46babb53990
34598Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34599Date: Thu Jul 5 23:29:21 2007 -0500
34600
34601 Add mcffec_initialize()
34602
34603 Added mcffec_initialize() in eth_initialize()
34604
34605 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34606
34607commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
34608Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34609Date: Thu Jul 5 23:27:40 2007 -0500
34610
34611 Update header file and clean up
34612
34613 Include immap.h
34614
34615 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34616
34617commit 0cee9c66318602c856a899ae5fa7579ccba6443a
34618Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34619Date: Thu Jul 5 23:23:15 2007 -0500
34620
34621 New uart structure and defines
34622
34623 Seperated from mcfuart.h
34624
34625 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34626
34627commit a90e79de8d99e9c9d69d60bfff9f24c337165900
34628Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34629Date: Thu Jul 5 23:22:31 2007 -0500
34630
34631 New timer structure and defines
34632
34633 Seperated from mcftimer.h
34634
34635 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34636
34637commit e04acb2eba4782489417240eff76e20e176aec10
34638Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34639Date: Thu Jul 5 23:21:09 2007 -0500
34640
34641 Rename mcfrtc to rtc
34642
34643 Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
34644
34645 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34646
34647commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
34648Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34649Date: Thu Jul 5 23:17:36 2007 -0500
34650
34651 Rename mcfserial.c. Update include header
34652
34653 Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
34654
34655 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34656
34657commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
34658Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34659Date: Thu Jul 5 23:13:58 2007 -0500
34660
34661 Header file update, clean up and cache handling
34662
34663 Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
34664
34665 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34666
34667commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
34668Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34669Date: Thu Jul 5 23:10:40 2007 -0500
34670
34671 Create interrupts.c and modify Makefile
34672
34673 interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
34674
34675 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34676
34677commit ddd104f1ed655eda50c06ba636237a83ed943f34
34678Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34679Date: Thu Jul 5 23:06:55 2007 -0500
34680
34681 Enable Icache
34682
34683 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34684
34685commit b9bf3de377b2bae70c983c9b97feae914999e735
34686Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34687Date: Thu Jul 5 23:05:31 2007 -0500
34688
34689 Update header file and some clean up
34690
34691 Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
34692
34693 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34694
34695commit 84a015b52ec820a5ae173717d78516de731c89c2
34696Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34697Date: Thu Jul 5 23:03:28 2007 -0500
34698
34699 Update header file and enable icache
34700
34701 Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
34702
34703 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34704
34705commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
34706Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34707Date: Thu Jul 5 23:01:22 2007 -0500
34708
34709 Update header file and removed interrupt_init()
34710
34711 Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
34712
34713 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34714
34715commit 3b635492c95bd0d6e08f93f699821cba1f602a64
34716Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34717Date: Thu Jul 5 22:57:46 2007 -0500
34718
34719 Update for flash.o and mii.o
34720
34721 Removed flash.o and added mii.o
34722
34723 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34724
34725commit c5ded275d839e4ff79f41718d50a835d989f57bc
34726Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34727Date: Thu Jul 5 22:56:19 2007 -0500
34728
34729 MII functions calls.
34730
34731 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34732
34733commit 427c814104560e29bda14955c67703245aaaa5b4
34734Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34735Date: Thu Jul 5 22:54:42 2007 -0500
34736
34737 Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
34738
34739 The removed MII routines will be placed in mii.c.
34740
34741 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34742
34743commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
34744Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34745Date: Thu Jul 5 22:51:05 2007 -0500
34746
34747 Duplicate code
34748
34749 There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
34750
34751 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34752
34753commit 2744354a8437b8f78db178e30660215688bff570
34754Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34755Date: Thu Jul 5 22:46:38 2007 -0500
34756
34757 Seperate old structure defines and new structure defines
34758
34759 Removed new uart structure and defines to uart.h
34760
34761 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34762
34763commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
34764Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34765Date: Thu Jul 5 22:45:01 2007 -0500
34766
34767 Seperate old structure defines and new structure defines
34768
34769 New timer structure and defines will move to new timer.h
34770
34771 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34772
34773commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
34774Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34775Date: Thu Jul 5 22:42:23 2007 -0500
34776
34777 Clean up
34778
34779 Removed whitespace
34780
34781 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34782
34783commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
34784Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34785Date: Thu Jul 5 22:41:24 2007 -0500
34786
34787 Clean up
34788
34789 Replaced whitespace with tabs
34790
34791 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34792
34793commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
34794Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34795Date: Thu Jul 5 22:39:07 2007 -0500
34796
34797 Create new header file and move peripherals base address from configs file to new header file.
34798
34799 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.
34800
34801 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34802
34803commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
34804Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34805Date: Thu Jul 5 22:24:58 2007 -0500
34806
34807 Revert file mode
34808
34809 Changed MAKEALL file mode to executable, removed executable file mode from Makefile
34810
34811 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34812
Wolfgang Denk5728be32007-08-06 01:01:49 +020034813commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
34814Author: Jon Loeliger <jdl@freescale.com>
34815Date: Tue Jul 10 11:19:50 2007 -0500
34816
34817 disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
34818
34819 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34820 Those always evaluated TRUE, and thus were always compiled
34821 even when IDE really wasn't defined/wanted.
34822
34823 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34824
34825commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
34826Author: Jon Loeliger <jdl@freescale.com>
34827Date: Tue Jul 10 11:13:21 2007 -0500
34828
34829 drivers/: Remove lingering references to CFG_CMD_* symbols.
34830
34831 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34832 Those always evaluated TRUE, and thus were always compiled
34833 even when IDE really wasn't defined/wanted.
34834
34835 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34836
34837commit f40a7f3e3888b42a43674b099e5470022c8c544c
34838Author: Jon Loeliger <jdl@freescale.com>
34839Date: Tue Jul 10 11:07:56 2007 -0500
34840
34841 fs/: Remove lingering references to CFG_CMD_* symbols.
34842
34843 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34844 Those always evaluated TRUE, and thus were always compiled
34845 even when IDE really wasn't defined/wanted.
34846
34847 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34848
34849commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
34850Author: Jon Loeliger <jdl@freescale.com>
34851Date: Tue Jul 10 11:05:02 2007 -0500
34852
34853 net/: Remove lingering references to CFG_CMD_* symbols.
34854
34855 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34856 Those always evaluated TRUE, and thus were always compiled
34857 even when IDE really wasn't defined/wanted.
34858
34859 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34860
34861commit 902531788376046da212afd1661cffb62f3daa1c
34862Author: Jon Loeliger <jdl@freescale.com>
34863Date: Tue Jul 10 11:02:44 2007 -0500
34864
34865 common/: Remove lingering references to CFG_CMD_* symbols.
34866
34867 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34868 Those always evaluated TRUE, and thus were always compiled
34869 even when IDE really wasn't defined/wanted.
34870
34871 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34872
34873commit d39b57415838c73fb0a37eca84de3c68ba990586
34874Author: Jon Loeliger <jdl@freescale.com>
34875Date: Tue Jul 10 10:48:22 2007 -0500
34876
34877 board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
34878
34879 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34880 Those always evaluated TRUE, and thus were always compiled
34881 even when IDE really wasn't defined/wanted.
34882
34883 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34884
34885commit 77a318545d57aefa844752465b94c7e09a3f26d0
34886Author: Jon Loeliger <jdl@freescale.com>
34887Date: Tue Jul 10 10:39:10 2007 -0500
34888
34889 board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
34890
34891 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
34892 Those always evaluated TRUE, and thus were always compiled
34893 even when IDE really wasn't defined/wanted.
34894
34895 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34896
34897commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
34898Author: Jon Loeliger <jdl@freescale.com>
34899Date: Tue Jul 10 10:27:39 2007 -0500
34900
34901 cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
34902
34903 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34904
34905commit 079a136c3588814784561d6e4856970ee82d6e2a
34906Author: Jon Loeliger <jdl@freescale.com>
34907Date: Tue Jul 10 10:12:10 2007 -0500
34908
34909 include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
34910
34911 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
34912 used to be included but CONFIG_BOOTP_MASK was not defined.
34913
34914 Remove lingering references to CFG_CMD_* symbols.
34915
34916 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34917
34918commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
34919Author: Jon Loeliger <jdl@freescale.com>
34920Date: Tue Jul 10 09:38:02 2007 -0500
34921
34922 include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
34923
34924 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
34925 used to be included but CONFIG_BOOTP_MASK was not defined.
34926
34927 Remove lingering references to CFG_CMD_* symbols.
34928
34929 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34930
34931commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
34932Author: Jon Loeliger <jdl@freescale.com>
34933Date: Tue Jul 10 09:29:01 2007 -0500
34934
34935 include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
34936
34937 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
34938 used to be included but CONFIG_BOOTP_MASK was not defined.
34939
34940 Remove lingering references to CFG_CMD_* symbols.
34941
34942 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34943
34944commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
34945Author: Jon Loeliger <jdl@freescale.com>
34946Date: Tue Jul 10 09:22:23 2007 -0500
34947
34948 include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
34949
34950 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
34951 used to be included but CONFIG_BOOTP_MASK was not defined.
34952
34953 Remove lingering references to CFG_CMD_* symbols.
34954
34955 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34956
34957commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
34958Author: Jon Loeliger <jdl@freescale.com>
34959Date: Tue Jul 10 09:10:49 2007 -0500
34960
34961 include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
34962
34963 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
34964 used to be included but CONFIG_BOOTP_MASK was not defined.
34965
34966 Remove lingering references to CFG_CMD_* symbols.
34967
34968 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34969
34970commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
34971Author: Jon Loeliger <jdl@freescale.com>
34972Date: Tue Jul 10 09:02:57 2007 -0500
34973
34974 include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
34975
34976 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
34977 used to be included but CONFIG_BOOTP_MASK was not defined.
34978
34979 Remove lingering references to CFG_CMD_* symbols.
34980
34981 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34982
34983commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
34984Author: Jon Loeliger <jdl@freescale.com>
34985Date: Mon Jul 9 22:08:34 2007 -0500
34986
34987 Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
34988
34989 All of the choices for CONFIG_BOOTP_ are now documented in
34990 the README file. You must now individually select exactly
34991 the set that you want using a series of
34992 #define CONFIG_BOOTP_<x>
34993 statements in the board port config files now.
34994
34995 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34996
34997commit d3b8c1a743dcd31625c99e6a44590f207eb00028
34998Author: Jon Loeliger <jdl@freescale.com>
34999Date: Mon Jul 9 21:57:31 2007 -0500
35000
35001 include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35002
35003 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35004
35005commit 2fd90ce575b02d189cbf443c85309bcd001aa393
35006Author: Jon Loeliger <jdl@freescale.com>
35007Date: Mon Jul 9 21:48:26 2007 -0500
35008
35009 include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35010
35011 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35012
35013commit 37d4bb70586659dedef1658ce1bed071be098aec
35014Author: Jon Loeliger <jdl@freescale.com>
35015Date: Mon Jul 9 21:38:02 2007 -0500
35016
35017 include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35018
35019 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35020
35021commit 18225e8dd1950bd6dbf35011e436db7f474c187d
35022Author: Jon Loeliger <jdl@freescale.com>
35023Date: Mon Jul 9 21:31:24 2007 -0500
35024
35025 include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35026
35027 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35028
35029commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
35030Author: Jon Loeliger <jdl@freescale.com>
35031Date: Mon Jul 9 21:24:19 2007 -0500
35032
35033 include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35034
35035 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35036
35037commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
35038Author: Jon Loeliger <jdl@freescale.com>
35039Date: Mon Jul 9 21:16:53 2007 -0500
35040
35041 include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
35042
35043 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35044
35045commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
35046Author: Jon Loeliger <jdl@freescale.com>
35047Date: Mon Jul 9 19:12:30 2007 -0500
35048
35049 Retire CONFIG_COMMANDS finally.
35050 Strip old CFG_CMD_* symbols out.
35051
35052 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35053
35054commit b5501f7d720fed99ab0b42c83f5dea52868ce007
35055Author: Jon Loeliger <jdl@freescale.com>
35056Date: Mon Jul 9 19:10:03 2007 -0500
35057
35058 Update README.* to reference new CONFIG_CMD_* names now.
35059
35060 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35061
35062commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
35063Author: Jon Loeliger <jdl@freescale.com>
35064Date: Mon Jul 9 19:06:00 2007 -0500
35065
35066 cpu/m*: Remove obsolete references to CONFIG_COMMANDS
35067
35068 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35069
35070commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
35071Author: Jon Loeliger <jdl@freescale.com>
35072Date: Mon Jul 9 18:57:22 2007 -0500
35073
35074 cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
35075
35076 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35077
35078commit ab3abcbabd840928fb1eb5122118ca466b5e5013
35079Author: Jon Loeliger <jdl@freescale.com>
35080Date: Mon Jul 9 18:45:16 2007 -0500
35081
35082 board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
35083
35084 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35085
35086commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
35087Author: Jon Loeliger <jdl@freescale.com>
35088Date: Mon Jul 9 18:38:39 2007 -0500
35089
35090 board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
35091
35092 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35093
35094commit c508a4cefd8a953fc64957650506a035e6e3d9d1
35095Author: Jon Loeliger <jdl@freescale.com>
35096Date: Mon Jul 9 18:31:28 2007 -0500
35097
35098 board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
35099
35100 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35101
35102commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
35103Author: Jon Loeliger <jdl@freescale.com>
35104Date: Mon Jul 9 18:24:55 2007 -0500
35105
35106 board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
35107
35108 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35109
35110commit fcec2eb93e126400009729328e797f12bc94f1fd
35111Author: Jon Loeliger <jdl@freescale.com>
35112Date: Mon Jul 9 18:19:09 2007 -0500
35113
35114 board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
35115
35116 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35117
35118commit a593814f2be0c9cdc3133cd550b167b8a988328f
35119Author: Jon Loeliger <jdl@freescale.com>
35120Date: Mon Jul 9 18:10:50 2007 -0500
35121
35122 rtc/: Remove obsolete references to CONFIG_COMMANDS
35123
35124 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35125
35126commit 67350568f9d46e66c21829f3513b3db0caeb948b
35127Author: Jon Loeliger <jdl@freescale.com>
35128Date: Mon Jul 9 18:05:38 2007 -0500
35129
35130 lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
35131
35132 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35133
35134commit 7def6b34f910f08d7ef0a14646da067719237ca2
35135Author: Jon Loeliger <jdl@freescale.com>
35136Date: Mon Jul 9 18:02:11 2007 -0500
35137
35138 lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
35139
35140 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35141
35142commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
35143Author: Jon Loeliger <jdl@freescale.com>
35144Date: Mon Jul 9 17:56:50 2007 -0500
35145
35146 fs/: Remove obsolete references to CONFIG_COMMANDS
35147
35148 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35149
35150commit c91898bbc505aff3e12a807af88e76da18efb7ee
35151Author: Jon Loeliger <jdl@freescale.com>
35152Date: Mon Jul 9 17:46:09 2007 -0500
35153
35154 tools/: Remove obsolete references to CONFIG_COMMANDS
35155
35156 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35157
35158commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
35159Author: Jon Loeliger <jdl@freescale.com>
35160Date: Mon Jul 9 17:45:14 2007 -0500
35161
35162 net/: Remove obsolete references to CONFIG_COMMANDS
35163
35164 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35165
35166commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
35167Author: Jon Loeliger <jdl@freescale.com>
35168Date: Mon Jul 9 17:39:42 2007 -0500
35169
35170 drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
35171
35172 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35173
35174commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
35175Author: Jon Loeliger <jdl@freescale.com>
35176Date: Mon Jul 9 17:30:01 2007 -0500
35177
35178 drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
35179
35180 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35181
35182commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
35183Author: Jon Loeliger <jdl@freescale.com>
35184Date: Mon Jul 9 17:22:37 2007 -0500
35185
35186 disk/: Remove obsolete references to CONFIG_COMMANDS
35187
35188 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35189
35190commit 639221c76c88215bd55af83ad174fc30d1940f8f
35191Author: Jon Loeliger <jdl@freescale.com>
35192Date: Mon Jul 9 17:15:49 2007 -0500
35193
35194 include/: Remove obsolete references to CONFIG_COMMANDS
35195 Mostly removed from comments here.
35196
35197 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35198
Wolfgang Denk239f05e2007-07-12 01:45:34 +020035199commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
35200Author: Wolfgang Denk <wd@denx.de>
35201Date: Tue Jul 10 00:01:28 2007 +0200
35202
35203 Coding style cleanup; update CHANGELOG.
35204
35205 Signed-off-by: Wolfgang Denk <wd@denx.de>
35206
Wolfgang Denka5a38f42007-08-16 11:51:04 +020035207commit c8603cfbd4573379a6076c9c208545ba2bbf019a
35208Author: Stefan Roese <sr@denx.de>
35209Date: Mon Jul 9 11:00:24 2007 +0200
35210
35211 Small coding style cleanup
35212
35213 Signed-off-by: Stefan Roese <sr@denx.de>
35214
35215commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
35216Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35217Date: Mon Jul 9 10:10:08 2007 +0200
35218
35219 Migrate esd 405EP boards to new NAND subsystem
35220
35221 Remove unused CFG_NAND_LEGACY define
35222
35223 These boards to not have NAND.
35224
35225 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35226
35227commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
35228Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35229Date: Mon Jul 9 10:10:06 2007 +0200
35230
35231 Migrate esd 405EP boards to new NAND subsystem
35232
35233 Migrate esd 405EP boards to new NAND subsystem
35234
35235 -cleanup
35236 -use correct io accessors (in/out_be32())
35237
35238 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35239
35240commit e09f7ab5749c345f924da272bea0521a73af5b11
35241Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35242Date: Mon Jul 9 10:10:04 2007 +0200
35243
35244 Migrate esd 405EP boards to new NAND subsystem
35245
35246 This patch prepares the migration from the legacy NAND driver
35247 to U-Boot's new NAND subsystem for esd boards.
35248
35249 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35250
Wolfgang Denk5728be32007-08-06 01:01:49 +020035251commit c3517f919d0f61650cf3027fd4faf0f631142f6c
35252Author: Jon Loeliger <jdl@freescale.com>
35253Date: Sun Jul 8 18:10:08 2007 -0500
35254
35255 common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
35256
35257 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35258
35259commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
35260Author: Jon Loeliger <jdl@freescale.com>
35261Date: Sun Jul 8 18:05:39 2007 -0500
35262
35263 common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
35264
35265 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35266
35267commit c76fe47425afc7d5d670ff0539823c85d65d9c42
35268Author: Jon Loeliger <jdl@freescale.com>
35269Date: Sun Jul 8 18:02:23 2007 -0500
35270
35271 common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
35272
35273 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35274
35275commit baa26db4113679b80970ff447d91cc10217742a6
35276Author: Jon Loeliger <jdl@freescale.com>
35277Date: Sun Jul 8 17:51:39 2007 -0500
35278
35279 common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
35280
35281 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35282
35283commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
35284Author: Jon Loeliger <jdl@freescale.com>
35285Date: Sun Jul 8 17:02:01 2007 -0500
35286
35287 Clear up confusion over the CMD_POST and POST_DIAG mess.
35288
35289 For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
35290 when it really means just CONFIG_CMD_DIAG. There is no CMD_POST.
35291 Clear this mess up some.
35292
35293 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35294
35295commit b3631487105a57ab7cbadfc26efbaf9676275018
35296Author: Jon Loeliger <jdl@freescale.com>
35297Date: Sun Jul 8 15:45:08 2007 -0500
35298
35299 Remove references to the old cmd_confdefs.h include file.
35300
35301 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35302
35303commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
35304Author: Jon Loeliger <jdl@freescale.com>
35305Date: Sun Jul 8 15:42:59 2007 -0500
35306
35307 include/configs: Catch some CONFIG_CMD_* conversion stragglers.
35308
35309 Use new CONFIG_CMD_* in lwmon5.h board config file.
35310 Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
35311
35312 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35313
35314commit a5562901661bd428f7e5feb333f796372cb81019
35315Author: Jon Loeliger <jdl@freescale.com>
35316Date: Sun Jul 8 15:31:57 2007 -0500
35317
35318 include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
35319
35320 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35321
35322commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
35323Author: Jon Loeliger <jdl@freescale.com>
35324Date: Sun Jul 8 15:02:44 2007 -0500
35325
35326 include/configs: Use new CONFIG_CMD_* in various S* named board config files.
35327
35328 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35329
35330commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
35331Author: Jon Loeliger <jdl@freescale.com>
35332Date: Sun Jul 8 15:12:40 2007 -0500
35333
35334 include/configs: Use new CONFIG_CMD_* in various R* named board config files.
35335
35336 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35337
35338commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
35339Author: Jon Loeliger <jdl@freescale.com>
35340Date: Sun Jul 8 14:55:07 2007 -0500
35341
35342 include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
35343
35344 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35345
35346commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
35347Author: Jon Loeliger <jdl@freescale.com>
35348Date: Sun Jul 8 14:49:44 2007 -0500
35349
35350 include/configs: Use new CONFIG_CMD_* in various P* named board config files.
35351
35352 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35353
35354commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
35355Author: Jon Loeliger <jdl@freescale.com>
35356Date: Sun Jul 8 14:21:43 2007 -0500
35357
35358 include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
35359
35360 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35361
35362commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
35363Author: Jon Loeliger <jdl@freescale.com>
35364Date: Sun Jul 8 14:14:17 2007 -0500
35365
35366 include/configs: Use new CONFIG_CMD_* in various M* named board config files.
35367
35368 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35369
35370commit 348f258f24253433e4a2302a0bbceb6740a67246
35371Author: Jon Loeliger <jdl@freescale.com>
35372Date: Sun Jul 8 13:46:18 2007 -0500
35373
35374 include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
35375
35376 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35377
35378commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
35379Author: Jon Loeliger <jdl@freescale.com>
35380Date: Sun Jul 8 10:09:35 2007 -0500
35381
35382 include/configs: Use new CONFIG_CMD_* in various H* named board config files.
35383
35384 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35385
35386commit 60a0876b5106b34220e459c208bbf648073306c0
35387Author: Jon Loeliger <jdl@freescale.com>
35388Date: Sat Jul 7 21:04:26 2007 -0500
35389
35390 include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
35391
35392 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35393
35394commit dcaa71562826a2466e894c868d132509dcda8444
35395Author: Jon Loeliger <jdl@freescale.com>
35396Date: Sat Jul 7 20:56:05 2007 -0500
35397
35398 include/configs: Use new CONFIG_CMD_* in various E* named board config files.
35399
35400 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35401
35402commit 3c3227f3c737502311b25b72084573901cbbf17d
35403Author: Jon Loeliger <jdl@freescale.com>
35404Date: Sat Jul 7 20:40:43 2007 -0500
35405
35406 include/configs: Use new CONFIG_CMD_* in various D* named board config files.
35407
35408 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35409
35410commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
35411Author: Jon Loeliger <jdl@freescale.com>
35412Date: Thu Jul 5 19:52:35 2007 -0500
35413
35414 include/configs: Use new CONFIG_CMD_* in various C* named board config files.
35415
35416 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35417
35418commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
35419Author: Jon Loeliger <jdl@freescale.com>
35420Date: Thu Jul 5 19:32:07 2007 -0500
35421
35422 include/configs: Use new CONFIG_CMD_* in various B* named board config files.
35423
35424 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35425
35426commit 498ff9a228485bd4b9f23d066bada268f9add1dd
35427Author: Jon Loeliger <jdl@freescale.com>
35428Date: Thu Jul 5 19:13:52 2007 -0500
35429
35430 include/configs: Use new CONFIG_CMD_* in various A* named board config files.
35431
35432 Since ADS860.h includes "board/fads/fads.h" with ramifications
35433 on the CONFIG_COMMAND treatment, it too has to be adjusted to
35434 exclude already configured commands in this same commit.
35435
35436 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35437
Wolfgang Denka5a38f42007-08-16 11:51:04 +020035438commit 10e038932f22ee80ebd53de312531e70e6590a2f
35439Author: Thomas Knobloch <knobloch@siemens.com>
35440Date: Fri Jul 6 14:58:39 2007 +0200
35441
35442 [NAND] Bad block skipping for command nboot
35443
35444 The old implementation of command nboot does not support reading the image from
35445 NAND flash with skipping of bad blocks. The patch implements a new version of
35446 the nboot command: by calling nboot.jffs2 from the u-boot command line the
35447 command will load the image from NAND flash with respect to bad blocks (by using
35448 nand_read_opts()). This is similar to e.g. the NAND read command: "nand
35449 read.jffs2 ...".
35450
35451 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
35452 Signed-off-by: Stefan Roese <sr@denx.de>
35453
35454commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
35455Author: Stefan Roese <sr@denx.de>
35456Date: Fri Jul 6 12:26:51 2007 +0200
35457
35458 ppc4xx: Update lwmon5 default environment
35459
35460 Signed-off-by: Stefan Roese <sr@denx.de>
35461
35462commit 5d187430a055d62f17ca84d75e7245439d1f7e75
35463Author: Stefan Roese <sr@denx.de>
35464Date: Fri Jul 6 11:48:24 2007 +0200
35465
35466 ppc4xx: Update lwmon5 board
35467
35468 Add unlock=yes environment variable to default variables to unlock
35469 the CFI flash by default.
35470
35471 Signed-off-by: Stefan Roese <sr@denx.de>
35472
Wolfgang Denk5728be32007-08-06 01:01:49 +020035473commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
35474Author: Stefan Roese <sr@denx.de>
35475Date: Fri Jul 6 09:45:47 2007 +0200
35476
35477 Fix problem with get/setdcr commands introduced by cfg patches
35478
35479 Signed-off-by: Stefan Roese <sr@denx.de>
35480
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020035481commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
35482Author: Wolfgang Denk <wd@denx.de>
35483Date: Fri Jul 6 02:50:19 2007 +0200
35484
35485 Code cleanup and default config update for STC GP3 SSA board.
35486
35487 Signed-off-by: Wolfgang Denk <wd@denx.de>
35488
Wolfgang Denk5728be32007-08-06 01:01:49 +020035489commit e4dbe1b215f5c6c462e76909d240bd96472b84de
35490Author: Wolfgang Denk <wd@denx.de>
35491Date: Thu Jul 5 17:56:27 2007 +0200
35492
35493 Fixing some typos etc. introduced mainly by cfg patches.
35494
35495 Signed-off-by: Wolfgang Denk <wd@denx.de>
35496
35497commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
35498Author: Wolfgang Denk <wd@denx.de>
35499Date: Thu Jul 5 11:12:16 2007 +0200
35500
35501 Minor coding style cleanup. Update CHANGELOG.
35502
Wolfgang Denkb6b46842007-07-05 11:12:16 +020035503commit dca3b3d6d6396b67e5e84af53452164923c73443
35504Author: Jon Loeliger <jdl@jdl.com>
35505Date: Wed Jul 4 22:33:46 2007 -0500
35506
35507 include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
35508
35509 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35510
35511commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
35512Author: Jon Loeliger <jdl@jdl.com>
35513Date: Wed Jul 4 22:33:38 2007 -0500
35514
35515 include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
35516
35517 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35518
35519commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
35520Author: Jon Loeliger <jdl@jdl.com>
35521Date: Wed Jul 4 22:33:30 2007 -0500
35522
35523 include/configs: Use new CONFIG_CMD_* in various s* named board config files.
35524
35525 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35526
35527commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
35528Author: Jon Loeliger <jdl@jdl.com>
35529Date: Wed Jul 4 22:33:23 2007 -0500
35530
35531 include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
35532
35533 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35534
35535commit 26a34560d56a9df5bc2ae23525d9229736134757
35536Author: Jon Loeliger <jdl@jdl.com>
35537Date: Wed Jul 4 22:33:17 2007 -0500
35538
35539 include/configs: Use new CONFIG_CMD_* in various p* named board config files.
35540
35541 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35542
35543commit a5cb23092a7d31490a33d4ec871468b63babfa3c
35544Author: Jon Loeliger <jdl@jdl.com>
35545Date: Wed Jul 4 22:33:13 2007 -0500
35546
35547 include/configs: Use new CONFIG_CMD_* in various o* named board config files.
35548
35549 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35550
35551commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
35552Author: Jon Loeliger <jdl@jdl.com>
35553Date: Wed Jul 4 22:33:07 2007 -0500
35554
35555 include/configs: Use new CONFIG_CMD_* in various n* named board config files.
35556
35557 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35558
35559commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
35560Author: Jon Loeliger <jdl@jdl.com>
35561Date: Wed Jul 4 22:33:01 2007 -0500
35562
35563 include/configs: Use new CONFIG_CMD_* in various m* named board config files.
35564
35565 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35566
35567commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
35568Author: Jon Loeliger <jdl@jdl.com>
35569Date: Wed Jul 4 22:32:57 2007 -0500
35570
35571 include/configs: Use new CONFIG_CMD_* in various l* named board config files.
35572
35573 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35574
35575commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
35576Author: Jon Loeliger <jdl@jdl.com>
35577Date: Wed Jul 4 22:32:51 2007 -0500
35578
35579 include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
35580
35581 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35582
35583commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
35584Author: Jon Loeliger <jdl@jdl.com>
35585Date: Wed Jul 4 22:32:32 2007 -0500
35586
35587 include/configs: Use new CONFIG_CMD_* in various i* named board config files.
35588
35589 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35590
35591commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
35592Author: Jon Loeliger <jdl@jdl.com>
35593Date: Wed Jul 4 22:32:25 2007 -0500
35594
35595 include/configs: Use new CONFIG_CMD_* in various h* named board config files.
35596
35597 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35598
35599commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
35600Author: Jon Loeliger <jdl@jdl.com>
35601Date: Wed Jul 4 22:32:19 2007 -0500
35602
35603 include/configs: Use new CONFIG_CMD_* in various g* named board config files.
35604
35605 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35606
35607commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
35608Author: Jon Loeliger <jdl@jdl.com>
35609Date: Wed Jul 4 22:32:10 2007 -0500
35610
35611 include/configs: Use new CONFIG_CMD_* in various e* named board config files.
35612
35613 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35614
35615commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
35616Author: Jon Loeliger <jdl@jdl.com>
35617Date: Wed Jul 4 22:32:03 2007 -0500
35618
35619 include/configs: Use new CONFIG_CMD_* in various d* named board config files.
35620
35621 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35622
35623commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
35624Author: Jon Loeliger <jdl@jdl.com>
35625Date: Wed Jul 4 22:31:56 2007 -0500
35626
35627 include/configs: Use new CONFIG_CMD_* in various c* named board config files.
35628
35629 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35630
35631commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
35632Author: Jon Loeliger <jdl@jdl.com>
35633Date: Wed Jul 4 22:31:49 2007 -0500
35634
35635 include/configs: Use new CONFIG_CMD_* in various b* named board config files.
35636
35637 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35638
35639commit 0b361c916617aff79e647b40f0e43361e0bbaccf
35640Author: Jon Loeliger <jdl@jdl.com>
35641Date: Wed Jul 4 22:31:42 2007 -0500
35642
35643 include/configs: Use new CONFIG_CMD_* in various a* named board config files.
35644
35645 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35646
35647commit b730cda82e362df6a22f4c59c0a9b97e885b1014
35648Author: Jon Loeliger <jdl@jdl.com>
35649Date: Wed Jul 4 22:31:35 2007 -0500
35650
35651 include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
35652
35653 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35654
35655commit d794cfefead5fc177cf4f41164e80382e9c9484a
35656Author: Jon Loeliger <jdl@jdl.com>
35657Date: Wed Jul 4 22:31:15 2007 -0500
35658
35659 include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
35660
35661 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35662
35663commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
35664Author: Jon Loeliger <jdl@jdl.com>
35665Date: Wed Jul 4 22:31:07 2007 -0500
35666
35667 include/configs: Use new CONFIG_CMD_* in STx board config files.
35668
35669 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35670
35671commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
35672Author: Jon Loeliger <jdl@jdl.com>
35673Date: Wed Jul 4 22:30:58 2007 -0500
35674
35675 include/configs: Use new CONFIG_CMD_* in sbc* board config files.
35676
35677 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35678
35679commit 2694690e285acaa34922f55f4b5ae030da60c55a
35680Author: Jon Loeliger <jdl@jdl.com>
35681Date: Wed Jul 4 22:30:50 2007 -0500
35682
35683 include/configs: Use new CONFIG_CMD_* in TQM board config files.
35684
35685 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35686
35687commit 1cc4c458329765b58e584a19821e796b3c10e976
35688Author: Jon Loeliger <jdl@jdl.com>
35689Date: Wed Jul 4 22:30:28 2007 -0500
35690
35691 include/configs: Use new CONFIG_CMD_* in 82xx board config files.
35692
35693 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35694
35695commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
35696Author: Jon Loeliger <jdl@jdl.com>
35697Date: Wed Jul 4 22:30:06 2007 -0500
35698
35699 include/configs: Use new CONFIG_CMD_* in 83xx board config files.
35700
35701 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35702
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020035703commit b44896215a09c60fa40cae906f7ed207bbc2c492
35704Author: Sergei Poselenov <sposelenov@emcraft.com>
35705Date: Thu Jul 5 08:17:37 2007 +0200
35706
35707 Merged POST framework with the current TOT.
35708
35709 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35710
Wolfgang Denkb6b46842007-07-05 11:12:16 +020035711commit b24629fa377214d63bb40d1360e354b6d3e4af56
35712Author: Jon Loeliger <jdl@jdl.com>
35713Date: Wed Jun 13 13:23:15 2007 -0500
35714
35715 mpc86xx: Remove old CFG_CMD_* references.
35716
35717 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35718
35719commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
35720Author: Jon Loeliger <jdl@jdl.com>
35721Date: Wed Jun 13 13:22:54 2007 -0500
35722
35723 Add MPC8568MDS to MAKEALL 85xx target.
35724
35725 It was missing from the original port submission.
35726
35727 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35728
35729commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
35730Author: Jon Loeliger <jdl@jdl.com>
35731Date: Wed Jun 13 13:22:08 2007 -0500
35732
35733 include/configs: Use new CONFIG_CMD_* in 85xx board config files.
35734
35735 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35736
35737commit 56b304ac2091689506088a9ae67f63fd6300cf16
35738Author: Jon Loeliger <jdl@jdl.com>
35739Date: Wed Jun 13 13:21:37 2007 -0500
35740
35741 Fix #if typo in CONFIG_CMD_* changes.
35742
35743 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35744
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020035745commit f780b83316d9af1f61d71cc88b1917b387b9b995
35746Author: Niklaus Giger <niklausgiger@gmx.ch>
35747Date: Wed Jun 27 18:11:38 2007 +0200
35748
35749 resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
35750
35751 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
35752
35753commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
35754Author: Stefan Roese <sr@denx.de>
35755Date: Wed Jul 4 10:06:30 2007 +0200
35756
35757 ppc4xx: Update lwmon5 board
35758
35759 - Add optional ECC generation routine to preserve existing
35760 RAM values. This is needed for the Linux log-buffer support
35761 - Add optional DDR2 setup with CL=4
35762 - GPIO50 not used anymore
35763 - Lime register setup added
35764
35765 Signed-off-by: Stefan Roese <sr@denx.de>
35766
Wolfgang Denkb6b46842007-07-05 11:12:16 +020035767commit 6810a34677dbc446334f5e451f1682426dd33b49
35768Author: Grant Likely <grant.likely@secretlab.ca>
35769Date: Tue Jul 3 00:17:28 2007 -0600
35770
35771 Fix Makefile to use $(MKCONFIG) macro for all board ports
35772
35773 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35774
35775commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
35776Author: Grant Likely <grant.likely@secretlab.ca>
35777Date: Tue Jul 3 00:17:28 2007 -0600
35778
35779 Fix Makefile to use $(MKCONFIG) macro for all board ports
35780
35781 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35782
35783commit 057004f4a4863554d56cc56268bfa7c7d9738e27
35784Author: Grant Likely <grant.likely@secretlab.ca>
35785Date: Tue Jul 3 00:34:49 2007 -0600
35786
35787 Correct fixup relocation for mpc83xx
35788
35789 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35790
35791commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
35792Author: Grant Likely <grant.likely@secretlab.ca>
35793Date: Tue Jul 3 00:34:44 2007 -0600
35794
35795 Correct fixup relocation for mpc8260
35796
35797 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35798
35799commit f3a52fe05923935db86985daf9438e2f70ac39aa
35800Author: Grant Likely <grant.likely@secretlab.ca>
35801Date: Tue Jul 3 00:34:39 2007 -0600
35802
35803 Correct fixup relocation for mpc824x
35804
35805 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35806
35807commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
35808Author: Grant Likely <grant.likely@secretlab.ca>
35809Date: Tue Jul 3 00:34:34 2007 -0600
35810
35811 Correct fixup relocation for mpc8220
35812
35813 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35814
35815commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
35816Author: Grant Likely <grant.likely@secretlab.ca>
35817Date: Tue Jul 3 00:34:29 2007 -0600
35818
35819 Correct fixup relocation for MPC5xxx
35820
35821 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35822
35823commit 3649cd99ba815b6601868735765602f00ef3692b
35824Author: Grant Likely <grant.likely@secretlab.ca>
35825Date: Tue Jul 3 00:34:24 2007 -0600
35826
35827 Correct relocation fixup for mpc5xx
35828
35829 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35830
35831commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
35832Author: Grant Likely <grant.likely@secretlab.ca>
35833Date: Tue Jul 3 00:34:19 2007 -0600
35834
35835 Don't set gd->reloc_off if relocation of .fixup works correctly
35836
35837 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35838
35839commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
35840Author: Grant Likely <grant.likely@secretlab.ca>
35841Date: Tue Jul 3 00:34:14 2007 -0600
35842
35843 Remove obsolete mpc83xx linker scripts
35844
35845 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35846
35847commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
35848Author: Grant Likely <grant.likely@secretlab.ca>
35849Date: Tue Jul 3 00:34:09 2007 -0600
35850
35851 Consolidate mpc8260 linker scripts
35852
35853 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35854
35855commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
35856Author: Grant Likely <grant.likely@secretlab.ca>
35857Date: Tue Jul 3 00:34:04 2007 -0600
35858
35859 Remove obsolete mpc824x linker scripts
35860
35861 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35862
35863commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
35864Author: Grant Likely <grant.likely@secretlab.ca>
35865Date: Tue Jul 3 00:33:59 2007 -0600
35866
35867 Remove obsolete mpc824x linker scripts (3 of 4)
35868
35869 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35870
35871commit a71c084f3ac7fedf144537db2b2da47323068833
35872Author: Grant Likely <grant.likely@secretlab.ca>
35873Date: Tue Jul 3 00:33:53 2007 -0600
35874
35875 Remove obsolete mpc824x linker scripts (2 of 4)
35876
35877 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35878
35879commit f670a15468d1365241d40022b9408e1004181f5e
35880Author: Grant Likely <grant.likely@secretlab.ca>
35881Date: Tue Jul 3 00:33:48 2007 -0600
35882
35883 Remove obsolete mpc824x linker scripts (1 of 4)
35884
35885 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35886
35887commit 09555bd45a04c0e54f172528d21bc18896550d28
35888Author: Grant Likely <grant.likely@secretlab.ca>
35889Date: Tue Jul 3 00:33:43 2007 -0600
35890
35891 Remove obsolete mpc8220 linker scripts
35892
35893 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35894
35895commit 5efb992f046e51225c93d52f80fecbe433abd789
35896Author: Grant Likely <grant.likely@secretlab.ca>
35897Date: Tue Jul 3 00:33:38 2007 -0600
35898
35899 Remove obsolete mpc5xxx linker scripts (3 of 3)
35900
35901 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35902
35903commit 07c13dfef65b31647e69d8b61daa1eec598add1a
35904Author: Grant Likely <grant.likely@secretlab.ca>
35905Date: Tue Jul 3 00:33:33 2007 -0600
35906
35907 Remove obsolete mpc5xxx linker scripts (2 of 3)
35908
35909 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35910
35911commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
35912Author: Grant Likely <grant.likely@secretlab.ca>
35913Date: Tue Jul 3 00:33:28 2007 -0600
35914
35915 Remove obsolete mpc5xxx linker scripts (1 of 3)
35916
35917 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35918
35919commit b7d8e05f8675249b5f208aa73babeed384a4519d
35920Author: Grant Likely <grant.likely@secretlab.ca>
35921Date: Tue Jul 3 00:33:23 2007 -0600
35922
35923 Remove obsolete mpc5xx linker scripts
35924
35925 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35926
35927commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
35928Author: Grant Likely <grant.likely@secretlab.ca>
35929Date: Tue Jul 3 00:33:18 2007 -0600
35930
35931 Consolidate mpc83xx linker scripts
35932
35933 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35934
35935commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
35936Author: Grant Likely <grant.likely@secretlab.ca>
35937Date: Tue Jul 3 00:33:13 2007 -0600
35938
35939 Consolidate mpc8260 linker scripts
35940
35941 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35942
35943commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
35944Author: Grant Likely <grant.likely@secretlab.ca>
35945Date: Tue Jul 3 00:33:08 2007 -0600
35946
35947 Consolidate mpc824x linker scripts
35948
35949 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35950
35951commit 9c757b789a59a855db57b448dd825329c4e9c4a0
35952Author: Grant Likely <grant.likely@secretlab.ca>
35953Date: Tue Jul 3 00:33:03 2007 -0600
35954
35955 Consolidate mpc8220 linker scripts
35956
35957 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35958
35959commit d181c9a15cd41863fe24840d17848429f27d3c8c
35960Author: Grant Likely <grant.likely@secretlab.ca>
35961Date: Tue Jul 3 00:32:58 2007 -0600
35962
35963 Consolidate mpc5xxx linker scripts
35964
35965 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35966
35967commit 287ac924adb7291bebe5086652a362a30ab28b13
35968Author: Grant Likely <grant.likely@secretlab.ca>
35969Date: Tue Jul 3 00:32:53 2007 -0600
35970
35971 Consolidate mpc5xx linker scripts
35972
35973 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
35974
35975commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
35976Author: Wolfgang Denk <wd@denx.de>
35977Date: Wed Jul 4 00:43:53 2007 +0200
35978
35979 Fix a few file permission problems.
35980
35981 Signed-off-by: Wolfgang Denk <wd@denx.de>
35982
35983commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
35984Author: Wolfgang Denk <wd@denx.de>
35985Date: Wed Jul 4 00:38:38 2007 +0200
35986
35987 Minor coding style cleanup. Rebuild CHANGELOG file.
35988
Wolfgang Denk78e0cf22007-07-04 00:38:38 +020035989commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
35990Author: Jon Loeliger <jdl@jdl.com>
35991Date: Mon Jun 11 19:03:44 2007 -0500
35992
35993 configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
35994
35995 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35996
35997commit 602ad3b33d9ceef83dbab46be68646d645d637ee
35998Author: Jon Loeliger <jdl@jdl.com>
35999Date: Mon Jun 11 19:03:39 2007 -0500
36000
36001 README: Rewrite command line config to use CONFIG_CMD_* names.
36002
36003 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36004
36005commit 72a074cec68e5bad60d63206c050974e08afd804
36006Author: Jon Loeliger <jdl@jdl.com>
36007Date: Mon Jun 11 19:03:34 2007 -0500
36008
36009 include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36010
36011 This is a compatibility step that allows both the older form
36012 and the new form to co-exist for a while until the older can
36013 be removed entirely.
36014
36015 All transformations are of the form:
36016 Before:
36017 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36018 After:
36019 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36020
36021 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36022
36023commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
36024Author: Jon Loeliger <jdl@jdl.com>
36025Date: Mon Jun 11 19:03:28 2007 -0500
36026
36027 tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36028
36029 This is a compatibility step that allows both the older form
36030 and the new form to co-exist for a while until the older can
36031 be removed entirely.
36032
36033 All transformations are of the form:
36034 Before:
36035 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36036 After:
36037 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36038
36039 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36040
36041commit 9107ebe0d352420895ab69b715697bdebc8caf50
36042Author: Jon Loeliger <jdl@jdl.com>
36043Date: Mon Jun 11 19:03:23 2007 -0500
36044
36045 board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36046
36047 This is a compatibility step that allows both the older form
36048 and the new form to co-exist for a while until the older can
36049 be removed entirely.
36050
36051 All transformations are of the form:
36052 Before:
36053 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36054 After:
36055 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36056
36057 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36058
36059commit 5e378003d592ea828ec69d6defcd4de79096dd5c
36060Author: Jon Loeliger <jdl@jdl.com>
36061Date: Mon Jun 11 19:03:19 2007 -0500
36062
36063 board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36064
36065 This is a compatibility step that allows both the older form
36066 and the new form to co-exist for a while until the older can
36067 be removed entirely.
36068
36069 All transformations are of the form:
36070 Before:
36071 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36072 After:
36073 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36074
36075 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36076
36077commit 737184114ec9c9e0ab94d6713536126073bd2472
36078Author: Jon Loeliger <jdl@jdl.com>
36079Date: Mon Jun 11 19:03:15 2007 -0500
36080
36081 cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36082
36083 This is a compatibility step that allows both the older form
36084 and the new form to co-exist for a while until the older can
36085 be removed entirely.
36086
36087 All transformations are of the form:
36088 Before:
36089 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36090 After:
36091 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36092
36093 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36094
36095commit f48070fe5fe440dfb5ee5268c920de70e48ea327
36096Author: Jon Loeliger <jdl@jdl.com>
36097Date: Mon Jun 11 19:03:08 2007 -0500
36098
36099 cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36100
36101 This is a compatibility step that allows both the older form
36102 and the new form to co-exist for a while until the older can
36103 be removed entirely.
36104
36105 All transformations are of the form:
36106 Before:
36107 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36108 After:
36109 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36110
36111 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36112
36113commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
36114Author: Jon Loeliger <jdl@jdl.com>
36115Date: Mon Jun 11 19:03:03 2007 -0500
36116
36117 lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36118
36119 This is a compatibility step that allows both the older form
36120 and the new form to co-exist for a while until the older can
36121 be removed entirely.
36122
36123 All transformations are of the form:
36124 Before:
36125 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36126 After:
36127 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36128
36129 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36130
36131commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
36132Author: Jon Loeliger <jdl@jdl.com>
36133Date: Mon Jun 11 19:02:58 2007 -0500
36134
36135 lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36136
36137 This is a compatibility step that allows both the older form
36138 and the new form to co-exist for a while until the older can
36139 be removed entirely.
36140
36141 All transformations are of the form:
36142 Before:
36143 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36144 After:
36145 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36146
36147 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36148
36149commit 98b79003c21c2578206003256de4e781d6b36ca8
36150Author: Jon Loeliger <jdl@jdl.com>
36151Date: Mon Jun 11 19:02:53 2007 -0500
36152
36153 rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36154
36155 This is a compatibility step that allows both the older form
36156 and the new form to co-exist for a while until the older can
36157 be removed entirely.
36158
36159 All transformations are of the form:
36160 Before:
36161 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36162 After:
36163 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36164
36165 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36166
36167commit 6e2115acb6a892d53a6881bf253ae41d3df39156
36168Author: Jon Loeliger <jdl@jdl.com>
36169Date: Mon Jun 11 19:02:49 2007 -0500
36170
36171 net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36172
36173 This is a compatibility step that allows both the older form
36174 and the new form to co-exist for a while until the older can
36175 be removed entirely.
36176
36177 All transformations are of the form:
36178 Before:
36179 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36180 After:
36181 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36182
36183 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36184
36185commit 45cdb9b72c94655c7308b464a2666057c0b286e0
36186Author: Jon Loeliger <jdl@jdl.com>
36187Date: Mon Jun 11 19:02:34 2007 -0500
36188
36189 disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36190
36191 This is a compatibility step that allows both the older form
36192 and the new form to co-exist for a while until the older can
36193 be removed entirely.
36194
36195 All transformations are of the form:
36196 Before:
36197 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36198 After:
36199 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36200
36201 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36202
36203commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
36204Author: Jon Loeliger <jdl@jdl.com>
36205Date: Mon Jun 11 19:02:20 2007 -0500
36206
36207 fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36208
36209 This is a compatibility step that allows both the older form
36210 and the new form to co-exist for a while until the older can
36211 be removed entirely.
36212
36213 All transformations are of the form:
36214 Before:
36215 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36216 After:
36217 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36218
36219 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36220
36221commit d5be43de93ff905c465e509d45a3164ef48d26e7
36222Author: Jon Loeliger <jdl@jdl.com>
36223Date: Mon Jun 11 19:02:10 2007 -0500
36224
36225 drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36226
36227 This is a compatibility step that allows both the older form
36228 and the new form to co-exist for a while until the older can
36229 be removed entirely.
36230
36231 All transformations are of the form:
36232 Before:
36233 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36234 After:
36235 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36236
36237 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36238
36239commit b453960d4fdb87b3970d96119b90df2ed024fc4a
36240Author: Jon Loeliger <jdl@jdl.com>
36241Date: Mon Jun 11 19:02:05 2007 -0500
36242
36243 common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36244
36245 This is a compatibility step that allows both the older form
36246 and the new form to co-exist for a while until the older can
36247 be removed entirely.
36248
36249 All transformations are of the form:
36250 Before:
36251 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36252 After:
36253 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36254
36255 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36256
36257commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
36258Author: Jon Loeliger <jdl@jdl.com>
36259Date: Mon Jun 11 19:01:54 2007 -0500
36260
36261 common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36262
36263 This is a compatibility step that allows both the older form
36264 and the new form to co-exist for a while until the older can
36265 be removed entirely.
36266
36267 All transformations are of the form:
36268 Before:
36269 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36270 After:
36271 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36272
36273 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36274
36275commit a76adc8142c1d956385a109e0b70f9319ede4d66
36276Author: Jon Loeliger <jdl@jdl.com>
36277Date: Mon Jun 11 19:01:43 2007 -0500
36278
36279 common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
36280
36281 This is a compatibility step that allows both the older form
36282 and the new form to co-exist for a while until the older can
36283 be removed entirely.
36284
36285 All transformations are of the form:
36286 Before:
36287 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
36288 After:
36289 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
36290
36291 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36292
36293commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
36294Author: Jon Loeliger <jdl@jdl.com>
36295Date: Mon Jun 11 19:01:34 2007 -0500
36296
36297 Introduce initial versions of new Command Config files.
36298
36299 Derive three new files from cmd_confdefs.h:
36300 config_bootp.h - Has BOOTP related config options, not commands
36301 config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
36302 config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
36303
36304 For now, include "config_bootp.h" for compatability until all
36305 users of it directly include it properly.
36306
36307 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36308
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020036309commit 1f2a05898658900dc5717761e27abf2052e67e13
36310Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
36311Date: Sat Jun 30 18:50:48 2007 +0200
36312
36313 Fix S-ATA support.
36314
36315 Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
36316
36317commit a5d71e290f3673269be8eefb4ec44f53412f9461
36318Author: Heiko Schocher <hs@pollux.denx.de>
36319Date: Mon Jun 25 19:11:37 2007 +0200
36320
36321 [PCS440EP] get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
36322
36323 Signed-off-by: Heiko Schocher <hs@denx.de>
36324
36325commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
36326Author: Niklaus Giger <niklaus.giger@nestal.com>
36327Date: Mon Jun 25 17:03:13 2007 +0200
36328
36329 ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
36330
36331 This patch prints the DDR status registers upon machine check
36332 interrupt on the 440EPx/GRx. This can be useful especially when
36333 ECC support is enabled.
36334
36335 I added some small changes to the original patch from Niklaus to
36336 make it compile clean.
36337
36338 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
36339 Signed-off-by: Stefan Roese <sr@denx.de>
36340
36341commit 807018fb7faceb429ce0cb47baa2073746b33a4e
36342Author: Niklaus Giger <niklaus.giger@nestal.com>
36343Date: Mon Jun 25 16:50:55 2007 +0200
36344
36345 ppc4xx: Fix O=buildir builds
36346
36347 This patch fixes the problem to assemble cpu/ppc4xx/start.S
36348 experienced last week where building failed having specified
36349 O=../build.sequoia.
36350
36351 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
36352
36353commit 466fff1a7bb5fe764a06450626f6098219f446b8
36354Author: Stefan Roese <sr@denx.de>
36355Date: Mon Jun 25 15:57:39 2007 +0200
36356
36357 ppc4xx: Add pci_pre_init() for 405 boards
36358
36359 This patch removes the CFG_PCI_PRE_INIT option completely, since
36360 it's not needed anymore with the patch from Matthias Fuchs with
36361 the "weak" pci_pre_init() implementation.
36362
36363 Signed-off-by: Stefan Roese <sr@denx.de>
36364
36365commit 6f35c53166213c24a5a0e2390ed861136ff73870
36366Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36367Date: Sun Jun 24 17:41:21 2007 +0200
36368
36369 ppc4xx: Maintenance patch for esd's CPCI405 derivats
36370
36371 -add pci_pre_init() for pci interrupt fixup code
36372 -disable phy sleep mode via reset_phy() function
36373 -use correct io accessors
36374 -cleanup
36375
36376 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36377
36378commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
36379Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36380Date: Sun Jun 24 17:23:41 2007 +0200
36381
36382 ppc4xx: Add pci_pre_init() for 405 boards
36383
36384 This patch adds support for calling a plattform dependant
36385 pci_pre_init() function for 405 boards. This can be used to
36386 move the current pci_405gp_fixup_irq() function into the
36387 board code.
36388
36389 This patch also makes the CFG_PCI_PRE_INIT define obsolete.
36390 A default function with 'weak' attribute is used when
36391 a board specific pci_pre_init() is not implemented.
36392
36393 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36394
36395commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
36396Author: Wolfgang Denk <wd@denx.de>
36397Date: Fri Jun 22 23:59:00 2007 +0200
36398
36399 Coding stylke cleanup; rebuild CHANGELOG
36400
Wolfgang Denk1636d1c2007-06-22 23:59:00 +020036401commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
36402Author: Igor Lisitsin <igor@emcraft.com>
36403Date: Wed Apr 18 14:55:19 2007 +0400
36404
36405 Adapt log buffer code to support Linux 2.6
36406
36407 A new environment variable, "logversion", selects the log buffer
36408 behaviour. If it is not set or set to a value other than 2, then the
36409 old, Linux 2.4.4, behaviour is selected.
36410
36411 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
36412 --
36413
36414commit a11e06965ec91270c51853407ff1261d3c740386
36415Author: Igor Lisitsin <igor@emcraft.com>
36416Date: Wed Mar 28 19:06:19 2007 +0400
36417
36418 Extend POST support for PPC440
36419
36420 Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
36421
36422 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
36423 --
36424
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020036425commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
36426Author: Heiko Schocher <hs@pollux.denx.de>
36427Date: Fri Jun 22 19:11:54 2007 +0200
36428
36429 [PCS440EP] upgrade the PCS440EP board:
36430 - Show on the Status LEDs, some States of the board.
36431 - Get the MAC addresses from the EEProm
36432 - use PREBOOT
36433 - use the CF on the board.
36434 - check the U-Boot image in the Flash with a SHA1
36435 checksum.
36436 - use dynamic TLB entries generation for the SDRAM
36437
36438 Signed-off-by: Heiko Schocher <hs@denx.de>
36439
36440commit 3a1f5c81b0b9557817a789bece839905581c2205
36441Author: Stefan Roese <sr@denx.de>
36442Date: Fri Jun 22 16:58:40 2007 +0200
36443
36444 ppc4xx: Fix problem with extended program_tlb() funtion
36445
36446 The recently extended program_tlb() function had a problem when
36447 multiple TLB's had to be setup (for example with 512MB of SDRAM). The
36448 virtual address was not incremented. This patch fixes this issue
36449 and is tested on Katmai with 512MB SDRAM.
36450
36451 Signed-off-by: Stefan Roese <sr@denx.de>
36452
Wolfgang Denk1636d1c2007-06-22 23:59:00 +020036453commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
36454Author: Rafal Jaworowski <raj@semihalf.com>
36455Date: Fri Jun 22 14:58:04 2007 +0200
36456
36457 [ppc] Fix build breakage for all non-4xx PowerPC variants.
36458
36459 - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
36460 - minor 4xx cleanup
36461
Wolfgang Denka5a38f42007-08-16 11:51:04 +020036462commit d677b32855f577ae2690dcd64a172cdd706e0ffc
36463Author: Mike Frysinger <vapier@gentoo.org>
36464Date: Fri Jun 22 10:34:12 2007 +0200
36465
36466 [patch] add nand_init() prototype to nand.h
36467
36468 since nand_init() is expected to be called by other parts of u-boot, there
36469 should be a prototype for it in nand.h
36470
36471 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
36472 Signed-off-by: Stefan Roese <sr@denx.de>
36473
Wolfgang Denk1636d1c2007-06-22 23:59:00 +020036474commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
36475Author: Wolfgang Denk <wd@denx.de>
36476Date: Wed Jun 20 18:14:24 2007 +0200
36477
36478 Coding style cleanup. Refresh CHANGELOG.
36479
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020036480commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
36481Author: Stefan Roese <sr@denx.de>
36482Date: Tue Jun 19 17:22:44 2007 +0200
36483
36484 ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
36485
36486 This patch adds a board command to configure the I2C bootstrap EEPROM
36487 values. Right now 533 and 667MHz are supported for booting either via NOR
36488 or NAND FLASH. Here the usage:
36489
36490 => bootstrap 533 nor ;to configure the board for 533MHz NOR booting
36491 => bootstrap 667 nand ;to configure the board for 667MHz NNAND booting
36492
36493 Signed-off-by: Stefan Roese <sr@denx.de>
36494
36495commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
36496Author: Stefan Roese <sr@denx.de>
36497Date: Tue Jun 19 16:42:31 2007 +0200
36498
36499 [ppc4xx] Fix problem with NAND booting on AMCC Acadia
36500
36501 The latest changes showed a problem with the location of the NAND-SPL
36502 image in the OCM and the init-data area (incl. cache). This patch
36503 fixes this problem.
36504
36505 Signed-off-by: Stefan Roese <sr@denx.de>
36506
36507commit 86ba99e34194394052d24c04dc40d1263d29a26f
36508Author: Stefan Roese <sr@denx.de>
36509Date: Tue Jun 19 16:40:58 2007 +0200
36510
36511 [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
36512
36513 Signed-off-by: Stefan Roese <sr@denx.de>
36514
Wolfgang Denk05675732007-08-18 22:00:38 +020036515commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
36516Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
36517Date: Mon Jun 18 13:50:13 2007 -0500
36518
36519 Added M5329AFEE and M5329BFEE Platforms
36520
36521 Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
36522 drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
36523 include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
36524 rtc/mcfrtc.c
36525
36526 Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
36527 common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
36528 include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
36529 include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
36530 include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
36531 lib_m68k/time.c, net/eth.c and rtc/Makefile
36532
36533 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
36534
Wolfgang Denk63640012007-10-14 00:13:19 +020036535commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
36536Author: Michal Simek <monstr@monstr.eu>
36537Date: Sun Jun 17 19:04:11 2007 +0200
36538
36539 [fix] email reparation
36540
36541commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
36542Author: Michal Simek <monstr@monstr.eu>
36543Date: Sun Jun 17 19:03:21 2007 +0200
36544
36545 [FIX] fix microblaze file permitission
36546
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020036547commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
36548Author: Stefan Roese <sr@denx.de>
36549Date: Fri Jun 15 11:33:41 2007 +0200
36550
36551 [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
36552
36553 Now CONFIG_440 has to be defined in all PPC440 board config files.
36554
36555 Signed-off-by: Stefan Roese <sr@denx.de>
36556
36557commit efa35cf12d914d4caba942acd5a6c45f217de302
36558Author: Grzegorz Bernacki <gjb@semihalf.com>
36559Date: Fri Jun 15 11:19:28 2007 +0200
36560
36561 ppc4xx: Clean up 440 exceptions handling
36562
36563 - Introduced dedicated switches for building 440 and 405 images required
36564 for 440-specific machine instructions like 'rfmci' etc.
36565
36566 - Exception vectors moved to the proper location (_start moved away from
36567 the critical exception handler space, which it occupied)
36568
36569 - CriticalInput now serviced (with default handler)
36570
36571 - MachineCheck properly serviced (added a dedicated handler and return
36572 subroutine)
36573
36574 - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
36575 unhandled and those not relevant for 4xx were eliminated)
36576
36577 - Eliminated Linux leftovers, removed dead code
36578
36579 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36580 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
36581 Signed-off-by: Stefan Roese <sr@denx.de>
36582
36583commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
36584Author: Stefan Roese <sr@denx.de>
36585Date: Fri Jun 15 08:18:01 2007 +0200
36586
36587 [ppc4xx] Add initial lwmon5 board support
36588
36589 This patch adds initial support for the Liebherr lwmon5 board euqipped
36590 with an AMCC 440EPx PowerPC.
36591
36592 Signed-off-by: Stefan Roese <sr@denx.de>
36593
36594commit 85f737376d5ff3d5f0d45a8b657686326d175307
36595Author: Stefan Roese <sr@denx.de>
36596Date: Fri Jun 15 07:39:43 2007 +0200
36597
36598 [ppc4xx] Extend 44x GPIO setup with default output state
36599
36600 The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
36601 is extended with the default GPIO output state (level).
36602
36603 Signed-off-by: Stefan Roese <sr@denx.de>
36604
36605commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
36606Author: Stefan Roese <sr@denx.de>
36607Date: Thu Jun 14 11:14:32 2007 +0200
36608
36609 [ppc4xx] Extend program_tlb() with virtual & physical addresses
36610
36611 Now program_tlb() allows to program a TLB (or multiple) with
36612 different virtual and physical addresses. With this change, now one
36613 physical region (e.g. SDRAM) can be mapped 2 times, once with caches
36614 diabled and once with caches enabled.
36615
36616 Signed-off-by: Stefan Roese <sr@denx.de>
36617
36618commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
36619Author: Detlev Zundel <dzu@denx.de>
36620Date: Wed May 23 19:02:41 2007 +0200
36621
36622 Change 'repeatable' attribute of some commands to sensible values.
36623
36624 Most prominently this changes 'erase' to be non-repeatable.
36625
36626 Signed-off-by: Detlev Zundel <dzu@denx.de>
36627
36628commit 5afb202093f6a001797db92cf695b93a70ea9ab4
36629Author: Detlev Zundel <dzu@denx.de>
36630Date: Wed May 23 18:47:48 2007 +0200
36631
36632 Fix 'run' not to continue after interrupted command
36633
36634 Signed-off-by: Detlev Zundel <dzu@denx.de>
36635
Wolfgang Denk9986bc32007-08-12 21:34:50 +020036636commit 9b7464a2c88614e1061f509c48930a3d240d1a35
36637Author: Jason Jin <Jason.jin@freescale.com>
36638Date: Mon Jun 11 15:14:24 2007 +0200
36639
36640 USB: This patch fix readl in ohci swap reg access.
36641
36642 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36643
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020036644commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
36645Author: Bartlomiej Sieka <tur@semihalf.com>
36646Date: Fri Jun 8 14:52:22 2007 +0200
36647
36648 TQM5200: Add Flat Device Tree support, update default env. accordingly.
36649
36650 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
36651 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
36652
36653commit 9045f33c023f698660a2e45d1b2194c0711abebc
36654Author: Wolfgang Denk <wd@denx.de>
36655Date: Fri Jun 8 10:24:58 2007 +0200
36656
36657 Fix config problems on SC3 board; make ide_reset_timeout work.
36658
36659commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
36660Author: Benoît Monin <bmonin@adeneo.eu>
36661Date: Fri Jun 8 09:55:24 2007 +0200
36662
36663 [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
36664
36665 Set the correct value in GPIOx_TCR when configuring the gpio
36666 with CFG_440_GPIO_TABLE.
36667
36668 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
36669 Signed-off-by: Stefan Roese <sr@denx.de>
36670
Wolfgang Denk85eb5ca2007-08-14 09:47:27 +020036671commit f539edc076cfe52bff919dd512ba8d7af0e22092
36672Author: Vadim Bendebury <vbendeb@google.com>
36673Date: Thu May 24 15:52:25 2007 -0700
36674
36675 cosmetic changes to bcm570x driver
36676
36677 This is a cosmetic only changes submission.
36678 It affects files relevant to bcm570x driver.
36679 the commands used to generate this change was
36680
36681 cd drivers
36682 Lindent -pcs -l80 bcm570x.c bcm570x_lm.h bcm570x_mm.h tigon3.c tigon3.h
36683
36684 The BMW target (the only one using this chip so far) builds cleanly, the
36685 `before and after' generated object files for drivers/bcm570x.c and
36686 drivers/tigon3.o are identical as reported by objdump -d
36687
36688 Signed-off-by: Vadim Bendebury <vbendeb@google.com>
36689 Signed-off-by: Ben Warren <bwarren@qstreams.com>
36690
Wolfgang Denk83b4cfa2007-06-20 18:14:24 +020036691commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
36692Author: Wolfgang Denk <wd@denx.de>
36693Date: Wed Jun 6 16:26:56 2007 +0200
36694
36695 Coding Style cleanup; generate new CHANGELOG file.
36696
36697 Signed-off-by: Wolfgang Denk <wd@denx.de>
36698
Wolfgang Denk9986bc32007-08-12 21:34:50 +020036699commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
36700Author: Markus Klotzbuecher <mk@denx.de>
36701Date: Wed Jun 6 11:49:44 2007 +0200
36702
36703 TRAB, USB: update trab board configuration for use of generic ohci driver
36704
36705commit dace45acd1c1357daa9322099d07c9a9e08b0024
36706Author: Markus Klotzbuecher <mk@denx.de>
36707Date: Wed Jun 6 11:49:43 2007 +0200
36708
36709 USB: ohci fixes and cleanup for ppc4xx and yosemite board.
36710
36711commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
36712Author: Markus Klotzbuecher <mk@denx.de>
36713Date: Wed Jun 6 11:49:43 2007 +0200
36714
36715 USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
36716
36717commit fc43be478f2aa37ce38acd85355038866e4162af
36718Author: Markus Klotzbuecher <mk@denx.de>
36719Date: Wed Jun 6 11:49:35 2007 +0200
36720
36721 USB/OHCI: endianness cleanup in the generic ohci driver
36722
Wolfgang Denk725671c2007-06-06 16:26:56 +020036723commit c440bfe6d6d92d66478a7e84402b31f48413617b
36724Author: Stefan Roese <sr@denx.de>
36725Date: Wed Jun 6 11:42:13 2007 +0200
36726
36727 ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
36728
36729 This patch adds NAND booting support for the AMCC Acadia eval board.
36730
36731 Please make sure to configure jumper J7 to position 2-3 when booting
36732 from NOR, and to position 1-2 when booting for NAND.
36733
36734 I also added a board command to configure the I2C bootstrap EEPROM
36735 values. Right now only 267MHz is support for booting either via NOR
36736 or NAND FLASH. Here the usage:
36737
36738 => bootstrap 267 nor ;to configure the board for 267MHz NOR booting
36739 => bootstrap 267 nand ;to configure the board for 267MHz NNAND booting
36740
36741 Signed-off-by: Stefan Roese <sr@denx.de>
36742
Wolfgang Denk9986bc32007-08-12 21:34:50 +020036743commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
36744Author: Rodolfo Giometti <giometti@linux.it>
36745Date: Wed Jun 6 10:08:14 2007 +0200
36746
36747 Files include/linux/byteorder/{big,little}_endian.h define
36748 __BIG_ENDIAN and __LITTLE_ENDIAN.
36749
36750 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
36751
36752commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
36753Author: Zhang Wei <wei.zhang@freescale.com>
36754Date: Wed Jun 6 10:08:14 2007 +0200
36755
36756 Add USB PCI-OHCI, USB keyboard and event poll support to the
36757 MPC8641HPCN board config file.
36758
36759 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36760
36761commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
36762Author: Zhang Wei <wei.zhang@freescale.com>
36763Date: Wed Jun 6 10:08:14 2007 +0200
36764
36765 USB PCI-OHCI, interrupt pipe and usb event poll support
36766
36767 This patch added USB PCI-OHCI chips support, interrupt pipe support
36768 and usb event poll support. For supporting the USB interrupt pipe, the
36769 globe urb_priv is moved to purb in ed struct. Now, we can process
36770 several urbs at one time. The interrupt pipe support codes are ported
36771 from Linux kernel 2.4.
36772
36773 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36774
36775commit fdcfaa1b02268b2899e374b35adf936c911a47eb
36776Author: Zhang Wei <wei.zhang@freescale.com>
36777Date: Wed Jun 6 10:08:13 2007 +0200
36778
36779 USB event poll support
36780
36781 This patch adds USB event poll support, which could be used in usbkbd
36782 and other usb devices driver when the asynchronous interrupt
36783 processing is supported.
36784
36785 Signed-off-by: Zhang Wei <wei.zhang@freescale.com
36786
36787commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
36788Author: Rodolfo Giometti <giometti@linux.it>
36789Date: Wed Jun 6 10:08:12 2007 +0200
36790
36791 ISP116x: delay for crappy USB keys
36792
36793 Using some (very) slow USB keys cause the USB host controller buffers
36794 are not ready to be read by the CPU so we need an extra delay before
36795 reading the USB storage data.
36796
36797 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
36798
36799commit 09444143670c9c2243cb7aba9f70b3713d33bed1
36800Author: Markus Klotzbuecher <mk@denx.de>
36801Date: Wed Jun 6 10:08:12 2007 +0200
36802
36803 Change duplicate usb_cpu_init_fail to usb_board_init_fail
36804
36805 Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
36806 this out.
36807
36808 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
36809
Wolfgang Denk725671c2007-06-06 16:26:56 +020036810commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
36811Author: Ed Swarthout <Ed.Swarthout@freescale.com>
36812Date: Tue Jun 5 12:30:52 2007 -0500
36813
36814 mpc8641 image size cleanup
36815
36816 e600 does not have a bootpg restriction.
36817 Move the version string to beginning of image at fff00000.
36818 Resetvec.S is not needed.
36819 Update flash copy instructions.
36820 Add tftpflash env variable
36821
36822 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
36823 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36824
36825commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
36826Author: Benoît Monin <bmonin@adeneo.eu>
36827Date: Mon Jun 4 08:36:05 2007 +0200
36828
36829 [PATCH] Fix ppc4xx bootstrap letter displayed on startup
36830
36831 The attached patch is mainly cosmetic, allowing u-boot to
36832 display the correct bootstrap option letter according to the
36833 datasheets.
36834
36835 The original patch was extended with 405EZ support by Stefan
36836 Roese.
36837
36838 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
36839 Signed-off-by: Stefan Roese <sr@denx.de>
36840
Wolfgang Denk9986bc32007-08-12 21:34:50 +020036841commit 5b1313fb2758ffce8b624457f777d8cc6709608d
36842Author: Nikita V. Youshchenko <yoush@debian.org>
36843Date: Wed May 23 12:45:19 2007 +0400
36844
36845 fix compilation problem for mpc8349itx CFG_RAMBOOT
36846
36847 Current include/configs/MPC8349ITX.h does contain some support for building
36848 image that will be started from memory (without putting in into flash).
36849 It could be triggered by building with TEXT_BASE set to a low value.
36850
36851 However, this support is incomplete: using of low TEXT_BASE causes
36852 defining configuration macros in inconsistent way, which later leads
36853 to compilation errors. In particular. flash support is being disabled,
36854 but then flash structures get referenced.
36855
36856 This patch fixes this, making it possible to build with low TEXT_BASE.
36857
36858 Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
36859
36860 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36861
36862commit 8a364f0970de49949d635e60accf463c6443ef8c
36863Author: Nikita V. Youshchenko <yoush@debian.org>
36864Date: Wed May 23 12:45:25 2007 +0400
36865
36866 add missing 'console' var to default mpc8349itx config
36867
36868 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36869
Wolfgang Denk725671c2007-06-06 16:26:56 +020036870commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
36871Author: Stefan Roese <sr@denx.de>
36872Date: Fri Jun 1 16:18:17 2007 +0200
36873
36874 ppc4xx: Add missing file for Bamboo NAND booting support
36875
36876 Signed-off-by: Stefan Roese <sr@denx.de>
36877
36878commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
36879Author: Stefan Roese <sr@denx.de>
36880Date: Fri Jun 1 15:58:19 2007 +0200
36881
36882 ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
36883
36884 This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
36885 suggested by AMCC it is not recommended to dynamically change the EBC
36886 speed after bootup. So we undo this change to be on the safe side.
36887
36888 Signed-off-by: Stefan Roese <sr@denx.de>
36889
36890commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
36891Author: Stefan Roese <sr@denx.de>
36892Date: Fri Jun 1 15:29:04 2007 +0200
36893
36894 ppc4xx: Update Sequoia NAND booting support with ECC
36895
36896 Signed-off-by: Stefan Roese <sr@denx.de>
36897
36898commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
36899Author: Stefan Roese <sr@denx.de>
36900Date: Fri Jun 1 15:27:11 2007 +0200
36901
36902 ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
36903
36904 This patch adds NAND booting support for the AMCC Bamboo eval board.
36905 Since the NAND-SPL boot image is limited to 4kbytes, this version
36906 only supports the onboard 64MBytes of DDR. The DIMM modules can't be
36907 supported, since the setup code for I2C DIMM autodetection and
36908 configuration is too big for this NAND bootloader.
36909
36910 Signed-off-by: Stefan Roese <sr@denx.de>
36911
36912commit 42be56f53c8b107868e6125c8524ae84293e95a7
36913Author: Stefan Roese <sr@denx.de>
36914Date: Fri Jun 1 15:23:04 2007 +0200
36915
36916 NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
36917
36918 The U-Boot NAND booting support is now extended to support ECC
36919 upon loading of the NAND U-Boot image.
36920
36921 Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
36922
36923 Signed-off-by: Stefan Roese <sr@denx.de>
36924
36925commit a471db07fbb65a841ffc9f4f112562b945230f98
36926Author: Stefan Roese <sr@denx.de>
36927Date: Fri Jun 1 15:19:29 2007 +0200
36928
36929 ppc4xx: Prepare Bamboo port for NAND booting support
36930
36931 This patch updates the "normal" Bamboo NOR booting port, so
36932 that it is compatible with the coming soon NAND booting
36933 Bamboo port.
36934
36935 It also enables the 2nd NAND flash on the Bamboo.
36936
36937 Signed-off-by: Stefan Roese <sr@denx.de>
36938
36939commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
36940Author: Stefan Roese <sr@denx.de>
36941Date: Fri Jun 1 15:16:58 2007 +0200
36942
36943 ppc4xx: Update in_be32() functions and friends to latest Linux version
36944
36945 Signed-off-by: Stefan Roese <sr@denx.de>
36946
36947commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
36948Author: Stefan Roese <sr@denx.de>
36949Date: Fri Jun 1 15:15:12 2007 +0200
36950
36951 NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
36952
36953 This patch adds hardware ECC support to the NDFC driver. It also
36954 changes the register access from using the "simple" in32/out32
36955 functions to the in_be32/out_be32 functions, which make sure
36956 that the access is correctly synced. This is the only recommended
36957 access to SoC registers in the current Linux kernel.
36958
36959 Signed-off-by: Stefan Roese <sr@denx.de>
36960
36961commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
36962Author: Stefan Roese <sr@denx.de>
36963Date: Fri Jun 1 15:12:15 2007 +0200
36964
36965 NAND: Update nand_ecc.c to latest Linux version
36966
36967 This patch updates the nand_ecc code to the latest Linux version.
36968 The main reason for this is the more compact code. This makes
36969 it possible to include the ECC code into the NAND bootloader
36970 image (NAND_SPL) for PPC4xx.
36971
36972 Signed-off-by: Stefan Roese <sr@denx.de>
36973
36974commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
36975Author: Stefan Roese <sr@denx.de>
36976Date: Fri Jun 1 15:09:50 2007 +0200
36977
36978 ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
36979
36980 Signed-off-by: Stefan Roese <sr@denx.de>
36981
36982commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
36983Author: Stefan Roese <sr@denx.de>
36984Date: Fri Jun 1 13:45:24 2007 +0200
36985
36986 ppc4xx: Change Luan config file to support ECC
36987
36988 With the updated 44x DDR2 driver the Luan board now supports
36989 ECC generation and checking.
36990
36991 Signed-off-by: Stefan Roese <sr@denx.de>
36992
36993commit 7187db73491c8de0fb56efb5e5134ba5ec443089
36994Author: Stefan Roese <sr@denx.de>
36995Date: Fri Jun 1 13:45:00 2007 +0200
36996
36997 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
36998
36999 Add config option for 180 degree advance clock control as needed
37000 for the AMCC Luan eval board.
37001
37002 Signed-off-by: Stefan Roese <sr@denx.de>
37003
37004commit ee1529838abbfaa35f14e3ffbeaaba693159475f
37005Author: Wolfgang Denk <wd@denx.de>
37006Date: Thu May 31 17:20:09 2007 +0200
37007
37008 Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
37009
37010 Signed-off-by: Wolfgang Denk <wd@denx.de>
37011
37012commit 7049288fb1f16f1b317140226cdebd07bd416395
37013Author: Bartlomiej Sieka <tur@semihalf.com>
37014Date: Sun May 27 17:26:46 2007 +0200
37015
37016 Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
37017
37018 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37019
37020commit 4520fd4d2c450da49637216aa0e53739b61c60ac
37021Author: Bartlomiej Sieka <tur@semihalf.com>
37022Date: Sun May 27 17:06:36 2007 +0200
37023
37024 Motion-PRO: Add support for redundant environment.
37025
37026 Enable redundant environment, add a MTD partition for it; also add env.
37027 variable command for passing MTD partitions to the kernel command line.
37028
37029 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37030 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37031
37032commit a26eabeec31746f06d309103690892805696e344
37033Author: Bartlomiej Sieka <tur@semihalf.com>
37034Date: Sun May 27 17:05:11 2007 +0200
37035
37036 Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
37037
37038 Allow passing longer command line to the kernel - useful especially
37039 for passing MTD partition layout.
37040
37041 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37042 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37043
37044commit 9160b96f71483a116de81c68985e8ee306d36764
37045Author: Bartlomiej Sieka <tur@semihalf.com>
37046Date: Sun May 27 17:04:18 2007 +0200
37047
37048 Fix: Add missing NULL termination in strings expanded by macros parser.
37049
37050 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37051 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37052
37053commit 630ec84aef7228fc1dbfb38dec78541403a786cd
37054Author: Bartlomiej Sieka <tur@semihalf.com>
37055Date: Sun May 27 17:03:37 2007 +0200
37056
37057 Motion-PRO: Update EEPROM's page write bits and write delay.
37058
37059 Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
37060 have a page write capability of two bytes", and "This device offers fast (1ms)
37061 byte write". Add 3ms of extra delay.
37062
37063 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37064 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37065
37066commit c00125e07c1ebc125bab40e1e18bceed8be0c162
37067Author: Bartlomiej Sieka <tur@semihalf.com>
37068Date: Sun May 27 16:58:45 2007 +0200
37069
37070 MPC5XXX, Motion-PRO: Fix PHY initialization problem.
37071
37072 After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
37073 networking does not function. This commit switches PHY to TX mode by clearing
37074 the FX_SEL bit of Mode Control Register. It also reverses commit
37075 008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
37076
37077 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
37078 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37079
37080commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
37081Author: Bartlomiej Sieka <tur@semihalf.com>
37082Date: Sun May 27 16:57:15 2007 +0200
37083
37084 Motion-PRO: Add support for the temperature sensor.
37085
37086 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37087 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37088
37089commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
37090Author: Bartlomiej Sieka <tur@semihalf.com>
37091Date: Sun May 27 16:55:23 2007 +0200
37092
37093 Motion-PRO: Add displaying of CPLD revision information during boot.
37094
37095 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
37096 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37097
37098commit c99512d6bd3973f01ca2fc4896d829b46e68f150
37099Author: Bartlomiej Sieka <tur@semihalf.com>
37100Date: Sun May 27 16:53:43 2007 +0200
37101
37102 MPC5xxx: Change names of defines related to IPB and PCI clocks.
37103
37104 Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
37105 them does not cause PCI or IPB clocks to run at the specified speed.
37106 Instead, they configure divisors used to calculate said clocks. This
37107 patch renames the defines according to their real function.
37108
37109 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
37110 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37111
37112commit a11c0b85dc3664bb3c1e781137118730c8f619ab
37113Author: Bartlomiej Sieka <tur@semihalf.com>
37114Date: Sun May 27 16:51:48 2007 +0200
37115
37116 Motion-PRO: Add LED support.
37117
37118 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
37119 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
37120 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
37121
Wolfgang Denka5a38f42007-08-16 11:51:04 +020037122commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
37123Author: Ulf Samuelsson <ulf@atmel.com>
37124Date: Thu May 24 12:12:47 2007 +0200
37125
37126 [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
37127
37128 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
37129 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
37130 Signed-off-by: Stefan Roese <sr@denx.de>
37131
Wolfgang Denk725671c2007-06-06 16:26:56 +020037132commit d756894722c888d09a9fa1df8323753772d3dcce
37133Author: Stefan Roese <sr@denx.de>
37134Date: Thu May 24 09:49:00 2007 +0200
37135
37136 ppc4xx: Fix small 405EZ OCM initilization bug in start.S
37137
37138 As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
37139 fixes a small bug in the 405EZ OCM initialization. Thanks for
37140 spotting.
37141
37142 Signed-off-by: Stefan Roese <sr@denx.de>
37143
37144commit 5d4a179013d59a76446462e1eb0a969fba63eb81
37145Author: Stefan Roese <sr@denx.de>
37146Date: Thu May 24 08:22:09 2007 +0200
37147
37148 ppc4xx: Update AMCC Acadia support for board revision 1.1
37149
37150 This patch updates the Acadia (405EZ) support for the new 1.1 board
37151 revision. It also adds support for NAND FLASH via the 4xx NDFC.
37152
37153 Please note that the jumper J7 must be in position 2-3 for this
37154 NAND support. Position 1-2 is for NAND booting only. NAND booting
37155 support will follow later.
37156
37157 Signed-off-by: Stefan Roese <sr@denx.de>
37158
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020037159commit 822d55365bb557e084d0e33625a6dedcc866110b
37160Author: Jon Loeliger <jdl@freescale.com>
37161Date: Wed May 23 14:09:46 2007 -0500
37162
37163 Add LIST_86xx MAKEALL target for PowerPC builds.
37164
37165 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37166
Wolfgang Denk725671c2007-06-06 16:26:56 +020037167commit 9f0077abd69f7a7c756a915b961037302be3e6f2
37168Author: Stefan Roese <sr@denx.de>
37169Date: Tue May 22 12:48:09 2007 +0200
37170
37171 ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
37172
37173 Signed-off-by: Stefan Roese <sr@denx.de>
37174
37175commit 6f3dfc139a838b0841c151efe00ad47db2366e79
37176Author: Stefan Roese <sr@denx.de>
37177Date: Tue May 22 12:46:10 2007 +0200
37178
37179 ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
37180
37181 This patch adds support for 405 PPC's to the 4xx NAND driver
37182 ndfc.c. This is in preparation for the new AMCC 405EZ.
37183
37184 Signed-off-by: Stefan Roese <sr@denx.de>
37185
37186commit 10603d76767426be803dadd4fb688b97eb69481c
37187Author: Stefan Roese <sr@denx.de>
37188Date: Mon May 21 07:41:22 2007 +0200
37189
37190 ppc4xx: Fix problem in 405EZ OCM initialization
37191
37192 As spotted by Bruce Adler this patch fixes an initialization problem
37193 for the 405EZ OCM.
37194
37195 Signed-off-by: Stefan Roese <sr@denx.de>
37196
37197commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
37198Author: Peter Pearse <peter.pearse@arm.com>
37199Date: Fri May 18 16:47:03 2007 +0100
37200
37201 Reduce line lengths to 80 characters max.
37202
37203commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
37204Author: Peter Pearse <peter.pearse@arm.com>
37205Date: Fri May 18 14:34:07 2007 +0100
37206
37207 Makefile permissions
37208
37209commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
37210Author: Peter Pearse <peter.pearse@arm.com>
37211Date: Fri May 18 14:33:11 2007 +0100
37212
37213 Makefile permissions
37214
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020037215commit 255a3577c848706441daee0174543efe205a77f8
37216Author: Kim Phillips <kim.phillips@freescale.com>
37217Date: Wed May 16 16:52:19 2007 -0500
37218
37219 Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
37220
37221 For all practical u-boot purposes, TSECs don't differ throughout the
37222 mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
37223
37224 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37225
Wolfgang Denk725671c2007-06-06 16:26:56 +020037226commit 70124c2602ae2d4c5d3dba05b482d91548242de8
37227Author: Stefano Babic <sbabic@denx.de>
37228Date: Wed May 16 14:49:12 2007 +0200
37229
37230 Fix compile problem cause my Microblaze merge
37231
37232 Signed-off-by: Stefano Babic <sbabic@denx.de>
37233
37234commit ada4697d0230d6da552867777f98a67ec3ba2579
37235Author: Jeffrey Mann <mannj@embeddedplanet.com>
37236Date: Wed May 16 13:23:10 2007 +0200
37237
37238 [PATCH] Run new sequoia boards with an EBC speed of 83MHz
37239
37240 Because the Sequoia board does not boot with an EBC faster than 66MHz,
37241 the clock divider are changed after the initial boot process.
37242
37243 This allows for maximum clocking speeds to be achieved on newer boards.
37244 Sequoia boards with 666.66 MHz processors require that the EBC divider
37245 be set to 3 in order to start the initial boot process at a slower EBC
37246 speed. After the initial boot process, the divider can be set back to 2,
37247 which will cause the boards to run at 83.333MHz. This is backward
37248 compatible with boards with 533.33 MHz processors, as these boards will
37249 already be set with an EBC divider of 2.
37250
37251 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
37252
37253commit a7676ea7732f3c596805079fed7e5c9fac652cfc
37254Author: Wolfgang Denk <wd@denx.de>
37255Date: Wed May 16 01:16:53 2007 +0200
37256
37257 Minor Coding Style cleanup, update CHANGELOG.
37258
37259 Signed-off-by: Wolfgang Denk <wd@denx.de>
37260
Wolfgang Denka7676ea2007-05-16 01:16:53 +020037261commit d62f64cc23a940eafe712c776b3249e4160753d1
37262Author: Wolfgang Denk <wd@denx.de>
37263Date: Wed May 16 00:13:33 2007 +0200
37264
37265 Coding Style Cleanup, new CHANGELOG
37266
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020037267commit 3162eb836903c8b247fdc7470dd39bfa6996f495
37268Author: Wolfgang Denk <wd@denx.de>
37269Date: Tue May 15 23:38:05 2007 +0200
37270
37271 Minor coding style cleanup.
37272
37273commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
37274Author: mushtaq khan <mushtaq_k@procsys.com>
37275Date: Fri Apr 20 14:23:02 2007 +0530
37276
37277 Add driver for S-ATA-controller on Intel processors with South
37278 Bridge, ICH-5, ICH-6 and ICH-7.
37279
37280 Implementation:
37281
37282 1. Code is divided in to two files. All functions, which are
37283 controller specific are kept in "drivers/ata_piix.c" file and
37284 functions, which are not controller specific, are kept in
37285 "common/cmd_sata.c" file.
37286
37287 2. Reading and Writing from the S-ATA drive is done using PIO method.
37288
37289 3. Driver can be configured for 48-bit addressing by defining macro
37290 CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
37291 addressing.
37292
37293 4. S-ATA read function is hooked to the File system, commands like
37294 ext2ls and ext2load file can be used. This has been tested.
37295
37296 5. U-Boot command "SATA_init" is added, which initializes the S-ATA
37297 controller and identifies the S-ATA drives connected to it.
37298
37299 6. U-Boot command "sata" is added, which is used to read/write, print
37300 partition table and get info about the drives present. This I have
37301 implemented in same way as "ide" command is implemented in U-Boot.
37302
37303 7. This driver is for S-ATA in native mode.
37304
37305 8. This driver does not support the Native command queuing and
37306 Hot-plugging.
37307
37308 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
37309
37310commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
37311Author: mushtaq khan <mushtaq_k@procsys.com>
37312Date: Mon Apr 30 15:57:22 2007 +0530
37313
37314 Fixes bug clearing the bss section for i386
37315
37316 Hi,
37317 There is a bug in the code of clearing the bss section for processor
37318 i386.(File: cpu/i386/start.S)
37319 In the code, bss_start addr (starting addr of bss section) is put into
37320 the register %eax, but the code which clears the bss section refers to
37321 the addr pointed by %edi.
37322
37323 This patch fixes this bug by putting bss_start into %edi register.
37324
37325 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
37326
37327commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
37328Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
37329Date: Mon Apr 30 16:47:28 2007 -0500
37330
37331 Add support for BCM5464 Quad Phy
37332
37333 Added support for Broadcom's BCM5464 Quad Phy
37334
37335 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
37336
37337commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
37338Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
37339Date: Wed May 9 08:10:57 2007 +0800
37340
37341 Search the exception table with linear algorithm
37342
37343 Search the exception table with linear algorithm instead of
37344 bisecting algorithm.
37345 Because the exception table might be unsorted.
37346
37347 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
37348
37349commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
37350Author: Aubrey.Li <aubrey.adi@gmail.com>
37351Date: Mon May 14 11:47:35 2007 +0800
37352
37353 Fix compilation issues on MACOSX
37354
37355 Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
37356 Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
37357
37358commit 56fd7162985c412317bbf763a225fba23c64fd31
37359Author: Stephen Williams <steve@icarus.com>
37360Date: Tue May 15 07:55:42 2007 -0700
37361
37362 Fix for compile of JSE target
37363
37364 The attached patch fixes the compile of the JSE board in the
37365 denx git as of 14 may 2007. It is an extremely simple patch,
37366 it just adds the missing define of CFG_SYSTEMACE_WIDTH.
37367
37368 Fix to compile JSE against 20070514 git of u-boot
37369
Wolfgang Denk61fb15c52007-12-27 01:52:50 +010037370commit 69df3c4da0c93017cceb25a366e794570bd0ed98
37371Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
37372Date: Sun May 13 21:01:03 2007 +0900
37373
37374 sh: MS7750SE support.
37375
37376 This adds support for the Hitachi MS7750SE.
37377
37378 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37379
37380commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
37381Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
37382Date: Sun May 13 20:58:00 2007 +0900
37383
37384 sh: First support code of SuperH.
37385
37386 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37387
Wolfgang Denk725671c2007-06-06 16:26:56 +020037388commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
37389Author: Stefan Roese <sr@denx.de>
37390Date: Fri May 11 12:01:49 2007 +0200
37391
37392 ppc4xx: Add mtcpr/mfcpr access macros
37393
37394 Signed-off-by: Stefan Roese <sr@denx.de>
37395
37396commit 343c48bd84606c4025c8a7c7263fda465d6e284c
37397Author: Stefan Roese <sr@denx.de>
37398Date: Fri May 11 12:01:06 2007 +0200
37399
37400 ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
37401
37402 Signed-off-by: Stefan Roese <sr@denx.de>
37403
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020037404commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
37405Author: Piotr Kruszynski <ppk@semihalf.com>
37406Date: Thu May 10 16:55:52 2007 +0200
37407
37408 [Motion-PRO] Add MTD and JFFS2 support, also add default partition
37409 definition.
37410
Wolfgang Denk725671c2007-06-06 16:26:56 +020037411commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
37412Author: Peter Pearse <peter.pearse@arm.com>
37413Date: Wed May 9 11:42:44 2007 +0100
37414
37415 Add the board directory for SMN42
37416
37417commit 160131bf965785419626df6c388729fe0b597992
37418Author: Peter Pearse <peter.pearse@arm.com>
37419Date: Wed May 9 11:41:58 2007 +0100
37420
37421 Add the files for the SMN42 board
37422
37423commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
37424Author: Peter Pearse <peter.pearse@arm.com>
37425Date: Wed May 9 11:40:34 2007 +0100
37426
37427 Remove the deleted files for the SMN42 patch
37428
37429commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
37430Author: Peter Pearse <peter.pearse@arm.com>
37431Date: Wed May 9 11:37:56 2007 +0100
37432
37433 New board SMN42 branch
37434
37435commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
37436Author: Peter Pearse <peter.pearse@arm.com>
37437Date: Wed May 9 10:24:38 2007 +0100
37438
37439 Makefile permissions
37440
37441commit b84289b595731e8851df46e893845cc1322c9b9b
37442Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37443Date: Tue May 8 14:17:07 2007 -0500
37444
37445 8641hpcn: Fix Makefile after moving pixis to board/freescale.
37446
37447 The OBJTREE != SRCTREE build scenario was broken.
37448 This fixes it.
37449
37450 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37451 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37452
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020037453commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
37454Author: Michal Simek <monstr@monstr.eu>
37455Date: Tue May 8 15:57:43 2007 +0200
37456
37457 add: reading special purpose registers
37458
37459commit 1a50f164beb065f360fbddb76029607d6b099698
37460Author: Michal Simek <monstr@monstr.eu>
37461Date: Tue May 8 14:52:52 2007 +0200
37462
37463 add: Microblaze V5 exception handling
37464
37465commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
37466Author: Michal Simek <monstr@monstr.eu>
37467Date: Tue May 8 14:39:11 2007 +0200
37468
37469 add: FSL control read and write
37470
37471commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
37472Author: Piotr Kruszynski <ppk@semihalf.com>
37473Date: Tue May 8 13:05:44 2007 +0200
37474
37475 [Motion-PRO] Add support for I2C, EEPROM and RTC.
37476
37477commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
37478Author: Bartlomiej Sieka <tur@semihalf.com>
37479Date: Tue May 8 10:23:56 2007 +0200
37480
37481 [Motion-PRO] Add ATA support. Add CF-booting commands to the default
37482 environment.
37483
37484commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
37485Author: Bartlomiej Sieka <tur@semihalf.com>
37486Date: Tue May 8 09:39:12 2007 +0200
37487
37488 [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
37489 eliminates networking problems in Linux (timeouts).
37490
37491commit 1f1369c34b629be94702684d41d3fddf0f6193e7
37492Author: Bartlomiej Sieka <tur@semihalf.com>
37493Date: Tue May 8 09:21:57 2007 +0200
37494
37495 [Motion-PRO] Enable Flat Device Tree support and modify default environment
37496 to allow booting of FDT-expecting kernels.
37497
37498commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
37499Author: Michal Simek <monstr@monstr.eu>
37500Date: Mon May 7 23:58:31 2007 +0200
37501
37502 new: USE_MSR_INTR support
37503
37504commit 008861a2f3ef2c062744d733787c7e530a1b8761
37505Author: Bartlomiej Sieka <tur@semihalf.com>
37506Date: Mon May 7 22:36:15 2007 +0200
37507
37508 [MPC5xxx] There are networking problems on the Motion-PRO board with
37509 current PHY initalization code (tftp timeouts all the time). This commit
37510 temporarily disables PHY initalization sequence to make the networking
37511 operational, until a fix is found.
37512
37513commit abca901869c3760b6c5fecb825db6c1d91a78a93
37514Author: Wolfgang Denk <wd@denx.de>
37515Date: Mon May 7 22:10:36 2007 +0200
37516
37517 Get rid of duplicated file (see include/configs/sbc8560.h instead)
37518
37519 Signed-off-by: Wolfgang Denk <wd@denx.de>
37520
37521commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
37522Author: Wolfgang Denk <wd@denx.de>
37523Date: Mon May 7 22:07:08 2007 +0200
37524
37525 Get rid of duplicated file (see doc/README.SBC8560 instead)
37526
37527 Signed-off-by: Wolfgang Denk <wd@denx.de>
37528
37529commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
37530Author: Michal Simek <monstr@monstr.eu>
37531Date: Mon May 7 19:43:10 2007 +0200
37532
37533 fix: read and write MSR - repair number of parameters
37534
Wolfgang Denk725671c2007-06-06 16:26:56 +020037535commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
37536Author: Jeffrey Mann <mannj@embeddedplanet.com>
37537Date: Mon May 7 19:42:49 2007 +0200
37538
37539 [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
37540
37541 A '3' got cut off in the formatting of the last patch to automatically
37542 change the clock speed of the system clock on sequoia board.
37543
37544 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
37545 Signed-off-by: Stefan Roese <sr@denx.de>
37546
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020037547commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
37548Author: Michal Simek <monstr@monstr.eu>
37549Date: Mon May 7 19:33:51 2007 +0200
37550
37551 new: fsl interrupt support
37552 FSL_Has_data is connected to INTC.
37553
37554commit 792032baa7d625e34c981ab6df521911bd8dc861
37555Author: Michal Simek <monstr@monstr.eu>
37556Date: Mon May 7 19:30:12 2007 +0200
37557
37558 fix: interrupt handler
37559 remove asm code
37560
37561commit f3f001a341ef185d0f13841be5b5dc3395aacc31
37562Author: Michal Simek <monstr@monstr.eu>
37563Date: Mon May 7 19:25:08 2007 +0200
37564
37565 fix: remove asm code
37566
37567commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
37568Author: Michal Simek <monstr@monstr.eu>
37569Date: Mon May 7 19:12:43 2007 +0200
37570
37571 fix: clean interrupt
37572
37573commit 42efed6130c8fcf7da881385b5427065d2801757
37574Author: Michal Simek <monstr@monstr.eu>
37575Date: Mon May 7 17:22:25 2007 +0200
37576
37577 fix: interrupt handler for multiple sources
37578
37579commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
37580Author: Michal Simek <monstr@monstr.eu>
37581Date: Mon May 7 17:11:09 2007 +0200
37582
37583 new: add writing to msr register
37584
Wolfgang Denk9986bc32007-08-12 21:34:50 +020037585commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
37586Author: Markus Klotzbuecher <mk@denx.de>
37587Date: Mon May 7 16:43:56 2007 +0200
37588
37589 Fix an ancient CHANGELOG conflict
37590
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020037591commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
37592Author: Timur Tabi <timur@freescale.com>
37593Date: Sat May 5 08:12:30 2007 +0200
37594
37595 5xxx: write MAC address to mac-address and local-mac-address
37596
37597 Some device trees have a mac-address property, some have local-mac-address,
37598 and some have both. To support all of these device trees, ftp_cpu_setup()
37599 should write the MAC address to mac-address and local-mac-address, if they
37600 exist.
37601
37602 Signed-off-by: Timur Tabi <timur@freescale.com>
37603 Acked-by: Grant Likely <grant.likely@secretlab.ca>
37604
37605commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
37606Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
37607Date: Sun Apr 29 14:01:54 2007 +0200
37608
37609 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
37610
37611 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
37612 message. Use PVR to distinguish between the two variants, and print proper CPU
37613 information.
37614
37615 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
37616 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37617 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
37618
37619commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
37620Author: Ladislav Michl <ladis@linux-mips.org>
37621Date: Wed Apr 25 16:01:26 2007 +0200
37622
37623 [PATCH] simplify silent console
37624
37625 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
37626 Acked-by: Stefan Roese <sr@denx.de>
37627
37628commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
37629Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
37630Date: Mon Apr 23 15:30:39 2007 +0200
37631
37632 [PATCH] Avoid assigning PCI resources from zero address
37633
37634 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
37635 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
37636 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
37637 sentence about "0" being considered an invalid address) -- so, use a reasonable
37638 starting value of 0x1000 (that's what the most Linux archs are using).
37639
37640 Alternatively, one might have fixed the calls to pci_set_region() individually
37641 (some code even seems to have taken care of this issue) but that would have
37642 been a lot more work. :-)
37643
37644 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
37645 Acked-by: Stefan Roese <sr@denx.de>
37646
37647commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
37648Author: Jeffrey Mann <mannj@embeddedplanet.com>
37649Date: Mon Apr 23 14:00:11 2007 +0200
37650
37651 [patch] setenv(...) can delete environmentalvariables
37652
37653 update setenv() function so that entering a NULL value for the
37654 variable's value will delete the environmental variable
37655
37656 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
37657 Acked-by: Stefan Roese <sr@denx.de>
37658
37659commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
37660Author: Mike Frysinger <vapier@gentoo.org>
37661Date: Mon Apr 23 13:54:24 2007 +0200
37662
37663 [patch] use unsigned char in smc91111 driver for mac
37664
37665 the v_mac variable in the smc91111 driver is declared as a signed char ...
37666 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
37667 because when it gets printed out, you get a display like:
37668 0xFFFFFFE0 and that's no good
37669
37670 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
37671
37672commit ffc50f9bb194343c6303517a517708457a5eb6b8
37673Author: Michal Simek <monstr@monstr.eu>
37674Date: Sat May 5 18:54:42 2007 +0200
37675
37676 new: FSL and MSR support #2
37677
37678commit f7e2e0eb0668136305f78bb9c21be79b48a34247
37679Author: Michal Simek <monstr@monstr.eu>
37680Date: Sat May 5 18:27:16 2007 +0200
37681
37682 new: FSL and MSR support
37683
37684commit 2f15278c2eb911c668b4fe562130b78cf554d139
37685Author: Wolfgang Denk <wd@denx.de>
37686Date: Sat May 5 18:23:11 2007 +0200
37687
37688 Coding stylke cleanup; update CHANGELOG.
37689
37690 Signed-off-by: Wolfgang Denk <wd@denx.de>
37691
Wolfgang Denk2f152782007-05-05 18:23:11 +020037692commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
37693Author: Wolfgang Denk <wd@denx.de>
37694Date: Sat May 5 18:05:02 2007 +0200
37695
37696 Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
37697
37698 Signed-off-by: Wolfgang Denk <wd@denx.de>
37699
Wolfgang Denk885ec892007-05-05 18:05:02 +020037700commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
37701Author: Wolfgang Denk <wd@denx.de>
37702Date: Sat May 5 17:15:50 2007 +0200
37703
37704 Make "file" command happy with some config.mk files; update CHANGELOG
37705
Wolfgang Denk2f152782007-05-05 18:23:11 +020037706commit e3b8c78bc2489c27ae020986ef0eaca684866cef
37707Author: Jeffrey Mann <mannj@embeddedplanet.com>
37708Date: Sat May 5 08:32:14 2007 +0200
37709
37710 ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
37711
37712 The AMCC Secquoia board has been changed in a new revision from using a
37713 33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
37714 indicates the difference. This patch reads that bit and uses the correct
37715 clock speed for the board. This code is backward compatable will all
37716 prior boards. All prior boards will be read as 33.000.
37717
37718 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
37719 Signed-off-by: Stefan Roese <sr@denx.de>
37720
37721commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
37722Author: Stefan Roese <sr@denx.de>
37723Date: Sat May 5 08:29:01 2007 +0200
37724
37725 ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
37726
37727 Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
37728 for the 4k NAND boot image so define bus_frequency to 133MHz here
37729 which is save for the refresh counter setup.
37730
37731 Signed-off-by: Stefan Roese <sr@denx.de>
37732
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020037733commit 2f550ab976405300f5b07bf2890800840d0aa05f
37734Author: Timur Tabi <timur@freescale.com>
37735Date: Sat May 5 08:12:30 2007 +0200
37736
37737 5xxx: write MAC address to mac-address and local-mac-address
37738
37739 Some device trees have a mac-address property, some have local-mac-address,
37740 and some have both. To support all of these device trees, ftp_cpu_setup()
37741 should write the MAC address to mac-address and local-mac-address, if they
37742 exist.
37743
37744 Signed-off-by: Timur Tabi <timur@freescale.com>
37745 Acked-by: Grant Likely <grant.likely@secretlab.ca>
37746
Wolfgang Denk54996452007-05-05 17:15:50 +020037747commit a79886590593ba1d667c840caa4940c61639f18f
37748Author: Thomas Knobloch <knobloch@siemens.com>
37749Date: Sat May 5 07:04:42 2007 +0200
37750
37751 NAND: Wrong calculation of page number in nand_block_bad()
37752
37753 In case that there is no memory based bad block table available the
37754 function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
37755 nand_block_bad() directly. When parameter 'getchip' is set to zero,
37756 nand_block_bad() will not right shift the offset to calculate the
37757 correct page number.
37758
37759 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
37760 Signed-off-by: Stefan Roese <sr@denx.de>
37761
37762commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
37763Author: Wolfgang Denk <wd@denx.de>
37764Date: Fri May 4 10:02:33 2007 +0200
37765
37766 Fix initrd length corruption in bootm command.
37767
37768 When using FDT Images, the length of an inital ramdisk was
37769 overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
37770
37771 Patches by Timur Tabi & Johns Daniel.
37772
37773 Signed-off-by: Wolfgang Denk <wd@denx.de>
37774
Wolfgang Denka7676ea2007-05-16 01:16:53 +020037775commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
37776Author: Kim Phillips <kim.phillips@freescale.com>
37777Date: Thu May 3 19:43:52 2007 -0500
37778
37779 mpc83xx: fix trivial error in MAKEALL
37780
37781 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37782
Wolfgang Denk54996452007-05-05 17:15:50 +020037783commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
37784Author: Wolfgang Denk <wd@denx.de>
37785Date: Thu May 3 16:34:41 2007 +0200
37786
37787 Update board configuration for STX GP3SSA board:
37788
37789 Enable hush shell, environment in flash rather in EEPROM,
37790 more user-friendly default environment, etc.
37791 The simple EEPROM environment can be selected easily in the board
37792 config file.
37793
37794 Signed-off-by: Wolfgang Denk <wd@denx.de>
37795
Wolfgang Denkc64a89d2007-05-03 16:34:41 +020037796commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
37797Author: Wolfgang Denk <wd@denx.de>
37798Date: Tue Apr 24 14:37:49 2007 +0200
37799
37800 Cleanup STX GP3SSA code; fix build and compile problems.
37801
37802commit 35171dc04e028ecacc23ad916a66295472555dbf
37803Author: Dan Malek <dan@embeddedalley.com>
37804Date: Fri Jan 5 09:15:34 2007 +0100
37805
37806 Add support for STX GP3SSA (stxssa) Board
37807
37808 Signed-off-by Dan Malek, <dan@embeddedalley.com>
37809
Wolfgang Denkbe5d72d2007-08-13 21:57:53 +020037810commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
37811Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
37812Date: Wed May 2 13:31:53 2007 +0200
37813
37814 macb: Don't restart autonegotiation if we already have link
37815
37816 Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
37817 link is already up.
37818
37819 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
37820
37821commit 04fcb5d38bc90779cd9a710d60702075986f0e29
37822Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
37823Date: Wed May 2 13:22:38 2007 +0200
37824
37825 macb: Introduce a few barriers when dealing with DMA descriptors
37826
37827 There were a few theoretical possibilities that the compiler might
37828 optimize away DMA descriptor reads and/or writes and thus cause
37829 synchronization problems with the hardware. Insert barriers where
37830 we depend on reads/writes actually hitting memory.
37831
37832 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
37833
Wolfgang Denk885ec892007-05-05 18:05:02 +020037834commit ffa621a0d12a1ccd81c936c567f8917a213787a8
37835Author: Andy Fleming <afleming@freescale.com>
37836Date: Sat Feb 24 01:08:13 2007 -0600
37837
37838 Cleaned up some 85xx PCI bugs
37839
37840 * Cleaned up the CDS PCI Config Tables and added NULL entries to
37841 the end
37842 * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
37843 * Fixed 85xx PCI code to assign powar region sizes based on the
37844 config values (rather than hard-coding them)
37845 * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
37846
37847 Signed-off-by: Andy Fleming <afleming@freescale.com>
37848
37849commit 6743105988fc44d5b0d30388c790607835aae7a6
37850Author: Andy Fleming <afleming@freescale.com>
37851Date: Mon Apr 23 02:54:25 2007 -0500
37852
37853 Add support for the 8568 MDS board
37854
37855 This included some changes to common files:
37856 * Add 8568 processor SVR to various places
37857 * Add support for setting the qe bus-frequency value in the dts
37858 * Add the 8568MDS target to the Makefile
37859
37860 Signed-off-by: Andy Fleming <afleming@freescale.com>
37861
37862commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
37863Author: David Updegraff <dave@cray.com>
37864Date: Fri Apr 20 14:34:48 2007 -0500
37865
37866 Add support for treating unknown PHYs as generic PHYs.
37867
37868 When bringing up u-boot on new boards, PHY support sometimes gets
37869 neglected. Most PHYs don't really need any special support,
37870 though. By adding a generic entry that always matches if nothing
37871 else does, we can provide support for "unsupported" PHYs for the
37872 tsec.
37873
37874 The generic PHY driver supports most PHYs, including gigabit.
37875
37876 Signed-off-by: David Updegraff <dave@cray.com>
37877 Signed-off-by: Andy Fleming <afleming@freescale.com>
37878
Wolfgang Denk54996452007-05-05 17:15:50 +020037879commit a75af9bfd8fff0499efdbb90601cec5a2afef117
37880Author: James Yang <James.Yang@freescale.com>
37881Date: Wed Feb 7 15:28:04 2007 -0600
37882
37883 Conditionalize 8641 Rev1.0 MCM workarounds
37884
37885 Signed-off-by: James Yang <James.Yang@freescale.com>
37886 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37887
Wolfgang Denka7676ea2007-05-16 01:16:53 +020037888commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
37889Author: Timur Tabi <timur@freescale.com>
37890Date: Mon Apr 30 13:59:50 2007 -0500
37891
37892 Fix memory initialization on MPC8349E-mITX
37893
37894 Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
37895 This allows ddr->sdram_clk_cntl to be properly initialized. This is necessary
37896 on some ITX boards, notably those with a revision 3.1 CPU.
37897
37898 Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
37899 ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
37900
37901 Signed-off-by: Timur Tabi <timur@freescale.com>
37902 Acked-by: Michael Benedict <MBenedict@twacs.com>
37903 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37904
37905commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
37906Author: Kim Phillips <kim.phillips@freescale.com>
37907Date: Mon Apr 30 15:26:21 2007 -0500
37908
37909 mpc83xx: replace elaborate boottime verbosity with 'clocks' command
37910
37911 and fix CPU: to align with Board: display text.
37912
37913 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
37914
Wolfgang Denk54996452007-05-05 17:15:50 +020037915commit c1ab82669d9525998c34e802a12cad662723f22a
37916Author: James Yang <James.Yang@freescale.com>
37917Date: Fri Mar 16 13:02:53 2007 -0500
37918
37919 Rewrote picos_to_clk() to avoid rounding errors.
37920 Clarified that conversion is to DRAM clocks rather than platform clocks.
37921 Made function static to spd_sdram.c.
37922
37923 Signed-off-by: James Yang <James.Yang@freescale.com>
37924 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37925
Wolfgang Denk2f152782007-05-05 18:23:11 +020037926commit 8b39501d28754e72726ce7fb02310e56dbdf116a
37927Author: Stefan Roese <sr@denx.de>
37928Date: Sun Apr 29 14:13:01 2007 +0200
37929
37930 ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
37931
37932 Signed-off-by: Stefan Roese <sr@denx.de>
37933
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020037934commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
37935Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
37936Date: Sun Apr 29 14:01:54 2007 +0200
37937
37938 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
37939
37940 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
37941 message. Use PVR to distinguish between the two variants, and print proper CPU
37942 information.
37943
37944 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
37945 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37946 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
37947
Wolfgang Denka7676ea2007-05-16 01:16:53 +020037948commit 5c5d3242935cf3543af01142627494434834cf98
37949Author: Kim Phillips <kim.phillips@freescale.com>
37950Date: Wed Apr 25 12:34:38 2007 -0500
37951
37952 mpc83xx: minor fixups for 8313rdb introduction
37953
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020037954commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
37955Author: Ladislav Michl <ladis@linux-mips.org>
37956Date: Wed Apr 25 16:01:26 2007 +0200
37957
37958 [PATCH] simplify silent console
37959
37960 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
37961 Acked-by: Stefan Roese <sr@denx.de>
37962
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020037963commit 144876a380f5756f57412caf74c1d6dc201dd796
37964Author: Michal Simek <monstr@monstr.eu>
37965Date: Tue Apr 24 23:01:02 2007 +0200
37966
37967 [PATCH] MTD partition support, JFFS2 support
37968
Wolfgang Denk2f152782007-05-05 18:23:11 +020037969commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
37970Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37971Date: Tue Apr 24 14:03:45 2007 +0200
37972
37973 ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
37974
37975 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37976
Wolfgang Denk885ec892007-05-05 18:05:02 +020037977commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
37978Author: Andy Fleming <afleming@freescale.com>
37979Date: Mon Apr 23 02:37:47 2007 -0500
37980
37981 Reworked 85xx speed detection code
37982
37983 Changed the code to read the registers and calculate the clock
37984 rates, rather than using a "switch" statement.
37985
37986 Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
37987
37988 Signed-off-by: Andy Fleming <afleming@freescale.com>
37989
37990commit 81f481ca708ed6a56bf9c410e3191dbad581c565
37991Author: Andy Fleming <afleming@freescale.com>
37992Date: Mon Apr 23 02:24:28 2007 -0500
37993
37994 Enable 8544 support
37995
37996 * Add support to the Makefile
37997 * Add 8544 configuration support to the tsec driver
37998 * Add 8544 SVR numbers to processor.h
37999
38000 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38001 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38002
38003commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
38004Author: Andy Fleming <afleming@freescale.com>
38005Date: Fri Feb 23 17:12:25 2007 -0600
38006
38007 Support 1G size on 8548
38008
38009 e500v2 and newer cores support 1G page sizes.
38010
38011 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38012 Signed-off-by: Andy Fleming <afleming@freescale.com>
38013
38014commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
38015Author: Andy Fleming <afleming@freescale.com>
38016Date: Fri Feb 23 17:11:16 2007 -0600
38017
38018 Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
38019
38020 The other pagesz constants use one letter to specify order of
38021 magnitude. Also change the one reference to it in mpc8548cds/init.S
38022
38023 Signed-off-by: Andy Fleming <afleming@freescale.com>
38024
38025commit 1f9a318cea14272edd10d63739e2d326c90f430e
38026Author: Andy Fleming <afleming@freescale.com>
38027Date: Fri Feb 23 16:28:46 2007 -0600
38028
38029 Only set ddrioovcr for 8548 rev1.
38030
38031 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38032 Signed-off-by: Andy Fleming <afleming@freescale.com>
38033
38034commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
38035Author: Andy Fleming <afleming@freescale.com>
38036Date: Sat Feb 24 01:16:45 2007 -0600
38037
38038 Tweak DDR ECC error counter
38039
38040 Enable single-bit error counter when memory was cleared by ddr controller.
38041
38042 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38043 Signed-off-by: Andy Fleming <afleming@freescale.com>
38044
38045commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
38046Author: Timur Tabi <timur@freescale.com>
38047Date: Mon Feb 12 13:34:55 2007 -0600
38048
38049 85xx: write MAC address to mac-address and local-mac-address
38050
38051 Some device trees have a mac-address property, some have local-mac-address,
38052 and some have both. To support all of these device trees, ftp_cpu_setup()
38053 should write the MAC address to mac-address and local-mac-address, if they
38054 exist.
38055
38056 Signed-off-by: Timur Tabi <timur@freescale.com>
38057
38058commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
38059Author: Andy Fleming <afleming@freescale.com>
38060Date: Mon Apr 23 01:44:44 2007 -0500
38061
38062 Some 85xx cpu cleanups
38063
38064 * Cleaned up the TSR[WIS] clearing
38065 * Cleaned up DMA initialization
38066
38067 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38068 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38069 Acked-by: Andy Fleming <afleming@freescale.com>
38070
38071commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
38072Author: Andy Fleming <afleming@freescale.com>
38073Date: Mon Apr 23 01:32:22 2007 -0500
38074
38075 Add cpu support for the 8544
38076
38077 Recognize new SVR values, and add a few register definitions
38078
38079 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38080 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38081 Acked-by: Andy Fleming <afleming@freescale.com>
38082
38083commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
38084Author: Jon Loeliger <jdl@freescale.com>
38085Date: Wed Apr 11 16:51:02 2007 -0500
38086
38087 Add MPC8544DS basic port board files.
38088
38089 Add board port under new board/freescale directory
38090 structure and reuse existing PIXIS FPGA support there.
38091
38092 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38093 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38094
38095commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
38096Author: Jon Loeliger <jdl@freescale.com>
38097Date: Wed Apr 11 16:50:57 2007 -0500
38098
38099 Add MPC8544DS main configuration file.
38100
38101 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38102 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38103
38104commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
38105Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
38106Date: Wed Dec 27 22:07:15 2006 +0300
38107
38108 Fix PCI I/O space mapping on Freescale MPC85x0ADS
38109
38110 The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
38111 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
38112 describing the local address window used for the PCI I/O space accesses -- fix
38113 this and carry over the necessary changes into the MPC8560ADS code since the
38114 PCI I/O space mapping was also broken for this board (by the earlier commit
38115 087454609e47295443af793a282cddcd91a5f49c). Add the comments clarifying how
38116 the PCI I/O space must be mapped to all the MPC85xx board config. headers.
38117
38118 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
38119
38120 board/mpc8540ads/init.S | 4 ++--
38121 board/mpc8560ads/init.S | 4 ++--
38122 include/configs/MPC8540ADS.h | 5 ++---
38123 include/configs/MPC8541CDS.h | 2 +-
38124 include/configs/MPC8548CDS.h | 2 +-
38125 include/configs/MPC8560ADS.h | 8 ++++----
38126 6 files changed, 12 insertions(+), 13 deletions(-)
38127
38128commit 96629cbabdb727d4a5e62542deefc01d498db6dc
38129Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38130Date: Tue Dec 5 16:42:30 2006 +0800
38131
38132 u-boot: Fix e500 v2 core reset bug
38133
38134 The following patch fixes the e500 v2 core reset bug.
38135 For e500 v2 core, a new reset control register is added to reset the
38136 processor.
38137
38138 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
38139
38140commit 63247a5acd58032e6cf33f525bc3923b467bac88
38141Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38142Date: Wed Dec 20 11:01:00 2006 +0800
38143
38144 u-boot: v2: Remove the fixed TLB and LAW entrynubmer
38145
38146 Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
38147 entry number to control the loop. This can reduce the potential risk
38148 for the 85xx processor increasing its TLB adn LAW entry number.
38149
38150 Signed-off-by: Swarthout Edward <swarthout@freescale.com>
38151 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
38152
38153commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
38154Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38155Date: Mon Dec 18 17:01:04 2006 +0800
38156
38157 u-boot: Fix the 85xxcds tsec bug
38158
38159 Fix the 85xxcds tsec bug.
38160 When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
38161
38162 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
38163
38164commit 7337b237ffc4aaf1b9467024fe472a880d852598
38165Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38166Date: Fri Dec 15 14:43:31 2006 +0800
38167
38168 u-boot: Fix CPU2 errata on MPC8548CDS board
38169
38170 This patch apply workaround of CPU2 errata on MPC8548CDS board.
38171
38172 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
38173
38174commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
38175Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
38176Date: Mon Dec 18 16:25:15 2006 +0800
38177
38178 u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
38179
38180 This patch disables MPC8548CDS 2T_TIMING for DDR by default.
38181
38182 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
38183
38184commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
38185Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
38186Date: Thu Dec 14 14:14:55 2006 +0800
38187
38188 u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
38189
38190 Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
38191 board.
38192 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
38193
Wolfgang Denka7676ea2007-05-16 01:16:53 +020038194commit 96b8a05432f346f36493535c85320b70ec9c7c1b
38195Author: Scott Wood <scottwood@freescale.com>
38196Date: Mon Apr 16 14:54:15 2007 -0500
38197
38198 mpc83xx: Add MPC8313ERDB support.
38199
38200 Signed-off-by: Scott Wood <scottwood@freescale.com>
38201
38202commit 49ea3b6eafe606285ae4d5c378026153dde53200
38203Author: Scott Wood <scottwood@freescale.com>
38204Date: Mon Apr 16 14:34:21 2007 -0500
38205
38206 mpc83xx: Add generic PCI setup code.
38207
38208 Board code can now request the generic setup code rather than having to
38209 copy-and-paste it for themselves. Boards should be converted to use this
38210 once they're tested with it.
38211
38212 Signed-off-by: Scott Wood <scottwood@freescale.com>
38213
38214commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
38215Author: Scott Wood <scottwood@freescale.com>
38216Date: Mon Apr 16 14:34:19 2007 -0500
38217
38218 mpc83xx: Add 831x support to speed.c.
38219
38220 Signed-off-by: Scott Wood <scottwood@freescale.com>
38221
38222commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
38223Author: Scott Wood <scottwood@freescale.com>
38224Date: Mon Apr 16 14:34:18 2007 -0500
38225
38226 mpc83xx: Add 831x support to global_data.h
38227
38228 Signed-off-by: Scott Wood <scottwood@freescale.com>
38229
38230commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
38231Author: Scott Wood <scottwood@freescale.com>
38232Date: Mon Apr 16 14:34:16 2007 -0500
38233
38234 mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
38235
38236 Rather than misleadingly define PVR_83xx as the specific type of 83xx
38237 being built for, the PVR of each core revision is defined. checkcpu() now
38238 prints the core that it detects, rather than aborting if it doesn't find
38239 what it thinks it wants.
38240
38241 Signed-off-by: Scott Wood <scottwood@freescale.com>
38242
38243commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
38244Author: Scott Wood <scottwood@freescale.com>
38245Date: Mon Apr 16 14:34:15 2007 -0500
38246
38247 mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
38248
38249 Signed-off-by: Scott Wood <scottwood@freescale.com>
38250
38251commit d87c57b201b4572d16f1b642998faa00c9912b16
38252Author: Scott Wood <scottwood@freescale.com>
38253Date: Mon Apr 16 14:31:55 2007 -0500
38254
38255 mpc83xx: Add register definitions for MPC831x.
38256
38257 Signed-off-by: Scott Wood <scottwood@freescale.com>
38258
Wolfgang Denk4ef218f2007-07-10 00:01:28 +020038259commit 7fc4c71a143be8666d70803fb25ae60379c95622
38260Author: Stefan Roese <sr@denx.de>
38261Date: Mon Apr 23 15:39:59 2007 +0200
38262
38263 Fix file mode
38264
38265 Signed-off-by: Stefan Roese <sr@denx.de>
38266
38267commit 38257988abfe74d459ca2ad748b109ca04e4efe1
38268Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
38269Date: Mon Apr 23 15:30:39 2007 +0200
38270
38271 [PATCH] Avoid assigning PCI resources from zero address
38272
38273 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
38274 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
38275 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
38276 sentence about "0" being considered an invalid address) -- so, use a reasonable
38277 starting value of 0x1000 (that's what the most Linux archs are using).
38278
38279 Alternatively, one might have fixed the calls to pci_set_region() individually
38280 (some code even seems to have taken care of this issue) but that would have
38281 been a lot more work. :-)
38282
38283 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
38284 Acked-by: Stefan Roese <sr@denx.de>
38285
38286commit afb903a2eb9436baa9270ccc0c27082d86497d89
38287Author: Jeffrey Mann <mannj@embeddedplanet.com>
38288Date: Mon Apr 23 14:00:11 2007 +0200
38289
38290 [patch] setenv(...) can delete environmentalvariables
38291
38292 update setenv() function so that entering a NULL value for the
38293 variable's value will delete the environmental variable
38294
38295 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
38296 Acked-by: Stefan Roese <sr@denx.de>
38297
38298commit 36f104e5caa747d568eff26b369565af57c2ffa6
38299Author: Mike Frysinger <vapier@gentoo.org>
38300Date: Mon Apr 23 13:54:24 2007 +0200
38301
38302 [patch] use unsigned char in smc91111 driver for mac
38303
38304 the v_mac variable in the smc91111 driver is declared as a signed char ...
38305 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
38306 because when it gets printed out, you get a display like:
38307 0xFFFFFFE0 and that's no good
38308
38309 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
38310
Wolfgang Denk9986bc32007-08-12 21:34:50 +020038311commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
38312Author: Rodolfo Giometti <giometti@enneenne.com>
38313Date: Mon Apr 23 13:10:52 2007 +0200
38314
38315 USB: (Another) delay for crappy USB keys.
38316
38317 Some USB keys are slow in giving back an answer when the Root HUB
38318 enables power lines.
38319
38320 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
38321
Wolfgang Denk54996452007-05-05 17:15:50 +020038322commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
38323Author: Stefan Roese <sr@denx.de>
38324Date: Mon Apr 23 12:00:22 2007 +0200
38325
38326 Remove BOARDLIBS usage completely
38327
38328 Signed-off-by: Stefan Roese <sr@denx.de>
38329
Wolfgang Denkd62f64c2007-05-16 00:13:33 +020038330commit 32556443840f127170e4baa8bdd5b567039f6c36
38331Author: Michal Simek <monstr@monstr.eu>
38332Date: Sat Apr 21 21:07:22 2007 +0200
38333
38334 [PATCH] SystemACE support for Microblaze
38335
38336commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
38337Author: Michal Simek <monstr@monstr.eu>
38338Date: Sat Apr 21 21:02:40 2007 +0200
38339
38340 16bit read/write little endian
38341
38342commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
38343Author: Michal Simek <monstr@monstr.eu>
38344Date: Sat Apr 21 20:53:31 2007 +0200
38345
38346 Change ML401 parameters - Xilinx BSP
38347
Wolfgang Denk54996452007-05-05 17:15:50 +020038348commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
38349Author: Ed Swarthout <Ed.Swarthout@freescale.com>
38350Date: Wed Feb 28 05:37:29 2007 -0600
38351
38352 mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
38353
38354 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38355
38356commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
38357Author: Zhang Wei <wei.zhang@freescale.com>
38358Date: Fri Jan 19 10:42:37 2007 +0800
38359
38360 Enable LAWs for MPC8641 PCI-Ex2.
38361
38362 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
38363 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38364
38365commit bd7851ce1e1f140665b520026abf1042968b1102
38366Author: Jon Loeliger <jdl@freescale.com>
38367Date: Fri Apr 20 14:12:26 2007 -0500
38368
38369 mpc86xx; Write MAC address to mac-address and local-mac-address
38370
38371 Some device trees have a mac-address property, some have local-mac-address,
38372 and some have both. To support all of these device trees, ftp_cpu_setup()
38373 should write the MAC address to mac-address and local-mac-address, if they
38374 exist.
38375
38376 Signed-off-by: Timur Tabi <timur@freescale.com>
38377 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38378
38379commit 7dbdf28b8bd855a8530dc3292e4982575a197060
38380Author: Jon Loeliger <jdl@freescale.com>
38381Date: Fri Apr 20 14:11:38 2007 -0500
38382
38383 mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
38384
38385 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38386 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38387
Wolfgang Denkc64a89d2007-05-03 16:34:41 +020038388commit 14da5f7675bbb427c469e3f45006e027b6e21db9
38389Author: Wolfgang Denk <wd@denx.de>
38390Date: Fri Apr 20 17:43:28 2007 +0200
38391
38392 Cleanup compiler warnings, update CHANGELOG
38393
38394 Signed-off-by: Wolfgang Denk <wd@denx.de>
38395
Wolfgang Denk14da5f72007-04-20 17:43:28 +020038396commit 6923565db12af34fd5e02d354ee65a8c78ac460f
38397Author: Detlev Zundel <dzu@denx.de>
38398Date: Fri Apr 20 12:01:47 2007 +0200
38399
38400 Fix breakage of NC650 board with respect to nand support.
38401
38402 Signed-off-by: Detlev Zundel <dzu@denx.de>
38403
38404commit 39f23cd90947639ac278a18ff277ec786b5ac167
38405Author: Domen Puncer <domen.puncer@telargo.com>
38406Date: Fri Apr 20 11:13:16 2007 +0200
38407
38408 [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
38409
38410 G2 core reference manual says decrementer and time base
38411 are decreasing/increasing once every 4 bus clock cycles.
38412 Lets fix it, so time in Linux won't run twice as fast
38413
38414 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
38415 Acked-by: Grant Likely <grant.likely@secretlab.ca>
38416
38417commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
38418Author: Gerald Van Baren <vanbaren@cideas.com>
38419Date: Thu Apr 19 23:14:39 2007 -0400
38420
38421 Fix serious pointer bug with bootm and reserve map.
38422
38423 What was suppose to be a stack variable was declared as a pointer,
38424 overwriting random memory.
38425 Also moved the libfdt.a requirement into the main Makefile. That is
38426 The U-Boot Way.
38427
Wolfgang Denk2f152782007-05-05 18:23:11 +020038428commit d21686263574e95cb3e9e9b0496f968b1b897fdb
38429Author: Stefan Roese <sr@denx.de>
38430Date: Thu Apr 19 09:53:52 2007 +0200
38431
38432 ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
38433
38434 Previous versions used full wait states for the chip select #1 which
38435 is connected to the Xilinix SystemACE controller on the AMCC Katmai
38436 evaluation board. This leads to really slow access and therefore low
38437 performance. This patch now sets up the chip select a lot faster
38438 resulting in much better read/write performance of the Linux driver.
38439
38440 Signed-off-by: Stefan Roese <sr@denx.de>
38441
Wolfgang Denk14da5f72007-04-20 17:43:28 +020038442commit 37837828d89084879bee2f2b8c7c68d4695940df
38443Author: Wolfgang Denk <wd@denx.de>
38444Date: Wed Apr 18 17:49:29 2007 +0200
38445
38446 Clenaup, update CHANGELOG
38447
38448 Signed-off-by: Wolfgang Denk <wd@denx.de>
38449
Wolfgang Denk37837822007-04-18 17:49:29 +020038450commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
38451Author: Wolfgang Denk <wd@denx.de>
38452Date: Wed Apr 18 17:20:58 2007 +0200
38453
38454 Update CHANGELOG
38455
38456 Signed-off-by: Wolfgang Denk <wd@denx.de>
38457
Wolfgang Denkfd094c62007-04-18 17:20:58 +020038458commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
38459Author: Wolfgang Denk <wd@denx.de>
38460Date: Wed Apr 18 17:07:26 2007 +0200
38461
38462 Cleanup, update CHANGELOG
38463
38464 Sigend-off-by: Wolfgang Denk <wd@denx.de>
38465
Wolfgang Denkb99c1e62007-04-18 16:53:52 +020038466commit 5f6c732affea9647762d27a4617a2ae64c52dceb
38467Author: Wolfgang Denk <wd@denx.de>
38468Date: Wed Apr 18 16:17:46 2007 +0200
38469
38470 Update CHANGELOG
38471
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020038472commit ad4eb555671d97f96dc56eab55103b1f86874b01
38473Author: Wolfgang Denk <wd@denx.de>
38474Date: Wed Apr 18 14:30:39 2007 +0200
38475
38476 MCC200 board: remove warning which is obsolete after PSoC firmware changes
38477
38478 Signed-off-by: Wolfgang Denk <wd@denx.de>
38479
38480commit 3747a3f010b2b1442dec3e871c69788b6017aaae
38481Author: Domen Puncer <domen.puncer@telargo.com>
38482Date: Wed Apr 18 12:11:05 2007 +0200
38483
38484 [PATCH] icecube/lite5200b: document wakeup from low-power support
38485
38486 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
38487
38488commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
38489Author: Stefan Roese <sr@denx.de>
38490Date: Wed Apr 18 12:07:47 2007 +0200
38491
38492 ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
38493
38494 Signed-off-by: Stefan Roese <sr@denx.de>
38495
38496commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
38497Author: Stefan Roese <sr@denx.de>
38498Date: Wed Apr 18 12:05:59 2007 +0200
38499
38500 ppc4xx: Add output for bootrom location to 405EZ ports
38501
38502 Now 405EZ ports also show upon bootup from which boot device
38503 they are configured to boot:
38504
38505 U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
38506
38507 CPU: AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
38508 Bootstrap Option E - Boot ROM Location EBC (32 bits)
38509 16 kB I-Cache 16 kB D-Cache
38510 Board: Acadia - AMCC PPC405EZ Evaluation Board
38511
38512 Signed-off-by: Stefan Roese <sr@denx.de>
38513
Wolfgang Denk14da5f72007-04-20 17:43:28 +020038514commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
38515Author: Peter Pearse <peter.pearse@arm.com>
38516Date: Tue Apr 17 13:30:33 2007 +0100
38517
38518 Move ppearse to ARM board list
38519 Add Konstantin Kletschke for scb9328.
38520 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
38521
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020038522commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
38523Author: Domen Puncer <domen.puncer@telargo.com>
38524Date: Mon Apr 16 14:00:13 2007 +0200
38525
38526 [PATCH] icecube/lite5200b: wakeup from low-power support
38527
38528 U-Boot part of Lite5200b low power mode support.
38529 Puts SDRAM out of self-refresh and transfers control to
38530 address saved at physical 0x0.
38531
38532 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
38533 Acked-by: Grant Likely <grant.likely@secretlab.ca>
38534
Wolfgang Denk37837822007-04-18 17:49:29 +020038535commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
38536Author: Gerald Van Baren <vanbaren@cideas.com>
38537Date: Sun Apr 15 13:54:26 2007 -0400
38538
38539 Fix the ft_cpu_setup() property settings.
38540
38541 Use "setter" functions instead of flags, cleaner and more flexible.
38542 It also fixes the problem noted by Timur Tabi that the ethernet MAC
38543 addresses were all being set incorrectly to the same MAC address.
38544
38545commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
38546Author: Gerald Van Baren <vanbaren@cideas.com>
38547Date: Sat Apr 14 22:51:24 2007 -0400
38548
38549 Improve the bootm command for CONFIG_OF_LIBFDT
38550
38551 In bootm, create the "/chosen" node only if it doesn't already exist
38552 (better matches the previous behavior).
38553 Update for proper reserved memory map handling for initrd.
38554
38555commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
38556Author: Gerald Van Baren <vanbaren@cideas.com>
38557Date: Sat Apr 14 22:46:41 2007 -0400
38558
38559 Add some utilities to manipulate the reserved memory map.
38560
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020038561commit 8048cdd56f04a756eeea4951f402bf5cc33785db
38562Author: Wolfgang Denk <wd@denx.de>
38563Date: Sat Apr 14 21:16:54 2007 +0200
38564
38565 Update CHANGELOG
38566
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020038567commit 8e6875183cdca91c134408d119d4abcd48ef6856
38568Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38569Date: Sun Dec 17 18:56:46 2006 +0100
38570
38571 AVR32: Enable MMC support
38572
38573 Set up the portmux for the MMC interface and enable the MMC driver
38574 along with support for DOS partitions, ext2 and FAT filesystems.
38575
38576 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38577
38578commit fc26c97bb6df41b4a95662c34054fe912387bf38
38579Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38580Date: Fri Jan 20 10:03:53 2006 +0100
38581
38582 Atmel MCI driver
38583
38584 Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
38585
38586 The AT91 ARM-based CPUs use basically the same hardware, so it should
38587 be possible to share this driver, but no effort has been made so far.
38588
38589 Hardware documentation can be found in the AT32AP7000 data sheet,
38590 which can be downloaded from
38591
38592 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
38593
38594 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38595
38596commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
38597Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38598Date: Sun Dec 17 18:55:37 2006 +0100
38599
38600 AVR32: Add clk and gpio infrastructure for mmci
38601
38602 Implement functions for configuring the mmci pins, as well as
38603 functions for getting the clock rate of the mmci controller.
38604
38605 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38606
38607commit 7fac3f69e9f05c5e5326681976c35d129324c4de
38608Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38609Date: Sun Dec 17 18:53:56 2006 +0100
38610
38611 Enable partition support with MMC
38612
38613 Include implementations of init_part() and get_partition_info() when
38614 CONFIG_MMC is set.
38615
38616 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38617
38618commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
38619Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38620Date: Sun Dec 17 17:14:30 2006 +0100
38621
38622 AVR32: Enable networking
38623
38624 Implement MACB initialization for AVR32 and ATSTK1000, and turn
38625 everything on, including the MACB driver.
38626
38627 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38628
38629commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
38630Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38631Date: Fri Jan 20 10:03:34 2006 +0100
38632
38633 Atmel MACB ethernet driver
38634
38635 Driver for the Atmel MACB on-chip ethernet controller.
38636
38637 This driver has been tested on the ATSTK1000 board with a AT32AP7000
38638 CPU. It should probably work on AT91SAM926x as well with some minor
38639 modifications.
38640
38641 Hardware documentation can be found in the AT32AP7000 data sheet,
38642 which can be downloaded from
38643
38644 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
38645
38646 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38647
38648commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
38649Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38650Date: Sun Dec 17 16:56:14 2006 +0100
38651
38652 AVR32: Add clk and gpio infrastructure for macb0 and macb1
38653
38654 Implement functions for configuring the macb0 and macb1 pins, as
38655 well as functions for getting the clock rate of the various
38656 busses the macb ethernet controllers are connected to.
38657
38658 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38659
38660commit d5acb95b16a0a74c643524342c3437e765426d05
38661Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38662Date: Sun Dec 17 15:39:15 2006 +0100
38663
38664 AVR32: Implement simple DMA memory allocator
38665
38666 Implement dma_alloc_coherent() which returns cache-aligned
38667 uncacheable memory.
38668
38669 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38670
38671commit 91975b0fea773c9e681fea8cf3349669f27685ee
38672Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38673Date: Sun Dec 17 15:46:02 2006 +0100
38674
38675 Import <linux/mii.h> from the Linux kernel
38676
38677 Instead of creating yet another set of MII register definitions
38678 in the macb driver, here's a complete set of definitions for everyone
38679 to use.
38680
38681 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38682
38683commit 1b804b229556a4d862da93c0ec94e79419364b2c
38684Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38685Date: Wed Mar 21 19:47:36 2007 +0100
38686
38687 AVR32: Include more commands for ATSTK1000
38688
38689 Include the imi, imls and jffs commands sets by default on ATSTK1000.
38690 Also define CONFIG_BOOTARGS to something more useful, define
38691 CONFIG_BOOTCOMMAND and enable autoboot by default.
38692
38693 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38694
38695commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
38696Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38697Date: Wed Mar 21 19:44:48 2007 +0100
38698
38699 AVR32: Provide a definition of struct stat
38700
38701 Copy the definition of struct stat from the Linux kernel.
38702
38703 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38704
38705commit 12f099c08167a7a51aeee623bc16dafd0841271c
38706Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38707Date: Sun Dec 17 14:46:06 2006 +0100
38708
38709 AVR32: Use initdram() instead of board_init_memories()
38710
38711 Conform to the "standard" interface and use initdram() instead of
38712 board_init_memories() on AVR32. This enables us to get rid of the
38713 sdram_size member of the global_data struct as well.
38714
38715 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38716
38717commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
38718Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38719Date: Mon Nov 20 15:53:10 2006 +0100
38720
38721 AVR32: Relocate u-boot to SDRAM
38722
38723 Relocate the u-boot image into SDRAM like everyone else does. This
38724 means that we can handle much larger .data and .bss than we used to.
38725
38726 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38727
38728commit df548d3c3e2bbc40258713167859ffc2ce99a900
38729Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38730Date: Sun Nov 19 18:06:53 2006 +0100
38731
38732 AVR32: Resource management rewrite
38733
38734 Rewrite the resource management code (i.e. I/O memory, clock gating,
38735 gpio) so it doesn't depend on any global state. This is necessary
38736 because this code is heavily used before relocation to RAM, so we
38737 can't write to any global variables.
38738
38739 As an added bonus, this makes u-boot's memory footprint a bit smaller,
38740 although some functionality has been left out; all clocks are enabled
38741 all the time, and there's no checking for gpio line conflicts.
38742
38743 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38744
38745commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
38746Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38747Date: Sat Nov 18 18:01:13 2006 +0100
38748
38749 AVR32: Clean up memory-map.h for at32ap7000
38750
38751 Convert spaces to tabs (must have missed this one last time around),
38752 sort the entries by address and group them together by bus
38753 connectivity.
38754
38755 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38756
38757commit 28c699ef69f4b6cdf252e4747b7b590028a88981
38758Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38759Date: Sat Nov 18 17:32:31 2006 +0100
38760
38761 AVR32: Build position-independent u-boot
38762
38763 Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
38764 position independent. This will make relocation a lot easier.
38765
38766 -mno-init-got means that gcc shouldn't emit code to load the GOT
38767 address into r6 in every function prologue. We do it once and for
38768 all in the early startup assembly code, so enabling this option
38769 makes u-boot a bit faster and smaller.
38770
38771 The assembly parts have always been position-independent, so no code
38772 changes should be necessary.
38773
38774 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38775
38776commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
38777Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38778Date: Sat Nov 18 17:24:31 2006 +0100
38779
38780 AVR32: Use avr32-linux- cross-compilation prefix by default
38781
38782 It doesn't really matter which toolchain you use to compile u-boot,
38783 but the avr32-linux one is probably what most people have installed.
38784
38785 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38786
38787commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
38788Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
38789Date: Sat Nov 18 17:15:30 2006 +0100
38790
38791 AVR32: Split start_u_boot into board_init_f and board_init_r
38792
38793 Split the avr32 initialization code into a function to run before
38794 relocation, board_init_f and a function to run after relocation,
38795 board_init_r. For now, board_init_f simply calls board_init_r
38796 at the end.
38797
38798 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
38799
Wolfgang Denk8048cdd2007-04-14 21:16:54 +020038800commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
38801Author: Heiko Schocher <hs@pollux.denx.de>
38802Date: Sat Apr 14 05:26:48 2007 +0200
38803
38804 [Fix] Set the LED status register on the UC101 for the LXT971 PHY.
38805 clear the Display after reset.
38806
38807 Signed-off-by: Heiko Schocher <hs@denx.de>
38808
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020038809commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
38810Author: Denis Peter <d.peter@mpl.ch>
38811Date: Fri Apr 13 09:13:33 2007 +0200
38812
38813 [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
38814
38815 Fix bug introduced by "Fix get_partition_info() parameter error in all
38816 other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
38817 to use diskboot or scsiboot form another device than 0.
38818
38819 Signed-off-by: Denis Peter <d.peter@mpl.ch>
38820
38821commit 0b94504d22e70f537c17a0d38c87edb6e370977d
38822Author: Greg Lopp <lopp@pobox.com>
38823Date: Fri Apr 13 08:02:24 2007 +0200
38824
38825 [PATCH] Fix use of "void *" for block dev read/write buffer pointers
38826
38827 Signed-of-by: Greg Lopp <lopp@pobox.com>
38828 Acked-by: Grant Likely <grant.likely@secretlab.ca>
38829
Wolfgang Denka7676ea2007-05-16 01:16:53 +020038830commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
38831Author: Xie Xiaobo <r63061@freescale.com>
38832Date: Fri Mar 9 19:08:25 2007 +0800
38833
38834 Fix two bugs for MPC83xx DDR2 controller SPD Init
38835
38836 There are a few bugs in the cpu/mpc83xx/spd_sdram.c
38837 the first bug is that the picos_to_clk routine introduces a huge
38838 rounding error in 83xx.
38839 the second bug is that the mode register write recovery field is
38840 tWR-1, not tWR >> 1.
38841
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020038842commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
38843Author: Jeffrey Mann <mannj@embeddedplanet.com>
38844Date: Thu Apr 12 14:15:59 2007 +0200
38845
38846 ppc4xx: Fix i2c divisor calcularion for PPC4xx
38847
38848 This patch fixes changes the i2c_init(...) function to use the function
38849 get_OPB_freq() rather than calculating the OPB speed by
38850 sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
38851 specific per processor. The prior method was not and so was calculating
38852 the wrong speed for some PPC4xx processors.
38853
38854 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
38855 Signed-off-by: Stefan Roese <sr@denx.de>
38856
Wolfgang Denk8048cdd2007-04-14 21:16:54 +020038857commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
38858Author: Wolfgang Denk <wd@denx.de>
38859Date: Wed Apr 11 17:25:01 2007 +0200
38860
38861 Update CHANGELOG
38862
38863 Signed-off-by: Wolfgang Denk <wd@denx.de>
38864
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020038865commit 51056dd9863e6a1bc363afbbe1775c58cd967418
38866Author: Wolfgang Denk <wd@denx.de>
38867Date: Wed Apr 11 17:22:55 2007 +0200
38868
38869 Update for SC3 board
38870
38871 * Make IDE timeout configurable through ide_reset_timeout variable.
38872 * Use Newline as "password" string
38873 * Use just a single partition in NAND flash
38874
Wolfgang Denkfd094c62007-04-18 17:20:58 +020038875commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
38876Author: Haiying Wang <haiying.wang@freescale.com>
38877Date: Mon Jan 22 12:37:30 2007 -0600
38878
38879 Add PIXIS FPGA support for MPC8641HPCN board.
38880
38881 Move the 8641HPCN's PIXIS code to the new directory
38882 board/freescale/common/ as it will be shared by
38883 future boards not in the same processor family.
38884
38885 Write a "pixis_reset" command that utilizes the FPGA
38886 reset sequencer to support alternate soft-reset options
38887 such as using the "alternate" flash bank, enabling
38888 the watch dog, or choosing different CPU frequencies.
38889
38890 Add documentation for the pixis_reset to README.mpc8641hpcn.
38891
38892 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
38893 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38894
Wolfgang Denk37837822007-04-18 17:49:29 +020038895commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
38896Author: Gerald Van Baren <vanbaren@cideas.com>
38897Date: Fri Apr 6 14:19:43 2007 -0400
38898
38899 Moved fdt command support code to fdt_support.c
38900
38901 ...in preparation for improving the bootm command's handling of fdt blobs.
38902 Also cleaned up some coding sloppiness.
38903
38904commit 6679f9299534e488a171a9bb8f9bb891de247aab
38905Author: Gerald Van Baren <vanbaren@cideas.com>
38906Date: Fri Apr 6 14:17:14 2007 -0400
38907
38908 libfdt: Make fdt_check_header() public
38909
38910 Changed _fdt_check_header() to fdt_check_header() and made it part of
38911 the interface - it is a useful routine.
38912
38913 Also did some asthetics cleanup to the include files (headers).
38914
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020038915commit c0707ce65677650b5ceab0500ee50ae5168afef2
38916Author: Aubrey Li <aubrey.adi@gmail.com>
38917Date: Thu Apr 5 18:34:06 2007 +0800
38918
38919 [Blackfin][PATCH] Kill off a bunch of common local prototypes
38920
38921commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
38922Author: Aubrey Li <aubrey.adi@gmail.com>
38923Date: Thu Apr 5 18:33:04 2007 +0800
38924
38925 [Blackfin][PATCH] Fix dynamic CPLB generation issue
38926
38927commit 0445e3a264251d75b1be45ef713c70726a2952f0
38928Author: Aubrey Li <aubrey.adi@gmail.com>
38929Date: Thu Apr 5 18:31:47 2007 +0800
38930
38931 [Blackfin][PATCH] minior cleanup
38932
38933commit 155fd766573981090e638b493d5857562151862e
38934Author: Aubrey Li <aubrey.adi@gmail.com>
38935Date: Thu Apr 5 18:31:18 2007 +0800
38936
38937 [Blackfin][PATCH] Fix copyright and update license
38938
38939commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
38940Author: Aubrey Li <aubrey.adi@gmail.com>
38941Date: Thu Apr 5 18:30:25 2007 +0800
38942
38943 [Blackfin][PATCH] Add BF537 EMAC driver initialization
38944
38945commit 889256e8604e0c68db1d866d720894dffede9df6
38946Author: Aubrey Li <aubrey.adi@gmail.com>
38947Date: Thu Apr 5 18:29:55 2007 +0800
38948
38949 [Blackfin][PATCH] call real the system synchronize instruction
38950
38951commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
38952Author: Aubrey Li <aubrey.adi@gmail.com>
38953Date: Thu Apr 5 18:29:17 2007 +0800
38954
38955 [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
38956
38957commit dfeeab2cd680df047e68e723b246adf6f33bb556
38958Author: Aubrey Li <aubrey.adi@gmail.com>
38959Date: Thu Apr 5 18:28:34 2007 +0800
38960
38961 [Blackfin][PATCH]: fix flash unaligned copy issue
38962
Wolfgang Denkfd094c62007-04-18 17:20:58 +020038963commit 443feb740584e406efa203af909fe2926608e8d5
38964Author: Igor Marnat <marny@rambler.ru>
38965Date: Wed Mar 21 09:55:01 2007 +0300
38966
38967 Update usage of 'nc' in README.NetConsole
38968
38969 Added information about usage of NetConsole on systems where the -l and -p
38970 switches are mutually exclusive.
38971
38972 Signed-off-by: Igor Marnat <marny@rambler.ru>
38973 Signed-off-by: Ben Warren <bwarren@qstreams.com>
38974
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020038975commit 31c98a88228021b314c89ebb8104fb6473da4471
38976Author: Wolfgang Denk <wd@denx.de>
38977Date: Wed Apr 4 02:09:30 2007 +0200
38978
38979 Minor coding style cleanup.
38980
Wolfgang Denk31c98a82007-04-04 02:09:30 +020038981commit 94abd7c0583ebe01e799b25f451201deeaab550d
38982Author: Wolfgang Denk <wd@denx.de>
38983Date: Wed Apr 4 01:49:15 2007 +0200
38984
38985 Minor cleanup.
38986
Wolfgang Denk9986bc32007-08-12 21:34:50 +020038987commit 822af351ad2babc7d99033361a5fcacd30f6bc78
38988Author: Rodolfo Giometti <giometti@enneenne.com>
38989Date: Tue Apr 3 14:27:18 2007 +0200
38990
38991 Support for the Philips ISP116x HCD (Host Controller Driver)
38992
38993 Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
38994
38995commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
38996Author: Markus Klotzbuecher <mk@denx.de>
38997Date: Tue Apr 3 14:27:08 2007 +0200
38998
38999 USB: cleanup monahans usb support. Remove dead code.
39000
39001 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39002
Wolfgang Denk5f6c7322007-04-18 16:17:46 +020039003commit a65c5768e5537530bd1780af3d3fddc3113a163c
39004Author: Stefan Roese <sr@denx.de>
39005Date: Mon Apr 2 10:09:30 2007 +0200
39006
39007 ppc4xx: Change SysACE address on Katmai
39008
39009 With this new base address of the Xilinx SystemACE controller
39010 the Linux driver will be easier to adapt, since it can now be
39011 mapped via the "normal" ioremap() call.
39012
39013 Signed-off-by: Stefan Roese <sr@denx.de>
39014
Wolfgang Denk94abd7c2007-04-04 01:49:15 +020039015commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
39016Author: Gerald Van Baren <vanbaren@cideas.com>
39017Date: Sat Mar 31 14:30:53 2007 -0400
39018
39019 Fix some minor whitespace violations.
39020
39021commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
39022Author: Gerald Van Baren <vanbaren@cideas.com>
39023Date: Sat Mar 31 12:23:51 2007 -0400
39024
39025 Add a flattened device tree (fdt) command (2 of 2)
39026
39027 Modifications to the existing code to support the new fdt command.
39028
39029commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
39030Author: Gerald Van Baren <vanbaren@cideas.com>
39031Date: Sat Mar 31 12:22:10 2007 -0400
39032
39033 Add a flattened device tree (fdt) command (1 of 2)
39034
39035 The fdt command uses David Gibson's libfdt library to manipulate as well
39036 as print the flattened device tree. This patch is the new command,
39037 the second part is the modifications to the existing code.
39038
39039commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
39040Author: Gerald Van Baren <vanbaren@cideas.com>
39041Date: Sat Mar 31 12:13:43 2007 -0400
39042
39043 libfdt: Enhanced and published fdt_next_tag()
39044
39045 Enhanced the formerly private function _fdt_next_tag() to allow stepping
39046 through the tree, used to produce a human-readable dump, and made
39047 it part of the published interface.
39048 Also added some comments.
39049
39050commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
39051Author: Gerald Van Baren <vanbaren@cideas.com>
39052Date: Sat Mar 31 12:05:39 2007 -0400
39053
39054 libfdt: Customizations for use by u-boot.
39055
39056 Changes to David Gibson's original source to fit into u-boot's
39057 environment. No functionality changes.
39058
39059commit 35748177c64a4a83a00057e93bb33e40278a2a96
39060Author: Gerald Van Baren <vanbaren@cideas.com>
39061Date: Sat Mar 31 12:00:56 2007 -0400
39062
39063 libfdt: Import libfdt source (2 of 2)
39064
39065 This adds the applicable libfdt source files (unmodified) and a README
39066 to explain where the source came from.
39067
39068commit 7cd5da0fe877e7171a4cdd44880bce783132871a
39069Author: Gerald Van Baren <vanbaren@cideas.com>
39070Date: Sat Mar 31 11:59:59 2007 -0400
39071
39072 libfdt: Import libfdt source (1 of 2)
39073
39074 This adds the applicable libfdt source files (unmodified) and a README
39075 to explain where the source came from.
39076
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020039077commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
39078Author: Stefan Roese <sr@denx.de>
39079Date: Sat Mar 31 13:16:23 2007 +0200
39080
39081 ppc4xx: Update Katmai bootstrap command
39082
39083 Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
39084 is selected.
39085
39086 Signed-off-by: Stefan Roese <sr@denx.de>
39087
39088commit cabee756a6532986729477c3cc1ea16ef8517ad2
39089Author: Stefan Roese <sr@denx.de>
39090Date: Sat Mar 31 13:15:06 2007 +0200
39091
39092 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
39093
39094 Additional RAM information is now printed upon powerup, like
39095 DDR2 frequency and CAS latency.
39096
39097 Signed-off-by: Stefan Roese <sr@denx.de>
39098
39099commit 60723803431ac75cad085690789e433d5ab9174e
39100Author: Stefan Roese <sr@denx.de>
39101Date: Sat Mar 31 08:48:36 2007 +0200
39102
39103 ppc4xx: Change Yucca config file to support ECC
39104
39105 With the updated 44x DDR2 driver the Yucca board now supports
39106 ECC generation and checking.
39107
39108 Signed-off-by: Stefan Roese <sr@denx.de>
39109
39110commit 490e5730c674b20d708b783a2c5ffd7208f83873
39111Author: Stefan Roese <sr@denx.de>
39112Date: Sat Mar 31 08:47:34 2007 +0200
39113
39114 ppc4xx: Fix "bootstrap" command for Katmai board
39115
39116 The board specific "bootstrap" command is now fixed and can
39117 be used for the AMCC Katmai board to configure different
39118 CPU/PLB/OPB frequencies.
39119
39120 Signed-off-by: Stefan Roese <sr@denx.de>
39121
39122commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
39123Author: Stefan Roese <sr@denx.de>
39124Date: Sat Mar 31 08:46:08 2007 +0200
39125
39126 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
39127
39128 Fix a bug in the auto calibration routine. This driver now runs
39129 more reliable with the tested modules. It's also tested with
39130 167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
39131
39132 Signed-off-by: Stefan Roese <sr@denx.de>
39133
Wolfgang Denk31c98a82007-04-04 02:09:30 +020039134commit 342cd097be1e7affe82f42ab3da220959a699e64
39135Author: Michal Simek <monstr@monstr.eu>
39136Date: Fri Mar 30 22:52:09 2007 +0200
39137
39138 [PATCH] Clean include dependence
39139
39140commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
39141Author: Michal Simek <monstr@monstr.eu>
39142Date: Fri Mar 30 22:42:45 2007 +0200
39143
39144 [CLEAN] Remove inefficient Suzaku code
39145
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020039146commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
39147Author: Stefan Roese <sr@denx.de>
39148Date: Wed Mar 28 15:03:16 2007 +0200
39149
39150 Merge some AMCC make targets to keep the top-level Makefile smaller
39151
39152 Signed-off-by: Stefan Roese <sr@denx.de>
39153
39154commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
39155Author: Stefan Roese <sr@denx.de>
39156Date: Wed Mar 28 14:52:12 2007 +0200
39157
39158 i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
39159
39160 The "old" i2c commands (iprobe, imd...) are now compiled in again,
39161 even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
39162 config option.
39163
39164 Signed-off-by: Stefan Roese <sr@denx.de>
39165
Wolfgang Denk31c98a82007-04-04 02:09:30 +020039166commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
39167Author: Michal Simek <monstr@monstr.eu>
39168Date: Tue Mar 27 00:32:16 2007 +0200
39169
39170 PATCH: Resolve GPL license problem
39171
Wolfgang Denk9986bc32007-08-12 21:34:50 +020039172commit ae00bb4b2944dc64a485ed72a19754b11af7c223
39173Author: Rodolfo Giometti <giometti@enneenne.com>
39174Date: Mon Mar 26 12:03:36 2007 +0200
39175
39176 PXA: pxa27x USB OHCI support
39177
39178 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
39179
39180commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
39181Author: Markus Klotzbuecher <mk@denx.de>
39182Date: Mon Mar 26 11:21:05 2007 +0200
39183
39184 USB: remove the S3C24X0_merge #define, which was introduced while
39185 merging OHCI drivers.
39186
39187 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39188
Wolfgang Denk31c98a82007-04-04 02:09:30 +020039189commit 1798049522f594013aea29457d46794298c6ae15
39190Author: Michal Simek <root@monstr.eu>
39191Date: Mon Mar 26 01:39:07 2007 +0200
39192
39193 Support for XUPV2P board
39194 Reset support
39195 BSP autoconfig support
39196
Wolfgang Denk6c9ba912007-04-11 17:25:01 +020039197commit 0d974d5297349504a2ddfa09314be573b5df320a
39198Author: Stefan Roese <sr@denx.de>
39199Date: Sat Mar 24 15:57:09 2007 +0100
39200
39201 [PATCH] Add 4xx GPIO functions
39202
39203 This patch adds some 4xx GPIO functions. It also moves some of the
39204 common code and defines into a common 4xx GPIO header file.
39205
39206 Signed-off-by: Stefan Roese <sr@denx.de>
39207
39208commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
39209Author: Stefan Roese <sr@denx.de>
39210Date: Sat Mar 24 15:55:58 2007 +0100
39211
39212 [PATCH] Small Sequoia cleanup
39213
39214 Signed-off-by: Stefan Roese <sr@denx.de>
39215
39216commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
39217Author: Stefan Roese <sr@denx.de>
39218Date: Sat Mar 24 15:45:34 2007 +0100
39219
39220 [PATCH] Clean up 40EZ/Acadia support
39221
39222 This patch cleans up all the open issue of the preliminary
39223 Acadia support.
39224
39225 Signed-off-by: Stefan Roese <sr@denx.de>
39226
Wolfgang Denk94abd7c2007-04-04 01:49:15 +020039227commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
39228Author: Jon Loeliger <jdl@freescale.com>
39229Date: Tue Dec 12 11:02:20 2006 -0600
39230
39231 Fix 8641HPCN problem with ld version 2.16
39232
39233 (Dot outside sections problem).
39234
39235 This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
39236
39237 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39238
39239commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
39240Author: Haiying Wang <haiying.wang@freescale.com>
39241Date: Thu Dec 7 10:35:55 2006 -0600
39242
39243 Set Rev 2.x 86xx PIC in mixed mode.
39244
39245 Prevent false interrupt from hanging Linux as MSR[EE] is set
39246 to enable interrupts by changing the PIC out of the default
39247 pass through mode into mixed mode.
39248
39249 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
39250 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39251
39252commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
39253Author: Jason Jin <jason.jin@freescale.com>
39254Date: Thu Dec 7 10:32:35 2006 -0600
39255
39256 Add flash cmd function to 8641HPCN ramboot
39257
39258 Also fixes some commmand for 8641 HPCN ramboot case.
39259
39260 Signed-off-by: Jason Jin <jason.jin@freescale.com>
39261 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39262
39263commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
39264Author: Ed Swarthout <ed.swarthout@freescale.com>
39265Date: Thu Dec 7 10:34:14 2006 -0600
39266
39267 Add support for 8641 Rev 2 silicon.
39268
39269 Without this patch, I am unable to get to the prompt on rev 2 silicon.
39270 Only set ddrioovcr for rev1.
39271
39272 Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
39273 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39274
39275commit 44ba464b99001f8bd1c456a1e9d59726252f707a
39276Author: Wolfgang Denk <wd@denx.de>
39277Date: Thu Mar 22 00:13:12 2007 +0100
39278
39279 Code cleanup / re-insert previous Copyright entries.
39280
39281 Signed-off-by: Wolfgang Denk <wd@denx.de>
39282
Wolfgang Denk44ba4642007-03-22 00:13:12 +010039283commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
39284Author: Wolfgang Denk <wd@denx.de>
39285Date: Wed Mar 21 23:26:15 2007 +0100
39286
39287 Code cleanup. Update CHANGELOG
39288
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010039289commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
39290Author: Stefan Roese <sr@denx.de>
39291Date: Wed Mar 21 14:54:29 2007 +0100
39292
39293 ppc4xx: Fix file mode of include/configs/acadia.h
39294
39295 Signed-off-by: Stefan Roese <sr@denx.de>
39296
39297commit d5f4614c9350d9333e575100fb250aab774d0258
39298Author: Markus Klotzbuecher <mk@denx.de>
39299Date: Wed Mar 21 14:41:46 2007 +0100
39300
39301 SPC1920: fix small clock routing bug
39302
39303 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39304
39305commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
39306Author: Stefan Roese <sr@denx.de>
39307Date: Wed Mar 21 13:39:57 2007 +0100
39308
39309 [PATCH] Add AMCC Acadia (405EZ) eval board support
39310
39311 This patch adds support for the new AMCC Acadia eval board.
39312
39313 Please note that this Acadia/405EZ support is still in a beta stage.
39314 Still lot's of cleanup needed but we need a preliminary release now.
39315
39316 Signed-off-by: Stefan Roese <sr@denx.de>
39317
39318commit e01bd218b00af73499331a1a701625a852cd286f
39319Author: Stefan Roese <sr@denx.de>
39320Date: Wed Mar 21 13:38:59 2007 +0100
39321
39322 [PATCH] Add AMCC PPC405EZ support
39323
39324 This patch adds support for the new AMCC 405EZ PPC. It is in
39325 preparation for the AMCC Acadia board support.
39326
39327 Please note that this Acadia/405EZ support is still in a beta stage.
39328 Still lot's of cleanup needed but we need a preliminary release now.
39329
39330 Signed-off-by: Stefan Roese <sr@denx.de>
39331
39332commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
39333Author: Heiko Schocher <hs@pollux.denx.de>
39334Date: Wed Mar 21 08:45:17 2007 +0100
39335
39336 [PATCH] TQM8272: dont change the bits given from the HRCW
39337 for the SIUMCR and BCR Register.
39338 Fix the calculation for the EEprom Size
39339
39340 Signed-off-by: Heiko Schocher <hs@denx.de>
39341
Wolfgang Denk44ba4642007-03-22 00:13:12 +010039342commit 654589873dbafcf104dff133ce0d03a4506e9cc3
39343Author: Aubrey Li <aubrey.adi@gmail.com>
39344Date: Tue Mar 20 18:16:24 2007 +0800
39345
39346 [Blackfin][PATCH] Add BF561 EZKIT board support
39347
39348commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
39349Author: Aubrey Li <aubrey.adi@gmail.com>
39350Date: Mon Mar 19 22:55:58 2007 +0800
39351
39352 [Blackfin][PATCH] minor cleanup
39353
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010039354commit 389b6bb50f745bf5038ce030300d8a8512e96f79
39355Author: Wolfgang Denk <wd@denx.de>
39356Date: Mon Mar 19 13:10:08 2007 +0100
39357
39358 Remove obsoleted POST files.
39359
39360 Signed-off-by: Wolfgang Denk <wd@denx.de>
39361
Wolfgang Denk44ba4642007-03-22 00:13:12 +010039362commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
39363Author: Aubrey Li <aubrey.adi@gmail.com>
39364Date: Mon Mar 19 01:26:11 2007 +0800
39365
39366 [PATCH] Add flash chip M29W320ET/B support
39367
39368commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
39369Author: Aubrey Li <aubrey.adi@gmail.com>
39370Date: Mon Mar 19 01:24:52 2007 +0800
39371
39372 [Blackfin][PATCH] Add BF537 stamp board support
39373
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010039374commit 8423e5e31a7235d05a482627315fb11d49c17bd7
39375Author: Stefan Roese <sr@denx.de>
39376Date: Fri Mar 16 21:11:42 2007 +0100
39377
39378 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
39379
39380 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
39381 DDR memory are dynamically programmed matching the total size
39382 of the equipped memory (DIMM modules).
39383
39384 Signed-off-by: Stefan Roese <sr@denx.de>
39385
39386commit 76d1466f918b881cda2d259254761e73885093c2
39387Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39388Date: Tue Mar 13 13:38:05 2007 +0100
39389
39390 [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
39391 boards in terms of unification.
39392
39393 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39394
39395commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
39396Author: Wolfgang Denk <wd@denx.de>
39397Date: Tue Mar 13 16:05:55 2007 +0100
39398
39399 Make SC3 board build with 'make O='; use 'addcons' consistently
39400 (SC3 and Jupiter used to use 'addcon' instead).
39401
39402 Signed-off-by: Wolfgang Denk wd@denx.de
39403
39404commit 8502e30a28e492c756ea2d7df0ace026388fce4b
39405Author: Heiko Schocher <hs@pollux.denx.de>
39406Date: Tue Mar 13 09:40:59 2007 +0100
39407
39408 [PATCH] update board config for jupiter Board:
39409 added Hush Shell,
39410 CONFIG_CMDLINE_EDITING,
39411 CFG_ENV_ADDR_REDUND activated
39412
39413 Signed-off-by: Heiko Schocher <hs@denx.de>
39414
Wolfgang Denk44ba4642007-03-22 00:13:12 +010039415commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
39416Author: Aubrey Li <aubrey.adi@gmail.com>
39417Date: Mon Mar 12 12:11:55 2007 +0800
39418
39419 [Blackfin][PATCH] minor cleanup
39420
39421commit bfa5754a58477ac917d21527cd0f079d87cf188e
39422Author: Aubrey Li <aubrey.adi@gmail.com>
39423Date: Mon Mar 12 01:42:06 2007 +0800
39424
39425 [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
39426
39427commit 8440bb14581a294375c34b91b42512f9753d1130
39428Author: Aubrey Li <aubrey.adi@gmail.com>
39429Date: Mon Mar 12 00:25:14 2007 +0800
39430
39431 [Blackfin][PATCH] code cleanup
39432
Wolfgang Denk31c98a82007-04-04 02:09:30 +020039433commit cfc67116a706fd18b8f6a9c11a16753c5626d689
39434Author: Michal Simek <monstr@monstr.eu>
39435Date: Sun Mar 11 13:48:24 2007 +0100
39436
39437 [Microblaze][PATCH] part 2
39438 timer support
39439 interrupt controller support
39440 flash support
39441 ethernet support
39442 cache support
39443 board information support
39444 env support
39445 booting image support
39446
39447 adding support for Xilinx ML401
39448
39449commit 76316a318de91f6184e7c22a10e02d275ade2441
39450Author: Michal Simek <monstr@monstr.eu>
39451Date: Sun Mar 11 13:42:58 2007 +0100
39452
39453 [Microblaze][PATCH]
39454 timer support
39455 interrupt controller support
39456 flash support
39457 ethernet support
39458 cache support
39459 board information support
39460 env support
39461 booting image support
39462
39463 adding support for Xilinx ML401
39464
Wolfgang Denk44ba4642007-03-22 00:13:12 +010039465commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
39466Author: Aubrey Li <aubrey.adi@gmail.com>
39467Date: Sat Mar 10 23:49:29 2007 +0800
39468
39469 [Blackfin][PATCH] code cleanup
39470
39471commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
39472Author: Aubrey.Li <aubrey.adi@gmail.com>
39473Date: Fri Mar 9 13:40:56 2007 +0800
39474
39475 [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
39476
39477commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
39478Author: Aubrey.Li <aubrey.adi@gmail.com>
39479Date: Fri Mar 9 13:38:44 2007 +0800
39480
39481 [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
39482
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010039483commit 992423ab43c2bcf6b704853bd00af77450915e20
39484Author: Stefan Roese <sr@denx.de>
39485Date: Thu Mar 8 23:00:08 2007 +0100
39486
39487 ppc4xx: Fix file mode of sequoia.c
39488
39489 Signed-off-by: Stefan Roese <sr@denx.de>
39490
39491commit eb92f613556800f7483666db09d9a237ad911d4a
39492Author: Wolfgang Denk <wd@pollux.denx.de>
39493Date: Thu Mar 8 22:52:51 2007 +0100
39494
39495 Minor cleanup.
39496
39497commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
39498Author: John Otken john@softadvances.com <john@softadvances.com>
39499Date: Thu Mar 8 09:39:48 2007 -0600
39500
39501 ppc4xx: Clear Sequoia/Rainier security engine reset bits
39502
39503 Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
39504
39505commit 650a330dd2539130c8c324791e2f9f75aed79d4e
39506Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39507Date: Thu Mar 8 16:26:52 2007 +0100
39508
39509 [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
39510
39511 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39512
39513commit d9fc703246840c4b268debf48c334ba55c597dc0
39514Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39515Date: Thu Mar 8 16:25:47 2007 +0100
39516
39517 [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
39518
39519 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39520
39521commit ced5b9029043397348cdc88e0cfcd6b1f629250b
39522Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39523Date: Thu Mar 8 16:23:11 2007 +0100
39524
39525 [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
39526
39527 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39528
39529commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
39530Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39531Date: Thu Mar 8 16:20:32 2007 +0100
39532
39533 [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
39534
39535 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39536
39537commit f9fc6a5852a6335840882fa2111925010eea1abe
39538Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39539Date: Wed Mar 7 15:32:01 2007 +0100
39540
39541 fixed ethernet phy configuration for plu405 board
39542
39543 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
39544
39545commit 769104c9356594deb2092e204a39c05b33202d6c
39546Author: Wolfgang Denk <wd@pollux.denx.de>
39547Date: Thu Mar 8 21:49:27 2007 +0100
39548
39549 Minor cleanup
39550
Wolfgang Denk769104c2007-03-08 21:49:27 +010039551commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
39552Author: Stefan Roese <sr@denx.de>
39553Date: Thu Mar 8 10:13:16 2007 +0100
39554
39555 [PATCH] Update AMCC Luan 440SP eval board support
39556
39557 The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
39558 inititializition. This includes DDR auto calibration and support
39559 for different DIMM modules, instead of the fixed setup used in
39560 the earlier version.
39561
39562 This patch also enables the cache in FLASH for the startup
39563 phase of U-Boot (while running from FLASH). After relocating to
39564 SDRAM the cache is disabled again. This will speed up the boot
39565 process, especially the SDRAM setup, since there are some loops
39566 for memory testing (auto calibration).
39567
39568 Signed-off-by: Stefan Roese <sr@denx.de>
39569
39570commit 2f5df47351910a2936c7741cf111855829200943
39571Author: Stefan Roese <sr@denx.de>
39572Date: Thu Mar 8 10:10:18 2007 +0100
39573
39574 [PATCH] Update AMCC Yucca 440SPe eval board support
39575
39576 The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
39577 inititializition. This includes DDR auto calibration and support
39578 for different DIMM modules, instead of the fixed setup used in
39579 the earlier version.
39580
39581 Signed-off-by: Stefan Roese <sr@denx.de>
39582
39583commit 2721a68a9ea91f1e494649ce68b2577261f578e2
39584Author: Stefan Roese <sr@denx.de>
39585Date: Thu Mar 8 10:07:18 2007 +0100
39586
39587 ppc4xx: Small AMCC Katmai 440SPe update
39588
39589 Signed-off-by: Stefan Roese <sr@denx.de>
39590
39591commit df294497479b1dca6dd86318b2a912f72fede0df
39592Author: Stefan Roese <sr@denx.de>
39593Date: Thu Mar 8 10:06:09 2007 +0100
39594
39595 ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
39596
39597 Signed-off-by: Stefan Roese <sr@denx.de>
39598
Wolfgang Denkfd094c62007-04-18 17:20:58 +020039599commit 83853178bd36bca6f0f8f1331476620c84a587fc
39600Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39601Date: Wed Mar 7 12:14:50 2007 -0600
39602
39603 net - Support ping reply when processing net-loop
39604
39605 Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
39606
39607 This permits the ping command to test the phy interface when the phy
39608 is put in loopback mode (typically by setting register 0 bit 14).
39609
39610 It also allows the port to respond to an external ping when u-boot is
39611 processing some other net command (such as tftp). This is useful when
39612 tftp appears to hang.
39613
39614 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39615 Signed-off-by: Ben Warren <bwarren@qstreams.com>
39616
Wolfgang Denk769104c2007-03-08 21:49:27 +010039617commit fa1aef15bcd47736687be1af544506e90fba545d
39618Author: Stefan Roese <sr@denx.de>
39619Date: Wed Mar 7 16:43:00 2007 +0100
39620
39621 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
39622
39623 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
39624 DDR memory are dynamically programmed matching the total size
39625 of the equipped memory (DIMM modules).
39626
39627 Signed-off-by: Stefan Roese <sr@denx.de>
39628
39629commit e2ebe696818939e2b974628be9c921ea3fe9de13
39630Author: Stefan Roese <sr@denx.de>
39631Date: Wed Mar 7 16:39:36 2007 +0100
39632
39633 [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
39634
39635 This patch fixes a problem that occurs when 2 DIMM's are
39636 used. This problem was first spotted and fixed by Gerald Jackson
39637 <gerald.jackson@reaonixsecurity.com> but this patch fixes the
39638 problem in a little more clever way.
39639
39640 This patch also adds the nice functionality to dynamically
39641 create the TLB entries for the SDRAM (tlb.c). So we should
39642 never run into such problems with wrong (too short) TLB
39643 initialization again on these platforms.
39644
39645 As this feature is new to the "old" 44x SPD DDR driver, it
39646 has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
39647
39648 Signed-off-by: Stefan Roese <sr@denx.de>
39649
39650commit 39218433983417b9df087976a79e3f80dd5e83d6
39651Author: Wolfgang Denk <wd@denx.de>
39652Date: Wed Mar 7 16:33:44 2007 +0100
39653
39654 UC101: fix compiler warnings
39655
39656commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
39657Author: Wolfgang Denk <wd@pollux.denx.de>
39658Date: Wed Mar 7 16:19:46 2007 +0100
39659
39660 HMI1001: fix build error, cleanup compiler warnings.
39661
39662commit ad5bb451ade552c44bef9119d907929ebc2c126f
39663Author: Wolfgang Denk <wd@pollux.denx.de>
39664Date: Tue Mar 6 18:08:43 2007 +0100
39665
39666 Restructure POST directory to support of other CPUs, boards, etc.
39667
39668commit a5284efd125967675b2e9c6ef7b95832268ad360
39669Author: Wolfgang Denk <wd@pollux.denx.de>
39670Date: Tue Mar 6 18:01:47 2007 +0100
39671
39672 Fix HOSTARCH handling.
39673 Patch by Mike Frysinger, Mar 05 2007
39674
39675commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
39676Author: Stefan Roese <sr@denx.de>
39677Date: Tue Mar 6 07:47:04 2007 +0100
39678
39679 [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
39680
39681 As provided by the AMCC applications team, this patch optimizes the
39682 DDR2 setup for 166MHz bus speed. The values provided are also save
39683 to use on a "normal" 133MHz PLB bus system. Only the refresh counter
39684 setup has to be adjusted as done in this patch.
39685
39686 For this the NAND booting version had to include the "speed.c" file
39687 from the cpu/ppc4xx directory. With this addition the NAND SPL image
39688 will just fit into the 4kbytes of program space. gcc version 4.x as
39689 provided with ELDK 4.x is needed to generate this optimized code.
39690
39691 Signed-off-by: Stefan Roese <sr@denx.de>
39692
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020039693commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
39694Author: Wolfgang Denk <wd@pollux.denx.de>
39695Date: Sun Mar 4 01:36:05 2007 +0100
39696
39697 Some code cleanup.
39698
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010039699commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
39700Author: Kim Phillips <kim.phillips@freescale.com>
39701Date: Wed Feb 28 00:02:04 2007 -0600
39702
39703 mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
39704
39705 (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
39706
39707commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
39708Author: Kumar Gala <galak@kernel.crashing.org>
39709Date: Tue Feb 27 23:51:42 2007 -0600
39710
39711 mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
39712
39713 The config value for:
39714 * CFG_ACR_PIPE_DEP
39715 * CFG_ACR_RPTCNT
39716 * CFG_SPCR_TSEC1EP
39717 * CFG_SPCR_TSEC2EP
39718 * CFG_SCCR_TSEC1CM
39719 * CFG_SCCR_TSEC2CM
39720
39721 Were not being used when setting the appropriate register
39722
39723 Added:
39724 * CFG_SCCR_USBMPHCM
39725 * CFG_SCCR_USBDRCM
39726 * CFG_SCCR_PCICM
39727 * CFG_SCCR_ENCCM
39728
39729 To allow full config of the SCCR.
39730
39731 Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
39732 that were just bogus.
39733
39734 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39735
39736commit d51b3cf371cd441030460ef19d36b2924c361b1a
39737Author: Kim Phillips <kim.phillips@freescale.com>
39738Date: Thu Feb 22 20:06:57 2007 -0600
39739
39740 mpc83xx: update [local-]mac-address properties on UEC based devices
39741
39742 8360 and 832x weren't updating their [local-]mac-address
39743 properties. This patch fixes that.
39744
39745 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39746
39747commit 61f4f912acbe60776c5e00df1ec94094ce672957
39748Author: Timur Tabi <timur@freescale.com>
39749Date: Tue Feb 13 10:41:42 2007 -0600
39750
39751 mpc83xx: write MAC address to mac-address and local-mac-address
39752
39753 Some device trees have a mac-address property, some have local-mac-address,
39754 and some have both. To support all of these device trees, this patch
39755 updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
39756 This function already updates local-mac-address.
39757
39758 Signed-off-by: Timur Tabi <timur@freescale.com>
39759
39760commit 22d71a71f57fd5d38b27ac3848e50d790360a598
39761Author: Kim Phillips <kim.phillips@freescale.com>
39762Date: Tue Feb 27 18:41:08 2007 -0600
39763
39764 mpc83xx: add command line editing by default
39765
39766commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
39767Author: Kim Phillips <kim.phillips@freescale.com>
39768Date: Wed Feb 14 19:50:53 2007 -0600
39769
39770 mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
39771
39772 Disable G1TXCLK, G2TXCLK h/w buffers. This patch
39773 fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
39774
39775 Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
39776
39777 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39778 Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
39779
39780commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
39781Author: Xie Xiaobo <r63061@freescale.com>
39782Date: Wed Feb 14 18:27:17 2007 +0800
39783
39784 mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
39785
39786 The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
39787 it pass DDR/DDR2 compliance tests.
39788
39789 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
39790
39791commit b110f40bd180c6b560276589beedf753e97c46ce
39792Author: Xie Xiaobo <r63061@freescale.com>
39793Date: Wed Feb 14 18:27:06 2007 +0800
39794
39795 mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
39796
39797 MPC8360E rev2.0 have new spridr,and PVR value,
39798 The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
39799
39800 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
39801
39802commit 8d172c0f0d85998a256a95b7459a5403a30380ed
39803Author: Xie Xiaobo <r63061@freescale.com>
39804Date: Wed Feb 14 18:26:44 2007 +0800
39805
39806 mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
39807
39808 MPC8349E rev3.1 have new spridr,and PVR value,
39809 The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
39810
39811 Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
39812
39813commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
39814Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
39815Date: Wed Jan 31 11:04:19 2007 +0100
39816
39817 mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
39818
39819 Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
39820 which is used to se if an slave will ACK after receiving its address.
39821
39822 Correct i2c probing to use this method as the old method could upset
39823 a slave as it wrote a data byte to it.
39824
39825 Add a small delay in i2c_init() to let the controller
39826 shutdown any ongoing I2C activity.
39827
39828 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
39829
39830commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
39831Author: Timur Tabi <timur@freescale.com>
39832Date: Wed Jan 31 15:54:29 2007 -0600
39833
39834 mpc83xx: Add support for the MPC8349E-mITX-GP
39835
39836 Add support for the MPC8349E-mITX-GP, a stripped-down version of the
39837 MPC8349E-mITX. Bonus features include support for low-boot (BMS bit in
39838 HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
39839
39840 Signed-off-by: Timur Tabi <timur@freescale.com>
39841
39842commit fab16807adad350f618024350c6950165c247c72
39843Author: Timur Tabi <timur@freescale.com>
39844Date: Wed Jan 31 15:54:20 2007 -0600
39845
39846 mpc83xx: Delete sdram_init() for MPC8349E-mITX
39847
39848 There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
39849 never does anything. This patch deletes it.
39850
39851 Signed-off-by: Timur Tabi <timur@freescale.com>
39852
39853commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
39854Author: Dave Liu <daveliu@freescale.com>
39855Date: Fri Jan 19 10:43:26 2007 +0800
39856
39857 mpc83xx: Fix the LAW1/3 bug
39858
39859 The patch solves the alignment problem of the local bus access windows to
39860 render accessible the memory bank and PHY registers of UPC 1 (starting at
39861 0xf801 0000). What we actually did was to adjust the sizes of the bus
39862 access windows so that the base address alignment requirement would be met.
39863
39864 Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
39865 Signed-off-by: Gridish Shlomi <gridish@freescale.com>
39866 Signed-off-by: Dave Liu <daveliu@freescale.com>
39867
39868commit 97c4b397dce236a7318b304667bf89e59d08b17c
39869Author: Kim Phillips <kim.phillips@freescale.com>
39870Date: Tue Jan 30 16:15:31 2007 -0600
39871
39872 mpc83xx: don't hang if watchdog configured on 8360, 832x
39873
39874 don't hang if watchdog configured on 8360, 832x
39875
39876 The watchdog programming model is the same across all 83xx devices;
39877 make the code reflect that.
39878
39879commit b70047478570e371ce7223be342ce98afea0f7d6
39880Author: Kim Phillips <kim.phillips@freescale.com>
39881Date: Tue Jan 30 16:15:21 2007 -0600
39882
39883 mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
39884
39885 protect memcpy to bad address if a local-mac-address is missing from dt
39886
39887commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
39888Author: Kim Phillips <kim.phillips@freescale.com>
39889Date: Tue Jan 30 16:15:04 2007 -0600
39890
39891 mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
39892
39893 make 8360 default environment fdt be 8360 (not 8349)
39894
39895commit a28899c910024a0226331df07207b1038c300c93
39896Author: Emilian Medve <Emilian.Medve@freescale.com>
39897Date: Tue Jan 30 16:14:50 2007 -0600
39898
39899 mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
39900
39901 The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
39902 be used for busy-waiting since it strips the 'volatile' property from
39903 the bd variable. gcc3 was working by pure luck.
39904
39905 This is a follow on patch to "Fix the UEC driver bug of QE"
39906
39907commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
39908Author: Kumar Gala <galak@kernel.crashing.org>
39909Date: Tue Jan 30 14:08:30 2007 -0600
39910
39911 mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
39912
39913 The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
39914 MPC834X class processors. Change the protections from CONFIG_MPC8349 to
39915 CONFIG_MPC834X so they are more generic.
39916
39917 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39918
39919commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
39920Author: Kim Phillips <kim.phillips@freescale.com>
39921Date: Thu Jan 25 13:40:55 2007 -0600
39922
39923 mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
39924
39925commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
39926Author: Kim Phillips <kim.phillips@freescale.com>
39927Date: Wed Jan 24 17:18:37 2007 -0600
39928
39929 mpc83xx: sort Makefile targets
39930
39931 reordered targets alphabetically
39932
39933commit 91e25769771c1164ed63ffca0add49f934ae3343
39934Author: Paul Gortmaker <paul.gortmaker@windriver.com>
39935Date: Tue Jan 16 11:38:14 2007 -0500
39936
39937 mpc83xx: U-Boot support for Wind River SBC8349
39938
39939 I've redone the SBC8349 support to match git-current, which
39940 incorporates all the MPC834x updates from Freescale since the 1.1.6
39941 release, including the DDR changes.
39942
39943 I've kept all the SBC8349 files as parallel as possible to the
39944 MPC8349EMDS ones for ease of maintenance and to allow for easy
39945 inspection of what was changed to support this board. Hence the SBC8349
39946 U-Boot has FDT support and everything else that the MPC8349EMDS has.
39947
39948 Fortunately the Freescale updates added support for boards using CS0,
39949 but I had to change spd_sdram.c to allow for board specific settings for
39950 the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
39951 default if the board doesn't specify a value.)
39952
39953 Hopefully this should be mergeable as-is and require no whitespace
39954 cleanups or similar, but if something doesn't measure up then let me
39955 know and I'll fix it.
39956
39957 Thanks,
39958 Paul.
39959
39960commit 05031db456ab227f3e3752f37b9b812b65bb83ad
39961Author: Sam Song <samsongshu@yahoo.com.cn>
39962Date: Thu Dec 14 19:03:21 2006 +0800
39963
39964 mpc83xx: Remove a redundant semicolon in mpc8349itx.c
39965
39966 A redundant semicolon existed in mpc8349itx.c
39967 should be removed.
39968
39969 Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
39970
39971commit f35f358241c549be3f75cfe2eaa642914275b7ba
39972Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
39973Date: Wed Dec 6 21:23:55 2006 -0500
39974
39975 mpc83xx: Put the version (and magic) after the HRCW.
39976
39977 Put the version (and magic) after the HRCW. This puts it in a fixed
39978 location in flash, not at the start of flash but as close as we can get.
39979
39980 Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
39981
39982commit 48aecd969171a6e99a55fae04933857787f9a5bd
39983Author: Dave Liu <r63238@freescale.com>
39984Date: Thu Dec 7 21:14:51 2006 +0800
39985
39986 mpc83xx: Add the MPC832XEMDS board readme
39987
39988 Add the MPC832XEMDS board readme
39989
39990 Signed-off-by: Dave Liu <daveliu@freescale.com>
39991
39992commit 24c3aca3f1358b113d3215adb5433b156e99f72b
39993Author: Dave Liu <r63238@freescale.com>
39994Date: Thu Dec 7 21:13:15 2006 +0800
39995
39996 mpc83xx: Add support for the MPC832XEMDS board
39997
39998 This patch supports DUART, ETH3/4 and PCI etc.
39999
40000 Signed-off-by: Dave Liu <daveliu@freescale.com>
40001
40002commit e080313c32322e15ab5a18eb896a252858c57284
40003Author: Dave Liu <r63238@freescale.com>
40004Date: Thu Dec 7 21:11:58 2006 +0800
40005
40006 mpc83xx: streamline the 83xx immr head file
40007
40008 For better format and style, I streamlined the 83xx head files,
40009 including immap_83xx.h and mpc83xx.h. In the old head files, 1)
40010 duplicated macro definition appear in the both files; 2) the structure
40011 of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
40012 macro definition put inside the each structure. So, I cleaned up the
40013 structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
40014 moved the macro definition to mpc83xx.h, Just like MPC8260.
40015
40016 CHANGELOG
40017
40018 *streamline the 83xx immr head file
40019
40020 Signed-off-by: Dave Liu <daveliu@freescale.com>
40021
40022commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
40023Author: Dave Liu <r63238@freescale.com>
40024Date: Wed Dec 6 11:38:17 2006 +0800
40025
40026 mpc83xx: Fix the UEC driver bug of QE
40027
40028 The patch prevents the GCC tool chain from striping useful code for
40029 optimization. It will make UEC ethernet driver workable, Otherwise the
40030 UEC will fail in tx when you are using gcc4.x. but the driver can work
40031 when using gcc3.4.3.
40032
40033 CHANGELOG
40034
40035 *Prevent the GCC from striping code for optimization, Otherwise the UEC
40036 will tx failed when you are using gcc4.x.
40037
40038 Signed-off-by: Dave Liu <daveliu@freescale.com>
40039
Wolfgang Denk769104c2007-03-08 21:49:27 +010040040commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
40041Author: Stefan Roese <sr@denx.de>
40042Date: Thu Mar 1 21:11:36 2007 +0100
40043
40044 [PATCH] Update AMCC Katmai 440SPe eval board support
40045
40046 This patch updates the recently added Katmai board support. The biggest
40047 change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
40048 driver.
40049
40050 Please note, that still some problems are left with some memory
40051 configurations. See the driver for more details.
40052
40053 Signed-off-by: Stefan Roese <sr@denx.de>
40054
40055commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
40056Author: Stefan Roese <sr@denx.de>
40057Date: Thu Mar 1 07:03:25 2007 +0100
40058
40059 [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
40060
40061 Signed-off-by: Stefan Roese <sr@denx.de>
40062
40063commit ccbc7036648e465697ca298ba51e0e76dda352a0
40064Author: Wolfgang Denk <wd@pollux.denx.de>
40065Date: Wed Feb 28 01:28:53 2007 +0100
40066
40067 SC3: fix typo in default environment
40068
40069commit e344568b1b46af85ec32d815586f91bc115d6223
40070Author: Sergei Poselenov <sposelenov@emcraft.com>
40071Date: Tue Feb 27 20:15:30 2007 +0300
40072
40073 MCC200: Fixes for update procedure
40074
40075 - fix logic error in image type handling
40076 - make sure file system images (cramfs etc.) get stored in flash
40077 with image header stripped so they can be mounted through MTD
40078
40079commit 743571145b37182757d4e688a77860b36ee77573
40080Author: Wolfgang Denk <wd@pollux.denx.de>
40081Date: Tue Feb 27 14:26:04 2007 +0100
40082
40083 Minor code cleanup.
40084
Wolfgang Denk74357112007-02-27 14:26:04 +010040085commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
40086Author: Sergei Poselenov <sposelenov@emcraft.com>
40087Date: Tue Feb 27 12:40:16 2007 +0300
40088
40089 MCC200 update - add LCD Progress Indicator
40090
40091commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
40092Author: Stefan Roese <sr@denx.de>
40093Date: Thu Feb 22 07:43:34 2007 +0100
40094
40095 [PATCH] get_dev() now unconditionally uses manual relocation
40096
40097 Since the relocation fix is not included yet and we're not sure how
40098 it will be added, this patch removes code that required relocation
40099 to be fixed for now.
40100
40101 Signed-off-by: Stefan Roese <sr@denx.de>
40102
40103commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
40104Author: Stefan Roese <sr@denx.de>
40105Date: Thu Feb 22 07:40:23 2007 +0100
40106
40107 [PATCH] Change systemace driver to select 8 & 16bit mode
40108
40109 As suggested by Grant Likely this patch enables the Xilinx SystemACE
40110 driver to select 8 or 16bit mode upon startup.
40111
40112 Signed-off-by: Stefan Roese <sr@denx.de>
40113
40114commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
40115Author: Haiying Wang <Haiying.Wang@freescale.com>
40116Date: Wed Feb 21 16:52:31 2007 +0100
40117
40118 [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
40119
40120 Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
40121 is fully finished. The sync() is defined in each CPU's io.h file. For
40122 those CPUs which do not need sync for now, a dummy sync() is defined in
40123 their io.h as well.
40124
40125 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
40126
40127commit da04995c7dc6772013a9a0dc5c767f190c402478
40128Author: Stefan Roese <sr@denx.de>
40129Date: Wed Feb 21 13:44:34 2007 +0100
40130
40131 [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
40132
40133 Signed-off-by: Stefan Roese <sr@denx.de>
40134
40135commit 751bb57107d78978ae08e697c3deba816f5be091
40136Author: Stefan Roese <sr@denx.de>
40137Date: Tue Feb 20 13:21:57 2007 +0100
40138
40139 [PATCH] Fix relocation problem with "new" get_dev() function
40140
40141 This patch enables the "new" get_dev() function for block devices
40142 introduced by Grant Likely to be used on systems that still suffer
40143 from the relocation problems (manual relocation neede because of
40144 problems with linker script).
40145
40146 Hopefully we can resolve this relocation issue soon for all platform
40147 so we don't need this additional code anymore.
40148
40149 Signed-off-by: Stefan Roese <sr@denx.de>
40150
40151commit d93e2212f962668b3dce091ff5edc33f2347fe37
40152Author: Stefan Roese <sr@denx.de>
40153Date: Tue Feb 20 13:17:42 2007 +0100
40154
40155 [PATCH] Update SystemACE driver for 16bit access
40156
40157 This patch removes some problems when the Xilinx SystemACE driver
40158 is used with 16bit access on an big endian platform (like the
40159 AMCC Katmai).
40160
40161 Signed-off-by: Stefan Roese <sr@denx.de>
40162
40163commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
40164Author: Stefan Roese <sr@denx.de>
40165Date: Tue Feb 20 13:15:40 2007 +0100
40166
40167 [PATCH] Clean up Katmai (440SPe) linker script
40168
40169 Signed-off-by: Stefan Roese <sr@denx.de>
40170
40171commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
40172Author: Stefan Roese <sr@denx.de>
40173Date: Tue Feb 20 10:57:08 2007 +0100
40174
40175 [PATCH] Add support for the AMCC Katmai (440SPe) eval board
40176
40177 Signed-off-by: Stefan Roese <sr@denx.de>
40178
40179commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
40180Author: Stefan Roese <sr@denx.de>
40181Date: Tue Feb 20 10:51:26 2007 +0100
40182
40183 [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
40184
40185 This patch switches to the desired I2C bus when the date/dtt
40186 commands are called. This can be configured using the
40187 CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
40188
40189 Signed-off-by: Stefan Roese <sr@denx.de>
40190
40191commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
40192Author: Stefan Roese <sr@denx.de>
40193Date: Tue Feb 20 10:43:34 2007 +0100
40194
40195 [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
40196
40197 This patch adds support for the DDR2 controller used on the
40198 440SP and 440SPe. It is tested on the Katmai (440SPe) eval
40199 board and works fine with the following DIMM modules:
40200
40201 - Corsair CM2X512-5400C4 (512MByte per DIMM)
40202 - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
40203 - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
40204
40205 This patch also adds the nice functionality to dynamically
40206 create the TLB entries for the SDRAM (tlb.c). So we should
40207 never run into such problems with wrong (too short) TLB
40208 initialization again on these platforms.
40209
40210 Signed-off-by: Stefan Roese <sr@denx.de>
40211
40212commit 36d830c9830379045f5daa9f542ac1c990c70068
40213Author: Stefan Roese <sr@denx.de>
40214Date: Tue Feb 20 10:35:42 2007 +0100
40215
40216 [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
40217
40218 Since the existing 4xx SPD SDRAM initialization routines for the
40219 405 SDRAM controller and the 440 DDR controller don't have much in
40220 common this patch splits both drivers into different files.
40221
40222 This is in preparation for the 440 DDR2 controller support (440SP/e).
40223
40224 Signed-off-by: Stefan Roese <sr@denx.de>
40225
40226commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
40227Author: Stefan Roese <sr@denx.de>
40228Date: Tue Feb 20 10:27:08 2007 +0100
40229
40230 [PATCH] PPC4xx: Add support for multiple I2C busses
40231
40232 This patch adds support for multiple I2C busses on the PPC4xx
40233 platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
40234 to make use of this feature.
40235
40236 It also merges the 405 and 440 i2c header files into one common
40237 file 4xx_i2c.h.
40238
40239 Also the 4xx i2c reset procedure is reworked since I experienced
40240 some problems with the first access on the 440SPe Katmai board.
40241
40242 Signed-off-by: Stefan Roese <sr@denx.de>
40243
40244commit eb867a76238fb38e952c37871b16d0d7fd61c95f
40245Author: Grant Likely <grant.likely@secretlab.ca>
40246Date: Tue Feb 20 09:05:45 2007 +0100
40247
40248 [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
40249
40250 Block device read/write is anonymous data; there is no need to use a
40251 typed pointer. void * is fine. Also add a hook for block_read functions
40252
40253 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40254
40255commit 53758fa20e935cc87eeb0519ed365df753a6f289
40256Author: Grant Likely <grant.likely@secretlab.ca>
40257Date: Tue Feb 20 09:05:38 2007 +0100
40258
40259 [PATCH 8_9] Add block_write hook to block_dev_desc_t
40260
40261 Preparation for future patches which support block device writing
40262
40263 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40264
40265commit f4852ebe6ca946a509667eb68be42026f837be76
40266Author: Grant Likely <grant.likely@secretlab.ca>
40267Date: Tue Feb 20 09:05:31 2007 +0100
40268
40269 [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
40270
40271 Register read/write does not need to be wrapped in a full function. The
40272 patch replaces them with macros.
40273
40274 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40275
40276commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
40277Author: Grant Likely <grant.likely@secretlab.ca>
40278Date: Tue Feb 20 09:05:23 2007 +0100
40279
40280 [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
40281
40282 The code in this file is not a command; it is a device driver. Put it in
40283 the correct place. There are zero functional changes in this patch, it
40284 only moves the file.
40285
40286 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40287
40288commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
40289Author: Grant Likely <grant.likely@secretlab.ca>
40290Date: Tue Feb 20 09:05:16 2007 +0100
40291
40292 [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
40293
40294 This patch is in preparation of additional changes to the sysace driver.
40295 May as well take this opportunity to fixup the inconsistent whitespace since
40296 this file is about to undergo major changes anyway.
40297
40298 There are zero functional changes in this patch. It only cleans up the
40299 the whitespace.
40300
40301 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40302
40303commit 80ba981d940471fe7e539e64fa3d2bd80002beda
40304Author: Grant Likely <grant.likely@secretlab.ca>
40305Date: Tue Feb 20 09:05:07 2007 +0100
40306
40307 [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
40308
40309 isprint is already defined in ctype.c
40310
40311 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40312
40313commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
40314Author: Grant Likely <grant.likely@secretlab.ca>
40315Date: Tue Feb 20 09:05:00 2007 +0100
40316
40317 [PATCH 3_9] Move buffer print code from md command to common function
40318
40319 Printing a buffer is a darn useful thing. Move the buffer print code
40320 into print_buffer() in lib_generic/
40321
40322 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40323
40324commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
40325Author: Grant Likely <grant.likely@secretlab.ca>
40326Date: Tue Feb 20 09:04:52 2007 +0100
40327
40328 [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
40329
40330 Change the xilinx device drivers and board code to include config.h
40331 instead of xparameters.h directly. config.h always includes the
40332 correct xparameters file. This change reduces the posibility of
40333 including the wrong file when adding a new xilinx board port
40334
40335 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40336
40337commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
40338Author: Grant Likely <grant.likely@secretlab.ca>
40339Date: Tue Feb 20 09:04:34 2007 +0100
40340
40341 [PATCH 1_4] Merge common get_dev() routines for block devices
40342
40343 Each of the filesystem drivers duplicate the get_dev routine. This change
40344 merges them into a single function in part.c
40345
40346 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40347
40348commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
40349Author: Wolfgang Denk <wd@pollux.denx.de>
40350Date: Mon Feb 19 23:09:51 2007 +0100
40351
40352 MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
40353 as root file system images.
40354
40355commit 489c696ae7211218961d159e43e722d74c36fcbc
40356Author: Sergei Poselenov <sposelenov@emcraft.com>
40357Date: Wed Feb 14 14:30:28 2007 +0300
40358
40359 MCC200: Extensions to Software Update Mechanism
40360
40361 Update / extend Software Update Mechanism for MCC200 board:
40362
40363 - Add support for rootfs image added. The environment variables
40364 "rootfs_st" and "rootfs_nd" can be used to override the default
40365 values of the image start and end.
40366 - Remove excessive key check code.
40367 - Code cleanup.
40368
40369commit 4be23a12f23f1372634edc3215137b09768b7949
40370Author: Stefan Roese <sr@denx.de>
40371Date: Mon Feb 19 08:23:15 2007 +0100
40372
40373 [PATCH] Update Sequoia EBC configuration (NOR FLASH)
40374
40375 As spotted by Matthias Fuchs, the READY input should not be
40376 enabled for the NOR FLASH on the Sequoia board.
40377
40378 Signed-off-by: Stefan Roese <sr@denx.de>
40379
Wolfgang Denk769104c2007-03-08 21:49:27 +010040380commit 2605e90bf676d48123afe5719a846d2b52b24aac
40381Author: Heiko Schocher <hs@pollux.denx.de>
40382Date: Fri Feb 16 07:57:42 2007 +0100
40383
40384 [PATCH] Added support for the jupiter board.
40385
40386 Signed-off-by: Heiko Schocher <hs@denx.de>
40387
Wolfgang Denk74357112007-02-27 14:26:04 +010040388commit 497d012e5be0194e1084073d0081eb1a844796b2
40389Author: Gary Jennejohn <garyj@pollux.denx.de>
40390Date: Mon Feb 12 13:11:50 2007 +0100
40391
40392 LPC2292: patch from Siemens.
40393
40394commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
40395Author: Stefan Roese <sr@denx.de>
40396Date: Sat Feb 10 08:49:31 2007 +0100
40397
40398 [PATCH] Add missing p3mx.h file to repository (ups)
40399
40400 Signed-off-by: Stefan Roese <sr@denx.de>
40401
40402commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
40403Author: Bartlomiej Sieka <tur@semihalf.com>
40404Date: Fri Feb 9 10:45:42 2007 +0100
40405
40406 [Motion-PRO] Preliminary support for the Motion-PRO board.
40407
40408commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
40409Author: Stefan Roese <sr@denx.de>
40410Date: Wed Feb 7 16:51:08 2007 +0100
40411
40412 [PATCH] Update some AMCC 4xx board config files (set initrd_high)
40413
40414 Some boards that can have more than 768MBytes of SDRAM need to
40415 set "initrd_high", so that the initrd can be accessed by the
40416 Linux kernel.
40417
40418 Signed-off-by: Stefan Roese <sr@denx.de>
40419
40420commit 7372ca68227930d03cffa548310524cad5b96733
40421Author: Stefan Roese <sr@denx.de>
40422Date: Fri Feb 2 12:44:22 2007 +0100
40423
40424 [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
40425
40426 Previously the strapping DCR/SDR was read to determine if the internal PCI
40427 arbiter is enabled or not. This strapping bit can be overridden, so now
40428 the current status is read from the correct DCR/SDR register.
40429
40430 Signed-off-by: Stefan Roese <sr@denx.de>
40431
40432commit 2aa54f651a42d198673318f07a20c89a43e4d197
40433Author: Stefan Roese <sr@denx.de>
40434Date: Fri Feb 2 12:42:08 2007 +0100
40435
40436 [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
40437
40438 Signed-off-by: Stefan Roese <sr@denx.de>
40439
40440commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
40441Author: Stefan Roese <sr@denx.de>
40442Date: Thu Feb 1 13:22:41 2007 +0100
40443
40444 [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
40445
40446 When PCI PNP is enabled the pci pnp configuration routine is called
40447 which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
40448 problems with some PCI cards. For now disable the PCI PNP configuration.
40449
40450 Signed-off-by: Stefan Roese <sr@denx.de>
40451
40452commit 2902fadade3be7659467e8d074048c6b7068f5c0
40453Author: Stefan Roese <sr@denx.de>
40454Date: Wed Jan 31 16:56:10 2007 +0100
40455
40456 [PATCH] Update 440EPx/440GRx cpu detection
40457
40458 Signed-off-by: Stefan Roese <sr@denx.de>
40459
40460commit d5ea287b02a6945c3977410e364a879dd1a555c8
40461Author: Stefan Roese <sr@denx.de>
40462Date: Wed Jan 31 16:38:04 2007 +0100
40463
40464 [PATCH] Update esd cpci5200 files
40465
40466 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
40467
40468commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
40469Author: Stefan Roese <sr@denx.de>
40470Date: Wed Jan 31 16:37:34 2007 +0100
40471
40472 [PATCH] Add support for esd mecp5200 board
40473
40474 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
40475
40476commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
40477Author: Stefan Roese <sr@denx.de>
40478Date: Wed Jan 31 12:38:50 2007 +0100
40479
40480 [PATCH] Remove unneccessary yellowstone board config file
40481
40482 Signed-off-by: Stefan Roese <sr@denx.de>
40483
40484commit e802594b6fa1b166308820c276b96dc0d7cc731c
40485Author: Stefan Roese <sr@denx.de>
40486Date: Tue Jan 30 17:06:10 2007 +0100
40487
40488 [PATCH] Update Sequoia (440EPx) config file
40489
40490 The config file now handles the 2nd target, the Rainier (440GRx)
40491 evaluation board better. Additionally the PPC input clock was
40492 adjusted to match the correct value of 33.0 MHz.
40493
40494 Signed-off-by: Stefan Roese <sr@denx.de>
40495
40496commit 700200c67e73b83751418abe7815840dca8fd6cb
40497Author: Stefan Roese <sr@denx.de>
40498Date: Tue Jan 30 17:04:19 2007 +0100
40499
40500 [PATCH] Merge Yosemite & Yellowstone board ports
40501
40502 Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
40503 share one config file and all board specific files. This way we
40504 don't have to maintain two different sets of files for nearly
40505 identical boards.
40506
40507 Signed-off-by: Stefan Roese <sr@denx.de>
40508
40509commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
40510Author: Stefan Roese <sr@denx.de>
40511Date: Tue Jan 30 15:01:49 2007 +0100
40512
40513 [PATCH] Update Prodrive SCPU (PDNB3 variant) board
40514
40515 SCPU doesn't use redundant environment in flash.
40516
40517 Signed-off-by: Stefan Roese <sr@denx.de>
40518
40519commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
40520Author: Stefan Roese <sr@denx.de>
40521Date: Tue Jan 30 12:51:07 2007 +0100
40522
40523 [PATCH] alpr: Update alpr board config file
40524
40525 Signed-off-by: Stefan Roese <sr@denx.de>
40526
40527commit f8db84f132b1e335f20f96138a1f09ed97b08664
40528Author: Wolfgang Denk <wd@pollux.denx.de>
40529Date: Tue Jan 30 00:50:40 2007 +0100
40530
40531 LPC2292 SODIMM port coding style cleanup.
40532
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010040533commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
40534Author: Gary Jennejohn <garyj@pollux.denx.de>
40535Date: Wed Jan 24 12:16:56 2007 +0100
40536
40537 Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
40538
40539commit 2daf046ba627f85f44195815778140039636244e
40540Author: Bartlomiej Sieka <tur@semihalf.com>
40541Date: Tue Jan 23 17:22:06 2007 +0100
40542
40543 [iDMR] Add MTD and JFFS2 support, also add default partition definition.
40544
40545commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
40546Author: Bartlomiej Sieka <tur@semihalf.com>
40547Date: Tue Jan 23 14:21:14 2007 +0100
40548
40549 [iDMR] Flash driver on initialisation write-protects some sectors,
40550 currently sectors 0-3. Sector 3 does not need to be protected, though
40551 (U-boot occupies sectors 0-1 and the environment sector 2). This commit
40552 fixes this, i.e., only sectors 0-2 are protected.
40553
40554commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
40555Author: Bartlomiej Sieka <tur@semihalf.com>
40556Date: Tue Jan 23 14:11:22 2007 +0100
40557
40558 [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
40559 "mii device" results in "Unexpected exception"). Fixing this properly
40560 requires some clean-up in the FEC drivers infrastructure for ColdFire, so
40561 this commit disables MII commads for now.
40562
40563commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
40564Author: Bartlomiej Sieka <tur@semihalf.com>
40565Date: Tue Jan 23 13:25:22 2007 +0100
40566
40567 [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
40568 Identification Register (CIR).
40569
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020040570commit fdef388758506765d4d6a7155c8f1584c63ff581
40571Author: roy zang <tie-fei.zang@freescale.com>
40572Date: Mon Jan 22 13:19:21 2007 +0800
40573
40574 use CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
40575 The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
40576 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
40577 mpc7448hpc2 board.
40578
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010040579commit a4012396645533aef218354eeba754dff0deace8
40580Author: Wolfgang Denk <wd@pollux.denx.de>
40581Date: Fri Jan 19 23:08:39 2007 +0100
40582
40583 Minor code cleanup.
40584
Wolfgang Denka4012392007-01-19 23:08:39 +010040585commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
40586Author: Heiko Schocher <hs@pollux.denx.de>
40587Date: Fri Jan 19 19:57:10 2007 +0100
40588
40589 [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
40590
40591 Signed-off-by: Heiko Schocher <hs@denx.de>
40592
40593commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
40594Author: Heiko Schocher <hs@pollux.denx.de>
40595Date: Fri Jan 19 18:05:26 2007 +0100
40596
40597 [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
40598 if you must swap the bytes between reading/writing.
40599 (Needed for the SC3 board)
40600
40601 Signed-off-by: Heiko Schocher <hs@denx.de>
40602
40603commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
40604Author: Stefan Roese <sr@denx.de>
40605Date: Thu Jan 18 16:05:47 2007 +0100
40606
40607 [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
40608
40609 Signed-off-by: Stefan Roese <sr@denx.de>
40610
40611commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
40612Author: Stefan Roese <sr@denx.de>
40613Date: Thu Jan 18 11:54:52 2007 +0100
40614
40615 [PATCH] Update Prodrive P3Mx support
40616
40617 Signed-off-by: Stefan Roese <sr@denx.de>
40618
40619commit 34167a36c29ee946b727465db5c014746a08e978
40620Author: Stefan Roese <sr@denx.de>
40621Date: Thu Jan 18 11:48:10 2007 +0100
40622
40623 [PATCH] Add missing Taishan config file
40624
40625 Signed-off-by: Stefan Roese <sr@denx.de>
40626
40627commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
40628Author: Heiko Schocher <hs@pollux.denx.de>
40629Date: Thu Jan 18 11:28:51 2007 +0100
40630
40631 [PATCH] Fix: Compilerwarnings for SC3 board.
40632 The EBC Configuration Register is now by CFG_EBC_CFG definable
40633 Added JFFS2 support for the SC3 board.
40634
40635 Signed-off-by: Heiko Schocher <hs@denx.de>
40636
40637commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
40638Author: Stefan Roese <sr@denx.de>
40639Date: Thu Jan 18 10:25:34 2007 +0100
40640
40641 [PATCH] Add support for AMCC Taishan PPC440GX eval board
40642
40643 Signed-off-by: Stefan Roese <sr@denx.de>
40644
40645commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
40646Author: Wolfgang Denk <wd@pollux.denx.de>
40647Date: Tue Jan 16 18:30:50 2007 +0100
40648
40649 Raname solidcard3 into sc3; add redundant env for sc3
40650
Wolfgang Denk6d3e0102007-01-16 18:30:50 +010040651commit 1bbbbdd20fcec9933697000dcf55ff7972622596
40652Author: Wolfgang Denk <wd@pollux.denx.de>
40653Date: Tue Jan 16 12:46:35 2007 +0100
40654
40655 Update default environment for Solidcard3
40656
Wolfgang Denkf11033e2007-01-15 13:41:04 +010040657commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
40658Author: Stefan Roese <sr@denx.de>
40659Date: Mon Jan 15 09:46:29 2007 +0100
40660
40661 [PATCH] Fix 440SPe rev B detection from previous patch
40662
40663 Signed-off-by: Stefan Roese <sr@denx.de>
40664
40665commit a443d31410c571ee8f970da819a44d698fdd6b1f
40666Author: Heiko Schocher <hs@pollux.denx.de>
40667Date: Sun Jan 14 13:35:31 2007 +0100
40668
40669 [FIX] correct I2C Writes for the LM81 Sensor.
40670
40671 Signed-off-by: Heiko Schocher <hs@denx.de>
40672
40673commit 0bba5452835f19a61204edcda3a58112fd8e2208
40674Author: Wolfgang Denk <wd@pollux.denx.de>
40675Date: Sat Jan 13 11:17:10 2007 +0100
40676
40677 Undo commit 3033ebb2: reset command does not take any arguments
40678
40679 Haiying Wang's modification to the reset command was broken, undo it.
40680
40681 Signed-off-by: Wolfgang Denk <wd@denx.de>
40682
40683commit 95981778cff0038fd9941044d6a3eda810e33258
40684Author: Stefan Roese <sr@denx.de>
40685Date: Sat Jan 13 08:01:03 2007 +0100
40686
40687 [PATCH] Update 440SP(e) cpu revisions
40688
40689 Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
40690
40691 Signed-off-by: Stefan Roese <sr@denx.de>
40692
40693commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
40694Author: Stefan Roese <sr@denx.de>
40695Date: Sat Jan 13 07:59:56 2007 +0100
40696
40697 [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
40698
40699 Now the board revision and the current PCI bus speed are printed after
40700 the board message.
40701
40702 Also the EBC initialising is now done via defines in the board config
40703 file.
40704
40705 Signed-off-by: Stefan Roese <sr@denx.de>
40706
40707commit 36adff362c2c0141ff8a810d42a7e478f779130f
40708Author: Stefan Roese <sr@denx.de>
40709Date: Sat Jan 13 07:59:19 2007 +0100
40710
40711 [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
40712
40713 Now the board revision and the current PCI bus speed are printed after
40714 the board message.
40715
40716 Also the EBC initialising is now done via defines in the board config
40717 file.
40718
40719 Signed-off-by: Stefan Roese <sr@denx.de>
40720
40721commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
40722Author: Stefan Roese <sr@denx.de>
40723Date: Sat Jan 13 07:57:51 2007 +0100
40724
40725 [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
40726
40727 Now the board revision and the current PCI bus speed are printed after
40728 the board message.
40729
40730 Signed-off-by: Stefan Roese <sr@denx.de>
40731
Wolfgang Denk6d3e0102007-01-16 18:30:50 +010040732commit ca43ba18e910206ef8063e4b22d282630bff3fd2
40733Author: Heiko Schocher <hs@pollux.denx.de>
40734Date: Thu Jan 11 15:44:44 2007 +0100
40735
40736 Added support for the SOLIDCARD III board from Eurodesign
40737
40738 Signed-off-by: Heiko Schocher <hs@denx.de>
40739
Wolfgang Denkf11033e2007-01-15 13:41:04 +010040740commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
40741Author: Reinhard Thies <Reinhard.Thies@web.de>
40742Date: Wed Jan 10 14:41:14 2007 +0100
40743
40744 Adjusted default environment for cam5200 board.
40745
40746commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
40747Author: Wolfgang Denk <wd@pollux.denx.de>
40748Date: Wed Jan 10 15:35:52 2007 +0100
40749
40750 Update CHANGELOG
40751
Wolfgang Denkbab5a902007-01-10 15:35:52 +010040752commit 787fa15860a57833e50bd30555079a9cd4e519b8
40753Author: Wolfgang Denk <wd@pollux.denx.de>
40754Date: Wed Jan 10 01:28:39 2007 +0100
40755
40756 Fix auto_update for MCC200 board.
40757
40758 The invocation of do_auto_update() is moved to the end of the
40759 misc_init_r() function, after the flash mappings have been
40760 initialized. Please find attached a patch that implements that
40761 change.
40762
40763 Also correct the decoding of the keypad status. With this update, the
40764 key that will trigger the update is Column 2, Row 2.
40765
Wolfgang Denkf11033e2007-01-15 13:41:04 +010040766commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
40767Author: Marian Balakowicz <m8@semihalf.com>
40768Date: Wed Jan 10 00:26:15 2007 +0100
40769
40770 CAM5200 flash driver modifications:
40771 - use CFI driver (replaces custom flash driver) for main 'cam5200' target
40772 - add second build target 'cam5200_niosflash' which still uses custom driver
40773
Wolfgang Denkbab5a902007-01-10 15:35:52 +010040774commit 67fea022fa957f59653b5238c7496f80a6b70432
40775Author: Markus Klotzbuecher <mk@denx.de>
40776Date: Tue Jan 9 16:02:48 2007 +0100
40777
40778 SPC1920: cleanup memory contoller setup
40779
40780commit 8fc2102faa23593c80381437c09f7745a14deb40
40781Author: Markus Klotzbuecher <mk@denx.de>
40782Date: Tue Jan 9 14:57:14 2007 +0100
40783
40784 Fix the cpu speed setup to work with all boards.
40785
40786commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
40787Author: Markus Klotzbuecher <mk@denx.de>
40788Date: Tue Jan 9 14:57:13 2007 +0100
40789
40790 SPC1920: add support for the FM18L08 Ramtron FRAM
40791
40792commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
40793Author: Markus Klotzbuecher <mk@denx.de>
40794Date: Tue Jan 9 14:57:13 2007 +0100
40795
40796 SPC1920: update the HPI register addresses to work with the second
40797 generation of hardware
40798
40799commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
40800Author: Markus Klotzbuecher <mk@creamnet.de>
40801Date: Tue Jan 9 14:57:13 2007 +0100
40802
40803 Miscellanious spc1920 related cleanups
40804
40805commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
40806Author: Markus Klotzbuecher <mk@denx.de>
40807Date: Tue Jan 9 14:57:12 2007 +0100
40808
40809 SPC1920 GO/NOGO led should be set to color red in U-Boot
40810
40811commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
40812Author: Markus Klotzbuecher <mk@creamnet.de>
40813Date: Tue Jan 9 14:57:12 2007 +0100
40814
40815 Add support for the DS3231 RTC
40816
40817commit 8139567b60d678584b05f0718a681f2047c5e14f
40818Author: Markus Klotzbuecher <mk@creamnet.de>
40819Date: Tue Jan 9 14:57:11 2007 +0100
40820
40821 SMC1 uses external CLK4 instead of BRG on spc1920
40822
40823commit d8d9de1a02fbd880b613d607143d1f57342affc7
40824Author: Markus Klotzbuecher <mk@creamnet.de>
40825Date: Tue Jan 9 14:57:10 2007 +0100
40826
40827 Update the SPC1920 CMB PLD driver
40828
40829commit 3f34f869162750e5e999fd140f884f5de952bcfe
40830Author: Markus Klotzbuecher <mk@creamnet.de>
40831Date: Tue Jan 9 14:57:10 2007 +0100
40832
40833 Add / enable I2C support on the spc1920 board
40834
40835commit d28707dbce1e9ac2017ad051da4133bf22b4204f
40836Author: Markus Klotzbuecher <mk@creamnet.de>
40837Date: Tue Jan 9 14:57:10 2007 +0100
40838
40839 Add support for the tms320671x host port interface (HPI)
40840
40841commit f4eb54529bb3664c3a562e488b460fe075f79d67
40842Author: Wolfgang Denk <wd@pollux.denx.de>
40843Date: Sun Jan 7 00:13:11 2007 +0100
40844
40845 Prepare for release 1.2.0
40846
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010040847commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
40848Author: Stefan Roese <sr@denx.de>
40849Date: Sat Jan 6 15:58:09 2007 +0100
40850
40851 [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
40852
40853 This patch fixes a problem with an incorrect setup for the refresh
40854 timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
40855
40856 Signed-off-by: Stefan Roese <sr@denx.de>
40857
40858commit f16c1da9577f06c5fc08651a4065537407de4635
40859Author: Stefan Roese <sr@denx.de>
40860Date: Sat Jan 6 15:56:13 2007 +0100
40861
40862 [PATCH] Update ALPR board files
40863
40864 This update brings the ALPR board support to the newest version.
40865 It also fixes a problem with the NAND driver.
40866
40867 Signed-off-by: Stefan Roese <sr@denx.de>
40868
40869commit cd1d937f90250a32988c37b2b4af8364d25de8ed
40870Author: Stefan Roese <sr@denx.de>
40871Date: Fri Jan 5 11:46:05 2007 +0100
40872
40873 [PATCH] nand: Fix problem with oobsize calculation
40874
40875 Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
40876
40877 The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
40878 returns a 0x15. In the code fragment below bits [1:0] determine the
40879 page size, it is ANDed via "(extid & 0x3)" then shifted out. The
40880 next field is also ANDed with 0x3. However this is a one bit field
40881 as defined in the Hynix and Samsung parts in the 4th ID byte that
40882 determins the oobsize, not a two bit field. It works on Samsung as
40883 bits[3:2] are 01. However for the Hynix there is a 11 in these two
40884 bits, so the oob size gets messed up.
40885
40886 I checked the correct linux code and the suggested fix from Brian is
40887 also available in the linux nand mtd driver.
40888
40889 Signed-off-by: Stefan Roese <sr@denx.de>
40890
40891commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
40892Author: Stefan Roese <sr@denx.de>
40893Date: Fri Jan 5 10:40:36 2007 +0100
40894
40895 [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
40896
40897 This fix will make the MAL burst disabling patch for the Linux
40898 EMAC driver obsolete.
40899
40900 Signed-off-by: Stefan Roese <sr@denx.de>
40901
40902commit 023889838282b6237b401664f22dd22dfba2c066
40903Author: Stefan Roese <sr@denx.de>
40904Date: Fri Jan 5 10:38:05 2007 +0100
40905
40906 [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
40907
40908 This code will optimize the DDR2 controller setup on a board specific
40909 basis.
40910
40911 Note: This code doesn't work right now on the NAND booting image for the
40912 Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
40913
40914 Signed-off-by: Stefan Roese <sr@denx.de>
40915
40916commit cce4acbb68398634b8d011ed7bb0d12269c84230
40917Author: Bartlomiej Sieka <tur@semihalf.com>
40918Date: Thu Dec 28 19:08:21 2006 +0100
40919
40920 Few V38B changes:
40921 - fix a typo in V38B config file
40922 - move watchdog initialisation earlier in the boot process
40923 - add "wdt=off" to default kernel command line (disables kernel watchdog)
40924
40925commit 92eb729bad876725aeea908d2addba0800620840
40926Author: Wolfgang Denk <wd@pollux.denx.de>
40927Date: Wed Dec 27 01:26:13 2006 +0100
40928
40929 Fix bug in adaption of Stefano Babic's CFI driver patch.
40930
40931commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
40932Author: Wolfgang Denk <wd@pollux.denx.de>
40933Date: Sun Dec 24 01:42:57 2006 +0100
40934
40935 Minor code cleanup.
40936
40937commit d784fdb05900ada3686d5778783e1fb328e9fb66
40938Author: Stefano Babic <sbabic@denx.de>
40939Date: Tue Dec 12 00:22:42 2006 +0100
40940
40941 Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
40942
40943commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
40944Author: Stefan Roese <sr@denx.de>
40945Date: Fri Dec 22 14:29:40 2006 +0100
40946
40947 [PATCH] Fix sequoia flash autodetection (finally correct)
40948
40949 Now 32MByte and 64MByte FLASH is know to work and other
40950 configurations should work too.
40951
40952 Signed-off-by: Stefan Roese <sr@denx.de>
40953
40954commit 82e5236a8b719543643fd26d5827938ab2b94818
40955Author: Wolfgang Denk <wd@pollux.denx.de>
40956Date: Fri Dec 22 10:30:26 2006 +0100
40957
40958 Minor code cleanup; update CHANGELOG.
40959
40960commit fa23044564091f05d9695beb7b5b9a931e7f41a4
40961Author: Heiko Schocher <hs@pollux.denx.de>
40962Date: Thu Dec 21 17:17:02 2006 +0100
40963
40964 Added support for the TQM8272 board from TQ
40965
40966 Signed-off-by: Heiko Schocher <hs@denx.de>
40967
Wolfgang Denkf11033e2007-01-15 13:41:04 +010040968commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
40969Author: Heiko Schocher <hs@pollux.denx.de>
40970Date: Thu Dec 21 16:14:48 2006 +0100
40971
40972 [PATCH] Add support for the UC101 board from MAN.
40973
40974 Signed-off-by: Heiko Schocher <hs@denx.de>
40975
Wolfgang Denk82e52362006-12-22 10:30:26 +010040976commit c84bad0ef60e7055ab0bd49b93069509cecc382a
40977Author: Bartlomiej Sieka <tur@semihalf.com>
40978Date: Wed Dec 20 00:29:43 2006 +0100
40979
40980 Fix to make the baudrate changes immediate for the MCF52x2 family.
40981
40982commit daa6e418bcc0c717752e8de939c213c790286096
40983Author: Bartlomiej Sieka <tur@semihalf.com>
40984Date: Wed Dec 20 00:27:32 2006 +0100
40985
40986 Preliminary support for the iDMR board (ColdFire).
40987
40988commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
40989Author: Andrei Safronov <safronov@pollux.denx.de>
40990Date: Fri Dec 8 16:23:08 2006 +0100
40991
40992 automatic update mechanism
40993
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020040994commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
40995Author: roy zang <tie-fei.zang@freescale.com>
40996Date: Mon Dec 4 17:56:59 2006 +0800
40997
40998 Slight code clean up.
40999 Add comments, delete duplicate define and remove spaces.
41000 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41001
41002commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
41003Author: roy zang <tie-fei.zang@freescale.com>
41004Date: Mon Dec 4 17:54:21 2006 +0800
41005
41006 Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
41007 multiplier table can not refect the real PLL clock behavior of these
41008 processors. Please refer to the hardware specification for detailed
41009 information of the corresponding processors.
41010 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41011
41012commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
41013Author: roy zang <tie-fei.zang@freescale.com>
41014Date: Mon Dec 4 14:46:23 2006 +0800
41015
41016 Remove the static MAC address, ip address, server ip, netmask and
41017 gateway ip for network setting.
41018 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41019
41020commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
41021Author: roy zang <tie-fei.zang@freescale.com>
41022Date: Mon Dec 4 14:33:08 2006 +0800
41023
41024 Remove the duplicate memory test code for mpc744ihpc2 board.
41025 If a memory test is needed, please use the functions in
41026 post/memory.c or memtest command.
41027 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41028
41029commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
41030Author: roy zang <tie-fei.zang@freescale.com>
41031Date: Fri Dec 1 19:01:25 2006 +0800
41032
41033 Fix the exception occuring in RAM table search issue.
41034 The original search_one_table() function code can only processes the search
41035 for the exception occurring in FLASH/ROM, because the exception and fixup
41036 table usually locate in FLASH. If the exception address is also in
41037 FLASH, it will be OK.
41038 If the exception occurs in RAM, after the u-boot relocation, a
41039 relocation offset should be added.
41040
41041 clean up the code in cpu/74xx_7xx/cpu.c
41042
41043 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41044
41045commit ee311214e0d216f904feea269599d0934bf71f23
41046Author: roy zang <tie-fei.zang@freescale.com>
41047Date: Fri Dec 1 11:47:36 2006 +0800
41048
41049 Clean up the code according to codestyle:
41050 (1) remove some C++ comments.
41051 (2) remove trailing white space.
41052 (3) remove trailing empty line.
41053 (4) Indentation by table.
41054 (5) remove {} in one line condition.
41055 (6) add space before '(' in function call.
41056 Remove some weird printf () output.
41057 Add necessary comments.
41058 Modified Makefile to support building in a separate directory.
41059
Wolfgang Denk82e52362006-12-22 10:30:26 +010041060commit dd520bf314c7add4183c5191692180f576f96b60
41061Author: Wolfgang Denk <wd@pollux.denx.de>
41062Date: Thu Nov 30 18:02:20 2006 +0100
41063
41064 Code cleanup.
41065
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010041066commit 8d9a8610b8256331132227e9e6585c6bd5742787
41067Author: Wolfgang Denk <wd@pollux.denx.de>
41068Date: Thu Nov 30 01:54:07 2006 +0100
41069
41070 Code cleanup. Update CHANGELOG.
41071
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010041072commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
41073Author: Grant Likely <grant.likely@secretlab.ca>
41074Date: Wed Nov 29 16:23:42 2006 +0100
41075
41076 [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
41077
41078 The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
41079 not the XLB frequency.
41080
41081 This patch depends on the previous patches for MPC52xx device tree support
41082
41083 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41084 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
41085
41086commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
41087Author: Stefan Roese <sr@denx.de>
41088Date: Wed Nov 29 15:42:37 2006 +0100
41089
41090 [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
41091
41092 This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
41093 and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
41094 quite similar and share the same board directory "prodrive/p3mx"
41095 and the same config file "p3mx.h".
41096
41097 Signed-off-by: Stefan Roese <sr@denx.de>
41098
41099commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
41100Author: Stefan Roese <sr@denx.de>
41101Date: Wed Nov 29 12:53:15 2006 +0100
41102
41103 [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
41104
41105 In the bootvx command the load address was only read from the env
41106 variable "loadaddr" and not optionally passed as paramter as described
41107 in the help. This is fixed with this patch. The behaviour is now the
41108 same as in the bootelf command.
41109
41110 Signed-off-by: Stefan Roese <sr@denx.de>
41111
41112commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
41113Author: Stefan Roese <sr@denx.de>
41114Date: Wed Nov 29 12:03:57 2006 +0100
41115
41116 [PATCH] include/ppc440.h minor error affecting interrupts
41117
41118 Fixed include/ppc440.c for UIC address Bug
41119
41120 Corrects bug affecting the addresses for the universal interrupt
41121 controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
41122
41123 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
41124 Signed-off-by: Stefan Roese <sr@denx.de>
41125
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010041126commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
41127Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41128Date: Tue Nov 28 16:17:27 2006 -0600
41129
41130 Make fsl-i2c not conflict with SOFT I2C
41131
41132 Signed-off-by: Timur Tabi <timur@freescale.com>
41133
41134commit 14198bf768fdc958e3c1afd2404e5262208e98d7
41135Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
41136Date: Tue Nov 28 16:17:18 2006 -0600
41137
41138 Fix I2C master address initialization.
41139
41140 Signed-off-by: Timur Tabi <timur@freescale.com>
41141
41142commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
41143Author: Kim Phillips <kim.phillips@freescale.com>
41144Date: Tue Nov 28 23:31:19 2006 -0600
41145
41146 Assign maintainers for mpc8349emds and mpc8360emds
41147
41148 Dave for mpc8360emds, and me for mpc8349emds.
41149
41150commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
41151Author: Kim Phillips <kim.phillips@freescale.com>
41152Date: Tue Nov 28 23:28:33 2006 -0600
41153
41154 Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
41155
41156 give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
41157 since they are passed by reference to ucc_get_cmxucr_reg and assigned.
41158
41159commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
41160Author: Timur Tabi <timur@freescale.com>
41161Date: Tue Nov 28 12:09:35 2006 -0600
41162
41163 mpc83xx: Miscellaneous code style fixes
41164
41165 Implement various code style fixes and similar changes.
41166
41167 Signed-off-by: Timur Tabi <timur@freescale.com>
41168
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010041169commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
41170Author: Stefan Roese <sr@denx.de>
41171Date: Tue Nov 28 17:55:49 2006 +0100
41172
41173 [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
41174
41175 This patch adds the code and configuration necessary to boot with an
41176 arch/powerpc Linux kernel.
41177
41178 Signed-off-by: Grant Likely <grant.likely@gmail.com>
41179 Acked-by: Jon Loeliger <jdl@freescale.com>
41180
41181commit e732faec95a83cb468b4850ae807c8301dde8f6a
41182Author: Stefan Roese <sr@denx.de>
41183Date: Tue Nov 28 16:09:24 2006 +0100
41184
41185 [PATCH] PPC4xx: 440SP Rev. C detection added
41186
41187 Signed-off-by: Stefan Roese <sr@denx.de>
41188
41189commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
41190Author: Stefan Roese <sr@denx.de>
41191Date: Tue Nov 28 11:04:45 2006 +0100
41192
41193 [PATCH] nand: Fix patch merge problem
41194
41195 Signed-off-by: Stefan Roese <sr@denx.de>
41196
Wolfgang Denk2a8dfe02007-03-21 23:26:15 +010041197commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
41198Author: Stefan Roese <sr@denx.de>
41199Date: Tue Nov 28 11:04:45 2006 +0100
41200
41201 [PATCH] nand: Fix patch merge problem
41202
41203 Signed-off-by: Stefan Roese <sr@denx.de>
41204
Wolfgang Denkd2c83f52006-11-27 23:11:18 +010041205commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
41206Author: Wolfgang Denk <wd@pollux.denx.de>
41207Date: Mon Nov 27 22:53:53 2006 +0100
41208
41209 Update CHANGELOG
41210
Wolfgang Denk4f4b6022006-11-27 22:53:53 +010041211commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
41212Author: Stefan Roese <sr@denx.de>
41213Date: Mon Nov 27 17:43:25 2006 +0100
41214
41215 [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
41216
41217 Patch below corrects the setting of the zmiifer register, it was
41218 overwritting the register rather than ORing the settings.
41219
41220 Signed-off-by: Neil Wilson <NWilson@airspan.com>
41221 Signed-off-by: Stefan Roese <sr@denx.de>
41222
41223commit d1a72545296800b7e219f93104ad5836f0003d66
41224Author: Stefan Roese <sr@denx.de>
41225Date: Mon Nov 27 17:34:10 2006 +0100
41226
41227 [PATCH] Select NAND embedded environment from board configuration
41228
41229 The current NAND Bootloader setup forces the environment
41230 variables to be in line with the bootloader. This change
41231 enables the configuration to be made in the board include
41232 file instead so that it can be individually enabled.
41233
41234 Signed-off-by: Nick Spence <nick.spence@freescale.com>
41235 Signed-off-by: Stefan Roese <sr@denx.de>
41236
41237commit 15784862857c3c2214498defcfed84ff137fb81e
41238Author: Stefan Roese <sr@denx.de>
41239Date: Mon Nov 27 17:22:19 2006 +0100
41240
41241 [PATCH] nand_wait() timeout fixes
41242
41243 Two fixes for the nand_wait() function in
41244 drivers/nand/nand_base.c:
41245
41246 1. Use correct timeouts. The original timeouts in Linux
41247 source are 400ms and 20ms not 40s and 20s
41248
41249 2. Return correct error value in case of timeout. 0 is
41250 interpreted as OK.
41251
41252 Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
41253 Signed-off-by: Stefan Roese <sr@denx.de>
41254
41255commit da5553b095bf04f4f109ad7e565dae3aba47b230
41256Author: Stefan Roese <sr@denx.de>
41257Date: Mon Nov 27 17:04:06 2006 +0100
41258
41259 [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
41260
41261 This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010041262 arguments to bootm. It removes the getenv("disable_of") test that used
Wolfgang Denk4f4b6022006-11-27 22:53:53 +010041263 to be used for this purpose.
41264
41265 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41266 Acked-by: Jon Loeliger <jdl@freescale.com>
41267
41268commit a9398e018593782c5fa7d0741955fc1256b34c1e
41269Author: Wolfgang Denk <wd@pollux.denx.de>
41270Date: Mon Nov 27 15:32:42 2006 +0100
41271
41272 Minor code cleanup. Update CHANGELOG.
41273
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010041274commit 1729b92cde575476684bffe819d0b7791b57bff2
41275Author: Stefan Roese <sr@denx.de>
41276Date: Mon Nov 27 14:52:04 2006 +0100
41277
41278 [PATCH] 4xx: Fix problem with board specific reset code (now for real)
41279
41280 Signed-off-by: Stefan Roese <sr@denx.de>
41281
41282commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
41283Author: Stefan Roese <sr@denx.de>
41284Date: Mon Nov 27 14:49:51 2006 +0100
41285
41286 [PATCH] alpr: remove unused board specific flash driver
41287
41288 Signed-off-by: Stefan Roese <sr@denx.de>
41289
41290commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
41291Author: Stefan Roese <sr@denx.de>
41292Date: Mon Nov 27 14:48:41 2006 +0100
41293
41294 [PATCH] 4xx: Fix problem with board specific reset code
41295
41296 Signed-off-by: Stefan Roese <sr@denx.de>
41297
41298commit ec0c2ec725aec9524a177a77ce75559e644a931a
41299Author: Stefan Roese <sr@denx.de>
41300Date: Mon Nov 27 14:46:06 2006 +0100
41301
41302 [PATCH] Remove testing 4xx enet PHY setup
41303
41304 Signed-off-by: Stefan Roese <sr@denx.de>
41305
41306commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
41307Author: Stefan Roese <sr@denx.de>
41308Date: Mon Nov 27 14:12:17 2006 +0100
41309
41310 [PATCH] Update Prodrive ALPR board support (440GX)
41311
41312 Signed-off-by: Stefan Roese <sr@denx.de>
41313
Wolfgang Denk9986bc32007-08-12 21:34:50 +020041314commit 58b485776698c3d71ec5a215e392123b4c15afa3
41315Author: Markus Klotzbuecher <mk@denx.de>
41316Date: Mon Nov 27 11:51:21 2006 +0100
41317
41318 Add a small README with information on the generic ohci driver.
41319
41320commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
41321Author: Markus Klotzbuecher <mk@denx.de>
41322Date: Mon Nov 27 11:46:46 2006 +0100
41323
41324 Fix some endianness issues related to the generic ohci driver
41325
41326commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
41327Author: Markus Klotzbuecher <mk@denx.de>
41328Date: Mon Nov 27 11:44:58 2006 +0100
41329
41330 Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
41331 to choose between the old and the generic OHCI drivers.
41332
41333commit 53e336e9ffc51035bdc4e5867631b3378761b4df
41334Author: Markus Klotzbuecher <mk@denx.de>
41335Date: Mon Nov 27 11:43:09 2006 +0100
41336
41337 Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
41338 and adapted board configs TQM5200 and yosemite accordingly. This commit
41339 also makes the maximum number of root hub ports configurable
41340 (CFG_USB_OHCI_MAX_ROOT_PORTS).
41341
Wolfgang Denka9398e02006-11-27 15:32:42 +010041342commit 78d620ebb5871d252270dedfad60c6568993b780
41343Author: Wolfgang Denk <wd@atlas.denx.de>
41344Date: Thu Nov 23 22:58:58 2006 +0100
41345
41346 Updates for TQM5200 modules:
41347 - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
41348 - simplify "udate" definitions
41349
41350commit 2053283304eeddf250d109e6791eb6fa4cad14f7
41351Author: Stefan Roese <sr@denx.de>
41352Date: Wed Nov 22 13:20:50 2006 +0100
41353
41354 [PATCH] PPC4xx start.S: Fix for processor errata
41355
41356 Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
41357 errata 1.12: 440_33 by moving patch up in code.
41358
41359 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
41360 Signed-off-by: Stefan Roese <sr@denx.de>
41361
41362commit 4ef6251403f637841000e0fef9e832aa01339822
41363Author: Stefan Roese <sr@denx.de>
41364Date: Mon Nov 20 20:39:52 2006 +0100
41365
41366 [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
41367
41368 Signed-off-by: Stefan Roese <sr@denx.de>
41369
41370commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
41371Author: Wolfgang Denk <wd@pollux.denx.de>
41372Date: Mon Nov 20 10:28:30 2006 +0100
41373
41374 Update CHANGELOG
41375
Wolfgang Denke4bbd8d2006-11-20 10:28:30 +010041376commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
41377Author: Stefan Roese <sr@denx.de>
41378Date: Mon Nov 13 13:55:24 2006 +0100
41379
41380 [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
41381
41382 * Adds support for AMD command set Top Boot flash geometry reversal
41383 * Adds support for reading JEDEC Manufacturer ID and Device ID
41384 * Adds support for displaying command set, manufacturer id and
41385 device ids (flinfo)
41386 * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
41387 * Removes outdated change history (refer to git log instead)
41388
41389 Signed-off-by: Tolunay Orkun <listmember@orkun.us>
41390 Signed-off-by: Stefan Roese <sr@denx.de>
41391
41392commit b21b511d4c50408f4853f46f06b601272196223f
41393Author: Wolfgang Denk <wd@pollux.denx.de>
41394Date: Sun Nov 12 21:13:23 2006 +0100
41395
41396 Update CHANGELOG
41397
Wolfgang Denkb21b5112006-11-12 21:13:23 +010041398commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
41399Author: Bartlomiej Sieka <tur@semihalf.com>
41400Date: Sat Nov 11 22:48:22 2006 +0100
41401
41402 Disable the watchdog in the default config for the V38B board.
41403
41404commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
41405Author: Bartlomiej Sieka <tur@semihalf.com>
41406Date: Sat Nov 11 22:43:00 2006 +0100
41407
41408 Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
41409 group is enabled for USB earlier (in cpu_init_f() instead of
41410 usb_lowlevel_init()).
41411
41412commit 91650b3e4de688038d4f71279c44858e3e2c6870
41413Author: Wolfgang Denk <wd@pollux.denx.de>
41414Date: Mon Nov 6 17:06:36 2006 +0100
41415
41416 Sequential accesses to non-existent memory must be synchronized,
41417 at least on G2 cores.
41418
41419 This fixes get_ram_size() problems on MPC5200 Rev. B boards.
41420
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010041421commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
41422Author: Timur Tabi <timur@freescale.com>
41423Date: Fri Nov 3 19:15:00 2006 -0600
41424
41425 mpc83xx: Update 83xx to use fsl_i2c.c
41426
41427 Update the 83xx tree to use I2C support in drivers/fsl_i2c.c. Delete
41428 cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
41429 Added multiple I2C bus support to fsl_i2c.c.
41430
41431 Signed-off-by: Timur Tabi <timur@freescale.com>
41432
41433commit d239d74b1c937984bc519083a8e7de373a390f06
41434Author: Timur Tabi <timur@freescale.com>
41435Date: Fri Nov 3 12:00:28 2006 -0600
41436
41437 mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
41438
41439 Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
41440 tree matches the other 8xxx trees.
41441
41442 Signed-off-by: Timur Tabi <timur@freescale.com>
41443
41444commit f7fb2e703ec9688541416962724adff70a7322cb
41445Author: Kim Phillips <kim.phillips@freescale.com>
41446Date: Thu Nov 2 19:47:11 2006 -0600
41447
41448 mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
41449
41450commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
41451Author: Dave Liu <daveliu@freescale.com>
41452Date: Thu Nov 2 18:05:50 2006 -0600
41453
41454 mpc83xx: Fix the incorrect dcbz operation
41455
41456 The 834x rev1.x silicon has one CPU5 errata.
41457
41458 The issue is when the data cache locked with
41459 HID0[DLOCK], the dcbz instruction looks like no-op inst.
41460
41461 The right behavior of the data cache is when the data cache
41462 Locked with HID0[DLOCK], the dcbz instruction allocates
41463 new tags in cache.
41464
41465 The 834x rev3.0 and later and 8360 have not this bug inside.
41466
41467 So, when 834x rev3.0/8360 are working with ECC, the dcbz
41468 instruction will corrupt the stack in cache, the processor will
41469 checkstop reset.
41470
41471 However, the 834x rev1.x can work with ECC with these code,
41472 because the sillicon has this cache bug. The dcbz will not
41473 corrupt the stack in cache.
41474 Really, it is the fault code running on fault sillicon.
41475
41476 This patch fix the incorrect dcbz operation. Instead of
41477 CPU FP writing to initialise the ECC.
41478
41479 CHANGELOG:
41480 * Fix the incorrect dcbz operation instead of CPU FP
41481 writing to initialise the ECC memory. Otherwise, it
41482 will corrupt the stack in cache, The processor will checkstop
41483 reset.
41484
41485 Signed-off-by: Dave Liu <daveliu@freescale.com>
41486
41487commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
41488Author: Kim Phillips <kim.phillips@freescale.com>
41489Date: Wed Nov 1 00:10:40 2006 -0600
41490
41491 mpc83xx: add OF_FLAT_TREE bits to 83xx boards
41492
41493 add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
41494 STDOUT_PATH configuration bits to mpc8349emds,
41495 mpc8349itx, and mpc8360emds board code.
41496
41497 redo environment to use bootm with the fdtaddr
41498 for booting ARCH=powerpc kernels by default,
41499 and provide default fdtaddr values.
41500
41501commit 48041365b3420589ad464ebc7752e0053538b729
41502Author: Kim Phillips <kim.phillips@freescale.com>
41503Date: Wed Nov 1 00:07:25 2006 -0600
41504
41505 mpc83xx: change ft code to modify local-mac-address property
41506
41507 Update 83xx OF code to update local-mac-address properties
41508 for ethernet instead of the obsolete 'address' property.
41509
41510commit 9ca880a250870a7d55754291b5591d2b5fe89b54
41511Author: Timur Tabi <timur@freescale.com>
41512Date: Tue Oct 31 21:23:16 2006 -0600
41513
41514 mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
41515
41516 This patch also adds an improved I2C set_speed(), which handles all clock
41517 frequencies.
41518
41519 Signed-off-by: Timur Tabi <timur@freescale.com>
41520
41521commit ac4b5622ce050b5ee1e154b98df630d778661632
41522Author: Dave Liu <daveliu@freescale.com>
41523Date: Tue Oct 31 19:54:59 2006 -0600
41524
41525 mpc83xx: add the README.mpc8360emds
41526
41527 add doc/README.mpc8360emds to accompany the new board support
41528
41529commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
41530Author: Dave Liu <daveliu@freescale.com>
41531Date: Fri Nov 3 12:11:15 2006 -0600
41532
41533 mpc83xx: add QE ethernet support
41534
41535 this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
41536
41537commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
41538Author: Dave Liu <daveliu@freescale.com>
41539Date: Fri Nov 3 19:33:44 2006 -0600
41540
41541 mpc83xx: Add MPC8360EMDS basic board support
41542
41543 Add support for the Freescale MPC8360EMDS board.
41544 Includes DDR, DUART, Local Bus, PCI.
41545
41546commit 23892e49352de74f7fac36ff90bb1be143d195e3
41547Author: Dave Liu <daveliu@freescale.com>
41548Date: Tue Oct 31 19:30:40 2006 -0600
41549
41550 mpc83xx: add the QUICC Engine (QE) immap file
41551
41552 common QE immap file. Also required for 8360.
41553
41554commit b701652a4992bdcc62fb1a6038a85beef9e55da4
41555Author: Dave Liu <daveliu@freescale.com>
41556Date: Tue Oct 31 19:25:38 2006 -0600
41557
41558 mpc83xx: Add 8360 specifics to 83xx immap
41559
41560 Mainly add QE device dependencies, with appropriate 8360 protection.
41561 Lindent also run.
41562
41563commit 988833324a7fda482c8ac3ca23eb539f8232e404
41564Author: Timur Tabi <timur@freescale.com>
41565Date: Tue Oct 31 19:14:41 2006 -0600
41566
41567 mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
41568
41569 PREREQUISITE PATCHES:
41570
41571 * This patch can only be applied after the following patches have been applied:
41572
41573 1) DNX#2006092142000015 "Add support for the MPC8349E-mITX 1/2"
41574 2) DNX#2006092142000024 "Add support for the MPC8349E-mITX 2/2"
41575
41576 CHANGELOG:
41577
41578 * For the 8349E-mITX, fix some size values in pci_init_board(), enable
41579 the clock for the 2nd USB board (Linux kernel will hang otherwise),
41580 and fix the CONFIG_BOOTARGS macro.
41581
41582 Signed-off-by: Timur Tabi <timur@freescale.com>
41583
41584commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
41585Author: Timur Tabi <timur@freescale.com>
41586Date: Tue Oct 31 18:44:42 2006 -0600
41587
41588 mpc83xx: Add support for the MPC8349E-mITX
41589
41590 PREREQUISITE PATCHES:
41591
41592 * This patch can only be applied after the following patches have been applied:
41593
41594 1) DNX#2006090742000024 "Add support for multiple I2C buses"
41595 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
41596 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
41597 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
41598 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
41599
41600 CHANGELOG:
41601
41602 * Add support for the Freescale MPC8349E-mITX reference design platform.
41603 The second TSEC (Vitesse 7385 switch) is not supported at this time.
41604
41605 Signed-off-by: Timur Tabi <timur@freescale.com>
41606
41607commit 183da6d9b446cc12123455844ad1187e2375626f
41608Author: Ben Warren <bwarren@qstreams.com>
41609Date: Tue Sep 12 10:15:53 2006 -0400
41610
41611 Additional MPC8349 support for multibus i2c
41612
41613 Hello,
41614
41615 Here is a patch for a file that was accidentally left out of a previous
41616 attempt.
41617
41618 It accompanies the patch with ticket DNX#2006090742000024
41619
41620 CHANGELOG:
41621 Change PCI initialization to use new multi-bus I2C API.
41622
41623 regards,
41624 Ben
41625
41626commit b24f119d672b709d153ff2ac091d4aa63ec6877d
41627Author: Ben Warren <bwarren@qstreams.com>
41628Date: Thu Sep 7 16:51:04 2006 -0400
41629
41630 Multi-bus I2C implementation of MPC834x
41631
41632 Hello,
41633
41634 Attached is a patch implementing multiple I2C buses on the MPC834x CPU
41635 family and the MPC8349EMDS board in particular.
41636 This patch requires Patch 1 (Add support for multiple I2C buses).
41637 Testing was performed on a 533MHz board.
41638
41639 /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
41640
41641 Signed-off-by: Ben Warren <bwarren@qstreams.com>
41642
41643 CHANGELOG:
41644 Implemented driver-level code to support two I2C buses on the
41645 MPC834x CPU family and the MPC8349EMDS board. Available I2C bus speeds
41646 are 50kHz, 100kHz and 400kHz on each bus.
41647
41648 regards,
41649 Ben
41650
41651commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
41652Author: Ben Warren <bwarren@qstreams.com>
41653Date: Thu Sep 7 16:50:54 2006 -0400
41654
41655 Add support for multiple I2C buses
41656
41657 Hello,
41658
41659 Attached is a patch providing support for multiple I2C buses at the
41660 command level. The second part of the patch includes an implementation
41661 for the MPC834x CPU and MPC8349EMDS board.
41662
41663 /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
41664
41665 Signed-off-by: Ben Warren <bwarren@qstreams.com>
41666
41667 Overview:
41668
41669 1. Include new 'i2c' command (based on USB implementation) using
41670 CONFIG_I2C_CMD_TREE.
41671
41672 2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS. Note that
41673 the commands to change bus number and speed are only available under the
41674 new 'i2c' command mentioned in the first bullet.
41675
41676 3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
41677 systems. When CONFIG_I2C_MULTI_BUS is used, this option takes the form
41678 of an array of bus-device pairs. Otherwise, it is an array of uchar.
41679
41680 CHANGELOG:
41681 Added new 'i2c' master command for all I2C interaction. This is
41682 conditionally compiled with CONFIG_I2C_CMD_TREE. New commands added for
41683 setting I2C bus speed as well as changing the active bus if the board
41684 has more than one (conditionally compiled with
41685 CONFIG_I2C_MULTI_BUS). Updated NOPROBE logic to handle multiple buses.
41686 Updated README.
41687
41688 regards,
41689 Ben
41690
41691commit bed85caf872714ebf53013967a695c9d63acfc68
41692Author: Timur Tabi <timur@freescale.com>
41693Date: Tue Oct 31 18:13:36 2006 -0600
41694
41695 mpc83xx: Add support for Errata DDR6 on MPC 834x systems
41696
41697 CHANGELOG:
41698
41699 * Errata DDR6, which affects all current MPC 834x processors, lists changes
41700 required to maintain compatibility with various types of DDR memory. This
41701 patch implements those changes.
41702
41703 Signed-off-by: Timur Tabi <timur@freescale.com>
41704
41705commit afd6e470f639883002c7c59d562690a5cb0f4865
41706Author: Timur Tabi <timur@freescale.com>
41707Date: Wed Oct 25 18:45:23 2006 -0500
41708
41709 mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
41710
41711commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
41712Author: Timur Tabi <timur@freescale.com>
41713Date: Tue Aug 22 17:07:00 2006 -0500
41714
41715 mpc83xx: Add support for variable flash memory sizes on 83xx systems
41716
41717 CHANGELOG:
41718
41719 * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
41720 window registers, instead of using a hard-coded value of 8MB.
41721
41722 Signed-off-by: Timur Tabi <timur@freescale.com>
41723
41724commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
41725Author: Tanya Jiang <tanya.jiang@freescale.com>
41726Date: Thu Aug 3 18:38:13 2006 +0800
41727
41728 mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
41729
41730 Unified TQM834x variable names with 83xx and consolidated macro
41731 in preparation for the 8360 and other upcoming 83xx devices.
41732
41733 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
41734
41735commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
41736Author: Dave Liu <daveliu@freescale.com>
41737Date: Wed Oct 25 14:41:21 2006 -0500
41738
41739 mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
41740
41741 Incorporated the common unified variable names and the changes in preparation
41742 for releasing mpc8360 patches.
41743
41744 Signed-off-by: Dave Liu <daveliu@freescale.com>
41745
41746commit 3894c46c27c64891f93ac04edde86a9fa9758d92
41747Author: Tanya Jiang <tanya.jiang@freescale.com>
41748Date: Thu Aug 3 18:36:02 2006 +0800
41749
41750 mpc83xx: Fix missing build for mpc8349emds pci.c
41751
41752 Make pci build for mpc8349emds
41753
41754 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
41755
41756commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
41757Author: Tanya Jiang <tanya.jiang@freescale.com>
41758Date: Thu Aug 3 18:39:49 2006 +0800
41759
41760 mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
41761
41762 Removed unused file resetvec.S for mpc83xx cpu
41763
41764 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
41765
41766commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
41767Author: Nick Spence <Nick.Spence@freescale.com>
41768Date: Sat Sep 30 00:32:59 2006 -0700
41769
41770 NAND Flash verify across block boundaries
41771
41772 This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
41773 defined
41774 and the write crosses a block boundary. The pointer to the verification
41775 buffer (bufstart) is not being updated to reflect the starting of the
41776 new
41777 block so the verification of the second block fails.
41778
41779 CHANGELOG:
41780
41781 * Fix NAND FLASH page verification across block boundaries
41782
41783commit f484dc791a3932537213c43c654cc1295c64b84c
41784Author: Nick Spence <nick.spence@freescale.com>
41785Date: Thu Sep 7 07:39:46 2006 -0700
41786
41787 Added RGMII support to the TSECs and Marvell 881111 Phy
41788
41789 Added a phy initialization to adjust the RGMII RX and TX timing
41790 Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
41791
41792 Signed-off-by: Nick Spence <nick.spence@freescale.com>
41793
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020041794commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
41795Author: roy zang <tie-fei.zang@freescale.com>
41796Date: Fri Nov 3 13:10:00 2006 +0800
41797
41798 Remove some unused CFG define.
41799 undef CFG_DRAM_TEST
41800
41801commit 99c09c4dec34f77c243bf51bea532e3f339410ad
41802Author: roy zang <tie-fei.zang@freescale.com>
41803Date: Fri Nov 3 13:07:36 2006 +0800
41804
41805 Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
41806 Both work. 0xFF000000 seems more reasonable.
41807
Wolfgang Denkb21b5112006-11-12 21:13:23 +010041808commit c59200443072353044aa4bf737a5a60f9a9af231
41809Author: Wolfgang Denk <wd@pollux.denx.de>
41810Date: Thu Nov 2 15:15:01 2006 +0100
41811
41812 Release U-Boot 1.1.6
41813
Wolfgang Denk2a26ec42007-04-18 17:07:26 +020041814commit c1fbe4103a0d6c8957f912af902d705ba67836f2
41815Author: roy zang <tie-fei.zang@freescale.com>
41816Date: Thu Nov 2 19:14:48 2006 +0800
41817
41818 This patch comes from Yuli's posted patch on 8/8/2006
41819 titled "CFI Driver Little-Endian write Issue".
41820
41821 http://sourceforge.net/mailarchive/message.php?msg_id=36311999
41822
41823 If that patch applied, please discard this one.
41824 Until now , I do not see his patch is applied. So please apply this one.
41825
41826 Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
41827 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41828
41829commit b825f158e449e1e9cf74c08e572955e122394c96
41830Author: roy zang <tie-fei.zang@freescale.com>
41831Date: Thu Nov 2 19:12:31 2006 +0800
41832
41833 Tsi108 on chip i2c support.
41834
41835 The i2c Interface provides a master-only, serial interface that can be
41836 used for initializing Tsi108/Tsi109 registers from an EEPROM after a
41837 device reset.
41838
41839 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41840 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41841
41842commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
41843Author: roy zang <tie-fei.zang@freescale.com>
41844Date: Thu Nov 2 19:11:06 2006 +0800
41845
41846 Tsi108 on chip pci controller support.
41847
41848 If there is no pci card, the tsi108/109 pci configure read will
41849 cause a machine check exception to the processor. PCI error should
41850 also be cleared after the read.
41851
41852 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41853 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41854
41855commit d1927cee977126e547ceeba23e4f978f377cfb8f
41856Author: roy zang <tie-fei.zang@freescale.com>
41857Date: Thu Nov 2 19:08:55 2006 +0800
41858
41859 Tundra tsi108 on chip Ethernet controller support.
41860
41861 The following is a brief description of the Ethernet controller:
41862 The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
41863 Gigabit Ethernet ports,E0 and E1. It uses a single Management interface
41864 to manage the two physical connection devices (PHYs). Each Ethernet port
41865 has its own statistics monitor that tracks and reports key interface
41866 statistics. Each port supports a 256-entry hash table for address
41867 filtering. In addition, each port is bridged to the Switch Fabric
41868 through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
41869
41870 Each Ethernet port also has a pair of internal Ethernet DMA channels to
41871 support the transmit and receive data flows. The Ethernet DMA channels
41872 use descriptors set up in memory, the memory map of the device, and
41873 access via the Switch Fabric. The Ethernet Controller?s DMA arbiter
41874 handles arbitration for the Switch Fabric. The Controller also
41875 has a register businterface for register accesses and status monitor
41876 control.
41877
41878 The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
41879 modes. The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
41880 The GMII and TBI modes are used to connect with Gigabit PMDs. Internal
41881 data flows to and from the Ethernet Controller through the Switch Fabric.
41882
41883 Each Ethernet port uses its transmit and receive DMA channels to manage
41884 data flows through buffer descriptors that are predefined by the
41885 system (the descriptors can exist anywhere in the system memory map).
41886 These descriptors are data structures that point to buffers filled
41887 with data ready to transmit over Ethernet, or they point to empty
41888 buffers ready to receive data from Ethernet.
41889
41890 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41891 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41892
41893commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
41894Author: roy zang <tie-fei.zang@freescale.com>
41895Date: Thu Nov 2 19:01:33 2006 +0800
41896
41897 Tundra tsi108 header file.
41898
41899 The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
41900 PowerPC processors that offers numerous system interconnect options for
41901 embedded application designers. The Tsi108 can interconnect 60x or
41902 MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
41903 and Flash. Provided the macro define for tsi108 chip.
41904
41905 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41906 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41907
41908commit 87c4db09699c6b89176b31004afcb83eb1585d47
41909Author: roy zang <tie-fei.zang@freescale.com>
41910Date: Thu Nov 2 18:59:15 2006 +0800
41911
41912 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
41913 mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
41914
41915 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41916 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41917
41918commit 27801b8ab11c61b577e45742a515bb3b23b80241
41919Author: roy zang <tie-fei.zang@freescale.com>
41920Date: Thu Nov 2 18:57:21 2006 +0800
41921
41922 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
41923 Make ,config.mk and link file for the mpc7448hpc2 board.
41924
41925 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41926 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41927
41928commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
41929Author: roy zang <tie-fei.zang@freescale.com>
41930Date: Thu Nov 2 18:55:04 2006 +0800
41931
41932 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
41933 The mpc7448hpc2 board support header file.
41934
41935 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41936 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41937
41938commit 625bb5ddb50b243f931262ca8c46956409471917
41939Author: roy zang <tie-fei.zang@freescale.com>
41940Date: Thu Nov 2 18:52:21 2006 +0800
41941
41942 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
41943 The mpc7448hpc2 board support low level assemble language init code.
41944
41945 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41946 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41947
41948commit 4c52783b3d024e153c4972b97332e314bc3bdc46
41949Author: roy zang <tie-fei.zang@freescale.com>
41950Date: Thu Nov 2 18:49:51 2006 +0800
41951
41952 General code modification for mpc7448hpc2 board support.
41953 1. Add 7447A and 7448 processor support.
41954 2. Add the following flags.
41955
41956 CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
41957 (such as by switch on board), this flag should be set.
41958
41959 CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
41960 relocates to RAM, this flag should be set.
41961
41962 CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
41963 system hang in exception, this flag should be set.
41964
41965 There is a design issue for tsi108/109 pci configure read. When pci scan
41966 the slots, if there is no pci card, the tsi108/9 will cause a machine
41967 check exception for mpc7448 processor.
41968
41969 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
41970 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41971
41972commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
41973Author: roy zang <tie-fei.zang@freescale.com>
41974Date: Thu Nov 2 18:34:47 2006 +0800
41975
41976 Add README file for mpc7448hpc2 board.
41977 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
41978
Wolfgang Denkb21b5112006-11-12 21:13:23 +010041979commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
41980Author: Bartlomiej Sieka <tur@semihalf.com>
41981Date: Wed Nov 1 02:04:38 2006 +0100
41982
41983 Finish up support for MarelV38B board
41984 - add watchdog support
41985 - enable GPIO_WKUP_7 pin for input
41986 - code cleanup
41987
41988commit ffa150bc90c943ca265170bd1be3f293674dd5c7
41989Author: Bartlomiej Sieka <tur@semihalf.com>
41990Date: Wed Nov 1 01:45:46 2006 +0100
41991
41992 - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
41993 * remove warnings when compiling ethaddr.c
41994 * adjust linker script (fixes a crash resulting from incorrect
41995 definition of __u_boot_cmd_start)
41996 - Some MarelV38B code cleanup.
41997
41998commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
41999Author: Bartlomiej Sieka <tur@semihalf.com>
42000Date: Wed Nov 1 01:38:16 2006 +0100
42001
42002 - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
42003 MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
42004 Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
42005 MPC5XXX_WU_GPIO_DATA_O for affected boards.
42006
42007 - Add defintions for some MPC5XXX GPIO pins.
42008
42009commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
42010Author: Bartlomiej Sieka <tur@semihalf.com>
42011Date: Wed Nov 1 01:34:29 2006 +0100
42012
42013 Changed MarelV38B board make target to lowercase. Config file cleanup.
42014
Wolfgang Denkc5920042006-11-02 15:15:01 +010042015commit 1954be6e9c9421b45d0a9d05b10356acc7563150
42016Author: Wolfgang Denk <wd@pollux.denx.de>
42017Date: Sun Oct 29 01:03:51 2006 +0200
42018
42019 Automatically adjust ARFLAGS so "make -s" is really silent.
42020
42021commit fae684e89844856383bdf101440889557df3e6b1
42022Author: Stefan Roese <sr@denx.de>
42023Date: Sat Oct 28 16:45:00 2006 +0200
42024
42025 [PATCH] omap925.c: Remove unused functions
42026
42027 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
42028 Signed-off-by: Stefan Roese <sr@denx.de>
42029
42030commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
42031Author: Stefan Roese <sr@denx.de>
42032Date: Sat Oct 28 17:12:58 2006 +0200
42033
42034 [PATCH] Add some missing machtypes for netstar & voiceblue boards
42035
42036 Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
42037 numbers in code.
42038
42039 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
42040 Signed-off-by: Stefan Roese <sr@denx.de>
42041
42042commit 856f054410cef52d868feb330168b2a4c4091328
42043Author: Stefan Roese <sr@denx.de>
42044Date: Sat Oct 28 15:55:52 2006 +0200
42045
42046 [PATCH] NAND: Partition name support added to NAND subsystem
42047
42048 chpart, nboot and NAND subsystem related commands now accept also partition
42049 name to specify offset.
42050
42051 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
42052 Signed-off-by: Stefan Roese <sr@denx.de>
42053
42054commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
42055Author: Wolfgang Denk <wd@pollux.denx.de>
42056Date: Sat Oct 28 02:29:44 2006 +0200
42057
42058 Update CHANGELOG.
42059
Wolfgang Denk07a69a12006-10-28 02:29:44 +020042060commit 2751a95abd1b96911081c357e96a12fa97b40dee
42061Author: Wolfgang Denk <wd@pollux.denx.de>
42062Date: Sat Oct 28 02:29:14 2006 +0200
42063
42064 Enable commandline editing and hush shell on all TQM boards.
42065
42066commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
42067Author: Wolfgang Denk <wd@pollux.denx.de>
42068Date: Sat Oct 28 02:28:02 2006 +0200
42069
42070 README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
42071
42072commit 471a7be7a042e95e440f5de969c9765214ae8d6e
42073Author: Wolfgang Denk <wd@denx.de>
42074Date: Sat Oct 28 01:14:32 2006 +0200
42075
42076 Check for illegal character '=' in environment variable names.
42077
42078 Make sure the string passed as variable name does not contain a '='
42079 character. This not only prevents the common error or typing
42080 "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
42081 also closes a backdoor which allowed to delete write-protected
42082 environment variables, for example by using "setenv ethaddr=".
42083
42084commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
42085Author: Wolfgang Denk <wd@pollux.denx.de>
42086Date: Sat Oct 28 00:38:39 2006 +0200
42087
42088 Minor code cleanup.
42089
42090commit e11887a77d81077416a2d1c5e0354916fee8c034
42091Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
42092Date: Thu Oct 26 17:55:31 2006 +0200
42093
42094 Don't pass any debug options directly to the assembler
42095
42096 When passing the -g option to gcc, gcc automatically selects a
42097 suitable --g<format> option to pass on to the assembler.
42098 Thus, there's no point in forcing a specific debug option on the
42099 assembler using the -Wa mechanism.
42100
42101 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
42102
42103commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
42104Author: Jon Loeliger <jdl@freescale.com>
42105Date: Fri Oct 27 07:47:22 2006 -0500
42106
42107 MPC86xx: Cleaned up unused and conditionally used local variables.
42108
42109 Signed-off-by: Jon Loeliger <jdl@freescale.com>
42110
42111commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
42112Author: Wolfgang Denk <wd@pollux.denx.de>
42113Date: Fri Oct 27 11:55:21 2006 +0200
42114
42115 Fix "ar" flags in some Makefiles to allow for silent "make -s"
42116
42117commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
42118Author: Ben Warren <bwarren@qstreams.com>
42119Date: Thu Oct 26 14:38:25 2006 -0400
42120
42121 Fix TSEC driver (now for real): avoid crashes if PHY is not attached
42122 to a TSEC (e.g. a switch is connected via RMII) or
42123 if the PHY is defective/incorrectly configured.
42124
42125 Signed-off-by: Ben Warren <bwarren@qstreams.com>
42126
42127commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
42128Author: Ben Warren <bwarren@qstreams.com>
42129Date: Thu Oct 26 14:38:25 2006 -0400
42130
42131 Fix TSEC driver: avoid crashes if PHY is not attached
42132 to a TSEC (e.g. a switch is connected via RMII) or
42133 if the PHY is defective/incorrectly configured.
42134
42135 Signed-off-by: Ben Warren <bwarren@qstreams.com>
42136
Ben Warrenb985b5d2006-10-26 14:38:25 -040042137commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
42138Author: Wolfgang Denk <wd@pollux.denx.de>
42139Date: Thu Oct 26 16:24:31 2006 +0200
42140
42141 Code cleanup.
42142
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042143commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
42144Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
42145Date: Wed Oct 25 15:48:59 2006 +0200
42146
42147 Finish up support for the ATSTK1000/ATSTK1002 boards
Ben Warrenb985b5d2006-10-26 14:38:25 -040042148
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042149 Add atstk1002_config target to Makefile and move the AVR32 section
42150 down below Blackfin so that it doesn't end up in the middle of
42151 MIPS.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042152
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042153 Drop the autogenerated linker script thing for now. Will have to
42154 revisit how to handle chips with different flash and RAM layout
42155 later.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042156
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042157 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
42158
42159commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
42160Author: Kumar Gala <galak@kernel.crashing.org>
42161Date: Tue Oct 24 23:47:37 2006 -0500
42162
42163 Added support for Multi-Image files that contain a device tree
Ben Warrenb985b5d2006-10-26 14:38:25 -040042164
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042165 If a Multi-Image file contains a third image we try to use it as a
42166 device tree. The device tree image is assumed to be uncompressed in the
Wolfgang Denkf4eb5452007-01-07 00:13:11 +010042167 image file. We automatically allocate space for the device tree in memory
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042168 and provide an 8k pad to allow more than a reasonable amount of growth.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042169
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042170 Additionally, a device tree that was contained in flash will now automatically
42171 get copied to system memory as part of boot. Previously an error was
42172 reported if one tried to boot a device tree that was in flash.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042173
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042174 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42175
Wolfgang Denk4e53a252006-10-25 00:43:17 +020042176commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
42177Author: Wolfgang Denk <wd@denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042178Date: Tue Oct 24 21:35:55 2006 +0200
Wolfgang Denkcf48eb92006-04-16 10:51:58 +020042179
Wolfgang Denk4e53a252006-10-25 00:43:17 +020042180 Switch to automatically generated CHANGELOG file.
42181 (use "make CHANGELOG" to update it from time to time)
Stefan Roeseaf9e1f52006-10-17 06:14:31 +020042182
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042183commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
42184Author: Stefan Roese <sr@denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042185Date: Tue Oct 24 18:06:48 2006 +0200
Wolfgang Denkcf48eb92006-04-16 10:51:58 +020042186
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042187 Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
42188 Patch by Stefan Roese, 24 Oct 2006
Marian Balakowicz8318fbf2006-10-23 22:17:05 +020042189
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042190commit 8ae3b713b2286e0c3213b7802062e4c1599010de
42191Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042192Date: Tue Oct 24 17:24:55 2006 +0200
Stefan Roese7ade0c62006-10-24 18:06:48 +020042193
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042194 Merge with /home/wd/git/u-boot/master
Wolfgang Denkba999c52006-10-20 17:54:33 +020042195
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042196commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
42197Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042198Date: Tue Oct 24 15:32:57 2006 +0200
Wolfgang Denkf836e412006-10-20 16:12:14 +020042199
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042200 Code cleanup
Wolfgang Denkf6414712006-10-20 15:51:21 +020042201
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042202commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
42203Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042204Date: Tue Oct 24 14:51:36 2006 +0200
Stefan Roese6a0766e2006-10-20 15:18:51 +020042205
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042206 Move atstk1000 files into vendor specific directory.
42207 Patch by Haavard Skinnemoen, 12 Sep 2006
Stefan Roeseedf0b542006-10-18 15:59:35 +020042208
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042209commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
42210Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042211Date: Tue Oct 24 14:42:37 2006 +0200
Wolfgang Denk3231ea62006-10-18 22:31:08 +020042212
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042213 Add ATSTK1000 and ATSTK1002 board support
42214 Patch by Haavard Skinnemoen, 06 Sep 2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042215
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042216 This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
42217 daughterboard.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042218
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042219 ATSTK1000 is a full-featured development board for AT32AP CPUs. It
42220 has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
42221 and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
42222 CompactFlash cards. For more information, please see this page:
Ben Warrenb985b5d2006-10-26 14:38:25 -040042223
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042224 http://www.atmel.com/dyn/products/tools.asp?family_id=682
Ben Warrenb985b5d2006-10-26 14:38:25 -040042225
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042226 The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
42227 AT32AP7000 chip.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042228
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042229 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Stefan Roesed7762332006-10-12 19:50:17 +020042230
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042231commit f93ae788c3640fcde5db383471d45548ff4060d0
42232Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042233Date: Tue Oct 24 14:31:24 2006 +0200
Stefan Roesee0a46552006-10-12 19:43:29 +020042234
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042235 Add common serial driver for Atmel AT32 and AT91 chips
42236 Patch by Haavard Skinnemoen, 06 Sep 2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042237
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042238 This is a first attempt at creating a common serial driver for Atmel
42239 chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
42240 be possible to support AT91RM9200 and other ARM-based chips with some
42241 minor modifications.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042242
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042243 There's nothing fundamentally AVR32-specific in this driver, but it
42244 does use some features which are currently only defined for the
42245 AT32AP CPU port:
42246 * pm_get_clock_freq: Obtain the clock frequency of a given domain
42247 * gd->console_uart: A "struct device" containing information about
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042248 register mappings, gpio resources and clocks associated with the
42249 UART device.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042250
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042251 For more information about these features, please see the "AT32AP
42252 CPU" patch.
Wolfgang Denk87621bc2006-10-12 11:43:47 +020042253
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042254commit 72a087e04705c26cad982879ebd06b5281bf825a
42255Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042256Date: Tue Oct 24 14:27:35 2006 +0200
Stefan Roese5c34eee2006-10-12 07:04:24 +020042257
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042258 Add AT32AP CPU and AT32AP7000 SoC support
42259 Patch by Haavard Skinnemoen, 06 Sep 2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042260
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042261 This patch adds support for the AT32AP CPU family and the AT32AP7000
42262 chip, which is the first chip implementing the AVR32 architecture.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042263
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042264 The AT32AP CPU core is a high-performance implementation featuring a
42265 7-stage pipeline, separate instruction- and data caches, and a MMU.
42266 For more information, please see the "AVR32 AP Technical Reference":
Ben Warrenb985b5d2006-10-26 14:38:25 -040042267
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042268 http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
Ben Warrenb985b5d2006-10-26 14:38:25 -040042269
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042270 In addition to this, the AT32AP7000 chip comes with a large set of
42271 integrated peripherals, many of which are shared with the AT91 series
42272 of ARM-based microcontrollers from Atmel. Full data sheet is
42273 available here:
Ben Warrenb985b5d2006-10-26 14:38:25 -040042274
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042275 http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
Ben Warrenb985b5d2006-10-26 14:38:25 -040042276
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042277 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Stefan Roese752d6832006-10-11 16:57:01 +020042278
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042279commit 7b64fef33c66be648826c0ff9758298ef13d0604
42280Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042281Date: Tue Oct 24 14:21:16 2006 +0200
Stefan Roese2255b2d2006-10-10 12:36:02 +020042282
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042283 Add AVR32 architecture support
42284 Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
Ben Warrenb985b5d2006-10-26 14:38:25 -040042285
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042286 This patch adds common infrastructure code for the Atmel AVR32
42287 architecture. See doc/README.AVR32 for details.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042288
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042289 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Stefan Roese1a1b7372006-10-09 12:55:38 +020042290
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042291commit 2da2d9a4766063b9848f3a35ad6025499cf87265
42292Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042293Date: Tue Oct 24 13:57:33 2006 +0200
Wolfgang Denkd262a922006-10-09 12:50:41 +020042294
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042295 Use -g instead of -gstabs in AFLAGS_DEBUG
42296 Patch by Haavard Skinnemoen, 30 Aug 2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042297
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042298 In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
42299 matter what the target's preferred debugging format is. This patch
42300 simply replaces -gstabs with -g, so that the default debugging format
42301 for the architecture is used.
Wolfgang Denkd82718f2006-10-09 01:26:14 +020042302
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042303commit 965829872169c2996023840d98e1d85ad148d629
42304Author: Wolfgang Denk <wd@pollux.denx.de>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042305Date: Tue Oct 24 13:55:18 2006 +0200
Wolfgang Denk1d92b2e2006-10-09 01:07:53 +020042306
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042307 Fix/workaround broken dependency handling with make 3.81
42308 Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
Wolfgang Denk2b208f52006-10-09 01:02:05 +020042309
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042310commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
42311Author: Marian Balakowicz <m8@semihalf.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042312Date: Mon Oct 23 22:17:05 2006 +0200
Wolfgang Denk511d0c72006-10-09 00:42:01 +020042313
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042314 Fix sequoia separate object direcory building problems.
Wolfgang Denk8d4ac792006-10-09 00:35:30 +020042315
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042316commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
42317Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042318Date: Fri Oct 20 17:16:35 2006 -0500
Wolfgang Denkac611702006-09-20 23:47:49 +020042319
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042320 Use generic I2C register block on 85xx and 86xx.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042321
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042322 Replace private IMMAP I2C structures with generic reg block
42323 and allow 86xx to have multiple I2C device busses.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042324
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042325 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Marian Balakowicz72997122006-10-03 20:28:38 +020042326
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042327commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
42328Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042329Date: Fri Oct 20 15:54:34 2006 -0500
Stefan Roese56fb6ba2006-10-04 07:12:49 +020042330
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042331 Fix compilation warnings on a few 85xx boards.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042332
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042333 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roesed3733252006-10-04 07:12:27 +020042334
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042335commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
42336Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042337Date: Fri Oct 20 15:50:15 2006 -0500
Wolfgang Denkaeec7822006-09-13 10:47:05 +020042338
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042339 Converted all 85xx boards to use a common FSL I2C driver.
42340 Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
42341 And removed hard i2c path from a few u-boot.lds scipts too.
42342 Minor whitespace cleanups along the way.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042343
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042344 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkd214fbb2006-09-13 10:29:32 +020042345
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042346commit 4d45f69e362b05892c9e92a7907e5820995612aa
42347Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042348Date: Thu Oct 19 12:02:24 2006 -0500
Stefan Roese854bc8d2006-09-13 13:51:58 +020042349
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042350 Rewrite a series of goto statements as a sequences of
42351 conditional expressions instead.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042352
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042353 Use consistent return code 0/-1 for good/bad indicators.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042354
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042355 Include one fewer file if the driver isn't used at all.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042356
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042357 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roesed12ae802006-09-12 20:19:10 +020042358
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042359commit 7237c033b02fe295880435f1eb80819a0c987532
42360Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042361Date: Thu Oct 19 11:02:16 2006 -0500
Stefan Roesea73c8db2006-09-12 08:49:07 +020042362
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042363 Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
Ben Warrenb985b5d2006-10-26 14:38:25 -040042364
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042365 in an effort to begin to unify the umpteen FSL I2C drivers that
42366 are all otherwise very similar.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042367
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042368 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denka87d46f2006-09-13 10:23:06 +020042369
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042370commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
42371Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042372Date: Thu Oct 19 11:33:52 2006 -0500
Marian Balakowiczbaf31242006-09-07 17:25:40 +020042373
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042374 * Fix a bunch of compiler warnings for gcc 4.0
Ben Warrenb985b5d2006-10-26 14:38:25 -040042375
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042376 Signed-off-by: Matthew McClintock <msm@freescale.com>
Marian Balakowicz5e090542006-09-07 12:12:20 +020042377
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042378commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
42379Author: Stefan Roese <sr@denx.de>
42380Date: Tue Oct 17 06:14:31 2006 +0200
42381
42382 Add monitor functions for indirect access to PPC440 DCR's
42383 Patch by Leonid Baryudin, 12 Oct 2006
42384
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042385commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
42386Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042387Date: Fri Oct 13 16:47:53 2006 -0500
Marian Balakowicz4f0645e2006-09-07 12:05:53 +020042388
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042389 Fixed leading whitespace issues.
42390 Removed spurious LAWAR thing.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042391
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042392 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese2d658962006-09-07 13:09:53 +020042393
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042394commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
42395Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042396Date: Thu Oct 12 10:42:36 2006 -0500
Stefan Roeseefa20582006-09-07 12:48:49 +020042397
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042398 Remove unneeded include files and local variable.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042399
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042400 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese8cacfb82006-09-07 12:23:02 +020042401
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042402commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
42403Author: Grant Likely <grant.likely@secretlab.ca>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042404Date: Tue Oct 10 00:23:32 2006 -0600
Stefan Roese887e2ec2006-09-07 11:51:23 +020042405
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042406 Fix possible uninitialized variable compiler warning.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042407
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042408 When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
42409 do_bootm_linux() may be uninitialized. There is no possibility in the
42410 current code that len will get used uninitialized, but this fix follows
42411 the existing convention of setting both len and data to zero at the same
42412 time.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042413
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042414 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Wolfgang Denk0dab03b2006-09-06 23:29:15 +020042415
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042416commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
42417Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042418Date: Wed Oct 11 15:13:01 2006 -0500
Wolfgang Denkf60ba0d2006-09-04 02:01:27 +020042419
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042420 * Fix a bunch of compiler warnings for gcc 4.0
Ben Warrenb985b5d2006-10-26 14:38:25 -040042421
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042422 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denk6741ae92006-09-04 01:03:57 +020042423
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042424commit bf651baa365e5447246aad6a633ccd667cf24a39
42425Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042426Date: Wed Oct 11 10:10:43 2006 -0500
Marian Balakowiczf9328632006-09-01 19:49:50 +020042427
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042428 Move "ar" flags to config.mk to allow for silent "make -s"
Marian Balakowicz24d3d372006-09-01 19:47:42 +020042429
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042430commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
42431Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042432Date: Tue Oct 10 17:19:03 2006 -0500
Marian Balakowicz66080432006-09-01 19:46:22 +020042433
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042434 Coding style changes to remove local varible blocks
42435 and reformat a bit nicer.
Marian Balakowicz4c15ef52006-09-01 19:44:05 +020042436
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042437commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
42438Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042439Date: Tue Oct 10 17:16:04 2006 -0500
Wolfgang Denk360b4102006-09-03 18:17:46 +020042440
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042441 Fix whitespace issues.
Detlev Zundel2c051652006-09-01 15:39:02 +020042442
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042443commit 7b382b7125f2397cce63253df62f183e3dfa2770
42444Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042445Date: Tue Oct 10 17:14:45 2006 -0500
Detlev Zundel2c051652006-09-01 15:39:02 +020042446
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042447 Fix whitespace issues.
Detlev Zundel2c051652006-09-01 15:39:02 +020042448
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042449commit e10390ddd736b0dad1528eec4b0fe35c0827139a
42450Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042451Date: Tue Oct 10 17:06:53 2006 -0500
Detlev Zundel2c051652006-09-01 15:39:02 +020042452
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042453 Fix whitespace issues.
Wolfgang Denk7d0432c2006-08-31 16:46:53 +020042454
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042455commit 89875e96ba3f023157bf50d5f8e33bf254964a76
42456Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042457Date: Tue Oct 10 17:03:43 2006 -0500
Wolfgang Denke8143e72006-08-30 23:09:00 +020042458
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042459 Ran lindent and cleaned up whitespace issues.
42460 Format for 80-columns too.
Wolfgang Denk0fd30252006-08-30 23:02:10 +020042461
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042462commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
42463Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042464Date: Tue Oct 10 17:02:22 2006 -0500
Stefan Roese2b393b02006-08-29 08:05:15 +020042465
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042466 Fix whitespace and 80-col issues.
Stefan Roesef5577aa2006-08-29 08:04:32 +020042467
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010042468commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
42469Author: Stefan Roese <sr@denx.de>
42470Date: Sat Oct 7 11:36:51 2006 +0200
42471
42472 CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
42473 Patch by Stefan Roese, 07 Oct 2006
42474
42475commit 5bc528fa4da751d472397b308137238a6465afd2
42476Author: Stefan Roese <sr@denx.de>
42477Date: Sat Oct 7 11:35:25 2006 +0200
42478
42479 Update ALPR code (NAND support working now)
42480 Patch by Stefan Roese, 07 Oct 2006
42481
42482commit 77d5034847d328753b80c46b83f960a14a26f40e
42483Author: Stefan Roese <sr@denx.de>
42484Date: Sat Oct 7 11:33:03 2006 +0200
42485
42486 Remove compile warnings in fpga code
42487 Patch by Stefan Roese, 07 Oct 2006
42488
42489commit f3443867e90d2979a7dd1c65b0d537777e1f9850
42490Author: Stefan Roese <sr@denx.de>
42491Date: Sat Oct 7 11:30:52 2006 +0200
42492
42493 Add CONFIG_BOARD_RESET to configure board specific reset function
42494 Patch by Stefan Roese, 07 Oct 2006
42495
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042496commit f55df18187e7a45cb73fec4370d12135e6691ae1
42497Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042498Date: Fri Sep 29 08:23:12 2006 +0100
Wolfgang Denk21a9cc02006-08-29 10:49:11 +020042499
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042500 Fix missing tCycle/modfreq calculation.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042501
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042502 Signed-off-by: John Traill <john.traill@freescale.com>
Wolfgang Denk16850912006-08-27 18:10:01 +020042503
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042504commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
42505Author: Andy Fleming <afleming@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042506Date: Wed Sep 13 10:33:35 2006 -0500
Wolfgang Denk113f64e2006-08-25 01:38:04 +020042507
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042508 Updated config headers to add default FDT-based booting
Bartlomiej Siekaddde6b72006-08-22 10:38:18 +020042509
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042510commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
42511Author: Andy Fleming <afleming@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042512Date: Wed Sep 13 10:34:18 2006 -0500
Wolfgang Denked1cf842006-08-24 00:26:42 +020042513
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042514 Add support for eTSEC 3 & 4 on 8548 CDS
Ben Warrenb985b5d2006-10-26 14:38:25 -040042515
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042516 * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
42517 This will only work on rev 1.3 boards (but doesn't break older boards)
42518 * Cleaned up some comments to reflect the expanded role of tsec
42519 in other systems
Marian Balakowicz6d3bc9b2006-08-18 19:14:46 +020042520
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042521commit 084d648b109c8984f83674043c1a7fa3885ef801
42522Author: Andy Fleming <afleming@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042523Date: Wed Sep 13 10:33:56 2006 -0500
Rafal Jaworowski6fe16a82006-08-18 10:39:11 +020042524
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042525 Added code to support 2.6.18 PCI changes in u-boot
Ben Warrenb985b5d2006-10-26 14:38:25 -040042526
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042527 * Added code to swizzle the IRQ map for the PCI
Wolfgang Denk94568b62006-08-14 23:23:06 +020042528
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042529commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
42530Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042531Date: Tue Sep 19 09:34:10 2006 -0500
Wolfgang Denk2f6fa462006-08-14 23:17:47 +020042532
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042533 Modified makefile for new build mechanism.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042534
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042535 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkddd5d9d2006-08-14 22:43:13 +020042536
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042537commit d14ba6a798beb753e7a864500414fcc2d198b8bc
42538Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042539Date: Thu Sep 14 08:40:36 2006 -0500
Wolfgang Denk80f0c0f2006-08-14 22:05:26 +020042540
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042541 Handle 86xx SVR values according to the new Reference Manual.
42542 Both 8641 and 8641D have SVR == 0x8090, and are distinguished
42543 by the byte in bits 16-23 instead.
42544 Thanks to Jason Jin for noticing.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042545
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042546 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkd689e342006-08-14 21:18:21 +020042547
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042548commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
42549Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042550Date: Mon Aug 28 14:25:31 2006 +0800
Wolfgang Denk0a0f3a42006-08-17 10:48:36 +020042551
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042552 Fixed an OF-tree off-by-one bug when adding a new property name.
42553 This bug will cause the kernel booting to pause a long time.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042554
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042555 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
42556 (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
Wolfgang Denk6183bb92006-08-17 00:50:26 +020042557
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042558commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
42559Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042560Date: Tue Aug 29 11:05:09 2006 -0500
Wolfgang Denk463764c2006-08-17 00:36:51 +020042561
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042562 Remove trailing empty lines.
Stefan Roesed8f961b2006-08-07 15:08:44 +020042563
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042564commit cd6d73d5b895a5935ac4fde0a356288142a584e0
42565Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042566Date: Tue Aug 29 09:48:49 2006 -0500
Stefan Roese4f92ed52006-08-07 14:33:32 +020042567
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042568 Remove bogus msync and use volatile asm.
Stefan Roese9ede3cc2006-08-07 14:31:21 +020042569
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042570commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
42571Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042572Date: Tue Aug 29 08:17:14 2006 -0500
Stefan Roesee335496a2006-08-07 14:29:04 +020042573
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042574 Add myself as maintainer for MPC8641HPCN.
Rafal Jaworowski36b904a2006-08-11 12:35:52 +020042575
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042576commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
42577Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042578Date: Mon Aug 28 14:25:31 2006 +0800
Wolfgang Denkd8519dc2006-08-11 17:33:42 +020042579
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042580 Fixed an OF-tree off-by-one bug when adding a new property name.
42581 This bug will cause the kernel booting to pause a long time.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042582
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042583 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk015c2002006-08-11 17:29:38 +020042584
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042585commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
42586Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042587Date: Fri Aug 25 14:38:34 2006 -0400
Rafal Jaworowski692519b2006-08-10 12:43:17 +020042588
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042589 Change ramdiskaddr and dtbaddr
42590 Remove PEX fluff commands.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042591
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042592 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
42593 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denka3d91812006-08-10 01:58:22 +020042594
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042595commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
42596Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042597Date: Wed Aug 23 13:32:45 2006 -0500
Bartlomiej Siekae51aae32006-08-03 23:20:13 +020042598
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042599 * Another small fix for booting with disable_of
Ben Warrenb985b5d2006-10-26 14:38:25 -040042600
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042601 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denk6587f7e2006-08-07 20:28:05 +020042602
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042603commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
42604Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042605Date: Wed Aug 23 11:04:43 2006 -0500
Stefan Roesea2c95a72006-07-28 18:34:58 +020042606
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042607 Cleanup and lindent new AHCI driver.
Stefan Roese193dd952006-07-27 16:14:05 +020042608
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042609commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
42610Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042611Date: Wed Aug 23 19:15:12 2006 +0800
Stefan Roese3ca91222006-07-27 16:11:19 +020042612
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042613 Add AHCI define and sata support for MPC8641HPCN board.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042614
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042615 Signed-off-by:Jason Jin<jason.jin@freescale.com>
Wolfgang Denk4c4aca82006-07-26 10:33:37 +020042616
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042617commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
42618Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042619Date: Wed Aug 23 19:10:44 2006 +0800
Wolfgang Denk4819fad2006-07-23 22:40:51 +020042620
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042621 Add AHCI support to u-boot
Ben Warrenb985b5d2006-10-26 14:38:25 -040042622
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042623 Add AHCI support in u-boot, enable the sata disk controllers which
42624 following the AHCI protocol.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042625
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042626 Signed-off-by:Jason Jin<jason.jin@freescale.com>
Wolfgang Denkfd279962006-07-22 21:45:49 +020042627
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042628commit d8ea2acf5f137cae99417df4f573d036ee384668
42629Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042630Date: Wed Aug 23 17:54:32 2006 +0800
Wolfgang Denk135ae002006-07-22 01:20:03 +020042631
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042632 Add dtb boot-up parameter to default boot commands.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042633
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042634 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk966083e2006-07-21 15:24:56 +020042635
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042636commit b93775c2036b99baa390ea425c4771895bbc63c4
42637Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042638Date: Tue Aug 22 18:26:08 2006 -0500
Wolfgang Denk144f7792006-07-21 15:21:40 +020042639
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042640 Cleanup even more poorly introduced whitespace.
Wolfgang Denkb9365a22006-07-21 11:56:05 +020042641
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042642commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
42643Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042644Date: Tue Aug 22 18:07:00 2006 -0500
Wolfgang Denk87a5c732006-07-21 11:38:33 +020042645
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042646 Cleanup more poorly introduced whitespace.
Wolfgang Denk029b6dc2006-07-21 11:37:40 +020042647
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042648commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
42649Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042650Date: Tue Aug 22 17:54:05 2006 -0500
Wolfgang Denkb9365a22006-07-21 11:56:05 +020042651
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042652 Cleanup poorly introduced whitespace.
Wolfgang Denkb9365a22006-07-21 11:56:05 +020042653
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042654commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
42655Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042656Date: Tue Aug 22 12:25:27 2006 -0500
Wolfgang Denkb9365a22006-07-21 11:56:05 +020042657
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042658 General indent and whitespace cleanups.
Wolfgang Denke6446702006-07-21 11:30:18 +020042659
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042660commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
42661Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042662Date: Tue Aug 22 12:06:18 2006 -0500
Wolfgang Denk53dd6ce2006-07-21 11:29:20 +020042663
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042664 General indent and whitespace cleanups.
Wolfgang Denk0352f172006-07-21 11:24:47 +020042665
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042666commit 41a0e8b304d3ff55fe27a230507aac79684016ac
42667Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042668Date: Tue Aug 22 10:42:21 2006 -0500
Wolfgang Denk311d8022006-07-21 11:20:46 +020042669
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042670 Cleanup compiler warnings.
Wolfgang Denk5078cce2006-07-21 11:16:34 +020042671
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042672commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
42673Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042674Date: Tue Aug 22 09:31:59 2006 -0500
Wolfgang Denk5078cce2006-07-21 11:16:34 +020042675
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042676 Fix disable_of booting
Ben Warrenb985b5d2006-10-26 14:38:25 -040042677
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042678 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denk978b1092006-07-19 18:01:38 +020042679
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042680commit 87a449c8ac396420cb24260f717ea9e6faa82047
42681Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042682Date: Tue Aug 22 09:23:55 2006 -0500
Wolfgang Denk45a212c2006-07-19 17:52:30 +020042683
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042684 Support for FDT in uImage format, error when using FDT from flash
Ben Warrenb985b5d2006-10-26 14:38:25 -040042685
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042686 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denkbd3143f2006-07-19 14:49:35 +020042687
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042688commit 75c299c38369d01addd5e054b8a16217b70f4a86
42689Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042690Date: Tue Aug 15 15:12:55 2006 -0400
Wolfgang Denkedd0b502006-07-19 14:44:03 +020042691
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042692 Unlock cache before kernel starts up for MPC86xx
Wolfgang Denkc786f422006-07-19 14:40:43 +020042693
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042694commit 67256678f00c09b0a7f19e862e5c1847553d31bc
42695Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042696Date: Tue Aug 15 15:13:15 2006 -0400
Wolfgang Denkd053ce62006-07-19 14:23:12 +020042697
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042698 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
Wolfgang Denk89366012006-07-19 14:16:38 +020042699
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042700commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
42701Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042702Date: Tue Aug 15 15:12:55 2006 -0400
Wolfgang Denk5a3dfef2006-07-19 14:13:02 +020042703
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042704 Unlock cache before kernel starts up for MPC86xx
Wolfgang Denk0de7fa52006-07-19 14:07:21 +020042705
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042706commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
42707Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042708Date: Tue Aug 15 15:13:15 2006 -0400
Wolfgang Denkb87dfd22006-07-19 13:50:38 +020042709
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042710 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
Wolfgang Denkf3e06df2006-07-18 17:44:19 +020042711
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042712commit 86c8e17f25e972a7e272950a0735fad84e082b88
42713Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042714Date: Wed Aug 16 13:59:47 2006 -0500
Bartlomiej Siekaf88a0ae2006-07-13 15:32:16 +020042715
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042716 * Fix disable_of booting
Ben Warrenb985b5d2006-10-26 14:38:25 -040042717
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042718 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denkdbba3992006-07-13 22:32:45 +020042719
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042720commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
42721Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042722Date: Wed Aug 16 10:54:09 2006 -0500
Wolfgang Denkdbba3992006-07-13 22:32:45 +020042723
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042724 * Support for FDT in uImage format, error when using FDT from flash
Ben Warrenb985b5d2006-10-26 14:38:25 -040042725
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042726 Signed-off-by: Matthew McClintock <msm@freescale.com>
Wolfgang Denkb87dfd22006-07-19 13:50:38 +020042727
Wolfgang Denk8d9a8612006-11-30 01:54:07 +010042728commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
42729Author: Stefan Roese <sr@denx.de>
42730Date: Tue Aug 15 14:22:35 2006 +0200
42731
42732 Add initial support for the ALPR board from Prodrive
42733 NAND needs some additional testing
42734 Patch by Heiko Schocher, 15 Aug 2006
42735
42736commit f0ff4692ff3372dec55074a8eb444943ab095abb
42737Author: Stefan Roese <sr@denx.de>
42738Date: Tue Aug 15 14:15:51 2006 +0200
42739
42740 Add FPGA Altera Cyclone 2 support
42741 Patch by Heiko Schocher, 15 Aug 2006
42742
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042743commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
42744Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042745Date: Mon Aug 14 15:33:38 2006 -0500
Wolfgang Denk87791f32006-07-11 00:23:54 +020042746
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042747 Fix BAT0 to actually be cacheable, non-guarded as documented.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042748
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042749 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk985b9502006-07-10 23:22:43 +020042750
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042751commit 40bc83559db5745681909fd7382ae509567e116d
42752Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042753Date: Wed Aug 9 15:32:16 2006 -0500
Wolfgang Denk9d407992006-07-10 23:07:28 +020042754
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042755 Removed MPC8641HPCN DTS source file from build.
42756 It is no longer linked into U-Boot; its sources are
42757 now located in the kernel tree.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042758
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042759 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Marian Balakowiczedd6cf22006-07-06 21:17:24 +020042760
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042761commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
42762Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042763Date: Wed Jun 28 10:47:03 2006 -0500
Wolfgang Denkcaaeaf92006-07-05 10:42:14 +020042764
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042765 * Switched default PCI speed for 8540 ADS back to 33MHz
Ben Warrenb985b5d2006-10-26 14:38:25 -040042766
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042767 * Added comments and a printf to warn that PCI-X won't
42768 work at 33MHz
42769 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042770
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042771 Signed-off-by: Andy Fleming <afleming@freescale.com>
Marian Balakowiczce05de22006-07-04 08:47:23 +020042772
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042773commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
42774Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042775Date: Wed Jun 28 10:46:35 2006 -0500
Marian Balakowiczd19206b2006-07-04 01:27:46 +020042776
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042777 * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042778
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042779 Signed-off-by: Andy Fleming <afleming@freescale.com>
Marian Balakowiczfbb0b552006-07-04 00:55:47 +020042780
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042781commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
42782Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042783Date: Wed Jun 28 10:46:13 2006 -0500
Marian Balakowiczfe84b482006-07-03 23:42:36 +020042784
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042785 * Added VIA configuration table
Ben Warrenb985b5d2006-10-26 14:38:25 -040042786
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042787 * Added support for PCI2 on CDS
42788 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042789
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042790 Signed-off-by: Andy Fleming <afleming@freescale.com>
Marian Balakowiczbba68372006-06-30 18:35:04 +020042791
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042792commit c88f9fe66b64247e5b6a38410ba315ca25596d16
42793Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042794Date: Wed Jun 28 10:45:41 2006 -0500
Marian Balakowicz971a5dd2006-06-30 18:23:06 +020042795
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042796 * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042797
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042798 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denk3f7a63e2006-06-30 20:16:37 +020042799
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042800commit 97074ed9655309b64231bc2cee69fe85399f8055
42801Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042802Date: Wed Jun 28 10:45:17 2006 -0500
Wolfgang Denk3f7a63e2006-06-30 20:16:37 +020042803
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042804 * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042805
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042806 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denka63c31c2006-06-26 10:54:52 +020042807
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042808commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
42809Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042810Date: Wed Jun 28 10:44:49 2006 -0500
Heiko Schochercb0fdf32006-05-03 08:34:03 +020042811
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042812 * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042813
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042814 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denkf73e73b2006-06-20 00:12:59 +020042815
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042816commit a4e11558b810ef2cddffdf7b9d86bc1130441960
42817Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042818Date: Wed Jun 28 10:44:23 2006 -0500
Wolfgang Denkb87dfd22006-07-19 13:50:38 +020042819
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042820 * Made sure the code which disables prefetch for PCI devices sets the size of the prefetch region to 0 Patch by Andy Fleming on 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042821
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042822 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denk0c32d962006-06-16 17:32:31 +020042823
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042824commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
42825Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042826Date: Wed Jun 28 10:43:36 2006 -0500
Wolfgang Denkc12cffc2006-06-16 17:04:45 +020042827
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042828 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042829
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042830 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkc12cffc2006-06-16 17:04:45 +020042831
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042832commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
42833Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042834Date: Wed Jun 28 10:43:00 2006 -0500
Wolfgang Denkb87dfd22006-07-19 13:50:38 +020042835
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042836 * Removed the oftree.dts for stxxtx in light of the changes to the flat device tree handling code Patch by Matthew McClintock 26-June-2006
Wolfgang Denk10af6d52006-06-16 16:53:06 +020042837
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042838commit 5498d90312aad9f6bdbf047986027c35b03cd163
42839Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042840Date: Wed Jun 28 10:42:24 2006 -0500
Wolfgang Denk14d9ab32006-06-16 16:50:42 +020042841
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042842 * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
Wolfgang Denk1ac7e172006-06-16 16:43:33 +020042843
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042844commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
42845Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042846Date: Wed Jun 28 10:41:37 2006 -0500
Wolfgang Denkbc8bb6d2006-06-16 16:40:54 +020042847
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042848 * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
Wolfgang Denkbc8bb6d2006-06-16 16:40:54 +020042849
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042850commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
42851Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042852Date: Wed Aug 9 14:33:50 2006 +0100
Wolfgang Denkcebd1fc2006-06-16 16:14:28 +020042853
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042854 Add Rapidio support for the MPC8641HPCN
Ben Warrenb985b5d2006-10-26 14:38:25 -040042855
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042856 Signed-off-by: John Traill <john.traill@freescale.com>
Wolfgang Denkcd65a3d2006-06-16 16:11:34 +020042857
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042858commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
42859Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042860Date: Tue Aug 8 11:32:43 2006 +0100
Wolfgang Denk4bdb53c2006-06-16 15:56:12 +020042861
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042862 Fix caslat calculation
Ben Warrenb985b5d2006-10-26 14:38:25 -040042863
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042864 Signed-off-by: John Traill <john.traill@freescale.com>
Wolfgang Denkb9fff8e2006-06-16 15:52:58 +020042865
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042866commit 709d3073e74153278e7904a70819bbef7df50e1a
42867Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042868Date: Thu Aug 3 16:17:56 2006 -0500
Wolfgang Denk3e9a2992006-06-16 15:47:05 +020042869
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042870 Convert to mac-address in ethernet nodes.
Wolfgang Denke00f41e2006-06-16 15:45:03 +020042871
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042872commit 71748af833ca1017edf1415be376366ff2937d17
42873Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042874Date: Fri Jul 28 12:41:35 2006 -0400
Wolfgang Denk33322402006-06-16 15:40:48 +020042875
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042876 Correct the irq value of DUART2
Wolfgang Denk9e18a4b2006-06-14 16:48:18 +020042877
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042878commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
42879Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042880Date: Fri Jul 28 12:41:41 2006 -0400
Stefan Roesedf02bd12006-06-14 10:18:39 +020042881
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042882 Change the space size of PEX IO in README
Stefan Roeseed4633c2006-06-13 18:55:07 +020042883
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042884commit 239db37c94f7a92941c4465feceb867c609241c5
42885Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042886Date: Fri Jul 28 12:41:18 2006 -0400
Heiko Schocher9acb6262006-04-20 08:42:42 +020042887
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042888 Move get_board_sys_clk to board directory
Scott McNutt9cc83372006-06-08 13:37:39 -040042889
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042890commit 492900b985439fbce1a118afde1e35def870db03
42891Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042892Date: Fri Jul 28 09:03:54 2006 +0100
Scott McNutt1f6ce8f2006-06-08 12:08:12 -040042893
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042894 Fix 8641HPCN pollution
Scott McNutt3d22d0b2006-06-08 12:03:21 -040042895
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042896commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
42897Author: John Traill <john.traill@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042898Date: Fri Jul 28 08:16:06 2006 +0100
Scott McNuttc2ced002006-06-08 11:59:57 -040042899
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042900 Fix 8641HPCN timebase
Wolfgang Denk5d7022b2006-06-09 21:19:21 +020042901
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042902commit c86360b830f1eecd7a72208575dde4f57879faea
42903Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042904Date: Fri Jul 28 00:01:34 2006 +0800
Wolfgang Denke461a242006-06-07 11:36:02 +020042905
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042906 Fixed OF device tree of mpc86xxhpcn board.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042907
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042908 The changes works in with kernel irq mapping rework.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042909
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042910 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
Stefan Roese4526c872006-06-06 10:59:12 +020042911
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042912commit bea3f28d285942bf3f7ab339ce85178ded544225
42913Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042914Date: Wed Jul 12 10:48:05 2006 -0400
Wolfgang Denk2fd9eb52006-06-02 17:04:21 +020042915
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042916 Add support for reading and writing mac addresses to or from ID EEPROM.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042917
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042918 Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
42919 With attached patch, we can use command "mac/mac read/mac save/"
42920 to read and write EEPROM under u-boot prompt.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042921
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042922 U-boot will calculate the checksum of EEPROM while bootup,
42923 if it is right, then u-boot will check whether the mac address
42924 of eTSEC0/1/2/3 is availalbe (non-zero).
Ben Warrenb985b5d2006-10-26 14:38:25 -040042925
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042926 If there is mac address availabe in EEPROM, u-boot will use it,
42927 otherewise, u-boot will use the mac address defined in
42928 MPC8641HPCN.h. This matches the requirement to set unique mac address
42929 for each TSEC port.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042930
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042931 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
42932 Signed-off-by: York Sun <yorksun@freescale.com>
Wolfgang Denk2fd9eb52006-06-02 17:04:21 +020042933
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042934commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
42935Author: Jin Zhengxiong <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042936Date: Thu Jul 13 10:35:10 2006 -0500
Wolfgang Denk62b8f542006-06-02 11:46:20 +020042937
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042938 Fixed initrd issue by define big RAM
Ben Warrenb985b5d2006-10-26 14:38:25 -040042939
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042940 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
Wolfgang Denk392c2522006-05-30 23:32:44 +020042941
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042942commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
42943Author: Jason Jin <Jason.jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042944Date: Fri Jul 7 10:01:45 2006 -0500
Wolfgang Denkb9b24802006-05-30 17:45:30 +020042945
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042946 We made a u-boot patch to fix the hang up issue
42947 when booting filesystem from ramdisk.
Ben Warrenb985b5d2006-10-26 14:38:25 -040042948
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042949 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
Wolfgang Denkba94a1b2006-05-30 15:56:48 +020042950
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042951commit 38433ccc5850ee70549af0b2bc5b920355ef5388
42952Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042953Date: Wed Jun 28 10:47:03 2006 -0500
Stefan Roese5770a1e2006-05-18 19:21:53 +020042954
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042955 * Switched default PCI speed for 8540 ADS back to 33MHz
42956 * Added comments and a printf to warn that PCI-X won't
42957 work at 33MHz
42958 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042959
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042960 Signed-off-by: Andy Fleming <afleming@freescale.com>
Marian Balakowiczb62fa912006-05-17 12:18:48 +020042961
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042962commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
42963Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042964Date: Wed Jun 28 10:46:35 2006 -0500
Marian Balakowicz27333f82006-05-17 12:16:26 +020042965
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042966 * Fixed a bug where 8555 PCI code used the old variable and
42967 function names
42968 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042969
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042970 Signed-off-by: Andy Fleming <afleming@freescale.com>
Stefan Roese56ced702006-05-15 15:11:20 +020042971
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042972commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
42973Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042974Date: Wed Jun 28 10:46:13 2006 -0500
Wolfgang Denk65165252006-05-15 13:52:51 +020042975
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042976 * Added VIA configuration table
42977 * Added support for PCI2 on CDS
42978 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042979
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042980 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denk8cba0902006-05-12 16:15:46 +020042981
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042982commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
42983Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042984Date: Wed Jun 28 10:45:41 2006 -0500
Wolfgang Denk977b50f2006-05-10 17:43:20 +020042985
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042986 * Fixed PCI memory definitions
42987 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042988
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042989 Signed-off-by: Andy Fleming <afleming@freescale.com>
Stefan Roese278bc4b2006-05-10 15:06:58 +020042990
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042991commit 087454609e47295443af793a282cddcd91a5f49c
42992Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020042993Date: Wed Jun 28 10:45:17 2006 -0500
Stefan Roesef90a3922006-05-10 15:01:40 +020042994
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042995 * Added support for initializing second PCI bus on 85xx
42996 Patch by Andy Fleming 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040042997
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020042998 Signed-off-by: Andy Fleming <afleming@freescale.com>
Stefan Roese512f8d52006-05-10 14:10:41 +020042999
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043000commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
43001Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043002Date: Wed Jun 28 10:44:49 2006 -0500
Stefan Roesed1dd22f2006-05-10 11:49:37 +020043003
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043004 * Added PCI-X #defines for PCI-X initialization
43005 Patch by Andy Fleming on 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040043006
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043007 Signed-off-by: Andy Fleming <afleming@freescale.com>
Stefan Roese77f63342006-05-10 11:28:48 +020043008
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043009commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
43010Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043011Date: Wed Jun 28 10:44:23 2006 -0500
Stefan Roese6080a0e2006-05-10 10:55:16 +020043012
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043013 * Made sure the code which disables prefetch for PCI devices
43014 sets the size of the prefetch region to 0
43015 Patch by Andy Fleming on 17-Mar-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040043016
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043017 Signed-off-by: Andy Fleming <afleming@freescale.com>
Wolfgang Denk4af099b2006-05-09 13:49:12 +020043018
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043019commit 40d5fa35d02df22580593bf0039ab173367e8ef0
43020Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043021Date: Wed Jun 28 10:43:36 2006 -0500
Marian Balakowicz78b123c2006-05-09 11:54:44 +020043022
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043023 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
43024 Patch by Jon Loeliger 17-Jan-2006
Ben Warrenb985b5d2006-10-26 14:38:25 -040043025
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043026 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Marian Balakowicz6f5155a2006-05-09 11:51:51 +020043027
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043028commit be7e8b0cb5a0c49dc180075b96df296a893bf146
43029Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043030Date: Wed Jun 28 10:43:00 2006 -0500
Marian Balakowiczb75ef852006-05-09 11:45:31 +020043031
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043032 * Removed the oftree.dts for stxxtx in light of the changes
43033 to the flat device tree handling code
43034 Patch by Matthew McClintock 26-June-2006
Marian Balakowiczb4853b72006-05-09 11:43:59 +020043035
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043036commit 1b380ec225665e73959677f3893dc658c5925e05
43037Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043038Date: Wed Jun 28 10:42:24 2006 -0500
Marian Balakowicz0c056f02006-05-09 11:37:13 +020043039
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043040 * Patch to modify ft_build.c to update flat device trees in place
43041 Patch by Matthew McClintock 26-June-2006
Marian Balakowicz483a0cf2006-05-09 11:28:36 +020043042
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043043commit 98a9c4d468a942a09ebe8979bec508017f3e4462
43044Author: Matthew McClintock <msm@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043045Date: Wed Jun 28 10:41:37 2006 -0500
Wolfgang Denkf149d862006-05-05 00:59:28 +020043046
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043047 * Modify bootm command to support booting with flat device trees
43048 Patch by Matthew McClintock 26-June-2006
Kumar Gala8fe9bf62006-04-20 13:45:32 -050043049
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043050commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
43051Author: Jin Zhengxiong <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043052Date: Wed Jun 28 08:43:56 2006 -0500
Wolfgang Denk610cf362006-05-03 01:24:04 +020043053
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043054 Change Id to symbolic name for RTL8139
Ben Warrenb985b5d2006-10-26 14:38:25 -040043055
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043056 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Wolfgang Denkda4849f2006-05-03 01:04:58 +020043057
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043058commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
43059Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043060Date: Tue Jun 27 18:12:10 2006 +0800
Wolfgang Denk983bebb2006-05-03 01:00:39 +020043061
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043062 Fix RTL8139 in big endian
Ben Warrenb985b5d2006-10-26 14:38:25 -040043063
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043064 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
43065 signed-off-by: Wei Zhang <wei.zhang@freescale.com>
Wolfgang Denk983bebb2006-05-03 01:00:39 +020043066
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043067commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
43068Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043069Date: Tue Jun 27 18:12:23 2006 +0800
Wolfgang Denk8546e232006-05-02 00:11:25 +020043070
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043071 Fix Tsec bug when no link
Ben Warrenb985b5d2006-10-26 14:38:25 -040043072
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043073 When tftp a non-exist file from the tftp server, u-boot will check
43074 the link of all eth port. The original file will return wrong link
43075 state on the no link ports.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043076
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043077 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
Wolfgang Denk3577d3a2006-04-28 21:24:32 +020043078
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043079commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
43080Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043081Date: Tue Jun 27 18:12:02 2006 +0800
dzu@denx.de6ca24c62006-04-21 18:30:47 +020043082
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043083 Fix bug for io_bar size during pci scan
Ben Warrenb985b5d2006-10-26 14:38:25 -040043084
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043085 During the pci scan process, Some devices return bar_reponse with the
43086 highest bytes 0, such as the pci bridge in uli1575 return bar_response
43087 with 0xffffff, So the bar_size should be manually set under 64K.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043088
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043089 Signed-off-by: Jason Jin <jason.jin@freescale.com>
dzu@denx.dea367d422006-04-19 11:52:46 +020043090
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043091commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
43092Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043093Date: Tue Jun 27 18:11:54 2006 +0800
Wolfgang Denk8419c012006-04-18 11:05:03 +020043094
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043095 Enable PCIE1 for MPC8641HPCN board
Ben Warrenb985b5d2006-10-26 14:38:25 -040043096
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043097 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Wolfgang Denkcf48eb92006-04-16 10:51:58 +020043098
Wolfgang Denk9986bc32007-08-12 21:34:50 +020043099commit 99d70e3a47affb9bae041a2caece7cd516e213b3
43100Author: Wolfgang Denk <wd@pollux.denx.de>
43101Date: Mon Jun 26 11:06:00 2006 +0200
43102
43103 More code cleanup
43104
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043105commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
43106Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043107Date: Thu Jun 22 08:51:46 2006 -0500
Wolfgang Denk27e166b2005-12-19 13:02:45 +010043108
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043109 Fix bug in 8641hpcn reset command with no args.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043110
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043111 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
43112 Acked-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk27e166b2005-12-19 13:02:45 +010043113
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043114commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
43115Author: Zhang Wei <wei.zhang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043116Date: Tue Jun 20 17:47:15 2006 +0800
Wolfgang Denkb81a4632006-04-13 16:35:22 +020043117
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043118 Reworked IRQ mapping in OF-tree.
Wolfgang Denkb28a31c2006-04-12 12:26:32 +020043119
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043120commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
43121Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043122Date: Thu Jun 15 21:33:37 2006 -0500
Wolfgang Denkb28a31c2006-04-12 12:26:32 +020043123
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043124 Do not enable address translation on secondary CPUs.
43125 Do not set up BATs on secondary CPUs. Let Linux do the nasty.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043126
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043127 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkb28a31c2006-04-12 12:26:32 +020043128
Wolfgang Denk9986bc32007-08-12 21:34:50 +020043129commit 386eda022473394ad8f36b86f2bdc9b4cb816291
43130Author: Wolfgang Denk <wd@pollux.denx.de>
43131Date: Wed Jun 14 18:14:56 2006 +0200
43132
43133 Code cleanup
43134
43135commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
43136Author: Wolfgang Denk <wd@pollux.denx.de>
43137Date: Wed Jun 14 17:45:53 2006 +0200
43138
43139 Various USB related patches
43140 - Add support for mpc8xx USB device.
43141 - Add support for Common Device Class - Abstract Control Model USB console.
43142 - Add support for flow control in USB slave devices.
43143 - Add support for switching between gserial and cdc_acm using environment.
43144 - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
43145 - Update usbcore slightly to ease host enumeration.
43146 - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
43147 - Add AdderUSB_config as a defconfig to enable usage of the USB console
43148 by default with the Adder87x U-Boot port.
43149 Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
43150
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043151commit 8ecc971618f56029ad99d3516f8b297a6ed58971
43152Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043153Date: Wed Jun 7 10:53:55 2006 -0500
Wolfgang Denk5fbb2cd2006-04-06 11:35:18 +020043154
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043155 Fix a get_board_sys_clk() use-before-def warning.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043156
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043157 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Stefan Roese2662b402006-04-01 13:41:03 +020043158
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043159commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
43160Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043161Date: Wed Jun 7 10:52:49 2006 -0500
Stefan Roese2662b402006-04-01 13:41:03 +020043162
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043163 Allow DTC path to be passed in.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043164
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043165 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Stefan Roese2662b402006-04-01 13:41:03 +020043166
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043167commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
43168Author: Haiying Wang <haiying.wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043169Date: Tue Jun 6 16:54:29 2006 -0400
Stefan Roese2662b402006-04-01 13:41:03 +020043170
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043171 Modify the IRQ of DUART2
Stefan Roese2662b402006-04-01 13:41:03 +020043172
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043173commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
43174Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043175Date: Wed May 31 13:55:35 2006 -0500
Stefan Roese2662b402006-04-01 13:41:03 +020043176
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043177 Review cleanups.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043178
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043179 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese2662b402006-04-01 13:41:03 +020043180
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043181commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
43182Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043183Date: Wed May 31 12:44:44 2006 -0500
Stefan Roese2662b402006-04-01 13:41:03 +020043184
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043185 White space cleanup.
43186 Some 80-column cleanups.
43187 Convert printf() to puts() where possible.
43188 Use #include "spd_sdram.h" as needed.
43189 Enhanced reset command usage message a bit.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043190
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043191 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese35118532006-03-31 15:18:37 +020043192
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043193commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
43194Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043195Date: Wed May 31 11:39:34 2006 -0500
Stefan Roese35118532006-03-31 15:18:37 +020043196
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043197 Removed unneeded local_bus_init() from 8641HPCN board.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043198
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043199 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese35118532006-03-31 15:18:37 +020043200
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043201commit 4d3d729c16c392d2982d3266b659d333c927697d
43202Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043203Date: Wed May 31 11:24:28 2006 -0500
Stefan Roese35118532006-03-31 15:18:37 +020043204
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043205 Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043206
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043207 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Stefan Roese35118532006-03-31 15:18:37 +020043208
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043209commit b2a941de060350ad15878d8219825f4950e9bb8e
43210Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043211Date: Wed May 31 10:07:28 2006 -0500
Wolfgang Denkdb28ddb2006-04-03 15:46:10 +020043212
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043213 Remove dead debug code.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043214
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043215 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk534ff672006-04-01 15:52:46 +020043216
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043217commit 126aa70f10ba3d20e0a6f4d32328250513b77770
43218Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043219Date: Tue May 30 17:47:00 2006 -0500
Wolfgang Denk534ff672006-04-01 15:52:46 +020043220
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043221 Move mpc86xx PIXIS code to board directory
Ben Warrenb985b5d2006-10-26 14:38:25 -040043222
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043223 First cut at moving the PIXIS platform code out of
43224 the 86xx cpu directory and into board/mpc8641hpcn
43225 where it belongs.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043226
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043227 Signed-off-by: Jon Loeliger <jdl@freescale.com>
Wolfgang Denkd87080b2006-03-31 18:32:53 +020043228
Wolfgang Denk9986bc32007-08-12 21:34:50 +020043229commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
43230Author: Markus Klotzbuecher <mk@denx.de>
43231Date: Tue May 30 16:56:14 2006 +0200
43232
43233 Support generic OHCI support for the s3c24x0 cpu.
43234
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043235commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
43236Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043237Date: Tue May 30 09:10:32 2006 -0500
Wolfgang Denkf6dbbe92006-03-25 18:42:54 +010043238
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043239 Improve "reset" command's interaction with watchdog.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043240
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043241 "reset altbank" will reset another bank WITHOUT watch dog timer enabled
43242 "reset altbank wd" will reset another bank WITH watch dog enabled
43243 "diswd" will disable watch dog after u-boot boots up successfully
Ben Warrenb985b5d2006-10-26 14:38:25 -040043244
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043245 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk05d8dce2006-03-23 17:10:30 +010043246
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043247commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
43248Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043249Date: Tue May 30 08:51:19 2006 -0500
Wolfgang Denk5725f942006-03-21 01:58:07 +010043250
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043251 Fix two SDRAM setup bugs.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043252
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043253 Fix ECC setup bug.
43254 Enable 1T/2T based on number of DIMMs present.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043255
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043256 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk0b6ba542006-03-19 01:01:51 +010043257
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043258commit d11fec5015334deb2010e36ce00bb118cc5429a5
43259Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043260Date: Fri May 26 10:24:48 2006 -0500
Marian Balakowiczd326f4a2006-03-16 15:19:35 +010043261
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043262 Add first draft of the MPC8641HPCN doc/README.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043263
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043264 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Marian Balakowicz97f98002006-03-16 14:35:32 +010043265
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043266commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
43267Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043268Date: Fri May 26 10:13:04 2006 -0500
Marian Balakowicz991425f2006-03-14 16:24:38 +010043269
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043270 Added pci@8000 block.
43271 Updated ethernet interrupt mappings (moved up 48).
43272 Cleaned up a few comments.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043273
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043274 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Marian Balakowicz4c8d1ec2006-03-14 16:23:35 +010043275
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043276commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
43277Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043278Date: Fri May 26 10:01:16 2006 -0500
Marian Balakowicz61f25152006-03-14 16:14:48 +010043279
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043280 Allow args on reset command.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043281
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043282 Signed-off-by: Jon Loeliger <jdl@jdl.com>
Marian Balakowicz6d8ae5a2006-03-14 16:12:48 +010043283
Wolfgang Denk9986bc32007-08-12 21:34:50 +020043284commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
43285Author: Markus Klotzbuecher <mk@denx.de>
43286Date: Tue May 23 13:38:35 2006 +0200
43287
43288 Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
43289 fixes to the latter.
43290
43291commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
43292Author: Markus Klotzbuecher <mk@denx.de>
43293Date: Tue May 23 10:33:11 2006 +0200
43294
43295 More cleanup for the delta board and the generic usb_ohci driver. Added
43296 CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
43297 initialization and cleanup hooks respectively.
43298
43299commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
43300Author: Markus Klotzbuecher <mk@denx.de>
43301Date: Mon May 22 16:33:54 2006 +0200
43302
43303 This patch adds USB storage support for the delta board. This is the first
43304 board to make use of a generic OHCI driver, that calls hooks for board
43305 dependant initialization.
43306
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043307commit 14e37081ff3cac7ebe6e93836523429853b6b292
43308Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043309Date: Fri May 19 13:28:39 2006 -0500
Marian Balakowicze24e0f02006-03-14 16:03:46 +010043310
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043311 Change arbitration to round-robin for SMP linux.
Marian Balakowiczcd94ba32006-03-14 16:02:31 +010043312
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043313commit 9a655876e5995be80f49054e2509500e871e4d3a
43314Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043315Date: Fri May 19 13:26:34 2006 -0500
Marian Balakowicza7c66ad2006-03-14 16:01:25 +010043316
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043317 Enable dual DDR controllers and interleaving.
Marian Balakowicz6e53e272006-03-14 15:59:25 +010043318
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043319commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
43320Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043321Date: Fri May 19 13:22:44 2006 -0500
Wolfgang Denk09e4b0c2006-03-17 11:42:53 +010043322
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043323 Update 86xx address map and LAWBARs.
Wolfgang Denkff7fefe2006-03-13 12:37:35 +010043324
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043325commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
43326Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043327Date: Fri May 19 13:14:15 2006 -0500
Stefan Roese15940c92006-03-13 11:16:36 +010043328
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043329 Remove L2 Cache invalidate polling.
Stefan Roese15940c92006-03-13 11:16:36 +010043330
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043331commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
43332Author: Jon Loeliger <jdl@jdl.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043333Date: Fri May 19 12:33:09 2006 -0500
Stefan Roese15940c92006-03-13 11:16:36 +010043334
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043335 Enable 2nd CPU and I2C.
Stefan Roesef3fecfe2006-03-13 09:43:01 +010043336
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043337commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
43338Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043339Date: Mon May 15 07:26:56 2006 -0500
Stefan Roese9a7b4082006-03-13 09:42:28 +010043340
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043341 Update interrupt mapping.
Wolfgang Denk95515302006-03-13 01:00:22 +010043342
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043343commit 6cfea33477b04b63ed47386ed1629529484c33ba
43344Author: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043345Date: Wed May 10 09:38:06 2006 -0500
Wolfgang Denkc15f80e2006-03-13 00:50:48 +010043346
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043347 Remove unneeded INIT_RAM_LOCK cache twiddling.
43348 Correctly tracks r29 as global data pointer now.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043349
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043350 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Wolfgang Denkb38dbd42006-03-13 00:46:05 +010043351
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043352commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
43353Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043354Date: Wed May 10 09:33:07 2006 -0500
Wolfgang Denkf07217c2006-03-12 23:27:46 +010043355
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043356 Remove unnecessary flash.c file.
Wolfgang Denk84c960c2006-03-12 23:17:31 +010043357
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043358commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
43359Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043360Date: Tue May 9 08:23:49 2006 -0500
Wolfgang Denk763b5f32006-03-12 23:13:27 +010043361
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043362 Get MPC8641HPCN flash images working.
Ben Warrenb985b5d2006-10-26 14:38:25 -040043363
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043364 Enable the CFI driver.
43365 Remove bogus LAWBAR7 cruft.
43366 Use correct TEXT_BASE, Fixup load script.
43367 Enable SPD EEPROM during DDR setup.
43368 Use generic RFC 1918 IP addresses by default.
Wolfgang Denkbe5048f2006-03-12 22:50:55 +010043369
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043370commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
43371Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043372Date: Thu Apr 27 10:15:16 2006 -0500
Wolfgang Denkca273812006-03-12 22:45:47 +010043373
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043374 Cleanup whitespaces and style issues.
43375 Removed //-style comments.
43376 Use 80-column lines.
43377 Remove trailing whitespace.
43378 Remove dead code and debug cruft.
Wolfgang Denk8123eee2006-03-12 22:41:33 +010043379
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043380commit a2320a6bf8113a09544c42d160d10ac69d049a03
43381Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043382Date: Thu Apr 27 08:22:39 2006 -0500
Wolfgang Denk7c609082006-03-12 22:14:20 +010043383
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043384 Revert bad PCI prefetch limit change.
Kumar Gala86902b82006-01-12 19:51:38 -060043385
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043386commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
43387Author: Jon Loeliger <jdl@freescale.com>
Wolfgang Denk2b2a40b2006-10-26 16:24:31 +020043388Date: Wed Apr 26 17:58:56 2006 -0500
Kumar Gala2688e2f2006-02-10 15:40:06 -060043389
Wolfgang Denk7c52c4b2006-10-24 21:35:55 +020043390 Initial support for MPC8641 HPCN board.