1commit 8e64d6efd8d778a5f83d8bff9cd273a86dcc182f 2Author: Heiko Schocher <hs@denx.de> 3Date: Wed Mar 31 08:34:51 2010 +0200 4 5 net, doc: How to setup MAC address correctly 6 7 As this seems unclear, document how the flow of setting up 8 the MAC address is correct. 9 10 Signed-off-by: Heiko Schocher <hs@denx.de> 11 12 Text changed slightly, adding input from Mike Frysinger. 13 14 Signed-off-by: Wolfgang Denk <wd@denx.de> 15 16commit b78b48c6a0c34b2991e31fc4548aaf773d34f2b3 17Author: Heiko Schocher <hs@denx.de> 18Date: Wed Mar 31 08:34:46 2010 +0200 19 20 net, fec_mxc: only setup the device enetaddr with eeprom value 21 22 Only fill the device enetaddr with the contents of the eeprom, 23 do not program it in MAC address registers 24 25 Signed-off-by: Heiko Schocher <hs@denx.de> 26 Acked-by: Ben Warren <biggerbadderben@gmail.com> 27 28commit d5a64237d58ded31c2eed455c7a346e1c85f5565 29Author: Felix Radensky <felix@embedded-sol.com> 30Date: Tue Mar 30 15:02:13 2010 +0300 31 32 doc: Fix ramdisk examples in doc/uImage.FIT/multi.its 33 34 The ramdisk sections in doc/uImage.FIT/multi.its lack 35 load address and entry point properties. Using examples 36 from this file will result in unbootable image, u-boot 37 will issue the following error messages: 38 39 Can't get ramdisk subimage load address! 40 Ramdisk image is corrupt or invalid 41 42 This patch adds missing properties to ramdisk sections. 43 44 Signed-off-by: Felix Radensky <felix@embedded-sol.com> 45 46commit 2d2018f3db5ed834bc1ee208a2c6212fdf00bca1 47Author: Heiko Schocher <heiko.schocher@invitel.hu> 48Date: Wed Mar 24 13:22:50 2010 +0100 49 50 jffs2, suen3: Fix compiler warning 51 52 $ ./MAKEALL suen3 53 jffs2_1pass.c: In function 'get_fl_mem': 54 jffs2_1pass.c:399: warning: unused variable 'id' 55 jffs2_1pass.c: In function 'get_node_mem': 56 jffs2_1pass.c:423: warning: unused variable 'id' 57 58 Signed-off-by: Heiko Schocher <hs@denx.de> 59 Tested-by: Tom <Tom.Rix@windriver.com> 60 61commit 9ff32d8ccf0e23b5577c25610f001af8d761b4a2 62Author: Timur Tabi <timur@freescale.com> 63Date: Mon Mar 29 12:51:07 2010 -0500 64 65 mpc86xx: set the DDR BATs after calculating true DDR size 66 67 After determining how much DDR is actually in the system, set DBAT0 and 68 IBAT0 accordingly. This ensures that the CPU won't attempt to access 69 (via speculation) addresses outside of actual memory. 70 71 On 86xx systems, DBAT0 and IBAT0 (the BATs for DDR) are initialized to 2GB 72 and kept that way. If the system has less than 2GB of memory (typical for 73 an MPC8610 HPCD), the CPU may attempt to access this memory during 74 speculation. The zlib code is notorious for generating such memory reads, 75 and indeed on the MPC8610, uncompressing the Linux kernel causes a machine 76 check (without this patch). 77 78 Currently we are limited to power of two sized DDR since we only use a 79 single bat. If a non-power of two size is used that is less than 80 CONFIG_MAX_MEM_MAPPED u-boot will crash. 81 82 Signed-off-by: Timur Tabi <timur@freescale.com> 83 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 84 85commit 33f57bd553edf29dffef5a6c7d76e169c79a6049 86Author: Kumar Gala <galak@kernel.crashing.org> 87Date: Fri Mar 26 15:14:43 2010 -0500 88 89 85xx: Fix enabling of L1 cache parity on secondary cores 90 91 Use the same code between primary and secondary cores to init the 92 L1 cache. We were not enabling cache parity on the secondary cores. 93 94 Also, reworked the L1 cache init code to match the e500mc L2 init code 95 that first invalidates the cache and locks. Than enables the cache and 96 makes sure its enabled before continuing. 97 98 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 99 100commit 1a332da61df9c38b567359af114daeaaaefaead8 101Author: Stefan Roese <sr@denx.de> 102Date: Mon Mar 29 15:30:46 2010 +0200 103 104 ppc4xx: Fix problem with I2C bus >= 1 initialization 105 106 This patch fixes a problem introduced with patch eb5eb2b0 107 [ppc4xx: Cleanup PPC4xx I2C infrastructure]. We need to assign the I2C 108 base address to the "i2c" pointer inside of the controller loop. 109 Otherwise controller 0 is initialized multiple times instead of 110 initializing each I2C controller sequentially. 111 112 Tested on Katmai. 113 114 Signed-off-by: Stefan Roese <sr@denx.de> 115 Acked-by: Heiko Schocher <hs@denx.de> 116 117commit 24de2f4be00f81c58270d0df47296bf3a3601cef 118Author: Heiko Schocher <hs@denx.de> 119Date: Mon Mar 29 13:15:48 2010 +0200 120 121 bootm, linux: fix booting Multi-File Image with "kernel+ramdisk+fdt" 122 123 Booting a "Multi-File Image" including a linux kernel, ramdisk and 124 fdt, generated with 125 126 mkimage -A ppc \ 127 -O linux \ 128 -T multi \ 129 -C gzip \ 130 -a 00000000 \ 131 -e 00000000 \ 132 -n "kernel-2.6+initrd+dtb" \ 133 -d "vmlinux.bin.gz:ramdisk_image.gz:board.dtb" \ 134 multi.bin 135 136 actually fails, because ramdisk start and end addresses 137 didn;t get initialized. This patch fixes this issue. 138 139 Tested on the KUP4K board. 140 141 Signed-off-by: Heiko Schocher <hs@denx.de> 142 143commit 2883cc2d48e99fd1873ef8af03fee7966611b735 144Author: Wolfgang Denk <wd@denx.de> 145Date: Sun Mar 28 00:25:14 2010 +0100 146 147 Prepare 2010.03-rc3 148 149 Update CHANGELOG 150 151 Signed-off-by: Wolfgang Denk <wd@denx.de> 152 153commit 060f28532b09dd3d2c78423bdd809ac768a27629 154Author: Wolfgang Denk <wd@denx.de> 155Date: Thu Mar 25 14:07:23 2010 +0100 156 157 cmd_usb.c: print debug messages only when DEBUG is defined 158 159 Signed-off-by: Wolfgang Denk <wd@denx.de> 160 161commit a574cff121b1479c8e962b7a2a29310020387260 162Author: Wolfgang Denk <wd@denx.de> 163Date: Wed Mar 24 12:19:19 2010 +0100 164 165 ml300: remove support for broken, orphaned board 166 167 The ml300 board has a number of issues, but nobody cares about this 168 long-orphaned board any more. Remove it. 169 170 Signed-off-by: Wolfgang Denk <wd@denx.de> 171 Acked-by: Michal Simek <monstr@monstr.eu> 172 173commit 04387d24a17b1ee13024dd4779da4b84d47c65cc 174Author: Wolfgang Denk <wd@denx.de> 175Date: Sat Mar 27 23:37:46 2010 +0100 176 177 mkimage: fix Segmentation Fault when run without "-n name" option 178 179 The restructuring of the mkimage command in commit 89a4d6b1 ("tools: 180 mkimage: split code into core, default and FIT image specific") 181 introduced a bug that caused mkimage to segfault when run without 182 "-n name" option. Initialize the imagename entry to prevent that. 183 184 Signed-off-by: Wolfgang Denk <wd@denx.de> 185 186commit c40c94a3d20a8616264c2dfcda85279185d69aeb 187Author: Renato Andreola <renato.andreola@imagos.it> 188Date: Wed Mar 24 23:00:47 2010 +0800 189 190 cfi_flash: precision and underflow problem in tout calculation 191 192 With old configuration it could happen tout=0 if CONFIG_SYS_HZ<1000. 193 194 Signed-off-by: Renato Andreola <renato.andreola@imagos.it> 195 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 196 Signed-off-by: Thomas Chou <thomas@wytron.com.tw> 197 Signed-off-by: Stefan Roese <sr@denx.de> 198 199commit c550afada5fcad426aa6a219a329feb9eedae8b2 200Author: Rupjyoti Sarmah <rsarmah@appliedmicro.com> 201Date: Wed Mar 24 16:52:02 2010 +0530 202 203 ppc4xx fix unstable 440EPx bootstrap options 204 205 440EPx fixed bootstrap options A, B, D, and E sets PLL FWDVA to a value = 1. 206 This results in the PLLOUTB being greater than the CPU clock frequency 207 resulting unstable 440EPx operation resulting in various software hang 208 conditions. 209 210 This patch reprograms the FWDVA satisfying the requirement of setting FWDVB 211 to a value greater than 1 while using one of the four deafult bootstrap options. 212 213 Signed-off-by: Rupjyoti Sarmah <rsarmah@amcc.com> 214 Acked-by : Victor Gallardo <vgallardo@appliedmicro.com> 215 Signed-off-by: Stefan Roese <sr@denx.de> 216 217commit fb508b8b39a52a4063d098f5a9b4355bc5b30c14 218Author: Matthias Fuchs <matthias.fuchs@esd.eu> 219Date: Wed Mar 24 10:16:20 2010 +0100 220 221 at91: Get rid of some warnings when building for otc570 222 223 The soft-i2c code for AT91 defines I2C_SOFT_DECLARATIONS 224 for direct access by dereferencing a pio pointer. 225 The OTC570 platform uses the AT91 gpio API so it does not 226 need the pio variable. 227 228 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 229 230commit acb13868936a28502782a16e1edaec378e494a29 231Author: Alessandro Rubini <rubini@unipv.it> 232Date: Sat Mar 13 17:44:08 2010 +0100 233 234 lcd: make 16bpp work 235 236 Support for 16bpp was supposed to be in the code but was not working. 237 This makes it work and has been tested in the nhk8815 board. 238 239 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 240 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 241 Signed-off-by: Anatolij Gustschin <agust@denx.de> 242 243commit 152dda3d94e97ede7af3f9560a59a659384d4585 244Author: Wolfgang Denk <wd@denx.de> 245Date: Mon Mar 22 23:25:00 2010 +0100 246 247 Prepare v2010.03-rc2 248 249 Update CHANGELOG 250 251 Signed-off-by: Wolfgang Denk <wd@denx.de> 252 253commit d650da2dd4af99967aabc43cccbd8f160eb4cea6 254Author: Matthias Kaehlcke <matthias@kaehlcke.net> 255Date: Tue Mar 9 22:13:33 2010 +0100 256 257 ep93xx timer: Fix resolution of get_ticks() 258 259 ep93xx timer: Make get_ticks() return a value in CONFIG_SYS_HZ resolution, 260 as announced by get_tbclk() 261 262 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 263 264commit 7e67fb5bf27a07d3b8d6b97c76f7195f7d68af58 265Author: Matthias Kaehlcke <matthias@kaehlcke.net> 266Date: Tue Mar 9 22:13:20 2010 +0100 267 268 ep93xx timer: Fix possible overflow in usecs_to_ticks() 269 270 ep93xx timer: Use 64-bit values in usecs_to_ticks() in order to avoid 271 overflows in intermediate values 272 273 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 274 275commit daa989b47297c9f73426783599c286ef3a1f3f49 276Author: Asen Dimov <dimov@ronetix.at> 277Date: Thu Mar 18 13:41:47 2010 +0200 278 279 correct a syntax typo in at91_matrix.h 280 281 Signed-off-by: Asen Dimov <dimov@ronetix.at> 282 283commit 322ff395c9aec7b87a2211fe4333fdf44377c564 284Author: Jeff Angielski <jeff@theptrgroup.com> 285Date: Wed Mar 17 15:09:26 2010 -0400 286 287 env: fix endian ordering in crc table 288 289 The crc table was being built as little endian for big endian 290 targets. This would cause fw_printenv to always fail with 291 "Warning: Bad CRC, using default environment" messages. 292 293 Signed-off-by: Jeff Angielski <jeff@theptrgroup.com> 294 Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 295 296commit 51c2ac9bb574c1420b993615268392b0c1f829f6 297Author: Anatolij Gustschin <agust@denx.de> 298Date: Tue Mar 16 17:10:08 2010 +0100 299 300 mpc5121: cpu/mpc512x/diu.c: fix warnings 301 302 Fix warnings while compiling with CONFIG_VIDEO enabled: 303 304 diu.c: In function 'video_hw_init': 305 diu.c:158: warning: 'return' with no value, in function returning non-void 306 diu.c:162: warning: format '%ld' expects type 'long int', but argument 6 has type 'int' 307 diu.c:162: warning: format '%ld' expects type 'long int', but argument 7 has type 'int' 308 309 Signed-off-by: Anatolij Gustschin <agust@denx.de> 310 311commit a74908161a1b37d780d3a826a86807bbc50a3857 312Author: Anatolij Gustschin <agust@denx.de> 313Date: Tue Mar 16 15:29:33 2010 +0100 314 315 console.c: fix problem with splashimage 316 317 If a board uses cfb_console driver and splash image 318 and also defines CONFIG_SILENT_CONSOLE, the user is 319 locked out even if "silent" is not set. It is not 320 possible to get any output, neither on vga console 321 device nor on serial console after redirecting the 322 output to the serial console, since the GD_FLG_SILENT 323 flag remains set. 324 325 Fix the problem by redirecting the output from frame 326 buffer to serial console if splashimage is used. 327 Only suppress the output if "silent" environment 328 variable was set and don't set the GD_FLG_SILENT 329 flag arbitrarily. 330 331 Signed-off-by: Anatolij Gustschin <agust@denx.de> 332 333commit 5647f78d04174b0b99857d2a7cbf25141bd14a45 334Author: Thomas Weber <swirl@gmx.li> 335Date: Sat Mar 13 23:14:45 2010 +0100 336 337 mod change 755 => 644 for multiple files 338 339 I executed 'find . -name "*.[chS]" -perm 755 -exec chmod 644 {} \;' 340 341 Signed-off-by: Thomas Weber <swirl@gmx.li> 342 Add some more: neither Makefile nor config.mk need execute permissions. 343 Signed-off-by: Wolfgang Denk <wd@denx.de> 344 345commit 99c006a320ceb9ea19135ac1512e4a81e8bebb72 346Author: Stefano Babic <sbabic@denx.de> 347Date: Sat Mar 13 21:09:00 2010 +0100 348 349 mxcmmc: fix warnings due to access 32 bit registers with 16 bit accessors 350 351 Some registers of the mxcmmc driver were accessed using 352 16 bit accessor functions, because only the LSB is 353 significant. This is not needed and generates 354 warnings. 355 356 Signed-off-by: Stefano Babic <sbabic@denx.de> 357 358commit c96f86eefc215b67dd222694ce2b6f60e6a42b0b 359Author: Wolfgang Denk <wd@denx.de> 360Date: Sun Jan 17 23:55:53 2010 +0100 361 362 TFTP: allow for adjustable retransmission timout 363 364 So far, TFTP negotiated a fixed retransmission timeout of 5 seconds. 365 In some cases (busy networks, slow TFTP servers) this caused very 366 slow transfers. A new environment variable "tftptimeout" allows to 367 set this timeout. Lowering this value may make downloads succeed 368 faster in networks with high packet loss rates or with unreliable 369 TFTP servers. 370 371 Signed-off-by: Wolfgang Denk <wd@denx.de> 372 Cc: Ben Warren <biggerbadderben@gmail.com> 373 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 374 375commit 252b404d954f91499a4477a3e1064eb237ce5a1c 376Author: Wolfgang Denk <wd@denx.de> 377Date: Tue Mar 9 14:27:25 2010 +0100 378 379 Fix PCI_BASE_ADDRESS_5 handling in pci_hose_config_device() 380 381 Signed-off-by: FUJITA Kazutoshi <fujita@soum.co.jp> 382 Signed-off-by: <wd@denx.de> 383 Acked-by: Stefan Roese <sr@denx.de> 384 385commit 9d90a93d367272ee65550c0c9f82615cec967c70 386Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 387Date: Thu Feb 25 14:03:08 2010 +0100 388 389 cmd_mmc remove \n 390 391 This patch removes the \n after the help message for mmcinfo. 392 This resulted in an empty line being displayed after the mmcinfo line 393 when the help command was given. 394 395 Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 396 397commit 67c7189dd35cb368ef665126fd17816581bd2e92 398Author: Renato Andreola <renato.andreola@imagos.it> 399Date: Tue Mar 16 16:01:29 2010 -0400 400 401 nios2: Added support to YANU UART 402 403 Signed-off-by: Scott McNutt <smcnutt@psyent.com> 404 405commit 1e67fb32fbdae7949bb423c9e20b3f77c0a61663 406Author: Thomas Chou <thomas@wytron.com.tw> 407Date: Tue Mar 16 12:12:48 2010 -0400 408 409 nios2: use generic unaligned.h 410 411 Signed-off-by: Scott McNutt <smcnutt@psyent.com> 412 413commit 05022629a2ca6c385dc390d32c20aa27cf5d915a 414Author: Mike Frysinger <vapier@gentoo.org> 415Date: Thu Jan 21 05:01:15 2010 -0500 416 417 asm-blackfin/unaligned.h: add for zlib code 418 419 The new zlib code wants asm/unaligned.h, so have the Blackfin version pull 420 in the asm-generic/unaligned.h. 421 422 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 423 424commit 3adc1fda38a6aacd4aaf3c2c9cc62a1e69e6de17 425Author: Mike Frysinger <vapier@gentoo.org> 426Date: Thu Jan 21 05:01:14 2010 -0500 427 428 asm-generic/unaligned.h: dynamic default unaligned accesses 429 430 This is based on the asm-arm/unaligned.h, but made generic so all arches 431 that cannot do unaligned accesses can utilize it. 432 433 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 434 435commit be129aa71882421ad0b50cd3762915d10ace27ad 436Author: Matthias Weisser <matthias.weisser@graf-syteco.de> 437Date: Tue Jan 12 12:06:31 2010 +0100 438 439 video: Fix console display when splashscreen is used 440 441 If a splashscreen is used the console scrolling used the 442 scroll size as needed when a logo was displayed. This 443 patch sets the scroll size to the whole screen if 444 a splashscreen is shown. 445 446 Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de> 447 448commit 93910edb595a88d394da3eb2cf5148096155dfe9 449Author: Wolfgang Denk <wd@denx.de> 450Date: Fri Mar 12 23:06:04 2010 +0100 451 452 Prepare v2010.03-rc1 453 454 Coding style cleanup, update CHANGELOG. 455 456 Signed-off-by: Wolfgang Denk <wd@denx.de> 457 458commit 4e72fb15c9073129e05820cc9c54f54bc4985835 459Author: Wolfgang Denk <wd@denx.de> 460Date: Fri Mar 12 22:11:00 2010 +0100 461 462 standalone eepro100_eeprom: fix build error 463 464 Building examples/standalone/eepro100_eeprom triggers this error: 465 466 In file included from include/common.h:629, 467 from eepro100_eeprom.c:24: 468 include/net.h: In function 'NetReadIP': 469 include/net.h:430: warning: implicit declaration of function 'memcpy' 470 eepro100_eeprom.c: At top level: 471 eepro100_eeprom.c:81: error: conflicting types for 'memcpy' 472 include/net.h:430: error: previous implicit declaration of 'memcpy' was here 473 474 Fix this. 475 476 Signed-off-by: Wolfgang Denk <wd@denx.de> 477 478commit 1bb1809558e11eb089fba32caed9fc99d21477c1 479Author: Wolfgang Denk <wd@denx.de> 480Date: Fri Mar 12 22:10:31 2010 +0100 481 482 Update .gitignore's: add some generated files 483 484 Signed-off-by: Wolfgang Denk <wd@denx.de> 485 486commit 9c9cbe78dcb0afad081670cb1bdc82d227095cae 487Author: Detlev Zundel <dzu@denx.de> 488Date: Mon Mar 8 14:02:57 2010 +0100 489 490 mpc82xx: Remove SL8245 board and the now orpahned sk98lin network driver. 491 492 This code has compile problems and the company does not even exist any 493 more. So we take the liberty to drop support for it. 494 495 Signed-off-by: Detlev Zundel <dzu@denx.de> 496 CC: Wolfgang Denk <wd@denx.de> 497 CC: Ben Warren <biggerbadderben@gmail.com> 498 499commit ca02f6f8dc4966b2a019b15e01b5070189327df2 500Author: Kumar Gala <galak@kernel.crashing.org> 501Date: Wed Mar 10 17:16:48 2010 -0600 502 503 85xx: Drop FIT support to allow u-boot image to fit in 512k 504 505 The 36-bit build exceeds the 512k size we have. Removing FIT type image 506 support allows us to fit and we dont really use it. 507 508 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 509 510commit 5f8419597f427aaf9bb501460735d703d10db5ee 511Author: Michael Zaidman <michael.zaidman@gmail.com> 512Date: Sun Feb 28 16:28:25 2010 +0200 513 514 Cosmetic change - indentation correction. 515 516 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com> 517 518commit a693447ceadff49155e260cbbaef4e09c926cab5 519Author: Anatolij Gustschin <agust@denx.de> 520Date: Wed Feb 24 00:29:44 2010 +0100 521 522 cmd_mtdparts.c: prevent printbuffer overflows 523 524 The length of configured MTDPARTS_DEFAULT string 525 could be greater than console printbuffer size. 526 Replace printf() by puts() to avoid potential buffer 527 overflows. 528 529 Signed-off-by: Anatolij Gustschin <agust@denx.de> 530 531commit 3920bbedcf74a073bc72950a51de75af6faa2f06 532Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 533Date: Fri Feb 19 11:59:04 2010 +0100 534 535 Fix MPC8536DS documentation 536 537 This patch corrects small mistake in the register list in 538 doc/README.mpc8536ds. These registers are 32 bits and this one starts 539 at ....c not ....e 540 541 When using the ...c address I can boot from sd, when using the ...e 542 address I cannot. 543 544 Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 545 Acked-by: Hu Mingkai <B21284@freescale.com> 546 547commit ab68f4dd193053c0ba395af15b154caca35e99f3 548Author: Heiko Schocher <hs@denx.de> 549Date: Wed Feb 10 08:03:21 2010 +0100 550 551 doc: add README for CONFIG_HWCONFIG option 552 553 Signed-off-by: Heiko Schocher <hs@denx.de> 554 555commit 7026ead0d3ece5e43d6b39f62fb5c4306f691224 556Author: Heiko Schocher <hs@denx.de> 557Date: Tue Feb 9 15:50:27 2010 +0100 558 559 TQM8xx: enable device tree support on all TQM8xx based boards. 560 561 Also enable support for CONFIG_HWCONFIG because we use this for 562 configuring if this hardware has a FEC or not. 563 564 syntax: 565 566 hwconfig=fec:on if hardware has an fec 567 hwconfig=fec:off if hardware has no fec 568 569 Signed-off-by: Heiko Schocher <hs@denx.de> 570 Signed-off-by: Wolfgang Denk <wd@denx.de> 571 572commit 6ed3b9d44c359bc829e9acd0a55fcd1c3e82b6ae 573Author: Heiko Schocher <hs@denx.de> 574Date: Tue Feb 9 15:50:21 2010 +0100 575 576 TQM8xx: add device tree support for TQM8xx based boards. 577 578 Also use hwconfig to configure whether the board has a FEC or not. 579 We then can adjust the DTS to tell Linux if there is a FEC present. 580 581 syntax: 582 583 hwconfig=fec:on if hardware has a FEC 584 hwconfig=fec:off if hardware has no FEC 585 586 Signed-off-by: Heiko Schocher <hs@denx.de> 587 Signed-off-by: Wolfgang Denk <wd@denx.de> 588 589commit 143cd21fe22e69bf0cdaefd57be98f07ed8f04fa 590Author: Wolfgang Denk <wd@denx.de> 591Date: Thu Mar 11 23:56:03 2010 +0100 592 593 Move CONFIG_UPDATE_TFTP code after CONFIG_PREBOOT 594 595 The auto-update feature (CONFIG_UPDATE_TFTP) requires that the env 596 variable serverip be set for the TFTP access. If DHCP is to be used 597 to get the serverip env variable, this doesn't work as DHCP happens 598 after the auto-update attempt has run. A solution is to run DHCP in 599 PREBOOT, but even this is too late. 600 601 To solve this, we move update_tftp() below the PREBOOT stuff. 602 603 Signed-off-by: Wolfgang Denk <wd@denx.de> 604 605commit 1b691bb0c2fa18c9b68f15398ef6c8b9e0c0f3e3 606Author: Mike Frysinger <vapier@gentoo.org> 607Date: Mon Jan 25 18:50:11 2010 -0500 608 609 mkimage: dont force entry point with xip 610 611 Some people boot images with the entry point in the middle of the blob 612 (like Linux with the head code in discardable .init.text), and there is no 613 no real requirement that the entry point be right after the mkimage header 614 when doing XIP, so let people specify whatever they want. If they do need 615 an entry right after the header, then they still can do that with normal 616 -e behavior. 617 618 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 619 620commit 4b99327a4121a28d2bdb2c2b841f5d97931ae905 621Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 622Date: Fri Jan 15 10:06:06 2010 -0500 623 624 PPC: Record U-Boot's relocated address in RAM and show in bdinfo. 625 626 This patch uses gd->relocaddr variable to store uboot's relocated 627 address in RAM and shows it in bdinfo command. 628 629 This patch moves CONFIG_AMIGAONEG3SE style copying of the address 630 in board_init_f to just before relocation is actually done. 631 632 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 633 Tested-by: Detlev Zundel <dzu@denx.de> 634 635commit 8c4444ff5e1d8e9fd1a847a2fb096aa9aff66f85 636Author: Wolfgang Denk <wd@denx.de> 637Date: Thu Mar 11 23:35:43 2010 +0100 638 639 Fix memory leak in mmc_read() 640 641 There is be a path through mmc_read in drivers/mmc/mmc.c where 642 malloc'd memory is not freed before exiting mmc_read: it occurs if 643 mmc_set_blocklen() returns a non-zero value. 644 645 Reported-by: Quentin Armitage <Quentin@Armitage.org.uk> 646 Signed-off-by: Wolfgang Denk <wd@denx.de> 647 648commit 6258b04e9a41ee60f21547358a58fbcb9087735d 649Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 650Date: Thu Feb 11 14:57:04 2010 +0100 651 652 AT91: Update otc570 board to new SoC access 653 654 * convert otc570 board to use c stucture SoC access 655 * change gpio access to at91_gpio syntax 656 657 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 658 659commit 7cedb29872069e782f9f97cef4ab1232736e4c85 660Author: Jens Scharsig <js_at_ng@scharsoft.de> 661Date: Sun Feb 14 12:20:43 2010 +0100 662 663 updates the at91 main_clock calculation 664 665 * updates the conditional main_clock calculation (if AT91_MAIN_CLOCK defined) to c structure SoC access 666 * add need register flags 667 668 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 669 670commit 637833c2d669f9a370706e275e7103454c3c83ec 671Author: Prafulla Wadaskar <prafulla@marvell.com> 672Date: Wed Mar 3 15:27:37 2010 +0530 673 674 arm: kirkwood: suen3: fixed build warning 675 676 This patch fixes following build warning 677 678 Invalid Kwbimage command Type - valid names are: BOOT_FROM, NAND_ECC_MODE, NAND_PAGE_SIZE, SATA_PIO_MODE, DDR_INIT_DELAY, DATA, , spi, nand, sata, pex, uart 679 680 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 681 682commit e4d34492017c95e4041ea0c581e1ab8d1d49381b 683Author: Stefano Babic <sbabic@denx.de> 684Date: Fri Mar 5 17:54:37 2010 +0100 685 686 MX51: removed warnings for the mx51evk 687 688 The patch removes warnings at compile time and provides 689 some cleanup code: 690 - Removed comment on NAND (not yet supported) from lowlevel_init.S 691 - Removed NFMS bit definition from imx-regs.h 692 The bit is only related to MX.25/35 and can lead to confusion 693 - Moved is_soc_rev() to soc specific code (removed from mx51evk.c) 694 695 Signed-off-by: Stefano Babic <sbabic@denx.de> 696 697commit 9d69e33d8d0f112fe3a089101d023e87431684d1 698Author: Vipin Kumar <vipin.kumar@st.com> 699Date: Tue Mar 2 10:46:52 2010 +0530 700 701 SPEAr : Supporting new mach ids for spear310 and spear320 702 703 Supporting new machine ids for SoCs spear310 and spear320 704 705 include/asm-arm/mach-types.h has to be updated before applying 706 this patch for build to work 707 708 Signed-off-by: Vipin Kumar <vipin.kumar@st.com> 709 710commit cc0b53c8d5d6a3f14f36982552bc3feb8ecb1db5 711Author: Heiko Schocher <hs@denx.de> 712Date: Mon Mar 1 15:58:18 2010 +0100 713 714 arm, suen3: fix compile error, if doing not a local build 715 716 Signed-off-by: Heiko Schocher <hs@denx.de> 717 718commit 67fa8c25f5c2d23932c0f31b035281d6abbb0965 719Author: Heiko Schocher <[hs@denx.de]> 720Date: Mon Feb 22 16:43:02 2010 +0530 721 722 arm: add support for the suen3 board from keymile 723 724 Add support for the ARM part of the mgcoge2, named suen3. 725 This board is based on the Marvell Kirkwood (88F6281) SoC. 726 As there come more board variants, common config options 727 are collected in include/configs/km_arm.h. Also, this board 728 use common code for all keymile boards, which is stored in 729 board/keymile/common/common.c 730 731 Signed-off-by: Holger Brunck <holger.brunck@keymile.com> 732 Signed-off-by: Stefan Roese <sr@denx.de> 733 Signed-off-by: Heiko Schocher <hs@denx.de> 734 735commit 6895d4510a7758595b85b48a7f449bd61dfc812f 736Author: John Rigby <jcrigby@gmail.com> 737Date: Mon Jan 25 23:12:58 2010 -0700 738 739 Add support for KARO TX25 board 740 741 This is an i.MX25 base board with only NAND 742 so it uses nand_spl to boot. 743 744 Signed-off-by: John Rigby <jcrigby@gmail.com> 745 746 Tune configuration, add support for (redundant) environment in NAND. 747 Signed-off-by: Wolfgang Denk <wd@denx.de> 748 749 Acked-by: Wolfgang Denk <wd@denx.de> 750 CC: Fred Fan <fanyefeng@gmail.com> 751 CC: Tom <Tom.Rix@windriver.com> 752 753commit 740d6ae5b982496fcea0666b2207cb34cc0e6015 754Author: John Rigby <jcrigby@gmail.com> 755Date: Mon Jan 25 23:12:57 2010 -0700 756 757 fec_mxc: add MX25 support 758 759 Use RMII for MX25 760 Add code to init gasket that enables RMII 761 762 Signed-off-by: John Rigby <jcrigby@gmail.com> 763 CC: Ben Warren <biggerbadderben@gmail.com> 764 765commit cb17b92de03416cf4d5db5bd27ef4ae17f95e707 766Author: John Rigby <jcrigby@gmail.com> 767Date: Mon Jan 25 23:12:55 2010 -0700 768 769 fec_mxc: cleanup and factor out MX27 dependencies 770 771 general cleanup 772 move clock init to cpu_eth_init in cpu/arm926ejs/mx27/generic.c 773 make MX27 specific phy init conditional on CONFIG_MX27 774 replace call to imx_get_ahbclk with one to imx_get_fecclk 775 and define imx_get_fecclk in include/asm-arm/arch-mx27/clock.h 776 777 Signed-off-by: John Rigby <jcrigby@gmail.com> 778 CC: Ben Warren <biggerbadderben@gmail.com> 779 CC: Fred Fan <fanyefeng@gmail.com> 780 CC: Tom <Tom.Rix@windriver.com> 781 782commit 552ff8f1d9fccf57243a01afe6dbebb982867e20 783Author: John Rigby <jcrigby@gmail.com> 784Date: Mon Jan 25 23:12:56 2010 -0700 785 786 Add support for Freescale MX25 SOC 787 788 ARM926EJS core with MX31 peripherals. 789 790 Signed-off-by: John Rigby <jcrigby@gmail.com> 791 Earlier Version Signed-off-by: Wolfgang Denk <wd@denx.de> 792 CC: Fred Fan <fanyefeng@gmail.com> 793 CC: Tom <Tom.Rix@windriver.com> 794 795commit e911c983f4a8d588f831806af37eb56c95512d5d 796Author: John Rigby <jcrigby@gmail.com> 797Date: Mon Jan 25 23:12:51 2010 -0700 798 799 mxc_serial replace platform specific clock 800 801 remove ifdef'd clock selection code from 802 serial_mxc.c and replace with call to imx_get_uartclk 803 804 Add definitions for imx_get_uartclk to imx31 and imx27 805 include files. 806 807 This makes it easier to add new imx platforms. 808 809 Signed-off-by: John Rigby <jcrigby@gmail.com> 810 811commit c5fb70c9114bd0a8289444d3d5c7e360eda08232 812Author: Stefano Babic <sbabic@denx.de> 813Date: Fri Feb 5 15:13:58 2010 +0100 814 815 Add initial support for Freescale mx51evk board 816 817 The patch adds initial support for the Freescale mx51evk board. 818 Network (FEC) and SD controller (fsl_esdhc) are supported. 819 820 Signed-off-by: Stefano Babic <sbabic@denx.de> 821 Signed-off-by: Fred Fan <fanyefeng@gmail.com> 822 823commit c67bee1460a0da89ef08cbc28375171acc9a4227 824Author: Stefano Babic <sbabic@denx.de> 825Date: Fri Feb 5 15:11:27 2010 +0100 826 827 fsl_esdhc: add support for mx51 processor 828 829 The esdhc controller in the mx51 processor is quite 830 the same as the one in some powerpc processors 831 (MPC83xx, MPC85xx). This patches adapts the driver 832 to support the arm mx51. 833 834 Signed-off-by: Stefano Babic <sbabic@denx.de> 835 836commit 69df00f9d9c2f45b4576d1eae79bfac8bebb8821 837Author: Stefano Babic <sbabic@denx.de> 838Date: Fri Feb 5 15:07:33 2010 +0100 839 840 ARM: add accessors functions 841 842 Some Freescale's processors of different architecture 843 have the same peripheral (eSDHC controller in PowerPC 844 and i.MX51). This patch adds accessors for 845 the internal registers of the SOCs, as already 846 implemented in the PowerPC architecture. 847 848 Signed-off-by: Stefano Babic <sbabic@denx.de> 849 850commit 11fdade294b4d60c19ae861515aabddca1278deb 851Author: Stefano Babic <sbabic@denx.de> 852Date: Fri Feb 5 15:04:43 2010 +0100 853 854 MMC: add weak function to detect MMC/SD card 855 856 Most controllers can check if there is a card in the slot. 857 However, they require pins that could be not available because 858 required by other functions and the detection of a card must 859 be performed in another way. This patch adds a weak function 860 that a board can implement to add its internal custom way 861 to check the presence of a MMC/SD card. 862 863 Signed-off-by: Stefano Babic <sbabic@denx.de> 864 865commit 250de12bc2f7842807d25e16971c5bea59c3a4b1 866Author: Stefano Babic <sbabic@denx.de> 867Date: Wed Jan 20 18:20:39 2010 +0100 868 869 mmc: check correctness of the voltage mask in ocr 870 871 Most cards do not answer if some reserved bits 872 in the ocr are set. However, some controllers 873 can set bit 7 (reserved for low voltages), but 874 how to manage low voltages SD card is not yet 875 specified. 876 877 Signed-off-by: Stefano Babic <sbabic@denx.de> 878 879commit 71d64c0e4fa5910c15eca175a8f3b0e1c1d6711c 880Author: Stefano Babic <sbabic@denx.de> 881Date: Wed Jan 20 18:20:19 2010 +0100 882 883 serial_mxc: add support for MX51 processor 884 885 The patch adds support for the Freescale mx51 processor. 886 887 Signed-off-by: Stefano Babic <sbabic@denx.de> 888 Signed-off-by: Fred Fan <fanyefeng@gmail.com> 889 890commit 67adcee0e091f0935e7dd722404d2a864cdecbe7 891Author: Stefano Babic <sbabic@denx.de> 892Date: Wed Jan 20 18:20:04 2010 +0100 893 894 MX51: Add pin and multiplexer definitions. 895 896 The patch add header files to support the pin multiplexer 897 of the the Freescale i.MX51 processor. 898 899 Signed-off-by: Stefano Babic <sbabic@denx.de> 900 Signed-off-by: Fred Fan <fanyefeng@gmail.com> 901 902commit fb87a1ed9205bf5f843e1f264198ce946602deda 903Author: Stefano Babic <sbabic@denx.de> 904Date: Wed Jan 20 18:19:51 2010 +0100 905 906 MX51: Add register definitions 907 908 The patch add header files to support the Freescale i.MX51 909 processor, setting definitions for internal registers. 910 911 Signed-off-by: Stefano Babic <sbabic@denx.de> 912 Signed-off-by: Fred Fan <fanyefeng@gmail.com> 913 914commit 64fdf452a85718935d82416d141be144b262c542 915Author: Stefano Babic <sbabic@denx.de> 916Date: Wed Jan 20 18:19:32 2010 +0100 917 918 MX51: Add initial support for the Freescale MX51 919 920 The patch add initial support for the Freescale i.MX51 processor 921 (family arm cortex_a8). 922 923 Signed-off-by: Stefano Babic <sbabic@denx.de> 924 Signed-off-by: Fred Fan <fanyefeng@gmail.com> 925 926commit 18ba012b9b919a7c264dc6299f954d7f53d06605 927Author: Matthias Kaehlcke <matthias@kaehlcke.net> 928Date: Wed Feb 24 19:45:39 2010 +0100 929 930 edb93xx: Fix SDRAM initialization 931 932 edb93xx: Fix SDRAM initialization by issuing a precharge all command before 933 forcing the precharge and select mode register update mode before programming 934 the mode registers. Write to the SDRAM banks in order to force a precharge, 935 reading causes the edb93xx boards to hang 936 937 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 938 939commit cade7d9577d4d17f55404b5e60cd5e5b0b605c31 940Author: Anders Darander <anders.darander@gmail.com> 941Date: Thu Feb 25 15:57:03 2010 +0100 942 943 Add bootcount to AT91 944 945 Use AT91_GPBR 3 as a bootcount register. 946 The bootmagic and the bootcount shares AT91_GPBR 3. 947 948 Signed-off-by: Anders Darander <ad@datarespons.se> 949 950commit 5f353484093876d7021f20fa4bd63f82d32941b9 951Author: Tom Rix <Tom.Rix@windriver.com> 952Date: Thu Feb 25 12:05:32 2010 -0600 953 954 ARM Update mach-types 955 956 Fetched from http://www.arm.linux.org.uk/developer/machines/download.php 957 And built with 958 959 repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm 960 commit aea187c46f7d03ce985e55eb1398d0776a15b928 961 962 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 963 964commit c7ad13a24295ded880d7bcd17181df4a5f3bac58 965Author: Matthias Kaehlcke <matthias@kaehlcke.net> 966Date: Wed Feb 24 00:22:09 2010 +0100 967 968 ep93xx: Refactoring of timer code 969 970 ep93xx: Refactoring of the timer code, including the following changes 971 972 * use a free running timer instead of a periodical one 973 * use unsigned long long for total number of ticks 974 * hold the timer state in a structure instead of separate variables 975 * increment the timer counter instead of decrementing it 976 * remove unused function udelay_masked() 977 * remove unused function set_timer() 978 979 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 980 981commit d9f505e3cddbb7afce26dcfe0fd19b207ee57c09 982Author: Matthias Kaehlcke <matthias@kaehlcke.net> 983Date: Wed Feb 24 00:22:00 2010 +0100 984 985 ep93xx: Fix calculation of sys ticks in clk_to_systicks() 986 987 ep93xx: Use unsigned long long for calculation of sys ticks in clk_to_systicks() 988 for proper handling of large intermediate values 989 990 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 991 992commit 041d42e789aba20296ffcde92173f100a9592880 993Author: Siarhei Siamashka <siarhei.siamashka@gmail.com> 994Date: Tue Feb 23 23:56:36 2010 -0500 995 996 OMAP3: workaround for ARM Cortex-A8 erratum 725233 997 998 725233: PLD instructions executed with PLD data forwarding 999 enabled can result in a processor deadlock 1000
1001 This deadlock can happen when NEON load instructions are used together 1002 with cache preload instructions (PLD). The problematic conditions 1003 can be triggered in-the-wild by NEON optimized functions from pixman 1004 library (http://cgit.freedesktop.org/pixman), which perform dynamic 1005 adjustment of prefetch distance. 1006 1007 The workaround disables PLD data forwarding by setting PLD_FWD bit 1008 in L2 Cache Auxiliary Control Register as recommended in ARM Cortex-A8 1009 errata list. 1010 1011 The deadlock can only happen on r1pX revisions of Cortex-A8 (used in 1012 OMAP34xx/OMAP35xx). Performance impact of the workaround is practically 1013 non-existant. 1014 1015 Signed-off-by: Siarhei Siamashka <siarhei.siamashka@gmail.com> 1016 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1017 1018commit 7c966a8bdfdab80cafbfed035d7ae6ea6f58f756 1019Author: Achim Ehrlich <aehrlich@taskit.de> 1020Date: Wed Feb 24 10:29:16 2010 +0100 1021 1022 ARM change name of defines for AT91 arm926ejs 1023 1024 Configuration defines should be preceeded with CONFIG_SYS_. Renamed 1025 some at91 specific defines to conform to this naming convention: 1026 1027 AT91_CPU_NAME to CONFIG_SYS_AT91_CPU_NAME 1028 AT91_MAIN_CLOCK to CONFIG_SYS_AT91_MAIN_CLOCK 1029 1030 Signed-off-by: Achim Ehrlich <aehrlich@taskit.de> 1031 1032commit 5c97a1de196fdcbe9d098948ecf4fccfbea23b78 1033Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1034Date: Wed Feb 17 21:29:45 2010 -0500 1035 1036 VoiceBlue: fix linker errors 1037 1038 linking eeprom with libgeneric.a is not really needed and causes following 1039 error: 1040 ../../lib_generic/libgeneric.a(string.o): In function `strcmp': 1041 /home/ladis/src/u-boot-ti/lib_generic/string.c:152: multiple definition of `strcmp' 1042 ../../examples/standalone/libstubs.a(stubs.o):include/_exports.h:24: first defined here 1043 make[1]: *** [eeprom.srec] Error 1 1044 1045 Fix undefined reference to memset generated by some versions of gcc 1046 to zero out initialized structure on the stack: 1047 eeprom.o: In function `eeprom': 1048 board/voiceblue/eeprom.c:152: undefined reference to `memset' 1049 make[1]: *** [eeprom] Error 1 1050 1051 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1052 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1053 1054commit a32c1e0ecd563c65c617b0eb9080a10d286bb0b4 1055Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1056Date: Wed Feb 17 21:29:39 2010 -0500 1057 1058 VoiceBlue: limit line lenght to 80 characters 1059 1060 Reindent configuration header to limit line lenght to 80 characters by 1061 removing obvious and sometimes misleading comments. 1062 1063 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1064 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1065 1066commit 779b534385adf0a1efdd8b40dbacae11598575b8 1067Author: Ladislav Michl <ladis@linux-mips.org> 1068Date: Wed Feb 17 21:13:53 2010 -0500 1069 1070 netstar.h: do not exceed 80 columns 1071 1072 Limit line length to 80 characters mostly by removing obvious and sometimes 1073 misleading comments. Fix indentation, too. 1074 1075 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1076 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1077 1078commit 3fca29294abd73915de2bd0fcf2650e03cc9becc 1079Author: Sandeep Paulraj <s-paulraj@ti.com> 1080Date: Wed Feb 17 21:09:21 2010 -0500 1081 1082 DaVinci: Adding entry to MAKEALL for DM365 EVM 1083 1084 The patch adds an entry for the DM365 EVM to MAKEALL 1085 1086 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1087 1088commit 37cffdad06af5a4538dd090794f213292135adbc 1089Author: Nick Thompson <nick.thompson@ge.com> 1090Date: Wed Feb 17 20:37:24 2010 -0500 1091 1092 da830evm: Add support for TI EMAC 1093 1094 Adds support for ethernet networking on the da830evm platform. 1095 1096 This platform uses an SoC EMAC interface and a 3 port ethernet 1097 switch as a PHY with an RMII interface. The PHY also has a i2c 1098 interface for configuring the switch functions. 1099 1100 Signed-off-by: Nick Thompson <nick.thompson@ge.com> 1101 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1102 1103commit d8775d03f3f0116241cfb45c7ef27fd080904c4a 1104Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1105Date: Mon Feb 8 14:19:06 2010 -0500 1106 1107 NetStar: make mtdparts default ready for recent kernels 1108 1109 Recent kernels are using generic NAND and NOR drivers. Change 1110 default mtdparts to reflect it. 1111 1112 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1113 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1114 1115commit de9a1e0d08301ea4925ee137af240424b107a608 1116Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1117Date: Mon Feb 8 14:17:45 2010 -0500 1118 1119 NetStar: fix default environment 1120 1121 Correct switching partitions after upgrade and make it more readable. 1122 1123 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1124 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1125 1126commit 3a67566c1def7d2eb935b31b3b282ba893c3f330 1127Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1128Date: Mon Feb 8 14:15:47 2010 -0500 1129 1130 NetStar: eeprom - fix linker error 1131 1132 linking eeprom with libgeneric.a is not really needed and causes following 1133 error: 1134 ../../lib_generic/libgeneric.a(string.o): In function `strcmp': 1135 lib_generic/string.c:152: multiple definition of `strcmp' 1136 ../../examples/standalone/libstubs.a(stubs.o):include/_exports.h:24: first defined here 1137 Remove eeprom linker script as well and generate entry point object 1138 (to start application by jumping on its beginning) on the fly. 1139 Out-of-tree build tested as well. 1140 1141 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1142 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1143 1144commit 308d463eaf6f4ada00193306a6e643298d1990d8 1145Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1146Date: Mon Feb 8 14:15:43 2010 -0500 1147 1148 NetStar: eeprom - be less verbose 1149 1150 Use shorter yet descriptive messages, replace printf() with 1151 puts() where appropriate. This saves few bytes. 1152 1153 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1154 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1155 1156commit b29ff6277239f5c8bc9366e74afac5a36ab3b23e 1157Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1158Date: Mon Feb 8 14:15:15 2010 -0500 1159 1160 NetStar: eeprom - undefined reference to `memset' 1161 1162 Defining partially initialized struct eth_device on stack means 1163 gcc has to zero out it, and some gcc versions optimize this with 1164 an implicit call to memset. Move definition to data section 1165 to avoid that (it has also nice side effect that we need not 1166 to pass it to helper functions anymore) 1167 1168 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1169 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1170 1171commit 8f9a221045a4ace14fe006e1353c593619d1001a 1172Author: Wolfgang Wegner <w.wegner@astro-kom.de> 1173Date: Tue Mar 2 10:59:19 2010 +0100 1174 1175 ] fix monitor protection for CONFIG_MONITOR_IS_IN_RAM 1176 1177 For platforms with flash below ram addresses, the current check to 1178 activate monitor protection is wrong/insufficient. This patch fixes 1179 CONFIG_MONITOR_IS_IN_RAM for these systems by adding a check for 1180 this configuration. 1181 1182 Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de> 1183 Signed-off-by: Stefan Roese <sr@denx.de> 1184 1185commit c7de810c79a00aa6fc08900ee0bb57bd295db733 1186Author: Wolfgang Wegner <w.wegner@astro-kom.de> 1187Date: Tue Mar 2 10:59:20 2010 +0100 1188 1189 allow MCF532x to use CONFIG_MONITOR_IS_IN_RAM 1190 1191 CONFIG_MONITOR_IS_IN_RAM is broken for MCF532x. This patch fixes this 1192 by conditionally 1193 - removing the vector table at the beginning of code 1194 - not overwriting the vector base register 1195 - removing the code to re-set the PLL, which effectively disables 1196 SDRAM access 1197 1198 Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de> 1199 1200commit bb907ab51fd04255923b7ecf9dab352078808351 1201Author: Richard Retanubun <RichardRetanubun at RuggedCom.com> 1202Date: Mon Oct 26 14:19:17 2009 -0400 1203 1204 MCF5271-only: Added a weak board_reset function to allow custom reset 1205 1206 This patch adds a board_reset function to allow boards to specify 1207 their own custom reset sequence (e.g. resetting by timing out watchdog). 1208 Tested only on MCF5271, can be expanded if needed. 1209 1210 Based on Mike Frysinger's suggestion on: 1211 http://article.gmane.org/gmane.comp.boot-loaders.u-boot/70304 1212 1213 Signed-off-by: Richard Retanubun <RichardRetanubun at RuggedCom.com> 1214 1215commit 992d7129500d239d684c15fa2d61e0a8f2e64457 1216Author: Wolfgang Wegner <w.wegner@astro-kom.de> 1217Date: Wed Oct 28 15:11:00 2009 -0500 1218 1219 MCF532x: make icache_enable use CONFIG_SYS_SDRAM_SIZE 1220 1221 in cpu/mcf532x/start.S, the function icache_enable enables the cache for 1222 a fixed 32MB region starting at the SDRAM start address; this patch 1223 changes the function to cover the region defined by CONFIG_SYS_SDRAM_SIZE 1224 1225 Signed-off-by: Wolfgang Wegner <w.wegner at astro-kom.de> 1226 1227commit 870bf3ee60320b58f8970ffe3ddebda0e8ac62f7 1228Author: Wolfgang Wegner <w.wegner@astro-kom.de> 1229Date: Wed Dec 9 17:32:12 2009 -0500 1230 1231 add include/asm-m68k/unaligned.h 1232 1233 lib_generic/zlib.c needs include/asm/unaligned.h since commit 1234 cd514aeb996e2f7aefbe1f78481965d9d074aed4, which broke compilation for 1235 Coldfire/M68K. This patch adds the missing header for these 1236 architectures. 1237 1238 Signed-off-by: Wolfgang Wegner <w.wegner at astro-kom.de> 1239 1240commit da5e083590bb62ca6d7f08d3714d07ba736da863 1241Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 1242Date: Mon Feb 8 11:50:16 2010 +0900 1243 1244 sh: Add asm/unaligned.h and asm/unaligned-sh4a.h from Linux kernel 1245 1246 zlib.c demands asm/unaligned.h. But, SH does not have these. 1247 This commit add asm/unaligned.h and asm/unaligned-sh4a.h from Linux 1248 kernel and modifyf for u-boot. 1249 1250 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 1251 1252commit fe389da6ae739816879606ecde4ab25f4292377d 1253Author: Kim Phillips <kim.phillips@freescale.com> 1254Date: Mon Mar 1 11:10:17 2010 -0600 1255 1256 mpc83xx: fix out-of-tree mpc8315 nand build 1257 1258 commit 2e95004deb6e33e33bf1b8a92a38cd2115bac4c2 "mpc83xx: Add NAND boot support 1259 for MPC8315E-RDB boards" symlinked nand_spl/board/freescale/mpc8315erdb to 1260 mpc8313erdb in order to not duplicate code. 1261 1262 Since the main makefile builds nand_spl/board/$(BOARDDIR) (which makes sense), 1263 and the board Makefile and linker script are the only two necessary files 1264 to enable out-of-tree building, and other boards have duplicated nand makefiles 1265 (e.g. 8536ds & 8569mds), it only seems prudent to copy these two files in the 1266 name of the 8315 too. 1267 1268 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 1269 Cc: Anton Vorontsov <avorontsov@ru.mvista.com> 1270 Cc: Wolfgang Denk <wd@denx.de> 1271 1272commit 4e7e12dfa103cb8ec6dc7547dd1c9976337dc1fd 1273Author: Kim Phillips <kim.phillips@freescale.com> 1274Date: Mon Feb 22 19:39:16 2010 -0600 1275 1276 mpc83xx: vme8349: fix incorrect BR0_PRELIM port size comment 1277 1278 commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a "sbc8349: fix incorrect 1279 comment" missed this one. 1280 1281 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 1282 1283commit 87800f72414b830756aefc757dd191688febacf9 1284Author: Eugene O'Brien <eugene.g.obrien@gmail.com> 1285Date: Wed Feb 24 14:10:24 2010 -0500 1286 1287 ppc4xx: Corrected EBC register bit definitions 1288 1289 Corrected the bit field positions of the external master priority low 1290 and the external master priority high values in the EBC configuration 1291 register. These bit field positions differ between PPC405 and PPC440 1292 processors 1293 1294 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com> 1295 Signed-off-by: Stefan Roese <sr@denx.de> 1296 1297commit f3651764e57e353251695691677bd95ba5a420bc 1298Author: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 1299Date: Mon Feb 22 22:49:06 2010 +0100 1300 1301 cmd_itest.c: fix pointer dereferencing 1302 1303 fix pointer dereferencing 1304 if the size is .b and .w an 8 or 16 bit access is done. 1305 1306 Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 1307 Acked-by: Detlev Zundel <dzu@denx.de> 1308 1309commit 0ad22703f06af5fe100cfe6f08b1f32ea89cd5b1 1310Author: Kim Phillips <kim.phillips@freescale.com> 1311Date: Mon Feb 22 19:37:56 2010 -0600 1312 1313 tools: fix imximage warning 1314 1315 Fix build warning: 1316 1317 Configuring for MPC837XEMDS board... 1318 imximage.c: In function `imximage_parse_cfg_file': 1319 imximage.c:146: warning: passing argument 2 of `getline' from incompatible pointer type 1320 /usr/include/bits/stdio.h:116: note: expected `size_t *' but argument is of type `uint32_t *' 1321 1322 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 1323 1324commit 5b28e913f4519870ad2ca06cd7845b053f78bf0f 1325Author: Stefano Babic <sbabic@denx.de> 1326Date: Fri Feb 5 15:16:02 2010 +0100 1327 1328 mkimage: SEGFAULT with imximage on 64 bit systems 1329 1330 Running mkimage to generate an imximage produces a SEGFAULT 1331 on 64 bit machines due to pointer arithmetic limited to 32 bit. 1332 1333 Signed-off-by: Stefano Babic <sbabic@denx.de> 1334 Acked-by: Kim Phillips <kim.phillips@freescale.com> 1335 1336commit ecd1a09b81f2ed6e6ba7bd1d0bfb0cc3d0ea2ad0 1337Author: Kim Phillips <kim.phillips@freescale.com> 1338Date: Thu Feb 18 19:28:12 2010 -0600 1339 1340 mpc83xx: remove hardcoded network addresses from config files 1341 1342 and avoid e.g., two identical boards from causing random networking 1343 conflicts when hooked up to the same network. 1344 1345 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 1346 1347commit 4c006dd1501283eecaea813a0e5e225e9ee6fdeb 1348Author: Michael Zaidman <michael.zaidman@gmail.com> 1349Date: Mon Feb 15 10:02:32 2010 +0200 1350 1351 Bug: do_reset issued via netconsole does not reset mpc83xx cpu. 1352 1353 The do_reset routine in the cpu/mpc83xx/cpu.c file does not reset 1354 the mpc83xx cpu when issued via netconsole. 1355 1356 Moving the console output "resetting the board." to the beginning of 1357 the routine before disabling interrupts solved the problem. 1358 1359 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com> 1360 Acked-by: Detlev Zundel <dzu@denx.de> 1361 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 1362 1363commit 77e7273c40315abd2f3c17ad8d46a78950e3e65f 1364Author: Jens Scharsig <js_at_ng@scharsoft.de> 1365Date: Wed Feb 3 22:48:09 2010 +0100 1366 1367 new board (eb_cpux9k2) 1368 1369 * new board (eb_cpux9k2) 1370 * support for EB+CPUx9K2 board by BuS Elektronik GmbH & Co. KG 1371 * select via make eb_cpux9k2_config 1372 * this also demonstrates, how to use boards with AT91RM9200 cpu 1373 in at91 arch tree 1374 1375 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1376 1377commit 6799a80f7644d78988187390dfd37352f20ad710 1378Author: Jens Scharsig <js_at_ng@scharsoft.de> 1379Date: Wed Feb 3 22:47:57 2010 +0100 1380 1381 new at91_emac network driver (NET_MULTI api) 1382 1383 * add's at91_emac (AT91RM9200) network driver (NET_MULTI api) 1384 * enable driver with CONFIG_DRIVER_AT91EMAC 1385 * generic PHY initialization 1386 * modify AT91RM9200 boards to use NET_MULTI driver 1387 * the drivers has been tested with LXT971 Phy and DM9161 Phy at MII and RMII 1388 interface 1389 1390 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1391 1392commit 98250e8e17fc76b3981708c6e63d41f875bf0359 1393Author: Jens Scharsig <js_at_ng@scharsoft.de> 1394Date: Wed Feb 3 22:47:35 2010 +0100 1395 1396 prepare joining at91rm9200 into at91 1397 1398 * prepare joining at91 and at91rm9200 1399 * add modified copy of soc files to cpu/arm920t/at91 to make 1400 possible to compile at91rm9200 boards in at91 tree instead 1401 of at91rm9200 1402 * add header files with c structure defs for AT91 MC, ST and TC 1403 * the new cpu files are using at91 c structure soc access 1404 * please read README.soc-at91 for details 1405 1406 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1407 1408commit 1b34f00c28a3023693d9b31e7bd1a9212af8352f 1409Author: Jens Scharsig <js_at_ng@scharsoft.de> 1410Date: Wed Feb 3 22:47:18 2010 +0100 1411 1412 update at91sam9263ek board to new SoC access 1413 1414 * convert at91sam9263ek board to use c stucture SoC access 1415 * change gpio access to at91_gpio syntax 1416 1417 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1418 1419commit 0cf0b93161beb3f3ed5e37e6112aedf15da17e8a 1420Author: Jens Scharsig <js_at_ng@scharsoft.de> 1421Date: Wed Feb 3 22:46:58 2010 +0100 1422 1423 convert common files to new SoC access 1424 1425 * add's a warning to all files, which need update to new SoC access 1426 * convert common files in cpu/../at91 and a lot of drivers to use 1427 c stucture SoC access 1428 1429 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1430 1431commit 7f9e8633ac9c846e7e4f867507cbd5de1bd99e0c 1432Author: Jens Scharsig <js_at_ng@scharsoft.de> 1433Date: Wed Feb 3 22:46:46 2010 +0100 1434 1435 convert all at91 files to use at91_gpio driver syntax 1436 1437 * convert all files cpu/../at91 to use at91_gpio driver syntax 1438 * change AT91_PINP([A-F])(\d+) to AT91_PIO_PORT\1, \2 1439 this makes all 160 AT91_PINPxxx defines obsolete 1440 * AT91_PINPxxx defines and gpio.h can be remove, if all boards converted to new SoC access 1441 1442 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1443 1444commit ea8fbba73184a40437bdeccd888cf448d5f1105e 1445Author: Jens Scharsig <js_at_ng@scharsoft.de> 1446Date: Wed Feb 3 22:46:16 2010 +0100 1447 1448 add a new AT91 GPIO driver 1449 1450 * add a real AT91 GPIO driver instead of header inline code 1451 * resolve the mixing of port and pins 1452 * change board config files to use new driver 1453 * add macros to gpio to realize backward compatibility 1454 1455 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1456 1457commit 5d8e359c38d3ab80015e47d0cab792efe75cacf9 1458Author: Jens Scharsig <js_at_ng@scharsoft.de> 1459Date: Wed Feb 3 22:46:01 2010 +0100 1460 1461 add c structures for SoC access 1462 1463 * add's c structures for SoC access to pheriperials head files 1464 1465 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1466 1467commit 425de62d40f84524b90e776b141b060cd438a9fe 1468Author: Jens Scharsig <js_at_ng@scharsoft.de> 1469Date: Wed Feb 3 22:45:42 2010 +0100 1470 1471 add new CONFIG_AT91_LEGACY 1472 1473 * add's the new temporary CONFIG_AT91_LEGACY to all board configs 1474 This will need for backward compatiblity, while change the SoC access 1475 to c structures. If CONFIG_AT91_LEGACY is defined, the deprecated 1476 SoC is used. 1477 1478 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1479 1480commit 3a4e43921d2599453ea87c623099e5f347c9e54a 1481Author: Nick Thompson <nick.thompson@ge.com> 1482Date: Mon Feb 8 11:36:16 2010 -0500 1483 1484 DA830 EVM: Enable NAND support on Spectrum Digital EVM 1485 1486 The EVM UI extender card has a NAND device. This change will enable 1487 saveenv to work with NAND and Linux to be booted using: 1488 1489 mtdparts default 1490 nboot kernel 1491 bootm 1492 1493 Signed-off-by: Nick Thompson <nick.thompson@ge.com> 1494 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1495 1496commit 6228e6389e5ef472d5f43cc5ec4f309323305638 1497Author: Nick Thompson <nick.thompson@ge.com> 1498Date: Mon Feb 8 11:34:58 2010 -0500 1499 1500 Davinci: Add EMIF-A macros for setting chip select parameters 1501 1502 The patch adds EMIF-A macros for setting chip select parameters 1503 1504 Signed-off-by: Nick Thompson <nick.thompson@ge.com> 1505 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1506 1507commit b74064a0e2984a166e3575852f3697ef5595a97b 1508Author: Sanjeev Premi <premi@ti.com> 1509Date: Mon Feb 8 11:33:25 2010 -0500 1510 1511 OMAP3: Avoid re-write to PRM_CLKSRC_CTRL 1512 1513 In function get_osc_clk_speed(), do not change/ update 1514 the divider for SYS_CLK as it can has cascading effect 1515 on the other derived clocks. 1516 1517 Sudden change in divider value can lead to inconsistent 1518 behavior in the system - often leading to crashes. 1519 1520 The problem was found when working with OMAP3EVM using 1521 DM3730 processor card. 1522 1523 The patch has been tested with OMAP3530 on OMAP3EVM as 1524 well 1525 1526 Signed-off-by: Sanjeev Premi <premi@ti.com> 1527 Signed-off-by: Hiremath Vaibhav <hvaibhav@ti.com> 1528 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1529 1530commit eff536befd3efab538bba10bad07ecff63c9f470 1531Author: Magnus Lilja <lilja.magnus@gmail.com> 1532Date: Tue Feb 9 22:05:39 2010 +0100 1533 1534 SPI: Fix 32 bit transfers in mxc_spi.c 1535 1536 Commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f, "i.MX31: fix SPI 1537 driver for shorter than 32 bit" broke 32 bit transfers. This patch 1538 makes single 32 bit transfer work again. 1539 1540 Transfer lengths that are known not to work will abort and print 1541 an error message. 1542 1543 Tested on i.MX31 Litekit and i.MX31 PDK using 32 bit transfers to 1544 the MC13783/ATLAS chip (using the 'date' command). 1545 1546 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 1547 1548commit 39a9142203e610bf2b1a216085e374277fd28f9f 1549Author: Alessandro Rubini <rubini-list@gnudd.com> 1550Date: Sat Feb 6 20:54:05 2010 +0100 1551 1552 edb93xx: enable the uart in devicecfg register 1553 1554 printf goes to uart1, but it will block forever waiting for 1555 busy to go off unless the uart is enabled first. 1556 1557 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 1558 1559commit 822bd70db49773b4d57eaa484dca83386a6b3479 1560Author: Alessandro Rubini <rubini-list@gnudd.com> 1561Date: Sat Feb 6 20:53:54 2010 +0100 1562 1563 edb93xx: change calculation un early_udelay.h 1564 1565 Previous code compiled with gcc-4.2.2 makes a call to 1566 __aeabi_uidiv to divide by 20. As a side effect it was 1567 not inline any more, and so sdram_cfg used the stack 1568 as well, but this is early code that has no stack yet. 1569 The patch explicitly removes the division, so no stack is used. 1570 1571 The calculation of the counter calls a division by 20 1572 1573 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 1574 1575commit c50a0f503967d435150bbb9f2f816ce33afdf231 1576Author: Alessandro Rubini <rubini-list@gnudd.com> 1577Date: Sat Feb 6 20:53:43 2010 +0100 1578 1579 EP93xx: fix syscon_regs definition 1580 1581 The structure was missing a reserved entry (not listed in the manual, 1582 actually), so the last registers had a wrong offset. This prevented 1583 all swlocked registers to be modified as swlock is last in the structure. 1584 1585 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 1586 1587commit fcfb632bd1e9de645b015cf73a78183c299743d8 1588Author: Matthias Kaehlcke <matthias@kaehlcke.net> 1589Date: Mon Feb 1 21:29:39 2010 +0100 1590 1591 ARM: Add support for EP93xx SoCs 1592 1593 Add support for the Cirrus EP93xx platform 1594 1595 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 1596 Acked-by: Tom <Tom.Rix@windriver.com> 1597 1598commit cf3c142ee4be0f077f8b84593f1b24b35d14039e 1599Author: Matthias Kaehlcke <matthias@kaehlcke.net> 1600Date: Mon Feb 1 21:29:48 2010 +0100 1601 1602 Add support for EDB93xx boards 1603 1604 Added support for the following EDB93xx boards: 1605 1606 EDB9301 1607 EDB9302 1608 EDB9302A 1609 EDB9307 1610 EDB9307A 1611 EDB93012 1612 EDB9315 1613 EDB9315A 1614 1615 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 1616 1617commit d798e27b14543762f9f5d0561a3430c7f9e2153b 1618Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1619Date: Wed Jan 27 11:12:28 2010 -0500 1620 1621 NetStar: Remove debug junk leaked into eeprom utility 1622 1623 This patch removes debug junk leaked into eeprom utility. 1624 1625 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1626 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1627 1628commit 89e94d81eda9af2e1c35e97125b0c049335c70fc 1629Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1630Date: Wed Jan 27 11:12:23 2010 -0500 1631 1632 NetStar: make crcit utility more readable 1633 1634 This patch makes the crcit utility more readable 1635 1636 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1637 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1638 1639commit 3843e7dc934d8ef7c592f5a2106885efe32eac7f 1640Author: Ladislav Michl <Ladislav.Michl@seznam.cz> 1641Date: Wed Jan 27 11:12:08 2010 -0500 1642 1643 NetStar: Disable CONFIG_CMD_JFFS2 1644 1645 This patch removes "CONFIG_CMD_JFFS" from the board config 1646 1647 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1648 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1649 1650commit 632e1d9014848ec8d983a629c2e35b4423816336 1651Author: Tom Rix <Tom.Rix@windriver.com> 1652Date: Wed Jan 27 11:11:55 2010 -0500 1653 1654 OMAP3 Move declaration of gpmc_cfg. 1655 1656 Every omap3 board config file declared the global variable gpmc_cfg. 1657 This changes moves the declaration to a better location in the 1658 arch dependent header file cpu.h. 1659 1660 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 1661 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1662 1663commit 093d6018cf0a8dae614c2924c0013d97e2a48662 1664Author: Scott Ellis <scott@jumpnowtek.com> 1665Date: Wed Jan 27 11:11:46 2010 -0500 1666 1667 Overo GPMC registers 1668 1669 Use appropriate GPMC timings for the LAN9221 controller on the 1670 Gumstix Overo expansion boards not the values in arch-omap3/mem.h 1671 which are for a different ethernet controller. 1672 1673 Signed-off-by: Scott Ellis <scott@jumpnowtek.com> 1674 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1675 1676commit 63a47dfd07536e399665ca7504bac512bf21491e 1677Author: Nick Thompson <nick.thompson@ge.com> 1678Date: Wed Jan 27 11:11:28 2010 -0500 1679 1680 da830evm: Use table driven pin mux configuration 1681 1682 Tidyup the pin muxer configuration using the Davinci table driven 1683 pinmux configuration function and data tables. 1684 1685 Signed-off-by: Nick Thompson <nick.thompson@ge.com> 1686 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1687 1688commit 8ed5885693b39c5c2cca5574dd98d6ad8a982702 1689Author: Sekhar Nori <nsekhar@ti.com> 1690Date: Wed Jan 27 11:10:40 2010 -0500 1691 1692 TI DaVinci: Driver for the davinci SPI controller 1693 1694 This adds a driver for the SPI controller found on davinci 1695 based SoCs from Texas Instruments. 1696 1697 Signed-off-by: Sekhar Nori <nsekhar@ti.com> 1698 Signed-off-by: Sudhakar Rajashekhara <sudhakar.raj@ti.com> 1699 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 1700 1701commit 44d80256229d05862622f4dd886466fd70fe04ae 1702Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 1703Date: Mon Jan 25 10:50:41 2010 +0100 1704 1705 at91: Add esd gmbh OTC570 board support 1706 1707 This patch adds support for esd gmbh OTC570 board. 1708 The OTC570 is based on an Atmel AT91SAM9263 SoC. 1709 1710 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 1711 1712commit e39bf1e2a9e437174687de687c127ec980a93eeb 1713Author: Mike Frysinger <vapier@gentoo.org> 1714Date: Mon Feb 8 15:30:16 2010 -0500 1715 1716 kgdb: cpu/mpc* cpu/74xx: include kgdb.h when needed 1717 1718 Commit cbb0cab1d929839d broke some platforms which used kgdb code but 1719 didn't actually include kgdb.h. So include kgdb.h in all the relevant 1720 traps code. 1721 1722 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 1723 1724commit ab5a0dcb9c8f19e351fc33c5db91469bfb1d9438 1725Author: Stefan Roese <sr@denx.de> 1726Date: Tue Feb 2 13:43:48 2010 +0100 1727 1728 net: Use 0.5 sec timeout in miiphy_reset() instead of counting loop 1729 1730 This patch fixes a problem I've notived on a buggy PPC4xx system. This 1731 system has problems with the PHY MDIO communication and seemed to be 1732 stuck/crashed in miiphy_reset(). But degugging revealed, that the CPU 1733 didn't crash, but "only" hung in this counting loop for about 2 minutes. 1734 1735 This patch now uses a real timeout of 0.5 seconds (as mentioned in the 1736 comment in miiphy_reset). 1737 1738 Signed-off-by: Stefan Roese <sr@denx.de> 1739 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 1740 1741commit 4294b2485bf0e8d68c893190a96bb0e7856b12c4 1742Author: Stefano Babic <sbabic@denx.de> 1743Date: Mon Feb 1 14:51:30 2010 +0100 1744 1745 fec_mxc: add support for MX51 processor 1746 1747 The patch add support for the Freescale mx51 processor 1748 to the FEC ethernet driver. 1749 1750 Signed-off-by: Stefano Babic <sbabic@denx.de> 1751 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 1752 1753commit e66b19ce6dbe6f91b18ba47273cbe89eb5a80e78 1754Author: Siddarth Gore <gores@marvell.com> 1755Date: Tue Jan 19 11:09:07 2010 +0530 1756 1757 NET: kirkwood-egiga smi access fix 1758 1759 Although the datasheet mentions seperate smi registers for each 1760 port, using Port 1 smi register to access ethernet phys does not 1761 work. Hence only Port 0 smi register should be used to access all 1762 devices connected to the smi bus. This behavior is consistant with 1763 the mv643xx driver in the linux kernel. 1764 1765 Signed-off-by: Siddarth Gore <gores@marvell.com> 1766 Acked-by: Prafulla Wadaskar <prafulla@marvell.com> 1767 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 1768 1769commit a1b322a98319de568b3bc38029ef7e123643c1e8 1770Author: Ladislav Michl <ladis@linux-mips.org> 1771Date: Mon Feb 1 23:34:25 2010 +0100 1772 1773 ns16550: kick watchdog while waiting for a character 1774 1775 ns16550 busyloops waiting for incoming byte causing watchdog to reboot 1776 while waiting for a key press. A call to WATCHDOG_RESET in NS16550_getc 1777 loop fixes it. 1778 1779 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1780 1781commit 84d36b30181acfb72f22d1105c15574b30ea2fa1 1782Author: Remy Bohmer <linux@bohmer.net> 1783Date: Mon Feb 1 19:40:47 2010 +0100 1784 1785 USB: usb_control_msg wait for driver ISR to set status. 1786 1787 This patch changes usb_control_msg back to the state prior to commit 1788 48867208444cb2a82e2af9c3249e90b7ed4a1751. 1789 1790 The USB driver ISR routine may update the status. 1791 1792 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 1793 1794commit 6e20e64f5c6deb5b48e40a0cba4877f9170545e0 1795Author: Prathap Srinivas <msprathap@ti.com> 1796Date: Mon Jan 11 15:36:46 2010 +0530 1797 1798 musb: Add host support for DM365 EVM 1799 1800 Add support for musb host on DM365 EVM. 1801 1802 Signed-off-by: Prathap Srinivas <msprathap@ti.com> 1803 1804commit ec2aadb40855cecb088b68c062e3534d6ce39128 1805Author: Cliff Cai <cliff.cai@analog.com> 1806Date: Tue Jan 19 00:10:42 2010 -0500 1807 1808 usb: musb: fix Blackfin DMA register padding 1809 1810 The conversion from offsets to C structs lost a little padding in the DMA 1811 register map. Accessing endpoints other than ep0 with DMA would fail as 1812 the addresses wouldn't be adjusted correctly. 1813 1814 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 1815 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 1816 1817commit d0750bc9e5932baf4c90eda2456106f21a26bdc1 1818Author: Wolfgang Denk <wd@denx.de> 1819Date: Mon Feb 1 11:36:29 2010 +0100 1820 1821 EXBITGEN: drop support for unmaintained board 1822 1823 The EXBITGEN board has not been maintained for a long time; it has 1824 build problems, but no hardware is available any more for testing. 1825 1826 Drop support for this board. 1827 1828 Signed-off-by: Wolfgang Denk <wd@denx.de> 1829 Acked-by: Stefan Roese <sr@denx.de> 1830 1831commit 9461a939cabd606d7f0e9b8490b40841af104ff5 1832Author: Wolfgang Denk <wd@denx.de> 1833Date: Sun Jan 31 22:03:15 2010 +0100 1834 1835 mpc5xxx/cpu_init.c: fix warning: unused variable 'cdm' 1836 1837 Signed-off-by: Wolfgang Denk <wd@denx.de> 1838 Acked-by: Detlev Zundel <dzu@denx.de> 1839 1840commit 13d8bfe26c0dd2c08b76c5f077e800a718859bbc 1841Author: Wolfgang Denk <wd@denx.de> 1842Date: Sun Jan 31 21:58:48 2010 +0100 1843 1844 mpc5xxx/cpu_init.c: fix warning: unused variable 'gpt0' 1845 1846 Signed-off-by: Wolfgang Denk <wd@denx.de> 1847 Acked-by: Detlev Zundel <dzu@denx.de> 1848 1849commit 4710cee1b5292fe077a67cc23193cc43060fbe3d 1850Author: Matthias Fuchs <matthias.fuchs@esd.eu> 1851Date: Mon Feb 1 13:54:09 2010 +0100 1852 1853 ppc4xx: Remove unused feature from AR405 board 1854 1855 This patch fixes building for AR405 boards by remove an unused feature. 1856 1857 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 1858 Signed-off-by: Stefan Roese <sr@denx.de> 1859 1860commit 976c21ad8e136df0ec361aca0c4bc287c5637c01 1861Author: Matthias Fuchs <matthias.fuchs@esd.eu> 1862Date: Mon Feb 1 13:53:59 2010 +0100 1863 1864 ppc4xx: Fix building for PLU405 boards 1865 1866 The init_coupler() function from board/esd/plu405/plu405.c 1867 got lost somehow! This patch readds it. 1868 1869 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 1870 Signed-off-by: Stefan Roese <sr@denx.de> 1871 1872commit 59c1db6dab52b981e6ea25a203d0a919ede61ed2 1873Author: Matthias Fuchs <matthias.fuchs@esd.eu> 1874Date: Mon Feb 1 13:53:47 2010 +0100 1875 1876 ppc4xx: Fix building of PMC440 board 1877 1878 Remove some unused features and default environment variable 1879 to shrink the PMC440 u-boot. 1880 1881 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 1882 Signed-off-by: Stefan Roese <sr@denx.de> 1883 1884commit 6f6c26e430ffae87b6b3d74ba7cbf9439703feea 1885Author: Stefan Roese <sr@denx.de> 1886Date: Tue Jan 26 13:33:29 2010 +0100 1887 1888 ppc4xx: Fix compilation error on ML2 board 1889 1890 Recently this compilation error occurs: 1891 1892 Configuring for ML2 board... 1893 traps.c: In function 'MachineCheckException': 1894 traps.c:159: error: 'debugger_exception_handler' undeclared (first use 1895 in this function) 1896 traps.c:159: error: (Each undeclared identifier is reported only once 1897 traps.c:159: error: for each function it appears in.) 1898 1899 This patch now fixes it by including kgdb.h 1900 1901 Signed-off-by: Stefan Roese <sr@denx.de> 1902 1903commit f3dec798d9ebf7f17c11ec7671b979ce3d251955 1904Author: Ladislav Michl <ladis@linux-mips.org> 1905Date: Thu Jan 28 12:27:14 2010 +0100 1906 1907 CFI: fix eraseregions numblocks 1908 1909 eraseregions numblocks was sometimes one less than actual, possibly producing 1910 erase regions with zero blocks. As MTD code touches eraseregions only if 1911 numeraseregions is greater that zero, allocate eraseregions only for non 1912 uniform erase size flash. 1913 1914 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 1915 Signed-off-by: Stefan Roese <sr@denx.de> 1916 1917commit c041e9d212162f6c85cd3b6a40ad6ba9d9292451 1918Author: Jens Scharsig <js_at_ng@scharsoft.de> 1919Date: Sat Jan 23 12:03:45 2010 +0100 1920 1921 new at91_emac network driver (NET_MULTI api) 1922 1923 * add's at91_emac (AT91RM9200) network driver (NET_MULTI api) 1924 * enable driver with CONFIG_DRIVER_AT91EMAC 1925 * generic PHY initialization 1926 * modify AT91RM9200 boards to use NET_MULTI driver 1927 * the drivers has been tested with LXT971 Phy and DM9161 Phy at 1928 MII and RMII interface 1929 1930 Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de> 1931 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 1932 1933commit 594d57d0ccce649d6ccd881b8d9c5ea8d0c307ef 1934Author: Matthias Kaehlcke <matthias@kaehlcke.net> 1935Date: Sun Jan 31 17:39:49 2010 +0100 1936 1937 Add EP93xx ethernet driver 1938 1939 Added ethernet driver for EP93xx SoCs 1940 1941 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 1942 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 1943 1944commit 582c55a0274f38e6e7e35b95e7ab81d3e912f700 1945Author: Heiko Schocher <hs@denx.de> 1946Date: Wed Jan 20 09:04:28 2010 +0100 1947 1948 83xx, uec: split enet_interface in two variables 1949 1950 There's no sensible reason to unite speed and interface type into 1951 one variable. So split this variable enet_interface into two 1952 vars: enet_interface_type, which hold the interface type and speed. 1953 1954 Also: add the possibility for switching between 10 and 100 MBit 1955 interfaces on the fly, when running in FAST_ETH mode. 1956 1957 Signed-off-by: Heiko Schocher <hs@denx.de> 1958 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 1959 1960commit d7e354374c8eb0a5d8b8226b881c5ee276c77a60 1961Author: Nick Thompson <nick.thompson@ge.com> 1962Date: Fri Dec 18 13:33:07 2009 +0000 1963 1964 TI: DaVinci: Updating EMAC driver for DM365, DM646x and DA8XX 1965 1966 The EMAC IP on DM365, DM646x and DA830 is slightly different 1967 from that on DM644x. This change updates the DaVinci EMAC driver 1968 so that EMAC becomes operational on SOCs with EMAC v2. 1969 1970 Signed-off-by: Nick Thompson <nick.thompson@ge.com> 1971 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 1972 1973commit 0f751d6ef3e6fb1d28ac272c39c34831d629a59e 1974Author: Semih Hazar <semih.hazar@indefia.com> 1975Date: Thu Dec 17 15:07:15 2009 +0200 1976 1977 macb: Fix mii_phy_read and mii_phy_write functions 1978 1979 Enabling CONFIG_CMD_MII in AVR32 boards was not possible due to 1980 compile errors. 1981 1982 This patch fixes miiphy_read and miiphy_write functions and 1983 registers them properly. 1984 1985 Signed-off-by: Semih Hazar <semih.hazar@indefia.com> 1986 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 1987 1988commit 5f6b1442218fcb6a3ef0d2be05d84119cebfe0ae 1989Author: Peter Tyser <ptyser@xes-inc.com> 1990Date: Mon Nov 9 13:09:48 2009 -0600 1991 1992 tsec: Add TSEC_FIBER flag 1993 1994 The TSEC_FIBER flag should be set when a PHY is operating with an 1995 external fiber interface. Currently it is only used to notify a user 1996 that the PHY is operating in fiber mode. 1997 1998 A short description was also added to the other TSEC flag defines so 1999 that it is clear how they differ from one another. 2000
2001 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 2002 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 2003 2004commit 8abb8dcc8d6f2a9e31551a6fa41de97bd1f15350 2005Author: Peter Tyser <ptyser@xes-inc.com> 2006Date: Mon Nov 9 13:09:47 2009 -0600 2007 2008 tsec: Add support for using the BCM5482 PHY in fiber mode 2009 2010 The BCM5482 PHY supports both copper and fiber as an ethernet medium. 2011 By enabling its copper/fiber mode auto-detection feature it can 2012 dynamically determine if it should be configured for copper or fiber. 2013 2014 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 2015 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 2016 2017commit c6dbdfda5393c155bb13a90d9d6be4fe75ec3498 2018Author: Peter Tyser <ptyser@xes-inc.com> 2019Date: Mon Nov 9 13:09:46 2009 -0600 2020 2021 tsec: General cleanup 2022 2023 - Cleanup formatting of phy_info structures 2024 2025 - Fix lines > 80 chars 2026 2027 - Fix some random indentation inconsistencies 2028 2029 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 2030 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 2031 2032commit e1957ef02c0d949c27f7386e5fa509a57e033d5a 2033Author: Peter Tyser <ptyser@xes-inc.com> 2034Date: Mon Nov 9 13:09:45 2009 -0600 2035 2036 tsec: Make functions/data static when possible 2037 2038 This is generally good practice and saves ~150 bytes. 2039 2040 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 2041 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 2042 2043commit 27165b5c328464b706601b1cd586e359a3dc2f6d 2044Author: Peter Tyser <ptyser@xes-inc.com> 2045Date: Mon Nov 9 13:09:44 2009 -0600 2046 2047 tsec: Clean up Broadcom PHY status parsing 2048 2049 - Remove unnecessary printing "Enet starting in <speed>/<duplex>" 2050 This same information is already printed during normal ethernet 2051 operation in the form "Speed: 1000, full duplex". 2052 2053 - Add a check for link before determining link speed and duplex 2054 If there is no link, speed/duplex don't matter. This also removes 2055 the annoying and unneeded "Auto-neg error, defaulting to 10BT/HD" 2056 message that occurs when no link is detected. 2057 2058 - Whitespace and line > 80 characters cleanup 2059 2060 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 2061 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 2062 2063commit 46e91674fb4b6d06c6a4984c0b5ac7d9a16923f4 2064Author: Peter Tyser <ptyser@xes-inc.com> 2065Date: Tue Nov 3 17:52:07 2009 -0600 2066 2067 tsec: Force TBI PHY to 1000Mbps full duplex in SGMII mode 2068 2069 In SGMII mode the link between a processor's internal TBI PHY and an 2070 external PHY should always be 1000Mbps, full duplex. Also, the SGMII 2071 interface between an internal TBI PHY and external PHY does not 2072 support in-band auto-negotation. 2073 2074 Previously, when configured for SGMII mode a TBI PHY would attempt to 2075 restart auto-negotation during initializtion. This auto-negotation 2076 between a TBI PHY and external PHY would fail and result in unusable 2077 ethernet operation. 2078 2079 Forcing the TBI PHY and and external PHY to link at 1000Mbps full duplex 2080 in SGMII mode resolves this issue of auto-negotation failing. 2081 2082 Note that 10Mbps and 100Mbps operation is still possible on the external 2083 side of the external PHY even when SGMII is operating at 1000Mbps. 2084 The SGMII interface still operates at 1000Mbps, but each byte of data 2085 is repeated 100 or 10 times for 10/100Mbps and the external PHY handles 2086 converting this data stream into proper 10/100Mbps signalling. 2087 2088 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 2089 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 2090 2091commit 76771e595aa2640da8c7b5ea81bd9583ccdab8a1 2092Author: Seunghyeon Rhee <seunghyeon@lpmtec.com> 2093Date: Mon Nov 2 00:00:00 2009 -0800 2094 2095 NET: Fix MAC addr handling for smc911x 2096 2097 This patch turns off MAC address mismatch warning when 2098 optional eeprom programmed with MAC address is not available. 2099 In that case, smc911x's MAC address register has its default 2100 value ff:ff:ff:ff:ff:ff and it's not a valid address. This 2101 makes eth_initialize() show the warning which has no 2102 meaningful information while environment variable ethaddr 2103 overrides the address read from the register. If there's no 2104 eeprom and the value of MAC address register is not valid 2105 after initialization, dev->enetaddr had better not be updated 2106 and maintain its initial value 00:00:00:00:00:00, which I 2107 think is what eth_initialize() expects. This is not a bug fix. 2108 Even without this patch, the driver works fine. It's just for 2109 enhancing the way of displaying messages. 2110 2111 Signed-off-by: Seunghyeon Rhee <seunghyeon@lpmtec.com> 2112 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 2113 2114commit 07c966066b977b24f4b08b1684eed130f463b4c6 2115Author: Matthias Kaehlcke <matthias@kaehlcke.net> 2116Date: Thu Jan 21 22:16:34 2010 +0100 2117 2118 cs8900_initialize() cleanup 2119 2120 cs8900_initialize(): remove unecessary calls to free() and fix memory leak 2121 2122 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 2123 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 2124 2125commit c4168af3ba03c17a73751b98c124bbd2e3e1f5b0 2126Author: Mike Frysinger <vapier@gentoo.org> 2127Date: Thu Jan 21 05:04:59 2010 -0500 2128 2129 smc91111_eeprom: fix linking error 2130 2131 Building for a bf533-stamp ends up with this error: 2132 smc91111_eeprom.o: In function `smc91111_eeprom': 2133 examples/standalone/smc91111_eeprom.c:58: undefined reference to `memset' 2134 make[2]: *** [smc91111_eeprom] Error 1 2135 2136 The new eth_struct definition means gcc has to zero out the structure on 2137 the stack, and some gcc versions optimize this with an implicit call to 2138 memset. So tweak the structure style to avoid that gcc feature. 2139 2140 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2141 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 2142 2143commit 5f566f454750be4f2f83288ef382afcb9c4aa8a4 2144Author: Wolfgang Denk <wd@denx.de> 2145Date: Sun Jan 31 21:51:43 2010 +0100 2146 2147 cmd_ximg.c: fix error: 'i' undeclared 2148 2149 Fix compile error: 2150 2151 cmd_ximg.c: In function 'do_imgextract': 2152 cmd_ximg.c:234: error: 'i' undeclared (first use in this function) 2153 cmd_ximg.c:234: error: (Each undeclared identifier is reported only once 2154 cmd_ximg.c:234: error: for each function it appears in.) 2155 2156 Signed-off-by: Wolfgang Denk <wd@denx.de> 2157 2158commit a6e42ed097220a82870a32f4e60ac8863a8b05ab 2159Author: Anatolij Gustschin <agust@denx.de> 2160Date: Sat Dec 12 21:20:57 2009 +0100 2161 2162 lcd: remove CONFIG_ATMEL_LCD ifdefs from lcd_setfgcolor 2163 2164 Not all boards defining LCD_COLOR16 are able to set 2165 lcd_color_fg/lcd_color_bg correctly. The issue seems to 2166 be caused by CONFIG_ATMEL_LCD ifdefs in lcd_setfgcolor() 2167 and lcd_setbgcolor(). Actually, the color values passed 2168 to these functions are already correct, we don't need 2169 to fix them. So remove ifdefs here. 2170 2171 Reported-by: Alessandro Rubini <rubini@unipv.it> 2172 Signed-off-by: Anatolij Gustschin <agust@denx.de> 2173 2174commit d841978ea616e661e48f8da4045a71d6217823bd 2175Author: Alessandro Rubini <rubini@unipv.it> 2176Date: Sat Dec 5 13:39:41 2009 +0100 2177 2178 include/nomadik.h: add physical address for cldc 2179 2180 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 2181 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 2182 2183commit 3e446cbdf30221b9ca3a89b0f5abbfc691ce7755 2184Author: Alessandro Rubini <rubini@unipv.it> 2185Date: Sat Dec 5 13:39:31 2009 +0100 2186 2187 video: add amba-clcd prime-cell 2188 2189 This adds support for the CLCD logic cell. It accepts precompiled 2190 register values for specific configuration through a board-supplied 2191 data structure. It is used by the Nomadik nhk8815, added by a later 2192 patch in this series. 2193 2194 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 2195 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 2196 2197commit b081c2e9b9329d7dadc8d13fc9a2bae5c90a1204 2198Author: John Rigby <jcrigby@gmail.com> 2199Date: Tue Jan 26 19:24:18 2010 -0700 2200 2201 Nand mxc_nand add v1.1 controller support 2202 2203 Add support for version 1.1 of the nfc nand flash 2204 controller which is on the i.mx25 soc. 2205 2206 Signed-off-by: John Rigby <jcrigby@gmail.com> 2207 CC: Scott Wood <scottwood@freescale.com> 2208 2209commit f3bb63a304c4e76010a2a4e99da61f7b6ffffc77 2210Author: John Rigby <jcrigby@gmail.com> 2211Date: Tue Jan 26 19:24:17 2010 -0700 2212 2213 Add MX25 support to nand_spl fsl nfc driver 2214 2215 MX25 has a different version of the fsl_nfc 2216 flash controller known as version 1.1. 2217 2218 Add support to the nand_spl fsl_nfc driver 2219 2220 Versioning differs from mainline mxc kernel driver 2221 no consensus yet on if the naming here and in 2222 Redboot or the kernel is "correct". 2223 2224 Signed-off-by: John Rigby <jcrigby@gmail.com> 2225 Signed-off-by: Wolfgang Denk <wd@denx.de> 2226 CC: Scott Wood <scottwood@freescale.com> 2227 2228commit ef22b50370f7b6d8deba9e9e64d2cb13c542b647 2229Author: John Rigby <jcrigby@gmail.com> 2230Date: Mon Jan 25 23:12:52 2010 -0700 2231 2232 arm926ejs: add nand_spl boot support 2233 2234 Add CONFIG_PRELOADER/CONFIG_NAND_SPL support for nand booting 2235 to arm926ejs/start.S 2236 2237 This is derived from CONFIG_PRELOADER support in arm1136/start.S 2238 2239 Signed-off-by: John Rigby <jcrigby@gmail.com> 2240 CC: Scott Wood <scottwood@freescale.com> 2241 2242commit 15b86c3d6c9a5a2e917b73d758a556568430021a 2243Author: Wolfgang Denk <wd@denx.de> 2244Date: Sat Jan 16 21:50:26 2010 -0700 2245 2246 env_nand.c: print error message and fail gracefully 2247 2248 env_nand.c would crash silently if a malloc() for the environment 2249 buffers failed; make it print an error message and fail gracefully, 2250 i. e. use the default environment then. 2251 2252 Signed-off-by: Wolfgang Denk <wd@denx.de> 2253 Acked-by: John Rigby <jcrigby@gmail.com> 2254 2255commit 674ef7bd02de948b6d8757f6a43a6f2fa4d88769 2256Author: Liu Yu <yu.liu@freescale.com> 2257Date: Mon Jan 18 19:03:28 2010 +0800 2258 2259 Nand boot: Add nand boot support for MPC8569mds board 2260 2261 This patch add nand boot support for MPC8569mds board. 2262 2263 Signed-off-by: Liu Yu <yu.liu@freescale.com> 2264 2265commit 249d4dec69e8d41ca58fe6cb3c56ea6f0480ef16 2266Author: Kumar Gala <galak@kernel.crashing.org> 2267Date: Wed Jan 27 10:16:56 2010 -0600 2268 2269 Fix compiler warning in imximage.c due to getline prototype 2270 2271 imximage.c: In function 'imximage_parse_cfg_file': 2272 imximage.c:142: warning: implicit declaration of function 'getline' 2273 2274 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2275 2276commit a9c3ac78d81d7ff4fe239e292e11e0f78ac5d461 2277Author: Kumar Gala <galak@kernel.crashing.org> 2278Date: Tue Jan 12 12:56:05 2010 -0600 2279 2280 85xx: Add support for 'cpu disable' command 2281 2282 Support disabling of a core via user command 'cpu disable'. 2283 2284 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2285 2286commit c894852b7aa2ac5f04ca70a073f803aa665c3ec1 2287Author: Kumar Gala <galak@kernel.crashing.org> 2288Date: Tue Jan 12 11:51:52 2010 -0600 2289 2290 86xx: Add support for 'cpu disable' command 2291 2292 Support disabling of a core via user command 'cpu disable'. 2293 2294 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2295 2296commit 4194b3668a93eee18dd1f7eb1309ca7b05003aa7 2297Author: Kumar Gala <galak@kernel.crashing.org> 2298Date: Tue Jan 12 11:42:43 2010 -0600 2299 2300 Add support to disable cpu's in multicore processors 2301 2302 Add a disable sub-command to the cpu command that allows for disabling 2303 cores in multicore processors. This can be useful for systems that are 2304 using multicore chips but aren't utilizing all the cores as a way to 2305 reduce power and possibly improve performance. 2306 2307 Also updated an added missing copyright. 2308 2309 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2310 2311commit 8b1760ed9a35a5fd71d1f64981068ca2979f1e3d 2312Author: Heiko Schocher <hs@denx.de> 2313Date: Wed Jan 20 09:05:32 2010 +0100 2314 2315 83xx, kmeter1: fix compile error 2316 2317 - delete double MTDIDS_DEFAULT and MTDPARTS_DEFAULT 2318 defines in board config file. 2319 - add mising CONFIG_KM_UBI_PARTITION_NAME define 2320 2321 Signed-off-by: Heiko Schocher <hs@denx.de> 2322 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 2323 2324commit 5912d3650740468329a0df014109132431d2140d 2325Author: Wolfgang Wegner <w.wegner@astro-kom.de> 2326Date: Thu Dec 10 10:11:21 2009 +0100 2327 2328 add ability to handle compressed images to imxtract 2329 2330 imxtract currently can not handle compressed images. This patch adds 2331 handling for bzip2 and zip compression. In both cases, a destination 2332 address has to be specified for extraction. 2333 2334 Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de> 2335 2336commit a16e9a5b5f23106665dde15d974db17e8aeb83f1 2337Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 2338Date: Tue Jan 19 14:41:57 2010 +0100 2339 2340 ppc: remove -ffixed-r14 gcc option. 2341 2342 This is no loger needed, free up r14 for general usage. 2343 2344 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 2345 2346commit e6bee80814c3a0d7eab89d28142fe68c4a670f31 2347Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 2348Date: Tue Jan 19 14:41:58 2010 +0100 2349 2350 ppc: Update README about the new GOT ptr. 2351 2352 r14 is no longer used as non volatile GOT ptr. Instead 2353 the volatile r12 is used so be sure to do GET_GOT in 2354 asm code when you need to access global data. 2355 2356 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 2357 2358commit 0f8aa159175385ddd77bc91d11b9568583fbbd0c 2359Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 2360Date: Tue Jan 19 14:41:56 2010 +0100 2361 2362 ppc: Use r12 instead of r14 as GOT pointer. 2363 2364 r14 is not supposed to be clobbered by functions. Switch 2365 to r12 and call GET_GOT when needed. This will allow u-boot 2366 to loose the -ffixed-r14 gcc option. 2367 2368 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 2369 2370commit fc4e188789b01dc9f18c80869c43fdd7d1a51378 2371Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 2372Date: Tue Jan 19 14:41:55 2010 +0100 2373 2374 ppc: Loose GOT access in IRQ 2375 2376 Using the GOT in IRQ handlers requires r14 to be -ffixed-r14. 2377 Avoid this by relocatate transfer_to_handler too. 2378 This will allow to free up r14 later on. 2379 2380 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 2381 2382commit 66e821ebe96123b3a81ec9ca25cec9c0560fe232 2383Author: Vivek Mahajan <vivek.mahajan@freescale.com> 2384Date: Thu Jan 7 14:27:14 2010 +0530 2385 2386 85xx/p1_p2_rdb: enable hwconfig 2387 2388 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 2389 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2390 2391commit 46df64f22c471b010161aa68bfdbfe94ea46e7bd 2392Author: Liu Yu <yu.liu@freescale.com> 2393Date: Fri Jan 15 14:58:40 2010 +0800 2394 2395 qe: fixup the snum for MPC8569 Rev2.0 2396 2397 Since 1.0 and 2.0 use different snum table, 2398 we fixup the snum value according to SPRN_SVR. 2399 2400 Signed-off-by: Liu Yu <yu.liu@freescale.com> 2401 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2402 2403commit 0fd2fa6cce6eb91271ebf9733878d0f1fcbc9b32 2404Author: Dave Liu <daveliu@freescale.com> 2405Date: Tue Nov 17 20:49:05 2009 +0800 2406 2407 Fix the local bus divider mapping 2408 2409 The real clock divider is 4 times of the bits LCRR[CLKDIV], 2410 according the latest RevF RM. 2411 2412 Signed-off-by: Dave Liu <daveliu@freescale.com> 2413 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2414 2415commit c95d541e4b46cb3ba19bf35e34b1dc3ca32f7b4b 2416Author: Liu Yu <yu.liu@freescale.com> 2417Date: Fri Nov 27 15:31:52 2009 +0800 2418 2419 ppc/85xx: Add ATM config for MPC8569MDS 2420 2421 Signed-off-by: Liu Yu <yu.liu@freescale.com> 2422 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2423 2424commit d91803826985bfdf151eed66543ce3b1a301682f 2425Author: Liu Yu <yu.liu@freescale.com> 2426Date: Fri Nov 27 15:31:51 2009 +0800 2427 2428 ppc/85xx: Add PIB/ATM support for MPC8569mds 2429 2430 Signed-off-by: Liu Yu <yu.liu@freescale.com> 2431 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2432 2433commit 1118cdbfeb8fc3acfe542d08703153ac188f9dbd 2434Author: Li Yang <leoli@freescale.com> 2435Date: Thu Jan 7 16:00:13 2010 +0800 2436 2437 fsl_esdhc: fix wrong clock mask 2438 2439 Fix typo in SYSCTL_CLOCK_MASK, which caused residual in high bits of SDCLKFS. 2440 2441 Signed-off-by: Jin Qing <B24347@freescale.com> 2442 Signed-off-by: Li Yang <leoli@freescale.com> 2443 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2444 2445commit 693416fe01d324472d270ac28389022eb82c7217 2446Author: Kumar Gala <galak@kernel.crashing.org> 2447Date: Mon Jan 25 11:01:51 2010 -0600 2448 2449 Revert "ppc/p4080: Fix reporting of PME & FM clock frequencies" 2450 2451 This reverts commit bc20f9a9527afe8ae406a74f74765d4323f04922. 2452 2453 The original code was correct. I clearly need glasses or a brown 2454 paper bag. 2455 2456 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2457 2458commit 93cedc71647b4b72ac9b48e11997eb2f91645001 2459Author: James Yang <James.Yang@freescale.com> 2460Date: Tue Jan 12 15:50:18 2010 -0600 2461 2462 ppc/p4080: Fix mask width of RCW fields MEM_PLL_RAT, SYS_PLL_RAT 2463 2464 The masks for MEM_PLL_RAT and SYS_PLL_RAT should have been 5-bits 2465 instead of 4. 2466 2467 Signed-off-by: James Yang <James.Yang@freescale.com> 2468 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 2469 2470commit 2903ad33a71251a3a87485b5b185852c8998f209 2471Author: Mike Frysinger <vapier@gentoo.org> 2472Date: Fri Jan 8 08:03:06 2010 -0500 2473 2474 jffs2: fix hangs/crashs when not using CONFIG_JFFS2_PART_SIZE 2475 2476 Commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042 caused the sector_size to 2477 be calculated incorrectly when the part size was not hardcoded. This is 2478 because the new code relied on part->size but tried to do the calculation 2479 before it was initialized properly, and it did not take into consideration 2480 the magic SIZE_REMAINING define. 2481 2482 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2483 2484commit 64b150213365db6be97a98d25884f87d83caacaf 2485Author: Mike Frysinger <vapier@gentoo.org> 2486Date: Fri Jan 8 02:48:03 2010 -0500 2487 2488 getline: split out for darwin systems 2489 2490 At least on OS X 10.5 and older, getline does not exist. So split out the 2491 function from the mingw code so that we can pull it in for Darwin systems. 2492 2493 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2494 2495commit e852d36a1e12864ab0656729c45c846e65efa4ee 2496Author: Mike Frysinger <vapier@gentoo.org> 2497Date: Thu Jan 21 19:59:04 2010 -0500 2498 2499 tools: give explicit libfdt paths 2500 2501 The current libfdt object rules hard depend implicitly on the .depend file 2502 being correct. If it isn't, then it is unable to properly compile the 2503 objects. Give it a full path like all the other implicit rules here so it 2504 will always work in face of .depend issues. 2505 2506 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2507 2508commit 44431cabbb66e81a2d77642b6f7d39c6230ea4ba 2509Author: Mike Frysinger <vapier@gentoo.org> 2510Date: Thu Jan 21 19:30:36 2010 -0500 2511 2512 gzip/zlib: make features optional 2513 2514 If you really want to slim down U-Boot and you would rather use a higher 2515 compression scheme (like LZMA), it'd be nice to disable gzip/zlib since 2516 these code bases take up a significant amount of space. 2517 2518 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2519 2520commit 8edcde5e4e2e7f6bc7e277011fed71e64fd9d294 2521Author: Stefano Babic <sbabic@denx.de> 2522Date: Wed Jan 20 18:19:10 2010 +0100 2523 2524 mkimage: Add Freescale imx Boot Image support (imximage) 2525 2526 This patch adds support for "imximage" (MX Boot Image) 2527 to the mkimage utility. The imximage is used on the Freescales's 2528 MX.25, MX.35 and MX.51 processors. 2529 2530 Further details under doc/README.imximage. 2531 2532 This patch was tested on a Freescale mx51evk board. 2533 2534 Signed-off-by: Stefano Babic <sbabic@denx.de> 2535 2536commit a21fb981d533ac6d323a01c7fa2cda20f2d36de5 2537Author: Detlev Zundel <dzu@denx.de> 2538Date: Wed Jan 20 14:28:48 2010 +0100 2539 2540 mpc5xxx: Support CPU internal watchdog. 2541 2542 Signed-off-by: Detlev Zundel <dzu@denx.de> 2543 2544commit 82826d5422331e9c99e5408dcf0348c8e0c257a6 2545Author: Detlev Zundel <dzu@denx.de> 2546Date: Fri Jan 22 14:47:59 2010 +0100 2547 2548 mpc512x: Add display of reset status register 2549 2550 Content of the RSR is put into gd early so we can output it together 2551 with the CPU info. The clearing of gd in board_init_f is redundant for 2552 this architecture as it is done in cpu_init_f so we remove it. 2553 2554 Signed-off-by: Detlev Zundel <dzu@denx.de> 2555 2556commit a3f3897bfda9b4729785bdd328b3b7f30417a67f 2557Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 2558Date: Wed Jan 20 08:00:11 2010 +0100 2559 2560 at91: Enable slow master clock on meesc board 2561 2562 Normally the processor clock has a divisor of 2. 2563 In some cases this this needs to be set to 4. 2564 Check the user has set environment mdiv to 4 to change the divisor. 2565 2566 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 2567 2568commit 7da692360414d07027c6cf564a15d79cd9dcf488 2569Author: Vipin KUMAR <vipin.kumar@st.com> 2570Date: Fri Jan 15 19:15:53 2010 +0530 2571 2572 SPEAr : Support added for SPEAr320 board 2573 2574 SPEAr320 SoC support contains basic spear320 support along with the 2575 usage of following drivers 2576 - serial driver(UART) 2577 - i2c driver 2578 - smi driver 2579 - nand driver(FSMC) 2580 - usbd driver 2581 - emi driver(cfi support) 2582 2583 Signed-off-by: Vipin <vipin.kumar@st.com> 2584 2585commit 080cfee71459588fd6312e475bb5115bdbda1cb3 2586Author: Vipin KUMAR <vipin.kumar@st.com> 2587Date: Fri Jan 15 19:15:52 2010 +0530 2588 2589 SPEAr : Support added for SPEAr310 board 2590 2591 SPEAr310 SoC support contains basic spear310 support along with the 2592 usage of following drivers 2593 - serial driver(UART) 2594 - i2c driver 2595 - smi driver 2596 - nand driver(FSMC) 2597 - usbd driver 2598 - emi driver(cfi support) 2599 2600 Signed-off-by: Vipin <vipin.kumar@st.com> 2601 2602commit 4bfacad4e796f2e121ee7432705ecc9c61e7b6ca 2603Author: Vipin KUMAR <vipin.kumar@st.com> 2604Date: Fri Jan 15 19:15:51 2010 +0530 2605 2606 SPEAr : emi controller initialization for CFI driver support 2607 2608 SPEAr310 and SPEAr320 SoCs contain an EMI controller to interface 2609 Paraller NOR flashes. This patch adds the support for this IP 2610 2611 The standard CFI driver is used to interface with NOR flashes 2612 2613 Signed-off-by: Vipin <vipin.kumar@st.com> 2614 2615commit 7e074158ce239380259c5fc97e87be2896169973 2616Author: Vipin KUMAR <vipin.kumar@st.com> 2617Date: Fri Jan 15 19:15:50 2010 +0530 2618 2619 SPEAr : Support added for SPEAr300 board 2620 2621 SPEAr300 SoC support contains basic spear300 support along with the 2622 usage of following drivers 2623 - serial driver(UART) 2624 - i2c driver 2625 - smi driver 2626 - nand driver(FSMC) 2627 - usbd driver 2628 2629 Signed-off-by: Vipin <vipin.kumar@st.com> 2630 2631commit f92994f0f7403b84366ce04e554e461f624e6868 2632Author: Vipin KUMAR <vipin.kumar@st.com> 2633Date: Fri Jan 15 19:15:49 2010 +0530 2634 2635 SPEAr : Support for HW mac id read/write from i2c mem 2636 2637 This patch adds the support to read and write mac id from i2c 2638 memory. 2639 For reading: 2640 if (env contains ethaddr) 2641 pick env ethaddr 2642 else 2643 pick ethaddr from i2c memory 2644 For writing: 2645 chip_config ethaddr XX:XX:XX:XX:XX:XX writes the mac id 2646 in i2c memory 2647 2648 Signed-off-by: Vipin <vipin.kumar@st.com> 2649 2650commit 566c9c16fe4e501c3193ae6605bc9c663c6ea706 2651Author: Vipin KUMAR <vipin.kumar@st.com> 2652Date: Fri Jan 15 19:15:48 2010 +0530 2653 2654 SPEAr : Support added for SPEAr600 board 2655 2656 SPEAr600 SoC support contains basic spear600 support along with the 2657 usage of following drivers 2658 - serial driver(UART) 2659 - i2c driver 2660 - smi driver 2661 - nand driver(FSMC) 2662 - usbd driver 2663 2664 Signed-off-by: Vipin <vipin.kumar@st.com> 2665 2666commit 62db1c0d79f1fd75961eec81edc8c0a1bc1f09a6 2667Author: Vipin KUMAR <vipin.kumar@st.com> 2668Date: Fri Jan 15 19:15:47 2010 +0530 2669 2670 SPEAr : usbd driver support for SPEAr SoCs 2671 2672 SPEAr SoCs contain a synopsys usb device controller. 2673 USB Device IP can work in 2 modes 2674 - DMA mode 2675 - Slave mode 2676 2677 The driver adds support only for slave mode operation of usb 2678 device IP. This driver is used along with standard USBTTY 2679 driver to obtain a tty interface over USB on the host 2680 2681 Signed-off-by: Vipin <vipin.kumar@st.com> 2682 2683commit 165fa406ad8c39c0c32a31476a8a9bda3db72851 2684Author: Vipin KUMAR <vipin.kumar@st.com> 2685Date: Fri Jan 15 19:15:46 2010 +0530 2686 2687 SPEAr : nand driver support for SPEAr SoCs 2688 2689 SPEAr SoCs contain an FSMC controller which can be used to interface 2690 with a range of memories eg. NAND, SRAM, NOR. 2691 Currently, this driver supports interfacing FSMC with NAND memories 2692 2693 Signed-off-by: Vipin <vipin.kumar@st.com> 2694 2695commit a6e34f76c51c8514f1b691fc60394f09ae4fb2ff 2696Author: Vipin KUMAR <vipin.kumar@st.com> 2697Date: Fri Jan 15 19:15:45 2010 +0530 2698 2699 SPEAr : smi driver support for SPEAr SoCs 2700 2701 SPEAr SoCs contain a serial memory interface controller. This 2702 controller is used to interface with spi based memories. 2703 This patch adds the driver for this IP. 2704 2705 Signed-off-by: Vipin <vipin.kumar@st.com> 2706 2707commit 2403f8f417b1b94701bb5949903d701f1f414a42 2708Author: Vipin KUMAR <vipin.kumar@st.com> 2709Date: Fri Jan 15 19:15:44 2010 +0530 2710 2711 SPEAr : i2c driver support added for SPEAr SoCs 2712 2713 SPEAr SoCs contain a synopsys i2c controller. 2714 This patch adds the driver for this IP. 2715 2716 Signed-off-by: Vipin <vipin.kumar@st.com> 2717 2718commit 81c0ebf623ddbb6a4da8e051441c83e99a01b00b 2719Author: Vipin KUMAR <vipin.kumar@st.com> 2720Date: Fri Jan 15 19:15:43 2010 +0530 2721 2722 SPEAr : Adding basic SPEAr architecture support. 2723 2724 SPEAr Architecture support added. It contains the support for 2725 following SPEAr blocks 2726 - Timer 2727 - System controller 2728 - Misc registers 2729 2730 Signed-off-by: Vipin <vipin.kumar@st.com> 2731 2732commit 6fffcdf8c869a3d8436be8eff6428d8121aa76e6 2733Author: Vipin KUMAR <vipin.kumar@st.com> 2734Date: Fri Jan 15 19:15:42 2010 +0530 2735 2736 SPEAr : Adding README.spear in doc 2737 2738 README.spear contains information about SPEAr architecture and 2739 build options etc 2740 2741 Signed-off-by: Vipin <vipin.kumar@st.com> 2742 2743commit e4c43c20b87d5c9a7ac3b5250ca009311c62945c 2744Author: Tom Rix <Tom.Rix@windriver.com> 2745Date: Wed Jan 20 18:00:28 2010 -0600 2746 2747 ARM Update mach-types 2748 2749 Fetched from http://www.arm.linux.org.uk/developer/machines/download.php 2750 And built with 2751 2752 repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm 2753 commit 2045124ffd1a5e46d157349016a2c50f19c8c91d 2754 2755 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 2756 2757commit bfb6d510e9acbec97e4e1cc855ec1269538689f8 2758Author: Prafulla Wadaskar <prafulla@marvell.com> 2759Date: Mon Nov 16 18:29:25 2009 +0530 2760 2761 Kirkwood: Makefile cleanup- fixed ordering (cosmetic change) 2762 2763 As per coding guidlines, it is good to maintain proper ordering 2764 in the makefiles. 2765 This was missed during initial coding, corrected here. 2766 2767 This was discovered during orion5x code review 2768 Thanks to Albert Aribaud for this. 2769 2770 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 2771 2772commit beca04dd2446fc9ec46ca17163dadb7f82420e7c 2773Author: Prafulla Wadaskar <prafulla@marvell.com> 2774Date: Thu Dec 24 02:55:23 2009 +0530 2775 2776 Kirkwood: Upgated licencing for files imported from linux source to GPLv2 or later 2777 2778 These are few files directly imported from Linux kernel source. 2779 Those are not modifyed at all ar per strategy. 2780 These files contains source with GPLv2 only 2781 whereas u-boot expects GPLv2 or latter 2782 2783 These files are updated for the same from prior permission from original writes 2784 2785 Acked-by: Nicolas Pitre <nico@marvell.com> 2786 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 2787 2788commit d8e5f55475e621e793a15d93e2dd2549c5138735 2789Author: Minkyu Kang <mk7.kang@samsung.com> 2790Date: Fri Dec 18 15:03:51 2009 +0900 2791 2792 s5pc1xx: update cache routines 2793 2794 Because of v7_flush_dcache_all is moved to omap3/cache.S 2795 and s5pc110 needs cache routines, update s5pc1xx cache routines. 2796 2797 l2_cache_enable and l2_caceh_disable are moved from cache.c to cache.S 2798 and invalidate_dcache is modified for SoC specific. 2799 2800 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 2801 2802commit 17ef9104ae11220979e1870f22dcaf535d9baacf 2803Author: Seunghyeon Rhee <seunghyeon@lpmtec.com> 2804Date: Thu Dec 3 09:41:49 2009 +0900 2805 2806 samsung: fix DMC1_MEM_CFG for s3c64xx 2807 2808 The MSB of DMC1_MEM_CFG can be set to '1' for separate CKE control 2809 for S3C6400. In the configuration of SMDK6400, however, two 16-bit 2810 mDDR (SAMSUNG K4X51163) chips are used in parallel to form 32-bit 2811 memory bus and there is no need to control CKE for each chip 2812 separately. AFAIK, CKE1 is not at all connected. Only CKE0 is 2813 used. Futhermore, it should be '0' always for S3C6410. When tested 2814 with a board which has a S3C6410 and the same memory configuration, 2815 a side effect is observed that u-boot command "reset" doesn't work 2816 leading to system hang. Leaving the bit clear is safe in most cases. 2817 2818 Signed-off-by: Seunghyeon Rhee <seunghyeon@lpmtec.com> 2819 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 2820 2821commit 9998b1366e7e42089c3f579b4d1d790d3c295387 2822Author: Stefan Roese <sr@denx.de> 2823Date: Thu Jan 21 11:37:31 2010 +0100 2824 2825 ppc4xx: Kilauea: Add CPLD version detection and EBC reconfiguration 2826 2827 A newer CPLD version on the 405EX evaluation board requires a different 2828 EBC controller setup for the CPLD register access. This patch adds a CPLD 2829 version detection for Kilauea and code to reconfigure the EBC controller 2830 (chip select 2) for the old CPLD if no new version is found. 2831 2832 Additionally the CPLD version is printed upon bootup: 2833 2834 Board: Kilauea - AMCC PPC405EX Evaluation Board (CPLD rev. 0) 2835 2836 Signed-off-by: Stefan Roese <sr@denx.de> 2837 Acked-by: Wolfgang Denk <wd@denx.de> 2838 Cc: Zhang Bao Quan <bqzhang@udtech.com.cn> 2839 2840commit 97c9f29008579f56c3fb86785f29f04dd4f47f94 2841Author: Felix Radensky <felix@embedded-sol.com> 2842Date: Sat Jan 23 01:35:24 2010 +0200 2843 2844 ppc4xx: Fix sending type 1 PCI transactions 2845 2846 The list of 4xx SoCs that should send type 1 PCI transactions 2847 is not defined correctly. As a result PCI-PCI bridges and devices 2848 behind them are not identified. The following 4xx variants should 2849 send type 1 transactions: 440GX, 440GP, 440SP, 440SPE, 460EX and 460GT. 2850 2851 Signed-off-by: Felix Radensky <felix@embedded-sol.com> 2852 Signed-off-by: Stefan Roese <sr@denx.de> 2853 2854commit 57ae8a5cced612088104303777e71a3dc89c00ef 2855Author: Detlev Zundel <dzu@denx.de> 2856Date: Thu Jan 21 17:55:58 2010 +0100 2857 2858 mpc512x: Use in/out accessors for all registers 2859 2860 This is not only a cosmetic change as it fixes the real bug of board 2861 reset not working with the ELDK 4.2 toolchain. 2862 2863 Signed-off-by: Detlev Zundel <dzu@denx.de> 2864 2865commit c7c0d542a199089cf658a7c23c314a5cff248b00 2866Author: Mike Frysinger <vapier@gentoo.org> 2867Date: Thu Jan 21 04:03:22 2010 -0500 2868 2869 tools: allow people to compile w/out configuring 2870 2871 It's useful to be able to build up the host tools without having to select 2872 a board first. Pretty much all tools in there are config-independent 2873 anyways. 2874 2875 Also add a shortcut "tools-all" to quickly build all host tools that are 2876 actually config-independent to allow for simple test builds. 2877 2878 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2879 2880commit c5a028f085020b60040a2b42966f29b25bd6ee8e 2881Author: Mike Frysinger <vapier@gentoo.org> 2882Date: Thu Jan 21 04:03:21 2010 -0500 2883 2884 ubsha1: drop unnecessary includes/prototypes 2885 2886 This code doesn't use any config.h defines, and the sha1.h header already 2887 declares a sha1_csum prototype. 2888 2889 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2890 2891commit 5daa1c18b6a6877b0619a8dbaad0afd783f79e4f 2892Author: Mike Frysinger <vapier@gentoo.org> 2893Date: Thu Jan 21 04:03:20 2010 -0500 2894 2895 image.h: avoid command.h for host tools 2896 2897 The u-boot command structures don't get used with host systems, so don't 2898 bother including it when building host code. This avoids an implicit need 2899 on config.h in the process. 2900 2901 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2902 2903commit 34be10651704709dfb35f9c57013f02d47cced09 2904Author: Matthias Weisser <weisserm@arcor.de> 2905Date: Mon Jan 18 10:58:13 2010 +0100 2906 2907 Removing Atmel from ARM926EJ-S Systems 2908 2909 Signed-off-by: Matthias Weisser <weisserm@arcor.de> 2910 2911commit a16028da63c78001823bfb375b3f6d9d86e5a534 2912Author: Mike Frysinger <vapier@gentoo.org> 2913Date: Tue Nov 3 11:35:59 2009 -0500 2914 2915 lmb: only force on arches that use it 2916 2917 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2918 2919commit dac4d7e8849d275023ea2fcae6caf941db91c042 2920Author: Mike Frysinger <vapier@gentoo.org> 2921Date: Sun Jan 17 21:08:00 2010 -0500 2922 2923 sha1: add dedicated config option 2924 2925 The sha1 code is currently compiled for everyone, but in reality, it's 2926 only used by the FIT code. So make it optional just like MD5. 2927 2928 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 2929 2930commit 33c8c664239f6665b228145d7e5adfa238a300bc 2931Author: Felix Radensky <felix@embedded-sol.com> 2932Date: Tue Jan 19 21:19:06 2010 +0200 2933 2934 ppc4xx: Allow setting a single SPD EEPROM address for DDR2 DIMMs 2935 2936 On platforms where SPD EEPROM and another EEPROM have adjacent 2937 I2C addresses SPD_EEPROM_ADDRESS should be defined as a single 2938 element array, otherwise DDR2 setup code would fail with the 2939 following error: 2940 2941 ERROR: Unknown DIMM detected in slot 1 2942 2943 However, fixing SPD_EEPROM_ADDRESS would result in another 2944 error: 2945 2946 ERROR: DIMM's DDR1 and DDR2 type can not be mixed. 2947 2948 This happens because initdram() routine does not explicitly 2949 initialize dimm_populated array. This patch fixes the problem. 2950 2951 Signed-off-by: Felix Radensky <felix@embedded-sol.com> 2952 Signed-off-by: Stefan Roese <sr@denx.de> 2953 2954commit d98964aaacc5c54cf7d67bb1e5128ed067086dd7 2955Author: Felix Radensky <felix@embedded-sol.com> 2956Date: Tue Jan 19 17:37:13 2010 +0200 2957 2958 ppc4xx: Fix reporting of bootstrap options G and F on 460EX/GT 2959 2960 Bootstrap options G and F are reported incorrectly (G instead 2961 of F and vice versa). This patch fixes this. 2962 2963 Signed-off-by: Felix Radensky <felix@embedded-sol.com> 2964 Signed-off-by: Stefan Roese <sr@denx.de> 2965 2966commit 19c292999732996e071caa0782eeef0ce0a60ac0 2967Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 2968Date: Wed Jan 20 21:07:00 2010 +0900 2969 2970 MIPS: qemu_mips: Import asm/unaligned.h from the Linux kernel 2971 2972 with a few adjustments for U-Boot. This fixes the following build error: 2973 2974 make -C lib_generic/ 2975 zlib.c:31:27: error: asm/unaligned.h: No such file or directory 2976 zlib.c: In function 'inflate_fast': 2977 zlib.c:641: warning: implicit declaration of function 'get_unaligned' 2978 make[1]: *** [zlib.o] Error 1 2979 make[1]: Leaving directory `/home/skuribay/git/u-boot.git/lib_generic' 2980 make: *** [lib_generic/libgeneric.a] Error 2 2981 2982 Reported-by: Himanshu Chauhan <himanshu@symmetricore.com> 2983 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com> 2984 2985commit 38a8b3eafb17d61690e5fc93e6dc45120f79d7d0 2986Author: Magnus Lilja <lilja.magnus@gmail.com> 2987Date: Sun Jan 17 17:46:11 2010 +0100 2988 2989 MX31: Activate NAND environment on i.MX31 PDK board. 2990 2991 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 2992 2993commit c4832dffff20519e72879a8da010174ac0526141 2994Author: Magnus Lilja <lilja.magnus@gmail.com> 2995Date: Sun Jan 17 17:46:10 2010 +0100 2996 2997 MXC: Add large page oob layout for i.MX31 NAND controller. 2998 2999 Import the large page oob layout from Linux mxc_nand.c driver. 3000
3001 The CONFIG_SYS_NAND_LARGEPAGE option is used to activate 3002 the large page oob layout. Run time detection is not supported 3003 as this moment. 3004 3005 This has been tested on the i.MX31 PDK board with a large 3006 page NAND device. 3007 3008 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 3009 3010commit f6a9748e3261fdccdeb78a2b58e6ad538ba54496 3011Author: Magnus Lilja <lilja.magnus@gmail.com> 3012Date: Wed Nov 11 20:18:43 2009 +0100 3013 3014 mxc_nand: Update driver to work with i.MX31. 3015 3016 Tested on i.MX31 Litekit. 3017 3018 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 3019 3020commit c816dcb118e26ba17e7d73989514fec08a3823ac 3021Author: Magnus Lilja <lilja.magnus@gmail.com> 3022Date: Wed Nov 11 20:18:42 2009 +0100 3023 3024 MX31: Add struct definition for clock control module in i.MX31. 3025 3026 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 3027 3028commit 50ef25ef24eccd8e69d2c1ccc97b3f7e30109f51 3029Author: Michal Simek <monstr@monstr.eu> 3030Date: Tue Jan 19 12:03:25 2010 +0100 3031 3032 microblaze: zlib needs asm/unaligned.h 3033 3034 Microblaze has own hw unaligned handler if is available. 3035 Use big endian version. 3036 3037 Signed-off-by: Michal Simek <monstr@monstr.eu> 3038 3039commit 5b8b83bce6fdd0d2ca661de90ae83a0f8b152de6 3040Author: Michal Simek <monstr@monstr.eu> 3041Date: Tue Jan 19 12:03:24 2010 +0100 3042 3043 microblaze: Remove getenv_IPaddr prototype 3044 3045 Commit 6a45e384955262882375a2785426dc65aeb636c4 3046 should remove reference from Microblaze too. 3047 3048 Signed-off-by: Michal Simek <monstr@monstr.eu> 3049 3050commit b9e6957ca15be8466190794d6d87845491b3411b 3051Author: Alessandro Rubini <rubini@unipv.it> 3052Date: Mon Jan 18 22:38:38 2010 +0100 3053 3054 MAINTAINERS: fix nhk8815 board name 3055 3056 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 3057 3058commit b40e2320c440c5082020e5036a0cb8d4ed1b3d7d 3059Author: Ben Warren <biggerbadderben@gmail.com> 3060Date: Mon Jan 18 11:35:31 2010 -0800 3061 3062 Fix breakage in SMC EEPROM standalone applications 3063 3064 Commit 6a45e384955262882375a2785426dc65aeb636c4 (Make getenv_IPaddr() global) 3065 inadvertently added ' #include "net.h" ' to the standalone programs, creating 3066 duplicate definitions of 'struct eth_device'. This patch removes the local 3067 definitions and removes other code that breaks due to the change in definition. 3068 3069 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 3070 Acked-by: Mike Frysinger <vapier@gentoo.org> 3071 3072commit 2a9987935e3cdb61e7550c87cbc9f500a54f672d 3073Author: Daniel Hobi <daniel.hobi@schmid-telecom.ch> 3074Date: Mon Jan 18 18:13:39 2010 +0100 3075 3076 Makefile: fix parallel build 3077 3078 During parallel build, the top Makefile spawns multiple sub-makes for 3079 targets in cpu/$(CPU) and $(dir $(LDSCRIPT)). If the .depend files are 3080 not present in these directories, the sub-makes may end up generating 3081 these files simultaneously which leads to corrupted content. 3082 3083 A typical error message is: 3084 3085 .depend:39: *** multiple target patterns. Stop. 3086 3087 This patch serializes the creation of .depend in cpu/$(CPU) and 3088 $(dir $(LDSCRIPT)) by adding these directories to the depend target 3089 in the top Makefile. 3090 3091 Other directories in $(LIBS) are not affected since they contain only 3092 one Make target and thus only one sub-make is spawned per directory. 3093 3094 Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch> 3095 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3096 3097commit f19fd87e9387282b5abbfdafe46ac272320643d8 3098Author: Robin Getz <robin.getz@analog.com> 3099Date: Mon Dec 21 16:35:48 2009 -0500 3100 3101 Blackfin: add support for kgdb 3102 3103 Signed-off-by: Robin Getz <robin.getz@analog.com> 3104 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3105 3106commit 3869453f659c22396fecb7c8ed7af909e89f461c 3107Author: Robin Getz <robin.getz@analog.com> 3108Date: Mon Dec 21 17:55:22 2009 -0500 3109 3110 asm-generic/signal.h: import from linux 3111 3112 We need signal.h for Blackfin/KGDB, so import the asm-generic/signal.h 3113 for people to leverage. 3114 3115 Signed-off-by: Robin Getz <robin.getz@analog.com> 3116 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3117 3118commit 88ffb2665cd066b6b20cfaade13929d4e8428dde 3119Author: Heiko Schocher <hs@denx.de> 3120Date: Thu Jan 7 08:55:54 2010 +0100 3121 3122 CRAMFS: support cramfs in RAM 3123 3124 cramfsls and cramfsload are added to the command list. 3125 A cramfs placed at 'cramfs_addr' can the be listed with 'cramfsls' and files 3126 can be loaded with 'cramfsload'. 'cramfs_addr' is an environment variable 3127 specifying the address the cramfs is located. 3128 This works for powerpc and for ARM. 3129 3130 Use CONFIG_CMD_CRAMFS. 3131 3132 Signed-off-by: Andreas Huber <andreas.huber@keymile.com> 3133 Signed-off-by: Heiko Schocher <hs@denx.de> 3134 3135commit 4897ee33c98b4b29efd62854052eb7862380b5ae 3136Author: Heiko Schocher <hs@denx.de> 3137Date: Thu Jan 7 08:55:50 2010 +0100 3138 3139 powerpc: keymile boards updates 3140 3141 - malloc size 4 MB for all keymile boards 3142 - use generic FDT code for fixing up the DTS 3143 - enable unit-led at startup for keymile boards 3144 - remove some dts updates for keymile boards 3145 - ppc_83xx, kmeter1: take FE/GbE PHYs out of reset 3146 - ppc_83xx, kmeter1: change from Intel Strata to Spansion 64MB flash 3147 changed from Intel Strata to Spansion 64MB flash and changed flash layout. 3148 +---------+----------+-----------------------+-----------------------------+ 3149 | name | size | range | description | 3150 +---------+----------+-----------------------+-----------------------------+ 3151 | u-boot | 768 KB | 0xf0000000-0xf00bffff | for u-boot | 3152 | env | 128 KB | 0xf00c0000-0xf00dffff | for environment | 3153 | envred | 128 KB | 0xf00e0000-0xf00fffff | for environment (redundant) | 3154 | ubi0 | 64512 KB | 0xf0100000-0xf3ffffff | ubi0 for ubi volumes | 3155 +---------+----------+-----------------------+-----------------------------+ 3156 3157 Signed-off-by: Heiko Schocher <hs@denx.de> 3158 3159commit 1567b596d9f4a7ff49ebdca29e15a33777dfd670 3160Author: Heiko Schocher <hs@denx.de> 3161Date: Thu Jan 7 08:55:44 2010 +0100 3162 3163 env, eeprom: add redundant environment support 3164 3165 Add redundant environment support for environment lying on a EEPROM. 3166 3167 Tested on uppcoming suen3 support 3168 3169 Signed-off-by: Andreas Huber <andreas.huber@keymile.com> 3170 3171commit 548738b4d43af841ff58c787bce297ac6a8bf7d1 3172Author: Heiko Schocher <hs@denx.de> 3173Date: Thu Jan 7 08:55:40 2010 +0100 3174 3175 cmd_eeprom: I2C updates 3176 3177 - CONFIG_ENV_EEPROM_IS_ON_I2C 3178 define this, if you have I2C and SPI activated, and your 3179 EEPROM, which holds the environment, is on the I2C bus. 3180 3181 - CONFIG_I2C_ENV_EEPROM_BUS 3182 if you have an Environment on an EEPROM reached over 3183 I2C muxes, you can now define, how to reach this 3184 EEPROM. 3185 3186 Signed-off-by: Heiko Schocher <hs@denx.de> 3187 3188commit b63815e31355b44e65899b361da1d8ef6940ab90 3189Author: Matthias Kaehlcke <matthias@kaehlcke.net> 3190Date: Tue Dec 22 23:05:45 2009 +0100 3191 3192 move definition of macros likely and unlikely to compiler.h 3193 3194 the macros likely and unlikely were defined in include/linux/mtd/compat.h, 3195 but used in code not related to MTD. moved the macro definitions to compiler.h 3196 3197 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 3198 3199commit c3d7eec6d88945dec0626cdd4f4a35cb5f83ef00 3200Author: Detlev Zundel <dzu@denx.de> 3201Date: Tue Dec 22 12:43:02 2009 +0100 3202 3203 cmd_bootm.c: Change interpretation of standalone image parameters. 3204 3205 Current code uses the second argument to bootm for standalone images to 3206 override the load address specified in the image instead of passing all 3207 parameters as is to the application. This behaviour is not documented 3208 and not in line with how the go command works for standalone applications, 3209 so we simply drop it. 3210 3211 Signed-off-by: Detlev Zundel <dzu@denx.de> 3212 3213commit 8b828a8f44b7ee9953c7ba63e64b1e80790139b3 3214Author: Detlev Zundel <dzu@denx.de> 3215Date: Tue Dec 22 12:43:01 2009 +0100 3216 3217 cmd_bootm.c: Do not load a ramdisk when not booting a kernel. 3218 3219 In case we boot an image marked as 'standalone' and 'linux', the current 3220 code erroneously tried to load a ramdisk. 3221 3222 Signed-off-by: Detlev Zundel <dzu@denx.de> 3223 3224commit 16035bcd8c81c3c59dddfb54f48e8059a623b13c 3225Author: Robin Getz <robin.getz@analog.com> 3226Date: Mon Dec 21 18:40:44 2009 -0500 3227 3228 kgdb: update mem2hex/hex2mem funcs 3229 3230 Convert the funcs to do the conversion inline so that we can do the copy 3231 all at once with memcpy. This let's us push out an weird arch-specific 3232 issue with accessing different regions of memory to the memcpy function 3233 like the MMRs on Blackfin systems, and it should be a bit faster. 3234 3235 Signed-off-by: Robin Getz <robin.getz@analog.com> 3236 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3237 3238commit cbb0cab1d929839d1cf170b54b1fef05896433ea 3239Author: Mike Frysinger <vapier@gentoo.org> 3240Date: Mon Dec 21 18:40:43 2009 -0500 3241 3242 kgdb: drop duplicate debugger_exception_handler 3243 3244 The debugger_exception_handler definition is the same for everyone, so use 3245 the common one now. 3246 3247 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3248 3249commit 0c909551f88c0d92a919ff70127df7b33cdd473d 3250Author: Robin Getz <robin.getz@analog.com> 3251Date: Mon Dec 21 18:40:42 2009 -0500 3252 3253 kgdb: add default generic stubs 3254 3255 The default kgdb functions can be implemented with common U-Boot functions, 3256 so rather than force everyone to copy & paste these things, create a set of 3257 weak stubs. 3258 3259 Signed-off-by: Robin Getz <robin.getz@analog.com> 3260 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3261 3262commit fa2744de6584c92750f807a006e20a59ee046e76 3263Author: Mike Frysinger <vapier@gentoo.org> 3264Date: Mon Dec 21 14:19:12 2009 -0500 3265 3266 netconsole: mark local funcs with static 3267 3268 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3269 3270commit 7293e0577f149b75595b6f6ceb75bf50a523aff6 3271Author: Michael Hennerich <michael.hennerich@analog.com> 3272Date: Sat Dec 19 08:19:09 2009 -0500 3273 3274 easylogo: add support for 16-bit RGB565 3275 3276 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> 3277 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3278 3279commit 0f597bc2a80353bcd0fd4daf42e2047c959485c8 3280Author: Detlev Zundel <dzu@denx.de> 3281Date: Fri Dec 18 17:35:57 2009 +0100 3282 3283 mpc5xxx/cpu_init.c: Convert to IO accessors. 3284 3285 Signed-off-by: Detlev Zundel <dzu@denx.de> 3286 3287commit 18e89890625c86be6c971c01b824d14bbdd78e25 3288Author: Detlev Zundel <dzu@denx.de> 3289Date: Fri Dec 18 17:35:56 2009 +0100 3290 3291 mpc5xxx.h: Add structure definition for XLB arbiter block. 3292 3293 Signed-off-by: Detlev Zundel <dzu@denx.de> 3294 3295commit 10c32ff59f7abe352b548066918bc5ea39e7c47b 3296Author: Mike Frysinger <vapier@gentoo.org> 3297Date: Wed Dec 2 21:15:03 2009 -0500 3298 3299 config_defaults.h: new header for common u-boot config defaults 3300 3301 There are a bunch of features in U-Boot that we want to enable by default, 3302 and it's best if we centralize them in one place rather than updating all 3303 the board files out there. 3304 3305 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3306 3307commit 64917ca38933d10b3763f61df7a1e58e1e127b52 3308Author: Peter Tyser <ptyser@xes-inc.com> 3309Date: Sun Jan 17 15:38:26 2010 -0600 3310 3311 PCIe, USB: Replace 'end point' references with 'endpoint' 3312 3313 When referring to PCIe and USB 'endpoint' is the standard naming 3314 convention. 3315 3316 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 3317 Acked-by: Stefan Roese <sr@denx.de> 3318 Acked-by: Remy Bohmer <linux@bohmer.net> 3319 3320commit 6a45e384955262882375a2785426dc65aeb636c4 3321Author: Dirk Behme <dirk.behme@googlemail.com> 3322Date: Sun Jan 3 08:33:58 2010 +0100 3323 3324 Make getenv_IPaddr() global 3325 3326 There are boards out there that do not have network support in 3327 U-Boot (CONFIG_CMD_NET not set), but they do so in Linux. This 3328 makes it desirable to be able to port network configuration (like 3329 the IP address) to the Linux kernel. 3330 3331 We should not make the passing of the IP configuration to Linux 3332 dependent on U-Boot features / settings. 3333 3334 For this, make getenv_IPaddr() global. This fixes build error 3335 3336 u-boot/lib_xxx/board.c:360: undefined reference to `getenv_IPaddr' 3337 3338 on various architectures. 3339 3340 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 3341 Acked-by: Ben Warren <biggerbadderben@gmail.com> 3342 3343commit 846a6391e4bc9fdd721753a1021953ff0ca17c27 3344Author: Mike Frysinger <vapier@gentoo.org> 3345Date: Fri Jan 15 04:50:40 2010 -0500 3346 3347 Blackfin: drop .eh_frame from linker script 3348 3349 Nothing in U-Boot uses runtime C++ exceptions/unwinding, so there is no 3350 need to list this section. 3351 3352 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3353 3354commit ed912d4d659e67910edca04498803db24d826615 3355Author: Mike Frysinger <vapier@gentoo.org> 3356Date: Fri Jan 15 04:47:06 2010 -0500 3357 3358 Blackfin: use sort funcs in the linker script 3359 3360 This is just Blackfin catching up with every one else. 3361 3362 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3363 3364commit 2aeda2d054bb32027bed33d9c3a63d152164b5e0 3365Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 3366Date: Wed Jan 13 09:04:53 2010 -0500 3367 3368 Blackfin: tcm-bf518: new board port 3369 3370 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 3371 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3372 3373commit c46a0ebf82d3fd27dd21ad7d4fe7f11c2b2b0b21 3374Author: Mike Frysinger <vapier@gentoo.org> 3375Date: Fri Jan 8 07:56:17 2010 -0500 3376 3377 Blackfin: enable JFFS summary support for ADI boards 3378 3379 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3380 3381commit 912da8d606997822d44905b83ef47799a130a1b9 3382Author: Mike Frysinger <vapier@gentoo.org> 3383Date: Fri Jan 8 06:14:13 2010 -0500 3384 3385 Blackfin: bf518f-ezbrd: increase monitor length 3386 3387 The addition of KGDB overflowed the current linker section. 3388 3389 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3390 3391commit 03642aeee0d51660c35c9dbdde78882eb3efb350 3392Author: Robin Getz <robin.getz@analog.com> 3393Date: Mon Dec 21 17:02:48 2009 -0500 3394 3395 Blackfin: handle anomaly 05000257 3396 3397 Need to reload the loop counters to keep from corrupting hardware loops. 3398 3399 Signed-off-by: Robin Getz <robin.getz@analog.com> 3400 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3401 3402commit b6db2834407d49ec48ac8e9281fdd704d5ee3eba 3403Author: Robin Getz <robin.getz@analog.com> 3404Date: Mon Dec 21 16:59:21 2009 -0500 3405 3406 Blackfin: keep hwtrace on CPLB miss 3407 3408 Crashes rarely happen in the CPLB miss handler compared to the rest of 3409 U-Boot code, so disable hardware tracing when processing misses. This 3410 way a crash due to other functions will be shown properly. 3411 3412 Signed-off-by: Robin Getz <robin.getz@analog.com> 3413 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3414 3415commit 0097870e3d72f10ec58ae22488945fd9ee37289f 3416Author: Robin Getz <robin.getz@analog.com> 3417Date: Mon Dec 21 15:31:08 2009 -0500 3418 3419 Blackfin: add a netconsole helper 3420 3421 Signed-off-by: Robin Getz <robin.getz@analog.com> 3422 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3423 3424commit 10eafa10be2deaba4939d0c19cd21648f2d3d4aa 3425Author: Michael Hennerich <michael.hennerich@analog.com> 3426Date: Thu Dec 10 09:19:21 2009 +0000 3427 3428 Blackfin: add support for BF527-EZKIT v2.1 3429 3430 The new board revision has a different LCD. 3431 3432 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> 3433 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3434 3435commit 9442c4a1337dbcf82e3bc02a12e24f491e0e6122 3436Author: Cliff Cai <cliff.cai@analog.com> 3437Date: Tue Dec 8 07:25:57 2009 +0000 3438 3439 Blackfin: bf527-ezkit/bf548-ezkit: add musb board specific initialization 3440 3441 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 3442 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3443 3444commit 581d92eefc1a060ea5c6eb42028880a37095953d 3445Author: Cliff Cai <cliff.cai@analog.com> 3446Date: Mon Dec 7 08:03:06 2009 +0000 3447 3448 Blackfin: bfin_spi: round up clock divider 3449 3450 If the requested clock cannot be exactly obtained, round it up so that we 3451 err on the side of slightly slower rather than slightly faster. 3452 3453 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 3454 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3455 3456commit a52ad4f99486ce3f404f83f75263e321956bb6d5 3457Author: Mike Frysinger <vapier@gentoo.org> 3458Date: Mon Nov 30 13:51:24 2009 -0500 3459 3460 Blackfin: pull io funcs from linux 3461 3462 Some common code uses more of the io.h funcs than we currently provide, so 3463 pull in all of the ones from the linux kernel. 3464 3465 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3466 3467commit 5eefe7e99537ca3641496185f23b1dc9e76b405c 3468Author: Mike Frysinger <vapier@gentoo.org> 3469Date: Mon Nov 30 13:34:07 2009 -0500 3470 3471 Blackfin: section off the CF/IDE io.h hacks 3472 3473 These need to be rethought, but until that happens, isolate the hack so 3474 that we can extend the common code without breaking things. 3475 3476 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3477 3478commit 3b062da326f9b37d34aa8f80bf9d2f9e74f55c86 3479Author: Mike Frysinger <vapier@gentoo.org> 3480Date: Mon Nov 30 13:30:18 2009 -0500 3481 3482 Blackfin: drop unused funcs from io.h 3483 3484 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3485 3486commit 5f79644d2665763d522ef2db53c026c5f4865b02 3487Author: Mike Frysinger <vapier@gentoo.org> 3488Date: Mon Nov 30 13:08:39 2009 -0500 3489 3490 Blackfin: bf533-stamp: split and cleanup CF/IDE code 3491 3492 Give the CF/IDE code its own file to keep things cleanly separated. While 3493 we're here, clean up the code to use common functions. 3494 3495 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3496 3497commit e54c8209913a3f26ae28819e3515df53ec2b4548 3498Author: Cliff Cai <cliff.cai@analog.com> 3499Date: Fri Nov 20 08:24:43 2009 +0000 3500 3501 Blackfin: convert bfin_sdh to generic mmc 3502 3503 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 3504 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3505 3506commit 17ebd5bf3393144f3ead19384318a6e5b01c4f90 3507Author: Cliff Cai <cliff.cai@analog.com> 3508Date: Tue Nov 17 09:36:21 2009 +0000 3509 3510 Blackfin: bfin_spi: let boards control idle value 3511 3512 Some SPI devices like to see high idle values rather than low. 3513 3514 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 3515 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3516 3517commit ea693f22d8dbd8a65867a60a7f3faac30f85d65b 3518Author: Mike Frysinger <vapier@gentoo.org> 3519Date: Sat Nov 14 13:53:00 2009 -0500 3520 3521 Blackfin: asm/string.h: drop useless includes 3522 3523 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3524 3525commit f948158f72e6b880d02e4fa549362e4dc285eb1c 3526Author: Mike Frysinger <vapier@gentoo.org> 3527Date: Thu Nov 12 18:42:53 2009 -0500 3528 3529 Blackfin: use new bfin read/write mmr helper funcs 3530 3531 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3532 3533commit 313e8aacc1c9f5ca06085fa19b1429fa18a01aaa 3534Author: Mike Frysinger <vapier@gentoo.org> 3535Date: Thu Nov 12 18:42:07 2009 -0500 3536 3537 Blackfin: move watchdog config check to Makefile 3538 3539 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3540 3541commit dc6bc645e0cc1939b31cc54346415cf8e0dffc88 3542Author: Mike Frysinger <vapier@gentoo.org> 3543Date: Wed Nov 11 19:08:33 2009 -0500 3544 3545 Blackfin: fix L1 Instruction sizes on BF52x/BF54x 3546 3547 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3548 3549commit b7659ef2e764f62fc334f0d970721496823e4888 3550Author: Mike Frysinger <vapier@gentoo.org> 3551Date: Wed Nov 11 17:29:35 2009 -0500 3552 3553 Blackfin: bf527-ezkit: auto-select NAND settings 3554 3555 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3556 3557commit 7527feef06b13e9fd5b6d10a4bfc81b59ee56f27 3558Author: Mike Frysinger <vapier@gentoo.org> 3559Date: Mon Nov 9 19:38:23 2009 -0500 3560 3561 Blackfin: support boards with no external memory 3562 3563 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3564 3565commit dbda2c65e5fec92d0791367b53042983746ce95b 3566Author: Mike Frysinger <vapier@gentoo.org> 3567Date: Mon Nov 9 19:44:04 2009 -0500 3568 3569 Blackfin: re-architect initcode 3570 3571 The single initcode function was growing unwieldy, so split it up the 3572 distinct steps into their own function. This should making digesting the 3573 result much easier on people. 3574 3575 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3576 3577commit f5402d4c27e471c333cb84a82a437e60c6182449 3578Author: Mike Frysinger <vapier@gentoo.org> 3579Date: Mon Nov 9 18:08:09 2009 -0500 3580 3581 Blackfin: global_data.h: make pull in needed headers 3582 3583 We need the definition of bd_t in this header, so pull in asm/u-boot.h. 3584 3585 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3586 3587commit fa45bd498a1970574f4b7539b67cc2286f1324fa 3588Author: Mike Frysinger <vapier@gentoo.org> 3589Date: Tue Nov 3 06:28:22 2009 -0500 3590 3591 Blackfin: kill off useless initdram() usage 3592 3593 While the initdram() function makes sense on some arches, it doesn't for 3594 Blackfin systems as it's always implemented the same way. 3595 3596 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3597 3598commit b1e2c5519a06f9a5841a7a434bf4da4d393f8df5 3599Author: Mike Frysinger <vapier@gentoo.org> 3600Date: Tue Nov 3 06:11:31 2009 -0500 3601 3602 Blackfin: move section length calculation to linker script 3603 3604 The length of the sections is fixed at link time, so let the linker do the 3605 calculation rather than doing it ourselves at runtime. 3606 3607 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3608 3609commit 446707c90f52e5fcafecd468920cfad685ee9fc7 3610Author: Valentin Yakovenkov <yakovenkov@niistt.ru> 3611Date: Mon Oct 26 18:43:04 2009 -0400 3612 3613 Blackfin: bf561-acvilon: new board port 3614 3615 Signed-off-by: Valentin Yakovenkov <yakovenkov@niistt.ru> 3616 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3617 3618commit 16ada4f66ffea53662b7a61a5222cbc825d67175 3619Author: Mike Frysinger <vapier@gentoo.org> 3620Date: Thu Oct 15 14:59:46 2009 -0400 3621 3622 Blackfin: ADI settings: enable silent console support 3623 3624 Very little additional code overhead, and only works when the user sets an 3625 env var ahead of time, so default to on makes sense. 3626 3627 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3628 3629commit ac41c7a0e76fe6384949571373dc84a6098965ac 3630Author: Mike Frysinger <vapier@gentoo.org> 3631Date: Thu Oct 15 14:55:21 2009 -0400 3632 3633 Blackfin: bf537-stamp: rename SPI/MMC define 3634 3635 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3636 3637commit fd04a05b89d848c7841d8512751b8cce8b791e69 3638Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 3639Date: Wed Oct 14 08:37:32 2009 -0400 3640 3641 Blackfin: update tiny board settings (voltage/default env) 3642 3643 The tinyboards like to run at a little lower voltage than the default, and 3644 they prefer to boot over the network. For the latter, extend the common 3645 code a little to make this easier. 3646 3647 Also fix the cm-bf527 env sector size while we're in here to reflect the 3648 flash that is actually in use. 3649 3650 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 3651 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3652 3653commit 76d82187c6cccbcd8d514015c3b283f05ee8ac5c 3654Author: Mike Frysinger <vapier@gentoo.org> 3655Date: Tue Jul 21 22:17:36 2009 -0400 3656 3657 Blackfin: tweak embedded LDR env config option 3658 3659 Use the common config option for extracting the environment for embedding 3660 into LDR files and clarify the LDR-specific option. 3661 3662 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3663 3664commit 2740544881f652566756815dda4da0bcd946e9de 3665Author: Wolfgang Denk <wd@denx.de> 3666Date: Fri Jan 15 11:20:10 2010 +0100 3667 3668 malloc: return NULL if not initialized yet 3669 3670 When malloc() was called before it was properly initialized 3671 (as would happen if when used before relocation to RAM) it returned 3672 random, non-NULL values, which called all kinds of difficult to debug 3673 subsequent errors. 3674 3675 Make sure to return NULL when initialization was not done yet. 3676 3677 Signed-off-by: Wolfgang Denk <wd@denx.de> 3678 3679commit f098337152ca48e135448f5e7836cce938e12bc0 3680Author: Wolfgang Denk <wd@denx.de> 3681Date: Fri Jan 15 11:10:33 2010 +0100 3682 3683 JFFS2: drop support for LZARI compression mode 3684 3685 Support for LZARI compression mode was added based on a MTD CVS 3686 snapshot of March 13, 2005. However, fs/jffs2/compr_lzari.c contains 3687 contradictory licensing terms: the original copyright clause says "All 3688 rights reserved. Permission granted for non-commercial use.", but 3689 later reference to the file 'LICENCE' in the jffs2 directory was added 3690 which says GPL v2 or later. 3691 3692 As no boards ever used LZARI compression, and this file is also not 3693 present in recent MTD code, we resolve this conflict by removing the 3694 conflicting file and references to it. 3695 3696 Also copy the referenced but missing file 'LICENCE' from the current 3697 MTD source tree. 3698 3699 Signed-off-by: Wolfgang Denk <wd@denx.de> 3700 3701commit 321790f61bb92fead0fc01b8d055aa331d8dcf85 3702Author: Bryan Wu <bryan.wu@analog.com> 3703Date: Sat Jan 9 16:53:54 2010 -0500 3704 3705 usb: musb: add virtual root hub control support 3706 3707 For MUSB devices that do not support multipoint (hubs), we have to emulate 3708 a root hub so that we can support core operations like resetting ports. 3709 3710 Signed-off-by: Bryan Wu <bryan.wu@analog.com> 3711 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 3712 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3713 3714commit 559e2c87e45ae7261837d4945411c04833937d2a 3715Author: Chris Zhang <chris@seamicro.com> 3716Date: Wed Jan 6 13:34:06 2010 -0800 3717 3718 Adds EHCI definitions to sequoia board configuration file. 3719 3720 Adds required definitions for EHCI support in sequoia configuration file. 3721 But still keeps the OHCI as default driver. 3722 3723 Signed-off-by: Chris Zhang <chris@seamicro.com> 3724 3725commit 5f82887feecd7895593401f1ccda866bfb299fbb 3726Author: Chris Zhang <chris@seamicro.com> 3727Date: Wed Jan 6 13:34:05 2010 -0800 3728 3729 Add ppc440epx USB ehci support. 3730 3731 Currently ppc440epx uses OHCI for USB full-speed support. This change adds 3732 support for EHCI. 3733 3734 Signed-off-by: Chris Zhang <chris@seamicro.com> 3735 3736commit b416191a14770c6bcc6fd67be7decf8159b2baee 3737Author: Chris Zhang <chris@seamicro.com> 3738Date: Wed Jan 6 13:34:04 2010 -0800 3739 3740 Fix EHCI port reset. 3741 3742 In USB ehci driver, the port reset is not terminated. EHCI spec says "A host 3743 controller must terminate the reset and stabilize the state of the port within 3744 2 milliseconds". Without termination, a port stays at reset state. This is 3745 observed on ppc4xx(sequoia) boards. 3746 3747 Signed-off-by: Chris Zhang <chris@seamicro.com> 3748 3749commit b301be0599d14be46fc088861bb798648844aea5 3750Author: Sanjeev Premi <premi@ti.com> 3751Date: Thu Dec 24 14:20:41 2009 +0530 3752 3753 omap3: fix compile warning 3754 3755 This patch fixes this warning during compile: 3756 3757 omap3.c: In function 'musb_platform_init': 3758 omap3.c:126: warning: label 'end' defined but not used 3759 3760 Problem reported by: Dirk Behme[dirk.behme@googlemail.com] 3761 3762 Signed-off-by: Sanjeev Premi <premi@ti.com> 3763 3764commit e608f221c13943d88e86f44753e23668342c3df3 3765Author: Bryan Wu <bryan.wu@analog.com> 3766Date: Wed Dec 16 22:04:02 2009 -0500 3767 3768 usb: musb: add support for Blackfin MUSB 3769 3770 Signed-off-by: Bryan Wu <bryan.wu@analog.com> 3771 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 3772 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3773 Signed-off-by: Remy Bohmer <linux@bohmer.net> 3774 3775commit bc72a919e037782f64e3ac45c91bc60408e57e85 3776Author: Bryan Wu <bryan.wu@analog.com> 3777Date: Wed Dec 16 22:04:01 2009 -0500 3778 3779 usb: musb: change rxcsr register from write to read/modify/write 3780 3781 The RX Control/Status register has bits that we want to preserve, so don't 3782 just write out a single bit. Preserve the others bits in the process. 3783 3784 The original code posted to the u-boot list had this behavior, but looks 3785 like it was lost somewhere along the way to merging. 3786 3787 Signed-off-by: Bryan Wu <bryan.wu@analog.com> 3788 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 3789 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3790 Signed-off-by: Remy Bohmer <linux@bohmer.net> 3791 3792commit 8868fd443b7a52bf433903cc9527403ad055acb9 3793Author: Bryan Wu <bryan.wu@analog.com> 3794Date: Wed Dec 16 22:04:00 2009 -0500 3795 3796 usb: musb: make multipoint optional 3797 3798 The multipoint handling under MUSB is optional, and some parts (like the 3799 Blackfin processor) do not implement support for it. 3800 3801 Signed-off-by: Bryan Wu <bryan.wu@analog.com> 3802 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 3803 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3804 Signed-off-by: Remy Bohmer <linux@bohmer.net> 3805 3806commit df402ba38103df51f6929848b6a797eff4db61f8 3807Author: Bryan Wu <bryan.wu@analog.com> 3808Date: Wed Dec 16 22:03:59 2009 -0500 3809 3810 usb: musb: make fifo support configurable 3811 3812 The dynamic FIFO handling under MUSB is optional, and some parts (like 3813 the Blackfin processor) do not implement support for it. 3814 3815 Due to this, the FIFO reading/writing steps need special handling, so 3816 mark the common versions weak so drivers can override. 3817 3818 Signed-off-by: Bryan Wu <bryan.wu@analog.com> 3819 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 3820 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3821 Signed-off-by: Remy Bohmer <linux@bohmer.net> 3822 3823commit dc2cd05c91a134d53fada41e8f97a434be22de02 3824Author: Mike Frysinger <vapier@gentoo.org> 3825Date: Wed Dec 16 22:03:58 2009 -0500 3826 3827 usb: musb: make sure the register layout is packed 3828 3829 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 3830 Signed-off-by: Remy Bohmer <linux@bohmer.net> 3831 3832commit 7b4292883b6fdc42984671fbe4e0a352ec704bde 3833Author: Ajay Kumar Gupta <ajay.gupta@ti.com> 3834Date: Tue Dec 22 10:56:14 2009 +0530 3835 3836 DA830: Add usb config 3837 3838 Adding USB configuration. Default is set for USB MSC host. 3839 3840 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 3841 Signed-off-by: Swaminathan S <swami.iyer@ti.com> 3842 3843commit 7359273d946a7dcde04c5e8d5bad669146efc87c 3844Author: Ajay Kumar Gupta <ajay.gupta@ti.com> 3845Date: Tue Dec 22 10:56:13 2009 +0530 3846 3847 DA8xx: Add MUSB host support 3848 3849 Tested USB host functionality on DA830 EVM. 3850 3851 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 3852 Signed-off-by: Swaminathan S <swami.iyer@ti.com> 3853 3854commit 0b232310b2087d4278fb224fa01e228136fb8bdf 3855Author: Ajay Kumar Gupta <ajay.gupta@ti.com> 3856Date: Tue Dec 22 10:56:12 2009 +0530 3857 3858 DA8xx: Add GPIO register definitions 3859 3860 Added DA8xx GPIO base addresses in gpio_defs.h and pointers 3861 to different BANKs which can be used to program GPIOs. 3862 3863 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 3864 Signed-off-by: Swaminathan S <swami.iyer@ti.com> 3865 3866commit 82a821f89bee913d7ba17cb500c778cf08dce321 3867Author: Ajay Kumar Gupta <ajay.gupta@ti.com> 3868Date: Tue Dec 22 10:56:11 2009 +0530 3869 3870 DA830: Add pinmux for USB0_DRVVBUS 3871 3872 USB0_DRVVBUS pinmux configuration is required for USB functinality 3873 in uboot. 3874 3875 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 3876 Signed-off-by: Swaminathan S <swami.iyer@ti.com> 3877 3878commit a3f5da1bee9a8c343a411080d7d468bdc78794a4 3879Author: Heiko Schocher <hs@denx.de> 3880Date: Thu Jan 7 08:56:00 2010 +0100 3881 3882 mpc83xx: add support configure bus parking 3883 3884 Add support to configure bus parking mode and master in bus arbitration 3885 configuration (ACR). Add this for the kmeter1 port: 3886 3887 Configure bus arbiter with recommended values from Freescale 3888 to improve bus latency/throughput for application with 3889 intensive QuiccEngine activity. 3890 3891 Signed-off-by: Heiko Schocher <hs@denx.de> 3892 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 3893 3894commit a0daa2e06f05d97c03c59b656d50371319bf29ec 3895Author: Reinhard Arlt <reinhard.arlt@esd.eu> 3896Date: Tue Dec 8 09:21:41 2009 +0100 3897 3898 mpc83xx: vme8349: Fix power up reset sequence for tsi148 3899 3900 Remove PCI reset, if there is a monarch PMC module. 3901 3902 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu> 3903 Signed-off-by: Stefan Roese <sr@denx.de> 3904 3905 convert clrbits_be32 + setbits_be32 to clrsetbits_be32, use out_be32 to set gcr. 3906 3907 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 3908 3909commit 1dee9be683c9b0f060452aaf1a97a34fae87f07a 3910Author: Reinhard Arlt <reinhard.arlt@esd.eu> 3911Date: Tue Dec 8 09:13:08 2009 +0100 3912 3913 mpc83xx: Add support for MPC8349 esd caddy2 3914 3915 The caddy2 is a variant of the already supported vme8349. So we just 3916 add the differences to this board port. To better support those two 3917 boards we switched from fixed SDRAM configuration to usage of 3918 spd_sdram(). This is done by providing a board specific SPD EEPROM 3919 routine with different values for both boards. 3920 3921 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu> 3922 Signed-off-by: Stefan Roese <sr@denx.de> 3923 3924 changed to use mkconfig -t option instead, plus misc codingstyle fixes. 3925 3926 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 3927 3928commit 7693640acd5222f5a64e59ccf5e3bc511e8054b9 3929Author: Stefan Roese <sr@denx.de> 3930Date: Tue Dec 8 09:10:04 2009 +0100 3931 3932 mpc83xx: spd_sdram.c: Disable memory controller before initializing 3933 3934 The memory controller could already be enabled, when spd_sdram() is 3935 called. This could be the case for example, when the SDRAM is initialized 3936 by the JTAG debugger. 3937 3938 The "sync" after the register access via the accessor function is 3939 still needed, because the macro uses the sync before the real write 3940 is done. So until not all accesses are converted to using accessor 3941 functions, this sync still needs to be made "manually" here. 3942 3943 Signed-off-by: Stefan Roese <sr@denx.de> 3944 Cc: Reinhard Arlt <reinhard.arlt@esd.eu> 3945 Acked-by: Dave Liu <daveliu@freescale.com> 3946 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 3947 3948commit 2e95004deb6e33e33bf1b8a92a38cd2115bac4c2 3949Author: Anton Vorontsov <avorontsov@ru.mvista.com> 3950Date: Tue Nov 24 20:12:12 2009 +0300 3951 3952 mpc83xx: Add NAND boot support for MPC8315E-RDB boards 3953 3954 The core support for NAND booting is there already, so this patch 3955 is pretty straightforward. 3956 3957 There is one trick though: top level Makefile expects nand_spl to 3958 be in nand_spl/board/$(BOARDDIR), but we can fully reuse the code 3959 from mpc8313erdb boards, and so to not duplicate the code we just 3960 symlink nand_spl/board/freescale/mpc8315erdb to mpc8313erdb. 3961 3962 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 3963 3964 o silence make during ln echo 3965 o update documentation 3966 o and avoid: 3967 3968 $ ./MAKEALL MPC8315ERDB_NAND 3969 Configuring for MPC8315ERDB board... 3970 sdram.o: In function `fixed_sdram': 3971 /home/r1aaha/git/u-boot/nand_spl/board/freescale/mpc8313erdb/sdram.c:72: undefined reference to `udelay' 3972 3973 by renaming udelay -> __udelay in the spirit of commit 3974 3eb90bad651fab39cffba750ec4421a9c01d60e7 "Generic udelay() with watchdog 3975 support". 3976 3977 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 3978 3979commit b821cead7d2147724d5f1d8ccbca40710faad38a 3980Author: Sanjeev Premi <premi@ti.com> 3981Date: Fri Dec 18 14:55:24 2009 +0530 3982 3983 onenand: Fix compile errors due to FlexOneNAND 3984 3985 This patch fixes the compile error while trying to 3986 compile for omap3evm. 3987 3988 env_onenand.c: In function 'env_relocate_spec': 3989 env_onenand.c:70: error: 'CONFIG_ENV_ADDR_FLEX' undeclared 3990 (first use in this function) 3991 env_onenand.c:70: error: (Each undeclared identifier is re 3992 ported only once 3993 env_onenand.c:70: error: for each function it appears in.) 3994 env_onenand.c: In function 'saveenv': 3995 env_onenand.c:106: error: 'CONFIG_ENV_ADDR_FLEX' undeclare 3996 d (first use in this function) 3997 env_onenand.c:107: error: 'CONFIG_ENV_SIZE_FLEX' undeclare 3998 d (first use in this function) 3999 4000 Signed-off-by: Sanjeev Premi <premi@ti.com>
4001 Acked-by: Tom Rix <Tom.Rix@windriver.com> 4002 4003commit 20da6f4d93db270c57eb67968e441a20faf61938 4004Author: Nick Thompson <nick.thompson@ge.com> 4005Date: Wed Dec 16 11:15:58 2009 +0000 4006 4007 Davinci: davinci_nand.c performance enhancments 4008 4009 Introduces various optimisations that approximately triple the 4010 read data rate from NAND when run on da830evm. 4011 4012 Most of these optimisations depend on the endianess of the machine 4013 and most of them are very similar to optimisations already present 4014 in the Linux Kernel. 4015 4016 Signed-off-by: Nick Thompson <nick.thompson@ge.com> 4017 4018commit 06f95959bc5421e516a9a25012e303dea8833385 4019Author: Tom Rix <Tom.Rix@windriver.com> 4020Date: Wed Jan 6 09:36:24 2010 -0600 4021 4022 ARM Update mach-types 4023 4024 Fetched from http://www.arm.linux.org.uk/developer/machines/download.php 4025 And built with 4026 4027 repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm 4028 commit c9f937e4a3f4ebf9924ec21d80632e5eb61d949c 4029 4030 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4031 4032commit 8b0ab304943b07d13a29db6d3d2ca3edad32cdcb 4033Author: Becky Bruce <beckyb@kernel.crashing.org> 4034Date: Tue Nov 17 21:10:21 2009 -0600 4035 4036 ppc/p4080: Add Corenet Platform Cache (CPC) registers 4037 4038 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 4039 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4040 4041commit 3e731aaba30c7011edf6391072eee845ed1b816f 4042Author: Dave Liu <daveliu@freescale.com> 4043Date: Wed Dec 16 10:24:39 2009 -0600 4044 4045 fsl-ddr: setup ODT_RD_CFG & ODT_WR_CFG when we interleave 4046 4047 In chip-select interleaving case, we also need set the ODT_RD_CFG 4048 and ODT_WR_CFG in cs1_config register. 4049 4050 Signed-off-by: Dave Liu <daveliu@freescale.com> 4051 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4052 4053commit 1aa3d08a0244506b94031522e54fe06ee7a5ae0e 4054Author: Dave Liu <daveliu@freescale.com> 4055Date: Wed Dec 16 10:24:38 2009 -0600 4056 4057 fsl-ddr: add override for the Rtt_Wr 4058 4059 Different boards may require different settings of Dynamic ODT (Rtt_Wr). 4060 We provide a means to allow the board specific code to provide its own 4061 value of Rtt_Wr. 4062 4063 Signed-off-by: Dave Liu <daveliu@freescale.com> 4064 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4065 4066commit bdc9f7b5eab8d5edd8a8cc5d80ef080836b00e85 4067Author: Dave Liu <daveliu@freescale.com> 4068Date: Wed Dec 16 10:24:37 2009 -0600 4069 4070 fsl-ddr: add the override for write leveling 4071 4072 add the override for write leveling sampling and 4073 start time according to specific board. 4074 4075 Signed-off-by: Dave Liu <daveliu@freescale.com> 4076 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4077 4078commit 0a71c92c7e1e565111cb34cd389a21ec500ca5c1 4079Author: Dave Liu <daveliu@freescale.com> 4080Date: Wed Dec 16 10:24:36 2009 -0600 4081 4082 fsl-ddr: Fix power-down timing settings 4083 4084 1. TIMING_CFG_0[ACT_PD_EXIT] was set to 6 clocks, but 4085 It should be set to tXP parameter, tXP=max(3CK, 7.5ns) 4086 2. TIMING_CFG_0[PRE_PD_EXIT] was set to 6 clocks, but 4087 It should be set to tXP (if MR0[A12]=1) else to tXPDLL parameter 4088 We are setting the mode register MR0[A12]='1' 4089 4090 Signed-off-by: Dave Liu <daveliu@freescale.com> 4091 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4092 4093commit c4ca10f1db36c3ce649c656dec14f7aab644dd86 4094Author: Anton Vorontsov <avorontsov@ru.mvista.com> 4095Date: Wed Dec 16 01:14:31 2009 +0300 4096 4097 mpc85xx: Add 4-bits eSDHC support for MPC8569E-MDS boards 4098 4099 Thanks to "Errata to MPC8569E PowerQUICC III Integrated Host Processor 4100 Family Reference Manual, Rev. 0" document, which describes all eSDHC 4101 pins, we can add 4-bits eSDHC support for MPC8569E-MDS boards. 4102 4103 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 4104 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4105 4106commit bc20f9a9527afe8ae406a74f74765d4323f04922 4107Author: Kumar Gala <galak@kernel.crashing.org> 4108Date: Wed Dec 9 17:28:17 2009 -0600 4109 4110 ppc/p4080: Fix reporting of PME & FM clock frequencies 4111 4112 We incorrectly had the sense of PME_CLK_SEL, FM1_CLK_SEL, FM2_CLK_SEL 4113 backwards so we report the wrong frequency. 4114 4115 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4116 4117commit de3cbd78c9a485389b233f8ca705a9e5f51afaf3 4118Author: Li Yang <leoli@freescale.com> 4119Date: Wed Dec 9 14:26:08 2009 +0800 4120 4121 fsl_law: add SRIO2 target id and law_size_bits() macro 4122 4123 Signed-off-by: Li Yang <leoli@freescale.com> 4124 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4125 4126commit abc76eb6a6936a99811eda256222b3927427f8e2 4127Author: Kumar Gala <galak@kernel.crashing.org> 4128Date: Tue Nov 17 20:21:20 2009 -0600 4129 4130 ppc/85xx: Map boot page guarded for MP boot 4131 4132 We already map the page cache-inhibited. There is no reason we 4133 shouldn't also be marking it guarded to prevent speculative accesses. 4134 4135 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4136 4137commit effe4973f2f349e6e87d455ae718aabaf919a75d 4138Author: Kumar Gala <galak@kernel.crashing.org> 4139Date: Tue Nov 17 22:44:52 2009 -0600 4140 4141 ppc: Added macro to test for specific SVR revision 4142 4143 Various SoC errata are specific to a given revision of silicon. This 4144 patch gives us a simple macro to use when doing such tests. 4145 4146 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4147 4148commit f5ecc6e027150289c2a46db7cec197b2b6da893c 4149Author: Dave Liu <daveliu@freescale.com> 4150Date: Tue Nov 17 20:01:24 2009 -0600 4151 4152 p4080: add readback to bootpage translation window 4153 4154 We need to add the readback to bootpage translation LAW 4155 to make it effect. 4156 4157 Signed-off-by: Dave Liu <daveliu@freescale.com> 4158 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 4159 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4160 4161commit 5fb6ea3ad3562f78df8693ed8c4ca89654236c4f 4162Author: Kumar Gala <galak@kernel.crashing.org> 4163Date: Fri Nov 13 09:25:07 2009 -0600 4164 4165 ppc/85xx: Make flash TLB entry determined at runtime on FSL boards 4166 4167 Rather than hard coding which TLB entry the FLASH is mapped with we can 4168 use find_tlb_idx to determine the entry. 4169 4170 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4171 4172commit 783852e467f32a3a5568b542379e9fec3d26a173 4173Author: Kumar Gala <galak@kernel.crashing.org> 4174Date: Fri Nov 13 09:09:10 2009 -0600 4175 4176 ppc/85xx: Remove CONFIG_SYS_DDR_TLB_START 4177 4178 Now that we dynamically determine TLB CAM entries to use we dont need 4179 CONFIG_SYS_DDR_TLB_START anymore. 4180 4181 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4182 4183commit 355f4f85e90ce2e6d91883012c2993be7970c8b1 4184Author: Kumar Gala <galak@kernel.crashing.org> 4185Date: Fri Nov 13 09:04:19 2009 -0600 4186 4187 ppc/85xx: Make SPD DDR TLB setup code use dynamic entry allocation 4188 4189 Now that we track which TLB CAM entries are used we can allocate 4190 entries on the fly. Change the SPD DDR TLB setup code to assume 4191 we use at most 8 TLBs (or the number free, which ever is fewer). 4192 4193 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4194 4195commit 94e9411b9dda182dd63d53ba6ea640c98b35db5f 4196Author: Kumar Gala <galak@kernel.crashing.org> 4197Date: Thu Nov 12 10:26:16 2009 -0600 4198 4199 ppc/85xx: Add tracking of TLB CAM usage 4200 4201 We need to track which TLB CAM entries are used to allow us to 4202 "dynamically" allocate entries later in the code. For example the SPD 4203 DDR code today hard codes which TLB entries it uses. We can now make 4204 that pick entries that are free. 4205 4206 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4207 4208commit ee53650dad2fede057e93fdf6f8cd72b29ef7cd0 4209Author: Kumar Gala <galak@kernel.crashing.org> 4210Date: Wed Nov 4 13:00:55 2009 -0600 4211 4212 ppc/8xxx: Remove is_fsl_pci_agent 4213 4214 All users of is_fsl_pci_agent have been converted to fsl_is_pci_agent 4215 that uses the standard PCI programming model to determine host vs 4216 agent/end-point. 4217 4218 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4219 4220commit 7cb8f79b44c70a3c66891f407254d9c739e2e7da 4221Author: Kumar Gala <galak@kernel.crashing.org> 4222Date: Wed Nov 4 11:39:55 2009 -0600 4223 4224 ppc/85xx: Move to using fsl_setup_hose on TQM 85xx 4225 4226 We can use fsl_setup_hose to determine if we are a agent/end-point or 4227 a host. Rather than using some SoC specific register we can just look 4228 at the PCI cfg space of the host controller to determine this. 4229 4230 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4231 4232commit 9263e829f025661cbd3a80675285b42c14350ea4 4233Author: Kumar Gala <galak@kernel.crashing.org> 4234Date: Wed Nov 4 13:01:51 2009 -0600 4235 4236 ppc/85xx: Move to using fsl_setup_hose on P2020 DS 4237 4238 We can use fsl_setup_hose to determine if we are a agent/end-point or 4239 a host. Rather than using some SoC specific register we can just look 4240 at the PCI cfg space of the host controller to determine this. 4241 4242 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4243 4244commit 1e21ba8f6d0708fe7f44066059927cfa6bfedf7a 4245Author: Kumar Gala <galak@kernel.crashing.org> 4246Date: Wed Nov 4 13:01:38 2009 -0600 4247 4248 ppc/85xx: Move to using fsl_setup_hose on P1/P2 RDB 4249 4250 We can use fsl_setup_hose to determine if we are a agent/end-point or 4251 a host. Rather than using some SoC specific register we can just look 4252 at the PCI cfg space of the host controller to determine this. 4253 4254 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4255 4256commit 42c01b9d1f0132a6d82e2c8333b236b1e3b0831f 4257Author: Kumar Gala <galak@kernel.crashing.org> 4258Date: Wed Nov 4 13:01:17 2009 -0600 4259 4260 ppc/85xx: Move to using fsl_setup_hose on MPC8572 DS 4261 4262 We can use fsl_setup_hose to determine if we are a agent/end-point or 4263 a host. Rather than using some SoC specific register we can just look 4264 at the PCI cfg space of the host controller to determine this. 4265 4266 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4267 4268commit 5e3d7050cf127dfcd6ab260c551e9183299d0dca 4269Author: Kumar Gala <galak@kernel.crashing.org> 4270Date: Wed Nov 4 12:51:10 2009 -0600 4271 4272 ppc/86xx: Clean up MPC8610 HPCD PCI setup code 4273 4274 Use new fsl_pci_init_port() that reduces amount of duplicated code in the 4275 board ports, use IO accessors and clean up printing of status info. 4276 4277 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4278 4279commit 7b626880b4e1fd8d2297c9341b92c2253fc27fd0 4280Author: Kumar Gala <galak@kernel.crashing.org> 4281Date: Wed Nov 4 11:15:29 2009 -0600 4282 4283 ppc/85xx: Clean up MPC8548 CDS PCI setup code 4284 4285 Use new fsl_pci_init_port() that reduces amount of duplicated code in the 4286 board ports, use IO accessors and clean up printing of status info. 4287 4288 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4289 4290commit feadd5d53ba5047c3bc912ff5b7c7a690c8c53cf 4291Author: Kumar Gala <galak@kernel.crashing.org> 4292Date: Wed Nov 4 11:05:02 2009 -0600 4293 4294 ppc/85xx: Clean up ATUM8548 PCI setup code 4295 4296 Use new fsl_pci_init_port() that reduces amount of duplicated code in the 4297 board ports, use IO accessors and clean up printing of status info. 4298 4299 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4300 4301commit 4681457e2aace8dff09dc4c6c02185231b970d6b 4302Author: Kumar Gala <galak@kernel.crashing.org> 4303Date: Wed Nov 4 10:31:53 2009 -0600 4304 4305 ppc/85xx: Clean up MPC8568 MDS PCI setup code 4306 4307 Use new fsl_pci_init_port() that reduces amount of duplicated code in the 4308 board ports, use IO accessors and clean up printing of status info. 4309 4310 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4311 4312commit c847e98b143c154cc466f9d03e90a3495329172b 4313Author: Kumar Gala <galak@kernel.crashing.org> 4314Date: Wed Nov 4 10:26:30 2009 -0600 4315 4316 ppc/85xx: Clean up MPC8569 MDS PCI setup code 4317 4318 Use new fsl_pci_init_port() that reduces amount of duplicated code in the 4319 board ports, use IO accessors and clean up printing of status info. 4320 4321 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4322 4323commit 645d5a7838058ce603803935cd40a62a26aea04d 4324Author: Kumar Gala <galak@kernel.crashing.org> 4325Date: Wed Nov 4 10:22:26 2009 -0600 4326 4327 ppc/85xx: Clean up MPC8544 DS PCI setup code 4328 4329 Use new fsl_pci_init_port() that reduces amount of duplicated code in the 4330 board ports, use IO accessors and clean up printing of status info. 4331 4332 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4333 4334commit 8a414c4258aeeab93fb83fad0544894597c8bd35 4335Author: Mingkai Hu <Mingkai.hu@freescale.com> 4336Date: Wed Oct 28 10:49:31 2009 +0800 4337 4338 ppc/85xx: Clean up MPC8536 DS PCI setup code 4339 4340 Use new fsl_pci_init_port() that reduces amount of duplicated code in the 4341 board ports, use IO accessors and clean up printing of status info. 4342 4343 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 4344 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4345 4346commit 3ad89c4ecba51564c97075f031aef4fa5eafbb16 4347Author: Kumar Gala <galak@kernel.crashing.org> 4348Date: Sat Oct 31 11:23:41 2009 -0500 4349 4350 NET: Base support for etsec2.0 4351 4352 1. Modified the tsec_mdio structure to include the new regs 4353 2. Modified the MDIO_BASE_ADDR so that it will handle both 4354 older version and new version of etsec. 4355 4356 Signed-off-by: Sandeep Gopalpet <sandeep.kumar@freescale.com> 4357 Acked-by: Kim Phillips <kim.phillips@freescale.com> 4358 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4359 4360commit b9e186fc31683a4f1b6880c086950b2270e62e24 4361Author: Sandeep Gopalpet <sandeep.kumar@freescale.com> 4362Date: Sat Oct 31 00:35:04 2009 +0530 4363 4364 NET: Move MDIO regs out of TSEC Space 4365 4366 Moved the mdio regs out of the tsec structure,and 4367 provided different offsets for tsec base and mdio 4368 base so that provision for etsec2.0 can be provided. 4369 4370 This patch helps in providing the support for etsec2.0 4371 In etsec2.0, the MDIO register space and the etsec reg 4372 space are different. 4373 4374 Also, moved the TSEC_BASE_ADDR and MDIO_BASE_ADDR definitons into 4375 platform specific files. 4376 4377 Signed-off-by: Sandeep Gopalpet <sandeep.kumar@freescale.com> 4378 Acked-by: Kim Phillips <kim.phillips@freescale.com> 4379 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4380 4381commit bcad21fda187f7d8d5d2c026c395cca35a9c700e 4382Author: Kumar Gala <galak@kernel.crashing.org> 4383Date: Thu Mar 19 02:46:28 2009 -0500 4384 4385 85xx: Add support to set DPAA (data path) devices clock frequencies 4386 4387 Set clock-frequency for Frame Manager 0/1 and Patter Match Engine on p4080. 4388 4389 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4390 4391commit 178e39e199e9c985e5e5e968d60d7243fceb5616 4392Author: Kumar Gala <galak@kernel.crashing.org> 4393Date: Thu Sep 17 00:01:14 2009 -0500 4394 4395 ppc/8xxx: Don't use pci_cfg on FSL_CORENET platforms 4396 4397 The FSL_CORENET platforms use a completely different means to determine 4398 which PCIe port is enabled as well as if its a host or agent/end-point. 4399 4400 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4401 4402commit 11588b5dc4c581b2a68a24e3298ab14e83c59d31 4403Author: Kumar Gala <galak@kernel.crashing.org> 4404Date: Thu Oct 15 23:22:10 2009 -0500 4405 4406 ppc/p4080: Added p4080 SERDES registers & USB offset 4407 4408 Added immap definition for SERDES registers on p4080, the USB offset 4409 (since it was missing) and a GPL header. 4410 4411 Signed-off-by: Li Yang <leoli@freescale.com> 4412 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4413 4414commit 82fd1f8da9add2d74532cf78d224485f0042d00d 4415Author: Kumar Gala <galak@kernel.crashing.org> 4416Date: Thu Mar 19 02:53:01 2009 -0500 4417 4418 85xx: Add support for e500mc cache stashing 4419 4420 The e500mc core supports the ability to stash into the L1 or L2 cache, 4421 however we need to uniquely identify the caches with an id. 4422 4423 We use the following equation to set the various stash-ids: 4424 4425 32 + coreID*2 + 0(L1) or 1(L2) 4426 4427 The 0 (for L1) or 1 (for L2) matches the CT field used be various cache 4428 control instructions. 4429 4430 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4431 4432commit 26be2c53d671ecfd3e0483f0870649ac28322293 4433Author: Nick Thompson <nick.thompson@ge.com> 4434Date: Sat Dec 12 12:13:10 2009 -0500 4435 4436 Davinci: NAND enable ECC even when not in NAND boot mode 4437 4438 Davinci: NAND enable ECC even when not in NAND boot mode 4439 4440 On Davinci platforms, the default NAND device is enabled (for ECC) 4441 in low level boot code when NAND boot mode is used. If booting in 4442 another mode, NAND ECC is not enabled. The driver should make 4443 sure ECC is enabled regardless of boot mode if NAND is configured 4444 in U-Boot. 4445 4446 Signed-off-by: Nick Thompson <nick.thompson@ge.com> 4447 4448commit 97f4eb8cfb97c7c5b158e3c0df4611efbf50f403 4449Author: Nick Thompson <nick.thompson@gefanuc.com> 4450Date: Sat Dec 12 12:12:26 2009 -0500 4451 4452 Davinci: Configurable NAND chip selects 4453 4454 Davinci: Configurable NAND chip selects 4455 4456 Add a CONFIG_SYS_NAND_CS setting to all davinci configs and 4457 use it to setup the NAND controller in the davinci_nand 4458 mtd driver. 4459 4460 Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com> 4461 4462commit 90110e0eab5ac6ab714109ce1fd8873c858dd552 4463Author: Nick Thompson <nick.thompson@gefanuc.com> 4464Date: Sat Dec 12 12:10:51 2009 -0500 4465 4466 Davinci: Table driven pinmux configuration 4467 4468 Davinci: Table driven pinmux configuration 4469 4470 Add code to allow pinmux_config tables to be grouped and configured 4471 as a single resource. This removes multiple calls to the pinmux 4472 configuration code from board_init and allows pinmuxes to be 4473 individually configured and added by data manipulation only. 4474 4475 All related #ifdefs can the be removed from board_init code and 4476 since the compiler optimises away statics, #ifdefs can be reduced in 4477 the data definitions as well. 4478 4479 Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com> 4480 4481commit 1270ec13d4fbae48a537dc76d418a6efa72f5725 4482Author: Robert P. J. Day <rpjday@crashcourse.ca> 4483Date: Sat Dec 12 12:10:33 2009 -0500 4484 4485 Remove superfluous uses of V_PROMPT macro. 4486 4487 A number of config files define the V_PROMPT macro for the 4488 command-line prompt, only to immediately use that macro to define 4489 CONFIG_SYS_PROMPT, making V_PROMPT entirely superfluous. 4490 4491 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> 4492 4493commit 8b432bebc205a959684559477472c048e31d137d 4494Author: Grazvydas Ignotas <notasas@gmail.com> 4495Date: Fri Dec 11 15:07:30 2009 +0200 4496 4497 pandora: don't enable VAUX3, VDAC and VPLL2 regulators 4498 4499 These regulators are not needed to start the kernel and only 4500 cause "incomplete constraints" warnings from kernel, so don't 4501 turn them on to save power. 4502 4503 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com> 4504 4505commit ead39d7aa3ddccb2e374217aeab23bd65cedb762 4506Author: Grazvydas Ignotas <notasas@gmail.com> 4507Date: Thu Dec 10 17:10:21 2009 +0200 4508 4509 TWL4030: make LEDs selectable for twl4030_led_init() 4510 4511 Not all boards have both LEDs hooked, so enabling both on 4512 boards with single LED will just waste power. Make it 4513 possible to choose LEDs by adding argument to 4514 twl4030_led_init(). 4515 4516 Using this turn on only LEDB for pandora, leave both LEDs 4517 on for all other boards, as it was before this patch. 4518 4519 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com> 4520 4521commit be34fef7fdcfaffc68495e50929669ac5e4bd800 4522Author: Stefan Roese <sr@denx.de> 4523Date: Wed Dec 16 09:27:31 2009 +0100 4524 4525 ppc4xx: alpr: Remove some not needed commands to make image fit again 4526 4527 The latest changes increased the size of the alpr image a bit more. 4528 Now it doesn't fit into the 256k reserved for it. This patch now removes 4529 the commands "ping" and "diag" which are not needed in the production 4530 systems. 4531 4532 Signed-off-by: Stefan Roese <sr@denx.de> 4533 Cc: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl> 4534 4535commit 072e754b6b9bef438fc0870318755e33051baa7d 4536Author: Heiko Schocher <hs@denx.de> 4537Date: Thu Dec 3 11:23:17 2009 +0100 4538 4539 i2c, ppc4xx: fix compiling KAREF and METROBOX boards. 4540 4541 commit eb5eb2b0f744f0cba405160c5d01335c40f09acf 4542 4543 ppc4xx: Cleanup PPC4xx I2C infrastructure 4544 4545 This patch cleans up the PPC4xx I2C intrastructure: 4546 4547 - Use C struct to describe the I2C registers instead of defines 4548 - Coding style cleanup (braces, whitespace, comments, line length) 4549 - Extract common code from i2c_read() and i2c_write() 4550 - Remove unneeded IIC defines from ppc405.h & ppc440.h 4551 4552 breaks comiling for the KAREF and METROBOX boards. 4553 4554 This patch fixes this issue. 4555 4556 Signed-off-by: Heiko Schocher <hs@denx.de> 4557 Signed-off-by: Stefan Roese <sr@denx.de> 4558 4559commit 87d93a1ba2ae23550e1370adb7a3b00af0831165 4560Author: Wolfgang Wegner <w.wegner@astro-kom.de> 4561Date: Wed Dec 9 15:16:47 2009 +0100 4562 4563 move prototypes for gunzip() and zunzip() to common.h 4564 4565 Prototype for gunzip/zunzip was only in lib_generic/gunzip.c and thus 4566 repeated in every file using it. This patch moves the prototypes to 4567 common.h and removes all prototypes distributed anywhere else. 4568 4569 Signed-off-by: Wolfgang Wegner <w.wegner@astro-kom.de> 4570 4571commit 127e10842b2474ac20e40572a4102dd4d5ed80f1 4572Author: Mahavir Jain <mjain@marvell.com> 4573Date: Tue Nov 3 12:22:10 2009 +0530 4574 4575 usb: write command for RAW partition. 4576 4577 This patch implements write support to usb device with raw partition. 4578 It will be useful for filesystem write support to usb device from 4579 u-boot in future. 4580 4581 Tested with writing kernel image to raw usb disk & booting with usb 4582 read command into ram. 4583 4584 [Note: run usb part to get info about start sector & number of 4585 sectors on a partition for usb write operation.] 4586 4587 Signed-off-by: Mahavir Jain <mjain@marvell.com> 4588 4589commit 73c8640e93881439b87a5734485a9e56a494ef50 4590Author: Ajay Kumar Gupta <ajay.gupta@ti.com> 4591Date: Wed Nov 4 15:58:23 2009 -0600 4592 4593 omap3evm: musb: add USB config 4594 4595 Added USB host and device config for host (MSC, Keyboard) and 4596 device (ACM) functionalities. 4597 4598 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 4599 4600commit ae4caf2fb53cc7be5d59a649b8aee86d542cbb6f 4601Author: Tom Rix <Tom.Rix@windriver.com> 4602Date: Sat Oct 31 12:37:46 2009 -0500 4603 4604 OMAP3 USB Initialize twl4030 only if required 4605 4606 OMAP3EVM uses ISP1504 phy and so twl4030 related init is not required. 4607 4608 Submitted-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 4609 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4610 4611commit 2ec1abea4359b94523d45a20d68d8582e09ace46 4612Author: Tom Rix <Tom.Rix@windriver.com> 4613Date: Sat Oct 31 12:37:45 2009 -0500 4614 4615 OMAP3 zoom2 Use usbtty if the debug board is not connected. 4616 4617 The preferred serial output comes from the debug board. 4618 When the debug board is disconnected, fall back on using 4619 usbtty from the usb connector on the Zoom2 board. 4620 4621 This shows up as /dev/ttyACM0 in a linux host. 4622 4623 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4624 4625commit 6299487ef5dcdb06e0394f5955755c8dd9ce707b 4626Author: Tom Rix <Tom.Rix@windriver.com> 4627Date: Sat Oct 31 12:37:44 2009 -0500 4628 4629 USBTTY make some function declarations easier to use. 4630 4631 Zoom2 needs to use these declarations and the include directory is a 4632 better place from them than in the middle of the driver directory. 4633 It did not make sense to create a new file for just a couple of 4634 lines so they were appended to the serial.h 4635 4636 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4637 4638commit 25374bfbf3a6c6624d8db512c95a4960e3a84635 4639Author: Tom Rix <Tom.Rix@windriver.com> 4640Date: Sat Oct 31 12:37:43 2009 -0500 4641 4642 OMAP3 beagle Add usbtty configuration 4643 4644 The primary console of beagle is the serial header. 4645 4646 A secondary console is to use the usbtty. The user can set this 4647 manually by doing 4648 4649 setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty 4650 saveenv 4651 4652 usbtty will be usable by accessing the /dev/ttyACM0 on a linux host. 4653 4654 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4655 4656commit 05be5a60e98eb1243901f556fefd66b1691fabe4 4657Author: Tom Rix <Tom.Rix@windriver.com> 4658Date: Sat Oct 31 12:37:42 2009 -0500 4659 4660 OMAP3 zoom1 Add usbtty configuration 4661 4662 The primary console of zoom1 is the serial out from the jumpers 4663 accessed by removing the back panel. 4664 4665 A secondary console is to use the usbtty. The user can set this 4666 manually by doing 4667 4668 setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty 4669 saveenv 4670 4671 usbtty will be usable by accessing the /dev/ttyACM0 on a linux host. 4672 4673 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4674 4675commit f298e4b6dd56df3e35a13a6ddd572ca3baf06ad2 4676Author: Tom Rix <Tom.Rix@windriver.com> 4677Date: Sat Oct 31 12:37:41 2009 -0500 4678 4679 OMAP3 Add usb device support 4680 4681 This change adds the usb device support for musb. 4682 4683 Omap3 platform support added at the same level as davinci. 4684 4685 The interface for usbtty to use the musb device support was added. 4686 4687 Verified on omap3 beagle, zoom1 and zoom2. 4688 4689 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4690 4691commit bffbb2a86d2a3aa28bd8f9869aa553082fb5af5f 4692Author: Tom Rix <Tom.Rix@windriver.com> 4693Date: Sat Oct 31 12:37:40 2009 -0500 4694 4695 TWL4030 Add usb PHY support 4696 4697 The twl4030 provides a PHY device for connecting a link device, 4698 like musb, to physical connection. 4699 4700 This change adds the twl4030 usb registers and functions for 4701 initializing the PHY as required by omap3. 4702 4703 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4704 4705commit 988365a2048356f94ed0c294009233317c9fb4b2 4706Author: Tom Rix <Tom.Rix@windriver.com> 4707Date: Sat Oct 31 12:37:39 2009 -0500 4708 4709 USB add macros for debugging usb device setup. 4710 4711 When developing usb device features, it is useful to print out 4712 common usb structures. 4713 4714 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4715 4716commit 8f8bd565f35ff8a068727bfcf8975c50df082043 4717Author: Tom Rix <Tom.Rix@windriver.com> 4718Date: Sat Oct 31 12:37:38 2009 -0500 4719 4720 USB Consolidate descriptor definitions 4721 4722 The header files usb.h and usbdescriptors.h have the same nameed 4723 structure definitions for 4724 4725 usb_config_descriptor 4726 usb_interface_descriptor 4727 usb_endpoint_descriptor 4728 usb_device_descriptor 4729 usb_string_descriptor 4730 4731 These are out right duplicates in usb.h 4732 4733 usb_device_descriptor 4734 usb_string_descriptor 4735 4736 This one has extra unused elements 4737 4738 usb_endpoint_descriptor 4739 4740 unsigned char bRefresh 4741 unsigned char bSynchAddress; 4742 4743 These in usb.h have extra elements at the end of the usb 2.0 4744 specified descriptor and are used. 4745 4746 usb_config_descriptor 4747 usb_interface_descriptor 4748 4749 The change is to consolidate the definition of the descriptors 4750 to usbdescriptors.h. The dublicates in usb.h are removed. 4751 The extra element structure will have their name shorted by 4752 removing the '_descriptor' suffix. 4753 4754 So 4755 4756 usb_config_descriptor -> usb_config 4757 usb_interface_descriptor -> usb_interface 4758 4759 For these, the common descriptor elements are accessed now 4760 by an element 'desc'. 4761 4762 As an example 4763 4764 - if (iface->bInterfaceClass != USB_CLASS_HUB) 4765 + if (iface->desc.bInterfaceClass != USB_CLASS_HUB) 4766 4767 This has been compile tested on MAKEALL arm, ppc and mips. 4768 4769 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 4770 4771commit e5e4e705ce402856a4800ebf4c0cc163d41b58b0 4772Author: Li Yang <leoli@freescale.com> 4773Date: Wed Dec 9 18:13:26 2009 +0800 4774 4775 Update Makefile for tag generating 4776 4777 Get tag directories from the $(__LIB) and also generate tag for .S files. 4778 4779 Signed-off-by: Li Yang <leoli@freescale.com> 4780 4781commit d02ffbf8d72085035f746c63c2609daf20a84765 4782Author: Kumar Gala <galak@kernel.crashing.org> 4783Date: Wed Dec 16 14:12:11 2009 -0600 4784 4785 drivers/bios_emulator: Fix compile error in .depend not being generated 4786 4787 make -C drivers/bios_emulator/ 4788 make[2]: Entering directory 4789 `drivers/bios_emulator' 4790 In file included from atibios.c:49: 4791 biosemui.h:47:21: error: biosemu.h: No such file or directory 4792 ... 4793 x86emu/decode.c:40:28: error: x86emu/x86emui.h: No such file or directory 4794 ... 4795 4796 Due to lack of proper CPPFLAGS being passed to .depend generation rule 4797 4798 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 4799 4800commit a200a7c04d89853d2a1395b96d8ca5e3dd754551 4801Author: Wolfgang Denk <wd@denx.de> 4802Date: Tue Dec 15 23:20:54 2009 +0100 4803 4804 Update CHANGELOG; prepare Prepare v2009.11 4805 4806 Signed-off-by: Wolfgang Denk <wd@denx.de> 4807 4808commit f9476902b789b0481b9df49af88d6ca94fb16fa0 4809Author: Peter Tyser <ptyser@xes-inc.com> 4810Date: Tue Dec 15 12:10:47 2009 -0600 4811 4812 mpc85xx, mpc86xx: Fix gd->cpu pointer after relocation 4813 4814 The gd->cpu pointer is set to an address located in flash when the 4815 probecpu() function is called while U-Boot is executing from flash. 4816 This pointer needs to be updated to point to an address in RAM after 4817 relocation has occurred otherwise Linux may not be able to boot due to 4818 "fdt board" crashing if flash has been erased or changed. 4819 4820 This bug was introduced in commit 4821 a0e2066f392782730f0398095e583c87812d97f2. 4822 4823 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 4824 Reported-by: Ed Swarthout <Ed.Swarthout@freescale.com> 4825 Tested-by: Kumar Gala <galak@kernel.crashing.org> 4826 Tested on MPC8527DS. 4827 Tested by: Ed Swarthout <Ed.Swarthout@freescale.com> 4828 4829commit 1ab70f6fff9fa3b7910c11b874f625e004256c50 4830Author: Ben Warren <biggerbadderben@gmail.com> 4831Date: Mon Dec 14 16:30:39 2009 -0800 4832 4833 Net: Clean up LAN91C96 Support 4834 4835 A previous Commit converted the LAN91C96 Ethernet driver to using the 4836 CONFIG_NET_MULTI API, but did not include full board support. This patch 4837 finishes the job. 4838 4839 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 4840 4841commit 3363a34b9eeda9783afcbbed5cdd738926d1f4bf 4842Author: Peter Tyser <ptyser@xes-inc.com> 4843Date: Sun Dec 13 17:58:34 2009 -0600 4844 4845 MVBLUE: Remove CONFIG_CMD_IRQ 4846 4847 Neither the MVBLUE nor its underlying architecture implement the 4848 do_irqinfo() function which is required when CONFIG_CMD_IRQ is defined. 4849 This change fixes the following MVBLUE compiler error: 4850 4851 -> ./MAKEALL MVBLUE 4852 Configuring for MVBLUE board... 4853 common/libcommon.a(cmd_irq.o):(.u_boot_cmd+0x24): undefined reference to `do_irqinfo' 4854 make: *** [u-boot] Error 1 4855 4856 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 4857 Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 4858 4859commit 18e8ad60ee87431c01cc2686985b60cc54f5dd3b 4860Author: Detlev Zundel <dzu@denx.de> 4861Date: Mon Dec 14 17:54:40 2009 +0100 4862 4863 imx27lite: Reenable MTD support on NOR flash. 4864 4865 The support for this was silently dropped by a configuration 4866 split during the merge of the imx27lite board support in commit 4867 864aa034f3a0e10ce710e8bbda171df3cab59414 (cmd_mtdparts: Move to common 4868 handling of FLASH devices via MTD layer). 4869 4870 Signed-off-by: Detlev Zundel <dzu@denx.de> 4871 4872commit 076cd24cb4278c125c8f36df386852dc0fcfefae 4873Author: Thomas Weber <weber@corscience.de> 4874Date: Wed Dec 9 09:38:04 2009 +0100 4875 4876 net: dm9000x: fix debug output 4877 4878 commit 60f61e6d7655400bb785a2ef637581679941f6d1 breaks compile with gcc by introducing __func__ 4879 instead of constant string "func" in the macro call but missed to change the macro. 4880 4881 Signed-off-by: Thomas Weber <weber@corscience.de> 4882 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 4883 4884commit c179a2896e6a5138e30786f1d7961d880dbd6d31 4885Author: John Ogness <john.ogness@linutronix.de> 4886Date: Fri Dec 11 09:47:28 2009 +0100 4887 4888 fec_mxc: incomplete error handling 4889 4890 fec_init() will only allocate fec->base_ptr if it is non-NULL. But 4891 the cleanup routine on error will free the pointer without setting 4892 it to NULL. This means that a later call to fec_init() would result 4893 in using an invalid pointer. 4894 4895 Signed-off-by: John Ogness <john.ogness@linutronix.de> 4896 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 4897 4898commit 2ab4a4d0952b754b1c74f4d2b12b83d600d449c8 4899Author: Reinhard Arlt <reinhard.arlt@esd.eu> 4900Date: Fri Dec 4 09:52:17 2009 +0100 4901 4902 net: e1000: Add support for the Intel 82546GB controller 4903 4904 This chip is equipped for example on the esd PMC-ETH2-GB board. So let's 4905 add it to the list of supported chips to the e1000 driver. 4906 4907 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu> 4908 Signed-off-by: Stefan Roese <sr@denx.de> 4909 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 4910 4911commit aafda38fb266b94ca344e5ff014d430790c72279 4912Author: Remy Bohmer <linux@bohmer.net> 4913Date: Wed Oct 28 22:13:40 2009 +0100 4914 4915 Add error codes/handling for TFTP-server 4916 4917 Signed-off-by: Remy Bohmer <linux@bohmer.net> 4918 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 4919 4920commit ac6b362a2598b8cd27beb071fa6224cf8b121e1b 4921Author: Nishanth Menon <nm@ti.com> 4922Date: Fri Oct 16 00:06:37 2009 -0500 4923 4924 LAN91C96: Enable NET_MULTI LAN driver 4925 4926 This modification is NOT tested on any of the 4927 platforms modified as I dont have them. please 4928 help by testing+building+fixing 4929 4930 Signed-off-by: Nishanth Menon <nm@ti.com> 4931 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 4932 4933commit a1725999b8b7527971183122cdfb54e2f87f61ae 4934Author: Nishanth Menon <nm@ti.com> 4935Date: Fri Oct 16 00:06:36 2009 -0500 4936 4937 TI OMAP3: SDP3430 FIX NET_MULTI Warning 4938 4939 Enable the NET MULTI option and remove build warning 4940 4941 Tested: SDP3430 4942 4943 Signed-off-by: Nishanth Menon <nm@ti.com> 4944 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 4945 4946commit b7ad4109da342dfc787468fc713d88d0a8b9e67a 4947Author: Nishanth Menon <nm@ti.com> 4948Date: Fri Oct 16 00:06:35 2009 -0500 4949 4950 NET: LAN91C96 CONFIG_NET_MULTIify 4951 4952 Make the lan91c96 driver capable of CONFIG_NET_MULTI 4953 to be clean for the new arch, add a a lil detect function 4954 Most of the formatting change was done to keep checkpatch 4955 silent, but a few functions and #if 0ed code which 4956 does not make sense for NET_MULTI have been removed 4957 4958 Now, use the lan91c96_initialize() function to init the driver 4959 4960 Signed-off-by: Nishanth Menon <nm@ti.com> 4961 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 4962 4963commit 6ac59c5518e1d2e2ef1c4b8dee99267dfbdf9cdc 4964Author: Mike Frysinger <vapier@gentoo.org> 4965Date: Tue Nov 3 11:35:42 2009 -0500 4966 4967 net: pull CONFIG checks out of source and into makefile 4968 4969 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 4970 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 4971 4972commit f4cfe42758192d09f8375e384cc000aa70d97029 4973Author: Stefan Roese <sr@denx.de> 4974Date: Wed Dec 9 09:01:43 2009 +0100 4975 4976 nand: Fix access to last block in NAND devices 4977 4978 Currently, the last block of NAND devices can't be accessed. This patch 4979 fixes this issue by correcting the boundary checking (off-by-one error). 4980 4981 Signed-off-by: Stefan Roese <sr@denx.de> 4982 Cc: Scott Wood <scottwood@freescale.com> 4983 Cc: Wolfgang Denk <wd@denx.de> 4984 4985commit 3b887ca8ce72cc12129183538f6e828db13f4867 4986Author: Peter Korsgaard <jacmet@sunsite.dk> 4987Date: Tue Dec 8 22:20:34 2009 +0100 4988 4989 mpc83xx: boot time regression, move LCRR setup back to cpu_init_f 4990 4991 Commit c7190f02 (retain POR values of non-configured ACR, SPCR, SCCR, 4992 and LCRR bitfields) moved the LCRR assignment to after relocation 4993 to RAM because of the potential problem with changing the local bus 4994 clock while executing from flash. 4995 4996 This change unfortunately adversely affects the boot time, as running 4997 all code up to cpu_init_r can cause significant slowdown. 4998 4999 E.G. on a 8347 board a bootup time increase of ~600ms has been observed: 5000
5001 0.020 CPU: e300c1, MPC8347_PBGA_EA, Rev: 3.0 at 400 MHz, CSB: 266.667 MHz 5002 0.168 RS: 232 5003 0.172 I2C: ready 5004 0.176 DRAM: 64 MB 5005 1.236 FLASH: 32 MB 5006 5007 Versus: 5008 5009 0.016 CPU: e300c1, MPC8347_PBGA_EA, Rev: 3.0 at 400 MHz, CSB: 266.667 MHz 5010 0.092 RS: 232 5011 0.092 I2C: ready 5012 0.096 DRAM: 64 MB 5013 0.644 FLASH: 32 MB 5014 5015 So far no boards have needed the late LCRR setup, so simply revert it 5016 for now - If it is needed at a later time, those boards can either do 5017 their own final LCRR setup in board code (E.G. in board_early_init_r), 5018 or we can introduce a CONFIG_SYS_LCRR_LATE config option to only do 5019 the setup in cpu_init_r. 5020 5021 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> 5022 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 5023 5024commit 4b142febff71eabdb7ddbb125c7b583b24ddc434 5025Author: Heiko Schocher <hs@denx.de> 5026Date: Thu Dec 3 11:21:21 2009 +0100 5027 5028 common: delete CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL 5029 5030 There is more and more usage of printing 64bit values, 5031 so enable this feature generally, and delete the 5032 CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL 5033 defines. 5034 5035 Signed-off-by: Heiko Schocher <hs@denx.de> 5036 5037commit 00b6d927ba8900cdf218b90b277e1090e284bea6 5038Author: Heiko Schocher <hs@denx.de> 5039Date: Thu Dec 3 11:20:06 2009 +0100 5040 5041 5xxx, fdt: move fdt_fixup_memory() to cpu.c file 5042 5043 u-boot updates, before starting Linux, the memory node in the 5044 DTS. As this is a "standard" feature, move this functionality 5045 to the cpu.c file for mpc5xxx and mpc512x processors. 5046 5047 Signed-off-by: Heiko Schocher <hs@denx.de> 5048 5049commit 386118a896554b13f14ad0f82356276988f7de82 5050Author: Michal Simek <monstr@monstr.eu> 5051Date: Tue Dec 8 09:12:49 2009 +0100 5052 5053 microblaze: Correct ffs regression for Microblaze 5054 5055 We are using generic implementation of ffs. This should 5056 be part of Simon's commit 0413cfecea350000eab5e591a0965c3e3ee0ff00 5057 5058 Here is warning message which this patch removes. 5059 5060 In file included from /tmp/u-boot-microblaze/include/common.h:38, 5061 from cmd_mtdparts.c:87: 5062 /tmp/u-boot-microblaze/include/linux/bitops.h:123:1: warning: "ffs" redefined 5063 In file included from /tmp/u-boot-microblaze/include/linux/bitops.h:110, 5064 from /tmp/u-boot-microblaze/include/common.h:38, 5065 from cmd_mtdparts.c:87: 5066 /tmp/u-boot-microblaze/include/asm/bitops.h:269:1: 5067 warning: this is the location of the previous definition 5068 5069 Signed-off-by: Michal Simek <monstr@monstr.eu> 5070 5071commit 8fe7b29f9811322931f0192a56431edcf819d6b9 5072Author: Graeme Smecher <graeme.smecher@mail.mcgill.ca> 5073Date: Mon Dec 7 08:09:57 2009 -0800 5074 5075 microblaze: Stop stack clobbering in microblaze-generic. 5076 5077 A typo caused the stack and malloc regions to overlap, which prevented 5078 mem_malloc_init() from returning. This commit makes the memory layout match 5079 the example described in include/configs/microblaze-generic.h 5080 5081 Signed-off-by: Graeme Smecher <graeme.smecher@mail.mcgill.ca> 5082 Signed-off-by: Michal Simek <monstr@monstr.eu> 5083 5084commit 0fc52948bda0734431cb528ee4fd82f1dec8c7b5 5085Author: Wolfgang Denk <wd@denx.de> 5086Date: Mon Dec 7 23:14:13 2009 +0100 5087 5088 Update CHANGELOG, prepare -rc2 5089 5090 Signed-off-by: Wolfgang Denk <wd@denx.de> 5091 5092commit f2352877cb2daac88115192fb09991a2397d0b27 5093Author: Peter Tyser <ptyser@xes-inc.com> 5094Date: Sun Dec 6 23:58:28 2009 -0600 5095 5096 MAKEALL: Fix return value 5097 5098 Previously MAKEALL would always return a value of 0, even if 1 or more 5099 boards did not compile. This change causes MAKEALL to return 0 if all 5100 boards were able to build, otherwise 1. 5101 5102 This change also requires changing the script interpreter from sh to 5103 bash to support bash's PIPESTATUS variable. 5104 5105 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5106 5107commit fbc1c8f6f6c972524197829c56dd8f2f5da0200a 5108Author: Peter Tyser <ptyser@xes-inc.com> 5109Date: Sun Dec 6 01:33:24 2009 -0600 5110 5111 tools/mkimage: Remove duplicate line of code 5112 5113 Recent commits 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e and 5114 6a590c5f5fd12cdd27f3153522acfac3854590e7 both fixed the same bug in the 5115 same manner. Unfortunately git was "smart" enough to merge both changes 5116 which resulted in some duplicate code. 5117 5118 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5119 5120 Reordered code and comment a bit. 5121 5122 Signed-off-by: Wolfgang Denk <wd@denx.de> 5123 5124commit df002fa6b9cd475909ede35bf95b803c2289c6a4 5125Author: Heiko Schocher <hs@denx.de> 5126Date: Sat Dec 5 11:59:51 2009 +0100 5127 5128 i2c: fix dangling comment in do_i2c_mw() 5129 5130 commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b deleted some unused 5131 code in do_i2c_mw(), but missed to also remove the respective 5132 commment. This patch fixes this. 5133 5134 Signed-off-by: Heiko Schocher <hs@denx.de> 5135 5136commit 7cb5fc15f22de46cc6fabc26baf994cf8f7fa546 5137Author: Heiko Schocher <hs@denx.de> 5138Date: Thu Dec 3 11:20:42 2009 +0100 5139 5140 mpc52xx, manroland: add some commands 5141 5142 add the following commands for the manroland boards: 5143 5144 CONFIG_CMDLINE_EDITING 5145 CONFIG_COMMAND_HISTORY 5146 CONFIG_AUTO_COMPLETE 5147 5148 Signed-off-by: Heiko Schocher <hs@denx.de> 5149 5150commit 39ff7d5f4cc547a2034a8bfc2a5b5f4b62fd5c20 5151Author: Stefan Roese <sr@denx.de> 5152Date: Thu Dec 3 06:24:30 2009 +0100 5153 5154 POST: Remove duplicated post_hotkey_pressed() functions 5155 5156 This patch introduces a weak default function for post_hotkey_pressed(), 5157 returning 0, for boards without hotkey support. The long-running tests 5158 won't be started on those boards. This default function was implemented 5159 in many board directories. By implementing this weak default we can 5160 remove all those duplicate versions. 5161 5162 Boards with hotkey support, can override this weak default function 5163 by defining one in their board specific code. 5164 5165 Signed-off-by: Stefan Roese <sr@denx.de> 5166 5167commit f8450829f921cf10667af98a8d08edfa3d998f04 5168Author: Heiko Schocher <hs@denx.de> 5169Date: Tue Dec 1 19:30:47 2009 +0100 5170 5171 52xx, manroland: add fdt_fixup_memory() in ft_board_setup() 5172 5173 To update the real memory size in the memory node on the 5174 uc101 and mucmc52 boards call fdt_fixup_memory() in 5175 ft_board_setup(). 5176 5177 Signed-off-by: Heiko Schocher <hs@denx.de> 5178 5179commit 0ec81db20294efdad2454a753e79f1fe244a43ca 5180Author: Daniel Hobi <daniel.hobi@schmid-telecom.ch> 5181Date: Tue Dec 1 14:05:55 2009 +0100 5182 5183 Fix computation in nand_util.c:get_len_incl_bad 5184 5185 Depending on offset, flash size and the number of bad blocks, 5186 get_len_incl_bad may return a too small value which may lead to: 5187 5188 1) If there are no bad blocks, nand_{read,write}_skip_bad chooses the 5189 bad block aware read/write code. This may hurt performance, but does 5190 not have any adverse effects. 5191 5192 2) If there are bad blocks, the nand_{read,write}_skip_bad may choose 5193 the bad block unaware read/write code (if len_incl_bad == *length) 5194 which leads to corrupted data. 5195 5196 Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch> 5197 5198commit aabb8cb0818e285aeed0cfaf243635997e07554d 5199Author: Evan Samanas <esamanas@xes-inc.com> 5200Date: Mon Nov 9 20:08:36 2009 -0600 5201 5202 nfs: NfsTimeout() updates 5203 5204 - NfsTimeout() does not correctly update the NFS timeout value which 5205 results in NfsTimeout() only being called once in certain situations. 5206 This can result in the 'nfs' command hanging indefinetly. For 5207 example, the command: 5208 5209 nfs 192.168.0.1:/home/user/file 5210 5211 will not exit until ctrl-c is pressed if 192.168.0.1 does not have an 5212 NFS server running. 5213 5214 This issue is resolved by reinitializting the NFS timeout value inside 5215 NfsTimeout() when a timeout occurs. 5216 5217 - Make the 'nfs' command print the 'T' character when a timeout occurs. 5218 Previously there was no indication that timeouts were occuring. 5219 5220 - Mimic the 'tftpboot' command and when a download fails print "Retry 5221 count exceeded; starting again", and restart the download taking the 5222 'netretry' environment variable into account. 5223 5224 Signed-off-by: Evan Samanas <esamanas@xes-inc.com> 5225 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5226 5227 Tested on TQM8xxL. 5228 5229 Tested by: Wolfgang Denk <wd@denx.de> 5230 5231 Tested on MPC8527DS. 5232 5233 Tested by: Ed Swarthout <Ed.Swarthout@freescale.com> 5234 5235commit 224c90d1060bf1a83cbf33ca51d060b9d19e0294 5236Author: Peter Tyser <ptyser@xes-inc.com> 5237Date: Wed Nov 18 19:08:59 2009 -0600 5238 5239 bootm: Fix help message's sub-command ordering 5240 5241 The help message for the 'bootm' command listed the 'cmdline' and 'bdt' 5242 sub-commands in the wrong order which resulted in the error below when 5243 following the 'help' command's instructions: 5244 5245 "Trying to execute a command out of order" 5246 5247 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5248 5249commit a93c92cddaedd5f0720e0da15c6664f7a688b582 5250Author: Robert P. J. Day <rpjday@crashcourse.ca> 5251Date: Tue Nov 17 07:30:23 2009 -0500 5252 5253 help: Correct syntax of nandecc help output. 5254 5255 "nandecc" help output should not reproduce the command name, nor have 5256 a trailing newline. 5257 5258 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> 5259 5260commit c2fff331a32ceca837d76eb7827d6340da270d52 5261Author: Mike Rapoport <mike@compulab.co.il> 5262Date: Wed Nov 11 10:03:03 2009 +0200 5263 5264 smc911x: update SMC911X related configuration description 5265 5266 Since commit 736fead8fdbf8a8407048bebc373cd551d01ec98 "Convert SMC911X 5267 Ethernet driver to CONFIG_NET_MULTI API" SMC911X configration options 5268 are called CONFIG_SMC911X rather than CONFIG_DRIVER_SMC911X. Update 5269 README to reflect that change. 5270 5271 Signed-off-by: Mike Rapoport <mike@compulab.co.il> 5272 5273commit 45b6b65c6bf06a589ef3123192af94b0381db27b 5274Author: Mike Rapoport <mike@compulab.co.il> 5275Date: Wed Nov 11 10:03:09 2009 +0200 5276 5277 smc911x: fix typo in smc911x_handle_mac_address name 5278 5279 Signed-off-by: Mike Rapoport <mike@compulab.co.il> 5280 5281commit f64ef9bb995687e24e0b61b52316f4eaa97c3bbc 5282Author: Ed Swarthout <Ed.Swarthout@freescale.com> 5283Date: Thu Nov 19 02:47:28 2009 -0600 5284 5285 fix nfs symlink name corruption 5286 5287 An off by one error may cause nfs readlink lookup fail if 5288 nfs_path_buff has non-zero data from a previous use. 5289 5290 Loading: *** ERROR: File lookup fail 5291 5292 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 5293 5294commit e8fac25e83426fdf461c66aa8a2530ec28ec536e 5295Author: Wolfgang Denk <wd@denx.de> 5296Date: Mon Dec 7 21:06:40 2009 +0100 5297 5298 at91sam9261ek.c: fix minor coding style issue. 5299 5300 Signed-off-by: Wolfgang Denk <wd@denx.de> 5301 5302commit 4713010adf5beda87410d637ebfc58db0db9a9db 5303Author: Wolfgang Denk <wd@denx.de> 5304Date: Sun Dec 6 01:21:28 2009 +0100 5305 5306 trab: fix warning: implicit declaration of function 'disable_vfd' 5307 5308 Signed-off-by: Wolfgang Denk <wd@denx.de> 5309 5310commit a9f99ab44b473fb394169ba365f8b4380f981584 5311Author: Wolfgang Denk <wd@denx.de> 5312Date: Sun Dec 6 00:53:18 2009 +0100 5313 5314 zlib.c: avoid build conflicts for cradle board 5315 5316 Commit dce3d79710 updated the zlib code to v0.95; this caused 5317 conflicts when building for the "cradle" board, because the (pretty 5318 generic) preprocessor variable "OFF" was used in multiple files. 5319 Make sure to avoid further conflicts by #undef'ing it in zlib.c 5320 before redefining it. 5321 5322 Signed-off-by: Wolfgang Denk <wd@denx.de> 5323 cc: Giuseppe Condorelli <giuseppe.condorelli@st.com> 5324 cc: Angelo Castello <angelo.castello@st.com> 5325 cc: Alessandro Rubini <rubini-list@gnudd.com> 5326 5327commit 8cbf4e4f17121d732e78764f0ba317c9a1838ea6 5328Author: Wolfgang Denk <wd@denx.de> 5329Date: Sun Dec 6 00:26:19 2009 +0100 5330 5331 Fix out-of-tree building of "apollon" board. 5332 5333 Signed-off-by: Wolfgang Denk <wd@denx.de> 5334 5335commit f68ab43de67f59925542efb6bcec30f4a84fe695 5336Author: Mike Frysinger <vapier@gentoo.org> 5337Date: Fri Dec 4 05:35:15 2009 -0500 5338 5339 lzma: ignore unset filesizes 5340 5341 The Linux kernel build system changed how it compresses things with LZMA 5342 such that the header no longer contains the filesize (it is instead set to 5343 all F's). So if we get a LZMA image that has -1 for the 64bit field, 5344 let's just assume that the decompressed size is unknown and continue on. 5345 5346 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 5347 5348commit cccfc2ab77877dbdd2abe26b28d4c1f467feb0c0 5349Author: Detlev Zundel <dzu@denx.de> 5350Date: Tue Dec 1 17:16:19 2009 +0100 5351 5352 README: Rearrange paragraphs to regain linear arrangement. 5353 5354 Two later additions to the Configuration Option section unfortunately 5355 split the description of Show boot progress and the list of its call outs. 5356 5357 Signed-off-by: Detlev Zundel <dzu@denx.de> 5358 5359commit cd514aeb996e2f7aefbe1f78481965d9d074aed4 5360Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 5361Date: Thu Nov 19 13:22:44 2009 +0100 5362 5363 zlib: Optimize decompression 5364 5365 This patch optimizes the direct copy procedure. 5366 Uses get_unaligned() but only in one place. 5367 The copy loop just above this one can also use this 5368 optimization, but I havn't done so as I have not tested if it 5369 is a win there too. 5370 On my MPC8321 this is about 17% faster on my JFFS2 root FS 5371 than the original. No speed test has been performed in u-boot. 5372 5373 Size increase on ppc: 484 bytes 5374 5375 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 5376 Acked-by: Peter Korsgaard <jacmet@sunsite.dk> 5377 5378commit 20dde48bcadd856c86a91d5463831a10be46db83 5379Author: Peter Korsgaard <jacmet@sunsite.dk> 5380Date: Thu Nov 19 11:37:51 2009 +0100 5381 5382 add lzop decompression support 5383 5384 Add lzop decompression support to the existing lzo bitstream handling 5385 (think gzip versus zlib), and support it for uImage decompression if 5386 CONFIG_LZO is enabled. 5387 5388 Lzop doesn't compress as good as gzip (~10% worse), but decompression 5389 is very fast (~0.7s faster here on a slow ppc). The lzop decompression 5390 code is based on Albin Tonnerre's recent ARM Linux lzo support patch. 5391 5392 Cc: albin.tonnerre@free-electrons.com 5393 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> 5394 5395commit c81296c16fd9d12422c9968cc0f1d9bf440a7d88 5396Author: Peter Tyser <ptyser@xes-inc.com> 5397Date: Tue Nov 24 16:42:10 2009 -0600 5398 5399 tools/mkimage: Print FIT image contents after creation 5400 5401 Previously, there was no indication to the user that a FIT image was 5402 successfully created after executing mkimage. For example: 5403 5404 $ mkimage -f uImage.its uImage.itb 5405 DTC: dts->dtb on file "uImage.its" 5406 5407 Adding some additional output after creating a FIT image lets the user 5408 know exactly what is contained in their image, eg: 5409 5410 $ mkimage -f uImage.its uImage.itb 5411 DTC: dts->dtb on file "uImage.its" 5412 FIT description: Linux kernel 2.6.32-rc7-00201-g7550d6f-dirty 5413 Created: Tue Nov 24 15:43:01 2009 5414 Image 0 (kernel@1) 5415 Description: Linux Kernel 2.6.32-rc7-00201-g7550d6f-dirty 5416 Type: Kernel Image 5417 Compression: gzip compressed 5418 Data Size: 2707311 Bytes = 2643.86 kB = 2.58 MB 5419 Architecture: PowerPC 5420 OS: Linux 5421 Load Address: 0x00000000 5422 Entry Point: 0x00000000 5423 Hash algo: crc32 5424 Hash value: efe0798b 5425 Hash algo: sha1 5426 Hash value: ecafba8c95684f2c8fec67e33c41ec88df1534d7 5427 Image 1 (fdt@1) 5428 Description: Flattened Device Tree blob 5429 Type: Flat Device Tree 5430 Compression: uncompressed 5431 Data Size: 12288 Bytes = 12.00 kB = 0.01 MB 5432 Architecture: PowerPC 5433 Hash algo: crc32 5434 Hash value: a5cab676 5435 Hash algo: sha1 5436 Hash value: 168722b13e305283cfd6603dfe8248cc329adea6 5437 Default Configuration: 'config@1' 5438 Configuration 0 (config@1) 5439 Description: Default Linux kernel 5440 Kernel: kernel@1 5441 FDT: fdt@1 5442 5443 This brings the behavior of creating a FIT image in line with creating a 5444 standard uImage, which also prints out the uImage contents after 5445 creation. 5446 5447 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5448 5449commit 8e1c89663cc8796b85588910046e03b388a7597c 5450Author: Peter Tyser <ptyser@xes-inc.com> 5451Date: Tue Nov 24 16:42:09 2009 -0600 5452 5453 tools/fit_image.c: Remove unused fit_set_header() 5454 5455 The FIT fit_set_header() function was copied from the standard uImage's 5456 image_set_header() function during mkimage reorganization. However, the 5457 fit_set_header() function is not used since FIT images use a standard 5458 device tree blob header. 5459 5460 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5461 5462commit 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e 5463Author: Peter Tyser <ptyser@xes-inc.com> 5464Date: Tue Nov 24 16:42:08 2009 -0600 5465 5466 tools/mkimage: Assume FDT image type for FIT images 5467 5468 When building a Flattened Image Tree (FIT) the image type needs to be 5469 "flat_dt". Commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5 introduced a 5470 regression which caused the user to need to specify the "-T flat_dt" 5471 parameter on the command line when building a FIT image. The "-T 5472 flat_dt" parameter should not be needed and is at odds with the current 5473 FIT image documentation. 5474 5475 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5476 5477commit 3eb90bad651fab39cffba750ec4421a9c01d60e7 5478Author: Ingo van Lil <inguin@gmx.de> 5479Date: Tue Nov 24 14:09:21 2009 +0100 5480 5481 Generic udelay() with watchdog support 5482 5483 According to the PPC reference implementation the udelay() function is 5484 responsible for resetting the watchdog timer as frequently as needed. 5485 Most other architectures do not meet that requirement, so long-running 5486 operations might result in a watchdog reset. 5487 5488 This patch adds a generic udelay() function which takes care of 5489 resetting the watchdog before calling an architecture-specific 5490 __udelay(). 5491 5492 Signed-off-by: Ingo van Lil <inguin@gmx.de> 5493 5494commit 1c409bc7101a24ecd47a13a4e851845d66dc23ce 5495Author: Graeme Russ <graeme.russ@gmail.com> 5496Date: Tue Nov 24 20:04:21 2009 +1100 5497 5498 i386: Final Relocation 5499 5500 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5501 5502commit cabe5794803fbe18bedac2d9c7f2417a0fa95ec1 5503Author: Graeme Russ <graeme.russ@gmail.com> 5504Date: Tue Nov 24 20:04:20 2009 +1100 5505 5506 i386: Move references to link script exports 5507 5508 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5509 5510commit 0fc1b49ecbd7ec7371f9ede0600e4fd28cec7f33 5511Author: Graeme Russ <graeme.russ@gmail.com> 5512Date: Tue Nov 24 20:04:19 2009 +1100 5513 5514 i386: Remove inline asm symbols from .dynsym 5515 5516 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5517 5518commit 564a9984bdbf86a02cf4f0d848933a9fff4a1d18 5519Author: Graeme Russ <graeme.russ@gmail.com> 5520Date: Tue Nov 24 20:04:18 2009 +1100 5521 5522 i386: Rearrange Interupt Handling 5523 5524 In preperation for full relocation 5525 5526 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5527 5528commit 27f13075a659da046372dfe249d808f2f6ddb432 5529Author: Graeme Russ <graeme.russ@gmail.com> 5530Date: Tue Nov 24 20:04:17 2009 +1100 5531 5532 i386: Fix race condition when using SC520 timers 5533 5534 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5535 5536commit 141a62cc12bfbab49f0f44a394518a360dcddad8 5537Author: Graeme Russ <graeme.russ@gmail.com> 5538Date: Tue Nov 24 20:04:16 2009 +1100 5539 5540 i386: Fix global label in inline asm compile error 5541 5542 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5543 5544commit 4ee4e413baa8e951e3c42c17a808578867a63572 5545Author: Graeme Russ <graeme.russ@gmail.com> 5546Date: Tue Nov 24 20:04:15 2009 +1100 5547 5548 i386: Reorder source objects in lib_i386 Makefile 5549 5550 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5551 5552commit aea14421c52f31e39837aa2890e07e9c70ee61fd 5553Author: Graeme Russ <graeme.russ@gmail.com> 5554Date: Tue Nov 24 20:04:14 2009 +1100 5555 5556 i386: Fix link collisions resulting from gcc4.4.1 upgrade 5557 5558 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5559 5560commit b4feeb4e8a1d9124bae39985a97b99d08e06186d 5561Author: Graeme Russ <graeme.russ@gmail.com> 5562Date: Tue Nov 24 20:04:13 2009 +1100 5563 5564 i386: Fix malloc initialization 5565 5566 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5567 5568commit c74bfce0fb20ec4d01809fa0566263894923467b 5569Author: Graeme Russ <graeme.russ@gmail.com> 5570Date: Tue Nov 24 20:04:12 2009 +1100 5571 5572 i386: Fix dlmalloc compile warning 5573 5574 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 5575 5576commit 270737acca21f3939f814de5dcf350a1c3d80d83 5577Author: Michael Brandt <Michael.Brandt@emsyso.de> 5578Date: Sun Nov 22 14:13:27 2009 +0100 5579 5580 EXT2FS: fix inode size for ext2fs rev#0 5581 5582 extfs.c assumes that there is always a valid inode_size field in the 5583 superblock. But this is not true for ext2fs rev 0. Such ext2fs images 5584 are for instance generated by genext2fs. Symptoms on ARM machines are 5585 messages like: "raise: Signal # 8 caught"; on PowerPC "ext2ls" will 5586 print nothing. 5587 This fix checks for rev 0 and uses then 128 bytes as inode size. 5588 5589 Signed-off-by: Michael Brandt <Michael.Brandt@emsyso.de> 5590 Tested on: TQM5200S 5591 Tested-by: Wolfgang Denk <wd@denx.de> 5592 Signed-off-by: Wolfgang Denk <wd@denx.de> 5593 5594commit bcb324d68f7955c1136dafc944eb55db8ebaa601 5595Author: Robert P. J. Day <rpjday@crashcourse.ca> 5596Date: Thu Nov 19 11:00:28 2009 -0500 5597 5598 Remove superfluous preprocessor tests from some cmd_*.c files. 5599 5600 A small number of common/cmd_*.c files contain preprocessor tests that 5601 are apparently superfluous since those same tests are used in the 5602 Makefile to control the compilation of those files. Those tests are 5603 clearly redundant as long as they surround the entirety of the source 5604 in those files. 5605 5606 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> 5607 5608commit 3ee8c12071f0e3bdda25125b63c9d3fd54a7c9d8 5609Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 5610Date: Thu Nov 19 13:44:16 2009 +0100 5611 5612 crc32: Impl. linux optimized crc32() 5613 5614 Ported over the more efficient linux crc32() function. 5615 A quick comparsion on ppc: 5616 After changing the old crc32 to do 4 bytes in the 5617 inner loop to be able to compare with new version one can note: 5618 - old inner loop has 61 insn, new has 19 insn. 5619 - new crc32 does one 32 bit load of data to crc while 5620 the old does four 8 bits loads. 5621 - size is bit bigger for the new crc32: 5622 1392(old) 1416(new) of text. The is because the new version 5623 shares code with crc32_no_comp() instead of duplicating code. 5624 - about 33% faster on ppc: 5625 New > crc 0 0xfffffff -> 39 secs 5626 Old > crc 0 0xfffffff -> 60 secs 5627 5628 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 5629 5630commit ad53226156fa64b6d04c0d1d6e91e09979cbea15 5631Author: Robert P. J. Day <rpjday@crashcourse.ca> 5632Date: Tue Nov 17 01:59:29 2009 -0500 5633 5634 README: Update the list of directories. 5635 5636 Bring the directory listing more into line with current content. 5637 5638 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> 5639 5640commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b 5641Author: Pratap Chandu <pratap.rrke@gmail.com> 5642Date: Thu Nov 12 19:28:25 2009 +0530 5643 5644 Removes dead code in the file common/cmd_i2c.c 5645 5646 There is some dead code enclosed by #if 0 .... #endif in the file 5647 common/cmd_i2c.c 5648 This patch removes the dead code. 5649 5650 Signed-off-by: Pratap Chandu <pratap.rrke@gmail.com> 5651 5652commit 64a480601a5614b441de692ae15a62c51e0bb381 5653Author: Mike Frysinger <vapier@gentoo.org> 5654Date: Wed Nov 11 17:51:56 2009 -0500 5655 5656 smc91111_eeprom: drop CONFIG stub protection 5657 5658 Since the Makefile now controls the compilation of this, there is no need 5659 for CONFIG checking nor the stub function. 5660 5661 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 5662 5663commit f3a7bddc06c927c36a1a99a97131299479ef207a 5664Author: Magnus Lilja <lilja.magnus@gmail.com> 5665Date: Wed Nov 11 19:56:58 2009 +0100 5666 5667 RTC: Fix return code in MC13783 RTC driver. 5668 5669 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 5670 5671commit d52e3e0176a74c30549251e16c5c00a363c544d2 5672Author: Magnus Lilja <lilja.magnus@gmail.com> 5673Date: Wed Nov 11 19:56:36 2009 +0100 5674 5675 cmd_date: Fix spelling in error message. 5676 5677 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 5678 5679commit c253122395753abb9e531d8906c5265dc8803fb1 5680Author: Peter Tyser <ptyser@xes-inc.com> 5681Date: Wed Nov 11 10:36:28 2009 -0600 5682 5683 Move do_irqinfo() to common/cmd_irq.c 5684 5685 cmd_irq.c is a much better home and it is already conditionally 5686 compiled based on CONFIG_CMD_IRQ. 5687 5688 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5689 5690commit a5dd4dc64fe68e549c5ffcf6a048281b5ba94752 5691Author: Peter Tyser <ptyser@xes-inc.com> 5692Date: Wed Nov 11 10:36:19 2009 -0600 5693 5694 cmd_license: Remove unneeded #ifdef CONFIG_CMD_LICENSE 5695 5696 cmd_license is already conditionally compiled at the Makefile-level. 5697 5698 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5699 5700commit 06015146a15adc7455440c491d543f6a8091551d 5701Author: Peter Tyser <ptyser@xes-inc.com> 5702Date: Mon Nov 9 15:18:52 2009 -0600 5703 5704 m41t11: Remove unused functions 5705 5706 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5707 5708commit 9ef78511cda39987e5fc10febf386fd19f58ecf7 5709Author: Peter Tyser <ptyser@xes-inc.com> 5710Date: Mon Nov 9 15:17:50 2009 -0600 5711 5712 circbuf: Move to lib_generic and conditionally compile 5713 5714 circbuf could be used as a generic library and is only currently 5715 needed when CONFIG_USB_TTY is defined. 5716 5717 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 5718 5719commit 604f7ce55ad74694ef8743ad2e99933dc0265e46 5720Author: Sanjeev Premi <premi@ti.com> 5721Date: Mon Nov 9 22:43:00 2009 +0530 5722 5723 Fix build failure in examples/standalone 5724 5725 Some versions of 'make' do not handle trailing white-spaces 5726 properly. Trailing spaces in ELF causes a 'fake' source to 5727 be added to the variable COBJS; leading to build failure 5728 (listed below). The problem was found with GNU Make 3.80. 5729 5730 Using text-function 'strip' as a workaround for the problem. 5731 5732 make[1]: Entering directory `/home/sanjeev/u-boot/examples/standalone' 5733 arm-none-linux-gnueabi-gcc -g -Os -fno-common -ffixed-r8 -msoft-float 5734 -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanjeev/u-boot/include 5735 -fno-builtin -ffreestanding -nostdinc -isystem /opt/codesourcery/2009q1- 5736 203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -pipe -DCONFIG_ 5737 ARM -D__ARM__ -marm -mabi=aapcs-linux -mno-thumb-interwork -march=armv5 5738 -Wall -Wstrict-prototypes -fno-stack-protector -g -Os -fno-common -ff 5739 ixed-r8 -msoft-float -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanje 5740 ev/u-boot/include -fno-builtin -ffreestanding -nostdinc -isystem /opt/co 5741 desourcery/2009q1-203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/includ 5742 e -pipe -DCONFIG_ARM -D__ARM__ -marm -mabi=aapcs-linux -mno-thumb-inte 5743 rwork -march=armv5 -I.. -Bstatic -T u-boot.lds -Ttext 0x80e80000 -o .c 5744 arm-none-linux-gnueabi-gcc: no input files 5745 make[1]: *** [.c] Error 1 5746 make[1]: Leaving directory `/home/sanjeev/u-boot/examples/standalone' 5747 make: *** [examples/standalone] Error 2 5748 premi # 5749 5750 Signed-off-by: Sanjeev Premi <premi@ti.com> 5751 5752 Fixed typo (s/ElF/ELF/). 5753 Signed-off-by: Wolfgang Denk <wd@denx.de> 5754 5755commit d984fed068b3bec8a7edaf7a3de71479abde080a 5756Author: Scott Wood <scottwood@freescale.com> 5757Date: Wed Nov 4 18:41:41 2009 -0600 5758 5759 makefiles: fixes for building build tools 5760 5761 Currently, some of the tools instead set CC to be HOSTCC in order to re-use 5762 some pattern rules -- but this fails when the user overrides CC on the make 5763 command line. Also, the HOSTCFLAGS in tools/Makefile are currently not 5764 being used because config.mk overwrites them. 5765 5766 This patch adds static pattern rules for files that have been requested to 5767 be built with the native compiler using $(HOSTSRCS) and $(HOSTOBJS), and 5768 converts the tools to use them. 5769 5770 It restores easylogo to using the host compiler, which was broken by commit 5771 38d299c2db81bd889c601b5dfc12c4e83ef83333 (if this was an intentional change, 5772 please let me know -- but it seems to be a build tool). 5773 5774 It restores -pedantic and the special flags for darwin and cygwin that were 5775 requested in tools/makefile (but keeps the flags added by config.mk) -- 5776 hopefully someone can test this on those platforms. It no longer 5777 conditionalizes -pedantic on not being darwin; it wasn't clear that that was 5778 intentional, and unless there's a real problem it's just inviting people to 5779 contribute non-pedantic patches to those files (I'm not a fan of -pedantic 5780 personally, but if it's on for one platform it should be on for all). 5781 5782 HOST_LDFLAGS is renamed HOSTLDFLAGS for consistency with the previous 5783 HOST_CFLAGS to HOSTCFLAGS rename. A new HOSTCFLAGS_NOPED is made available 5784 for those files which currently cannot be built with -pedantic, and replaces 5785 the old FIT_CFLAGS. 5786 5787 imls now uses the cross compiler properly, rather than by trying to 5788 reconstruct CC using the typoed $(CROSS_COMPILER). 5789 5790 envcrc.c is now dependency-processed unconditionally -- previously it would 5791 be built without being on (HOST)SRCS if CONFIG_ENV_IS_EMBEDDED was not 5792 selected. 5793 5794 Signed-off-by: Scott Wood <scottwood@freescale.com> 5795 5796commit af860962b544ddf323c4ff68454f00d31e44df0a 5797Author: Becky Bruce <beckyb@kernel.crashing.org> 5798Date: Wed Nov 4 18:30:08 2009 -0600 5799 5800 85xx: Remove unused CONFIG_ASSUME_AMD_FLASH from config files 5801 5802 A bunch of the 85xx boards have this cruft in them - it's not used 5803 anywhere. Delete it. 5804 5805 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 5806 5807commit bf44f3f327acddba202ff67f70192926ea47dfd1 5808Author: Mike Frysinger <vapier@gentoo.org> 5809Date: Wed Nov 4 16:34:42 2009 -0500 5810 5811 exports: rewrite jump table init 5812 5813 The current jump table init fails to initialize a bunch of exported 5814 symbols (forceenv/do_reset/etc...). Rather than fix just these few 5815 missing pieces, rewrite the code to utilize the existing list of 5816 exported symbols -- _exports.h. Since every exported symbol has to 5817 be listed in this header, it makes sense to use it so that we only 5818 ever have one list that needs to be updated and things can't fall 5819 out of sync again. 5820 5821 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 5822 5823commit deec1fbd4f704dded2e668bb9e368631981ea139 5824Author: Wolfgang Denk <wd@denx.de> 5825Date: Wed Dec 2 22:26:30 2009 +0100 5826 5827 MAINTAINERS: update responsible for MPC85xx/86xx 5828 5829 Signed-off-by: Wolfgang Denk <wd@denx.de> 5830 Cc: Kumar Gala <galak@kernel.crashing.org> 5831 Cc: Becky Bruce <beckyb@kernel.crashing.org> 5832 5833commit 71636fa7c3de63de29c0f514d5c725eccb011657 5834Author: Tom Rix <Tom.Rix@windriver.com> 5835Date: Sun Nov 29 17:56:36 2009 -0600 5836 5837 ARM Update mach-types 5838 5839 Fetched from http://www.arm.linux.org.uk/developer/machines/download.php 5840 And built with 5841 5842 repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm 5843 commit 3fcca9ac6cbce35b3e81e247d375534117d5f4cd 5844 5845 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 5846 5847commit 7c15121f4007751af8c45c978c4ad7d6c5ff11f9 5848Author: Vaibhav Hiremath <hvaibhav@ti.com> 5849Date: Mon Nov 23 16:36:05 2009 +0530 5850 5851 omap3_mmc: Encapsulate twl4030 under option CONFIG_TWL4030_POWER 5852 5853 Fixes the build/compilation error if we try to re-use the omap3_mmc code 5854 without TWL4030_POWER. 5855 5856 Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com> 5857 5858commit 6406d6daea51bbeed21f3829b37d3f395c198e54 5859Author: Sandeep Paulraj <s-paulraj@ti.com> 5860Date: Sat Nov 21 13:13:59 2009 -0500 5861 5862 TI DaVinci: Adding a README for the DaVinci series of SOC's 5863 5864 Adding an initial README for the DaVinci series of SOC's 5865 5866 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 5867 5868commit 990f569c4fa6b9e76b31d0a5229981c092b02dcf 5869Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj at> 5870Date: Sat Jun 6 10:30:58 2009 +0000 5871 5872 avr32/hsdramc: Move conditional compilation to Makefile 5873 5874 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj <at> jcrosoft.com> 5875 Cc: Haavard Skinnemoen <haavard.skinnemoen <at> atmel.com> 5876 5877commit 3f12f5217e8bdf8f6842bf1b8c5c5b98425ac3db 5878Author: Sandeep Paulraj <s-paulraj@ti.com> 5879Date: Sat Nov 21 13:24:17 2009 -0500 5880 5881 NAND: Add config option for imx27lite 5882 5883 We will get compilation warnings without 5884 "CONFIG_SYS_64BIT_VSPRINTF" being defined 5885 in the board config. 5886 5887 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 5888 5889commit 43a5f0df2f2e3a2b5eab05d6742501c98d3c0d0c 5890Author: Po-Yu Chuang <ratbert.chuang@gmail.com> 5891Date: Wed Nov 11 17:27:30 2009 +0800 5892 5893 arm: A320: Add support for Faraday A320 evaluation board 5894 5895 This patch adds support for A320 evaluation board from Faraday. This board 5896 uses FA526 processor by default and has 512kB and 32MB NOR flash, 64M RAM. 5897 FA526 is an ARMv4 processor and uses the ARM920T source in this patch. 5898 5899 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com> 5900 5901commit 39ba774f9b02c44b8fd4df44afac932800c18662 5902Author: Po-Yu Chuang <ratbert.chuang@gmail.com> 5903Date: Wed Nov 11 17:26:00 2009 +0800 5904 5905 arm: A320: driver for FTRTC010 real time clock 5906 5907 This patch adds an FTRTC010 driver for Faraday A320 evaluation board. 5908 5909 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com> 5910 5911commit c1ee63cee89c5822fbbcc63586c8f2a1add70614 5912Author: Sandeep Paulraj <s-paulraj@ti.com> 5913Date: Sat Nov 21 18:08:49 2009 -0500 5914 5915 TI DaVinci DM646x: Enable NAND on DM6467 EVM 5916 5917 This patch enables NAND on the DM6467 EVM 5918 5919 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 5920 5921commit d414aae552bc229dafcad92028effb4a8306c7a5 5922Author: Nishanth Menon <nm@ti.com> 5923Date: Mon Nov 9 09:29:34 2009 -0500 5924 5925 OMAP3: Fix SDRC init 5926 5927 Defaults are for Infineon DDR timings. 5928 Since none of the supported boards currently do 5929 XIP boot, these seem to be faulty. fix the values 5930 as per the calculations(ACTIMA,B), conf 5931 the sdrc power with pwdnen and wakeupproc bits 5932 5933 Signed-off-by: Nishanth Menon <nm@ti.com> 5934 5935commit 30563a04bff73fd4fbd840b846f4b6459759a839 5936Author: Nishanth Menon <nm@ti.com> 5937Date: Sat Nov 7 10:51:24 2009 -0500 5938 5939 OMAP3:SDRC: introduce DDR types 5940 5941 Micron DDR timings based on: 5942 http://www.sakoman.net/cgi-bin/gitweb.cgi?p=x-load-omap3.git;a=blob;f=include/asm/arch-omap3/mem.h;h=e6fbfe3947f5d0d85fea776e30821d4017316d86;hb=HEAD 5943 5944 Introduce Micron DDR timings and provide 5945 CONFIG_OMAP3_INFINEON_DDR and CONFIG_OMAP3_MICRON_DDR config 5946 options to allow for platform files to setup their timings as 5947 per the type of DDR selected 5948 5949 Reported-by: Steve Sakoman in http://www.nabble.com/forum/Permalink.jtp?root=25779518&post=25959734&page=y 5950 5951 Signed-off-by: Nishanth Menon <nm@ti.com> 5952 5953commit 169a4c804dbaf11facb041b1333d394c6ceb8d68 5954Author: Nishanth Menon <nm@ti.com> 5955Date: Sat Nov 7 10:40:47 2009 -0500 5956 5957 OMAP3:SDRC: Cleanup references to SDP 5958 5959 Remove SDP referenced unused defines 5960 5961 Signed-off-by: Nishanth Menon <nm@ti.com> 5962 5963commit 2819e1365be0c81a0141ef5c6a7996b40888f6d8 5964Author: Sekhar Nori <nsekhar@ti.com> 5965Date: Thu Nov 12 11:09:25 2009 -0500 5966 5967 TI DA8xx: Integrate DA830 EVM support into U-Boot 5968 5969 Integrate DA830 EVM support into U-Boot. 5970 5971 Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum 5972 Digital EVM board. See http://www.spectrumdigital.com/ 5973 5974 Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com> 5975 5976commit bdc9c6c7f77a9a63349ecb9f54b20ad34033a2ae 5977Author: Sekhar Nori <nsekhar@ti.com> 5978Date: Thu Nov 12 11:08:39 2009 -0500 5979 5980 TI DA8xx: Add new directory for da830evm board 5981 5982 Add new directory for da830evm board 5983 5984 Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum 5985 Digital EVM board. See http://www.spectrumdigital.com/ 5986 5987 Provides: 5988 Initial boot and configuration. 5989 Support for i2c. 5990 UART support (console). 5991 5992 Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com> 5993 5994commit 91172baf46a57807233eb7bcd724b9f10109cfe0 5995Author: Sekhar Nori <nsekhar@ti.com> 5996Date: Thu Nov 12 11:07:22 2009 -0500 5997 5998 TI DA8xx: Add DA8xx cpu functions 5999 6000 Provides initial support for TI OMAP-L1x/DA8xx SoC devices.
6001 See http://www.ti.com 6002 6003 Provides: 6004 Low level initialisation. 6005 System clock API. 6006 Timer control. 6007 6008 Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com> 6009 6010commit bbed056e550b26712edc173411c9d7ff9cb7e0e6 6011Author: Nick Thompson <nick.thompson@gefanuc.com> 6012Date: Thu Nov 12 11:06:08 2009 -0500 6013 6014 Add TI DA8xx support: DA8xx includes 6015 6016 Provides initial support for TI OMAP-L1x/DA8xx SoC devices. 6017 See http://www.ti.com 6018 6019 The DA8xx devices are similar to DaVinci devices but have a differing 6020 memory map and updated peripheral versions. 6021 6022 Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com> 6023 Signed-off-by: Sekhar Nori <nsekhar@ti.com> 6024 6025commit ca8480d444bdcc1670e42a613c5a5e4e8366d2d9 6026Author: Nick Thompson <nick.thompson@gefanuc.com> 6027Date: Thu Nov 12 11:03:23 2009 -0500 6028 6029 TI Davinci: add a pin multiplexer configuration API 6030 6031 Creates a method allowing pin settings to be logically grouped into data 6032 structure arrays and provides an API to configure the pinmux settings to 6033 enable the relevant pin functions. 6034 6035 Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com> 6036 6037commit 9868a36dfb8de4bb98b48e4f4eb912312d67279e 6038Author: Nick Thompson <nick.thompson@gefanuc.com> 6039Date: Thu Nov 12 11:02:17 2009 -0500 6040 6041 TI Davinci timer.c: Remove volatiles and memory mapped structures 6042 6043 Remove volatiles and memory mapped structure accesses and replace with 6044 readl and writel macro usage. 6045 6046 Signed-off-by: Nick Thompson <nick.thompson@gefanuc.com> 6047 6048commit c90b32739a50ca52d9b8d220ea6875ae994566ec 6049Author: Grazvydas Ignotas <notasas@gmail.com> 6050Date: Thu Nov 12 11:46:07 2009 +0200 6051 6052 OMAP3: pandora: fix booting without serial attached 6053 6054 When the board is booted without serial cable attached (which 6055 is how most of them will be used) UART RX is left floating and 6056 sometimes picks noise, which interrupts countdown and enters 6057 U-Boot prompt instead of booting the kernel. 6058 6059 Fix this by setting up internal pullup on UART RX pin. This 6060 does not prevent serial from working as the internal pullup 6061 is weak. 6062 6063 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com> 6064 6065commit ac67804fbb2d82a19170066c02af7053d474ce8d 6066Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> 6067Date: Tue Nov 17 18:30:34 2009 +0900 6068 6069 Add a unified s3c24x0 header file 6070 6071 This patch adds a unified s3c24x0 cpu header file that selects the header 6072 file for the specific s3c24x0 cpu from the SOC and CPU configs defined in 6073 board config file. This removes the current chain of s3c24-type #ifdef's 6074 from the s3c24x0 code. 6075 6076 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk> 6077 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 6078 6079commit a59a23d68ae4f4a1c07d105520c93e6e289d186f 6080Author: Seunghyeon Rhee <rhee4j1@gmail.com> 6081Date: Fri Nov 13 16:49:41 2009 +0900 6082 6083 S3C6400/SMDK6400: fix stack_setup in start.S 6084 6085 Fix stack_setup to place the stack on the correct address in DRAM 6086 accroding to U-Boot standard and remove conditional compilation by 6087 CONFIG_MEMORY_UPPER_CODE macro that is not necessry. This macro 6088 was introduced and used only by this board for some unclear reason. 6089 6090 The definition of this macro is also removed because it's not 6091 referenced elsewhere. 6092 6093 Signed-off-by: Seunghyeon Rhee <seunghyeon@lpmtec.com> 6094 Tested-by: Minkyu Kang <mk7.kang@samsung.com> 6095 6096commit 940032260914076b1594906334b2e3f7af6fb7cf 6097Author: Minkyu Kang <mk7.kang@samsung.com> 6098Date: Tue Nov 10 20:23:50 2009 +0900 6099 6100 s5pc1xx: serial: fix the error check logic 6101 6102 Because of Frame error, Parity error and Overrun error are occured only receive 6103 operation, need to masking when error checking. 6104 6105 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 6106 6107commit 9ebfdc202275bcd9eb4af56e32bfb4253ff1b781 6108Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> 6109Date: Wed Nov 4 17:49:31 2009 +0900 6110 6111 Clean-up of s3c24x0 header files 6112 6113 Cleans up the s3c24x0 header files: 6114 6115 s4c24x0.h: removes the use of 'volatile' from the S3C24X0_REG8, 6116 S3C24X0_REG16 and S3C24X0_REG32 register typedef's. Registers are always 6117 accessed using the IO accessor functions which cast the register address 6118 as 'volatile' anyway so it isn't required here. 6119 6120 s3c2400.h and s3c2410.h: insert a blank line between the static inline 6121 functions 6122 6123 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk> 6124 6125commit 47e801bec360e69e4b087a141d015b318e1b0212 6126Author: Minkyu Kang <mk7.kang@samsung.com> 6127Date: Wed Nov 4 16:07:59 2009 +0900 6128 6129 s3c64xx: move s3c64xx header files to asm-arm/arch-s3c64xx 6130 6131 This patch moves the s3c64xx header files from include/ 6132 to include/asm-arm/arch-s3c64xx 6133 6134 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 6135 6136commit 492fb1fdbcdd5e21be0b6742c15f76c648f0653b 6137Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> 6138Date: Tue Nov 3 18:08:41 2009 +0900 6139 6140 Move s3c24x0 header files to asm-arm/arch-s3c24x0/ 6141 6142 This patch moves the s3c24x0 header files from include/ to 6143 include/asm-arm/arch-s3c24x0/. 6144 6145 checkpatch.pl showed 2 errors and 3 warnings. The 2 errors were both due 6146 to a non-UTF8 character in David M?ller's name: 6147 6148 ERROR: Invalid UTF-8, patch and commit message should be encoded in UTF-8 6149 #489: FILE: include/asm-arm/arch-s3c24x0/s3c2410.h:3: 6150 + * David M?ller ELSOFT AG Switzerland. d.mueller@elsoft.ch 6151 6152 As David's name correctly contains a non-UTF8 character I haven't fixed 6153 these errors. 6154 6155 The 3 warnings were all because of the use of 'volatile' in s3c24x0.h: 6156 6157 WARNING: Use of volatile is usually wrong: see Documentation/volatile-considered-harmful.txt 6158 #673: FILE: include/asm-arm/arch-s3c24x0/s3c24x0.h:35: 6159 +typedef volatile u8 S3C24X0_REG8; 6160 +typedef volatile u16 S3C24X0_REG16; 6161 +typedef volatile u32 S3C24X0_REG32; 6162 6163 I'll fix these errors in another patch. 6164 6165 Tested by running MAKEALL for ARM8 targets and ensuring there were no new 6166 errors or warnings. 6167 6168 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk> 6169 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 6170 6171commit 2d251ccaa90997012e0b1f13bf791df2bf03a144 6172Author: Tom Rix <Tom.Rix@windriver.com> 6173Date: Sun Nov 15 10:58:06 2009 -0600 6174 6175 ARM Update mach-types 6176 6177 Fetched from http://www.arm.linux.org.uk/developer/machines/download.php 6178 And built with 6179 6180 repo http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm 6181 commit 156171c71a0dc4bce12b4408bb1591f8fe32dc1a 6182 6183 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 6184 6185commit c88ed4cb2eed29a690ac6689ed1dc2f5e9547d15 6186Author: Mark Asselstine <[mark.asselstine@windriver.com]> 6187Date: Tue Oct 27 19:40:40 2009 +0530 6188 6189 sheevaplug: correct SDRAM address control register 6190 6191 value 6192 6193 The SheevaPlug DevKit is shipped with 4x8 by 1Gb DDR devices in 6194 two banks for a total of 512MB of RAM. Based on this configuration 6195 the existing values for SDRAM address control register are incorrect 6196 and result in random kernel oops as memory is incorrectly accessed 6197 (while for example extracting a large tarball such as a rootfs). 6198 Based on the hardware configuration along with the supporting 6199 documentation from Marvell these are the correct values, as 6200 well this change mimics values previously used in Marvell's own 6201 u-boot git tree for the SheevaPlug. 6202 6203 Other variants of the hardware such as the PogoPlug and TonidoPlug 6204 may have different memory configurations but to properly support 6205 those additional board directories should be maintained or a better 6206 system to support other kwb*.cfg is needed. 6207 6208 Tested on SheevaPlug DevKit. 6209 6210 Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> 6211 6212commit 9829cabbaa0474e94075bf7d62c99bdba996518b 6213Author: Sandeep Paulraj <s-paulraj@ti.com> 6214Date: Wed Oct 28 19:16:43 2009 -0400 6215 6216 Fix for Void function returning value in sbc35-a9g20 6217 6218 Void function was returning 0 in the m41t94 rtc driver. 6219 This makes it similar to m41t62 rtc driver. 6220 6221 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6222 6223commit d5e2d625c74c84aa419ba7fa0c81bad93fc69a60 6224Author: Tom Rix <Tom.Rix@windriver.com> 6225Date: Sat Oct 24 14:48:33 2009 -0500 6226 6227 ARM Update mach-types.h 6228 6229 From http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm 6230 6231 Commit id 0996391139f43d032335b5360db11da62a2cbb39 6232 6233 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 6234 6235commit 34ddbd171ba154e9afd83f07a07ad8b57ac592e3 6236Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 6237Date: Thu Oct 22 23:06:59 2009 +0200 6238 6239 ppc4xx: Remove autoupdate feature from PLU405 board 6240 6241 The autoupdate feature is not used on PLU405 boards. 6242 So remove it. 6243 6244 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 6245 Signed-off-by: Stefan Roese <sr@denx.de> 6246 6247commit 824d82997fbcf28e49081d36fdd5d3be1b92b03d 6248Author: Ira W. Snyder <iws@ovro.caltech.edu> 6249Date: Wed Nov 4 13:37:59 2009 -0800 6250 6251 Fix example FIT image source files 6252 6253 The example FIT image source files do not compile with the latest dtc and 6254 mkimage. The following error message is produced: 6255 6256 DTC: dts->dtb on file "kernel.its" 6257 Error: kernel.its 7:0 - 1:0 syntax error 6258 FATAL ERROR: Unable to parse input tree 6259 ./mkimage: Can't read kernel.itb.tmp: Invalid argument 6260 6261 The FIT image source files are missing the "/dts-v1/;" directive at the 6262 beginning of the file. Add the directive to the examples. 6263 6264 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu> 6265 6266commit fd66066ee3ce15c2966feb9b2be0f0d51a95db48 6267Author: Mike Frysinger <vapier@gentoo.org> 6268Date: Wed Nov 4 16:13:19 2009 -0500 6269 6270 img2srec: use standard types 6271 6272 The img2srec code creates a lot of typedefs with common names. These 6273 easily clash with system headers that include these typedefs (like mingw). 6274 6275 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 6276 6277commit 8204e068110e8abe5db9c3b7df9971b58cda8f26 6278Author: Mike Frysinger <vapier@gentoo.org> 6279Date: Wed Nov 4 16:03:25 2009 -0500 6280 6281 tools: gitignore *.exe binaries 6282 6283 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 6284 6285commit 425d3b666eee5c58fdb82fb894a535dd71782a05 6286Author: Peter Tyser <ptyser@xes-inc.com> 6287Date: Tue Nov 3 23:31:07 2009 -0600 6288 6289 ppc: Move conditional compilation of kgdb.c to Makefile 6290 6291 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 6292 6293commit e06ab6546b332acc55ac4e7c31338662328b0fb3 6294Author: Mike Frysinger <vapier@gentoo.org> 6295Date: Tue Nov 3 11:36:39 2009 -0500 6296 6297 spi_flash.h: pull in linux/types.h for u## types 6298 6299commit 0008555f4d57c15ad86ee735861ca0d783042f61 6300Author: Mike Frysinger <vapier@gentoo.org> 6301Date: Tue Nov 3 11:36:26 2009 -0500 6302 6303 bootm: mark local boot_os[] table static 6304 6305 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 6306 6307commit a8fa379d47f06c7d3ed75c8fb26ae43ee38e1fd7 6308Author: Nishanth Menon <nm@ti.com> 6309Date: Mon Nov 2 09:40:18 2009 -0600 6310 6311 mkconfig: deny messed up ARCH definition 6312 6313 Refuse to setup a platform if the command line ARCH= is not the same 6314 as the one required for the board. This prevents any user with 6315 prehistoric aliases from messing up their builds. 6316 6317 Reported in thread: 6318 http://old.nabble.com/-U-Boot--Build-breaks-on-some-OMAP3-configs-to26132721.html 6319 6320 Inputs from: Mike Frysinger and Wolfgang Denk: 6321 http://lists.denx.de/pipermail/u-boot/2009-November/063642.html 6322 6323 Cc: Wolfgang Denk <wd@denx.de> 6324 Cc: Mike Frysinger <vapier@gentoo.org> 6325 Cc: Anand Gadiyar <gadiyar@ti.com> 6326 Cc: Dirk Behme <dirk.behme@googlemail.com> 6327 Signed-off-by: Nishanth Menon <nm@ti.com> 6328 6329commit 67b96e87da1b84660fa1e5b78cc760246d116814 6330Author: Remy Bohmer <linux@bohmer.net> 6331Date: Wed Oct 28 22:13:39 2009 +0100 6332 6333 Repair the 'netretry=once' option. 6334 6335 'netretry = once' does the same as 'netretry = yes', because it is not stored 6336 when it was tried once. 6337 6338 Signed-off-by: Remy Bohmer <linux@bohmer.net> 6339 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 6340 6341commit b25e38fc36e13fa8037fa4d37fe909d1d6e6f372 6342Author: Remy Bohmer <linux@bohmer.net> 6343Date: Thu Oct 29 14:24:22 2009 +0100 6344 6345 Repair build fail in case CONFIG_PPC=n and CONFIG_FIT=y 6346 6347 Signed-off-by: Remy Bohmer <linux@bohmer.net> 6348 6349commit 01826abc02ce160501534788e63629ccbe31b05c 6350Author: Grazvydas Ignotas <notasas@gmail.com> 6351Date: Thu Nov 12 11:46:07 2009 +0200 6352 6353 OMAP3: pandora: fix booting without serial attached 6354 6355 When the board is booted without serial cable attached (which 6356 is how most of them will be used) UART RX is left floating and 6357 sometimes picks noise, which interrupts countdown and enters 6358 U-Boot prompt instead of booting the kernel. 6359 6360 Fix this by setting up internal pullup on UART RX pin. This 6361 does not prevent serial from working as the internal pullup 6362 is weak. 6363 6364 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com> 6365 6366commit 41dfd8a60324243dbe2dc313a607910824a68aa7 6367Author: Remy Bohmer <linux@bohmer.net> 6368Date: Wed Oct 28 22:13:37 2009 +0100 6369 6370 Add support for CS2 dataflash for Atmel-SPI. 6371 6372 The only missing chipselect line support is CS2, and I need it on 6373 CS2... 6374 6375 Signed-off-by: Remy Bohmer <linux@bohmer.net> 6376 6377commit faf36c1437c95e4a86835633d9801c5f6396a3c7 6378Author: Remy Bohmer <linux@bohmer.net> 6379Date: Wed Oct 28 22:13:36 2009 +0100 6380 6381 Fix mingw tools build 6382 6383 mkimage does not build due to missing strtok_r() and getline() implementation 6384 6385 Signed-off-by: Remy Bohmer <linux@bohmer.net> 6386 6387commit 6a590c5f5fd12cdd27f3153522acfac3854590e7 6388Author: Remy Bohmer <linux@bohmer.net> 6389Date: Wed Oct 28 22:13:35 2009 +0100 6390 6391 Building of FIT images does not work. 6392 6393 The type is not set for generation of the FIT images, resulting 6394 in no images being created without printing or returning an error 6395 6396 Signed-off-by: Remy Bohmer <linux@bohmer.net> 6397 6398commit 0a7691e820e33b23f61c6ea0ef6fa72099d1a6ae 6399Author: Renato Andreola <renato.andreola@imagos.it> 6400Date: Mon Nov 23 16:45:14 2009 -0500 6401 6402 Nios2: do_boom_linux(): kernel gunzip input data integrity problem due to 6403 missing cache flush. 6404 6405 Added instruction and data caches flush. 6406 6407 Signed-off-by: Scott McNutt <smcnutt@psyent.com> 6408 6409commit de03825386eaedb5e17261dd87cde86e9a764ba9 6410Author: Scott McNutt <smcnutt@psyent.com> 6411Date: Mon Nov 23 16:29:40 2009 -0500 6412 6413 Nios2: Fix compiler warnings in lib_nios2/board.c (unused variables) 6414 6415 Signed-off-by: Scott McNutt <smcnutt@psyent.com> 6416 6417commit 57baa379cf2f67df89a5c6052767fd25daff20bd 6418Author: Scott McNutt <smcnutt@psyent.com> 6419Date: Mon Nov 23 15:54:25 2009 -0500 6420 6421 Nios2/Nios: Remove unnecessary (residual) linker Nios command scripts from 6422 the standalone examples. 6423 6424 Signed-off-by: Scott McNutt <smcnutt@psyent.com> 6425 6426commit eb5eb2b0f744f0cba405160c5d01335c40f09acf 6427Author: Stefan Roese <sr@denx.de> 6428Date: Thu Nov 19 14:03:17 2009 +0100 6429 6430 ppc4xx: Cleanup PPC4xx I2C infrastructure 6431 6432 This patch cleans up the PPC4xx I2C intrastructure: 6433 6434 - Use C struct to describe the I2C registers instead of defines 6435 - Coding style cleanup (braces, whitespace, comments, line length) 6436 - Extract common code from i2c_read() and i2c_write() 6437 - Remove unneeded IIC defines from ppc405.h & ppc440.h 6438 6439 Signed-off-by: Stefan Roese <sr@denx.de> 6440 6441commit b2f618f2150b15b2674f11d09e1c0fdfe460c1cd 6442Author: Stefan Roese <sr@denx.de> 6443Date: Thu Nov 19 11:49:36 2009 +0100 6444 6445 ppc4xx: Remove some testing code from 4xx_pcie.c 6446 6447 This code got included accidentally. 6448 6449 Signed-off-by: Stefan Roese <sr@denx.de> 6450 6451commit 4e574c4e2d3776d9db62dca4ca3c73be1574af43 6452Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 6453Date: Mon May 18 13:20:54 2009 +0200 6454 6455 at91: Extended soft_i2c driver for AT91SAM9263 SoC 6456 6457 While hard_i2c support is not available 6458 (see http://lists.denx.de/pipermail/u-boot/2009-March/049751.html), 6459 this patch enables soft_i2c on AT91SAM9263 SoC. 6460 6461 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 6462 6463commit 396fd17338b9bf1f84f494ec1860427e18868ede 6464Author: Peter Tyser <ptyser@xes-inc.com> 6465Date: Fri Oct 16 17:36:27 2009 -0500 6466 6467 Add 'true' and 'false' commands 6468 6469 These commands are only enabled when the hush shell is enabled and can 6470 be useful in scripts such as: 6471 6472 while true do 6473 echo "Booting OS..."; 6474 run $bootcmd; 6475 echo "Booting OS failed"; 6476 sleep 10; 6477 done 6478 6479 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 6480 6481commit 4e1ca93b6bae34b68be9280b43bf0289d994656c 6482Author: Peter Tyser <ptyser@xes-inc.com> 6483Date: Fri Oct 16 17:36:26 2009 -0500 6484 6485 cmd_help: General cleanup 6486 6487 Shorten the overly-verbose help message of 'help' and clean up some 6488 redundant ifdefery while we're at it. 6489 6490 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 6491 6492commit 6b8f5ad10f567362a3682840f59ba0fc470af319 6493Author: Peter Tyser <ptyser@xes-inc.com> 6494Date: Fri Oct 16 17:36:25 2009 -0500 6495 6496 command.c: Break commands out to appropriate cmd_*.c files 6497 6498 command.c should contain common code related to commands, not 6499 miscellaneous command implementations. 6500 6501 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 6502 6503commit fcffb680e77fcb48598d4a9944dbe2d4503170e0 6504Author: Mike Frysinger <vapier@gentoo.org> 6505Date: Wed Oct 14 19:28:03 2009 -0400 6506 6507 sf: fix stmicro offset setup while erasing 6508 6509 Reported-by: Peter Gombos <gombos@protecta.hu> 6510 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 6511 6512commit d394a7795027d96ca55799df40bd5c4a13dbeebe 6513Author: Jason McMullan <mcmullan@netapp.com> 6514Date: Fri Oct 9 17:12:23 2009 -0400 6515 6516 sf: new driver for Winbond W25X16/32/64 devices 6517 6518 Signed-off-by: Jason McMullan <jason.mcmullan@gmail.com> 6519 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 6520 6521commit cada315100c88894b85972a91309a6f2413966b6 6522Author: Marcel Ziswiler <marcel@ziswiler.com> 6523Date: Thu Oct 1 23:55:17 2009 +0200 6524 6525 mpc8260: move FDT memory node fixup into common CPU code. 6526 6527 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com> 6528 Tested-by: Heiko Schocher <hs@denx.de> 6529 6530commit f2cea405f83da46b72098ea874fb3eefe185d312 6531Author: Po-Yu Chuang <ratbert.chuang@gmail.com> 6532Date: Wed Sep 23 15:52:35 2009 +0800 6533 6534 Add driver for FTRTC010 real time clock 6535 6536 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com> 6537 6538 Edited commit message. 6539 Signed-off-by: Wolfgang Denk <wd@denx.de> 6540 6541commit c0356a88011330646e960dfac8a2c909bede3304 6542Author: Mark Jackson <mpfj-list@mimc.co.uk> 6543Date: Mon Aug 17 16:42:52 2009 +0100 6544 6545 MIMC200: set default fbmem value 6546 6547 This patch adds a default bootargs "fbmem" value to the 6548 CONFIG_BOOTARGS string for the MIMC200 board. 6549 6550 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 6551 6552commit 10a5a7991258019af155bc19b3b246aaa708b0e2 6553Author: Sandeep Paulraj <s-paulraj@ti.com> 6554Date: Thu Nov 19 23:04:42 2009 -0500 6555 6556 NAND: Add Support for 4K page size in DaVinci NAND driver 6557 6558 This patch adds support for NAND devices with a page size of 6559 4K in the DaVinci NAND driver. The layout matches the layout that TI uses 6560 for 4K page size NAND devices in the kernel NAND driver. 6561 6562 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6563 6564commit 14ce02c88116316a0285cc7d9c05f83367a5aae8 6565Author: Matthias Fuchs <matthias.fuchs@esd.eu> 6566Date: Wed Nov 18 16:29:29 2009 +0100 6567 6568 ppc4xx: Remove unused features from PMC440 board support 6569 6570 This patch shrinks the PMC440 u-boot binary (from next branch) 6571 to fit into 384kB again. 6572 6573 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 6574 Signed-off-by: Stefan Roese <sr@denx.de> 6575 6576commit 629ab99b3b19c1b7e06a7c4e5d666138bc924c7c 6577Author: Matthias Fuchs <matthias.fuchs@esd.eu> 6578Date: Wed Nov 18 16:28:42 2009 +0100 6579 6580 ppc4xx: Remove confusing comment 6581 6582 This is not the sequoia board. 6583 6584 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 6585 Signed-off-by: Stefan Roese <sr@denx.de> 6586 6587commit 79e2d8df3776b667257e609aefefa071b4fe13a2 6588Author: Stefan Roese <sr@denx.de> 6589Date: Tue Nov 17 15:53:00 2009 +0100 6590 6591 ppc4xx: alpr: Remove some not needed commands to make image fit again 6592 6593 The latest changes in the u-boot/next branch increased the size of the 6594 alpr image a bit more. Now it doesn't fit into the 256k reserved for it. 6595 This patch now removes the commands "askenv" and "irq" which are not 6596 needed in the production systems. 6597 6598 Signed-off-by: Stefan Roese <sr@denx.de> 6599 Cc: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl> 6600 6601commit 6c70049bd14e8e81764570732be7f34a89831f09 6602Author: Stefan Roese <sr@denx.de> 6603Date: Thu Nov 12 17:19:37 2009 +0100 6604 6605 ppc4xx: Consolidate pci_master_init() function 6606 6607 This patch removes the duplicted implementations of the pci_master_init() 6608 function by introducing a weak default function for it. It can be 6609 overridden by a board specific version. 6610 6611 Signed-off-by: Stefan Roese <sr@denx.de> 6612 6613commit a760b0203155da6fb8b8e9086169bb87d09d76fa 6614Author: Stefan Roese <sr@denx.de> 6615Date: Thu Nov 12 16:41:09 2009 +0100 6616 6617 ppc4xx: Consolidate pci_pre_init() function 6618 6619 This patch removes the duplicted implementations of the pci_pre_init() 6620 function by introducing a weak default function for it. This weak default 6621 has a different implementation for some PPC variants. It can be 6622 overridden by a board specific version. 6623 6624 Signed-off-by: Stefan Roese <sr@denx.de> 6625 6626commit 1095493a5d4c16f481a783f6f54d83ad0e07dfa0 6627Author: Stefan Roese <sr@denx.de> 6628Date: Thu Nov 12 12:00:49 2009 +0100 6629 6630 ppc4xx: Consolidate pci_target_init() function 6631 6632 This patch removes the duplicted implementations of the pci_target_init() 6633 function by introducing a weak default function for it. This weak default 6634 has a different implementation for 440EP(x)/GR(x) PPC's. It can be 6635 overridden by a board specific version (e.g. PMC440, korat). 6636 6637 Signed-off-by: Stefan Roese <sr@denx.de> 6638 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu> 6639 6640commit 5e1ded558b7cc28a62c14598f6437023b6262444 6641Author: Hui.Tang <zetalabs@gmail.com> 6642Date: Wed Nov 18 16:24:04 2009 +0800 6643 6644 S3C2410 NAND Flash Add Missing Function 6645 6646 This patch add nand_read_buf() for S3C2410 NAND SPL. 6647 In nand_spl/nand_boot.c, nand_boot() will check nand->select_chip, 6648 so nand->select_chip should also be initialized. 6649 6650 Signed-off-by: Hui.Tang <zetalabs@gmail.com> 6651 6652commit 6cd752f927e515e63a038fa363edceec5a59c028 6653Author: Sandeep Paulraj <s-paulraj@ti.com> 6654Date: Mon Nov 16 13:32:01 2009 -0500 6655 6656 NAND: Update read_read_subpage API check 6657 6658 This patch updates a check condition in the NAND driver. 6659 The check condition is similat to what is in linux/next. 6660 6661 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6662 6663commit bb3e9828e7fbcc9e4518e51592876f4a0997d9ec 6664Author: Sandeep Paulraj <s-paulraj@ti.com> 6665Date: Mon Nov 16 13:31:47 2009 -0500 6666 6667 NAND:Extending the nand_ecclayout structure 6668 6669 NANDs with page size of lesser than and equal to 2K are 6670 reaching EOL. They are bing replaced with NANDs of 6671 page size 4K and above. 6672 To support this we have to extend the eccpos field 6673 6674 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6675 6676commit 3ffc0d61bad7d986e344ce7062b37c5c8f04fb0e 6677Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 6678Date: Tue Oct 27 19:58:09 2009 +0100 6679 6680 ppc4xx: Initialize magnetic coupler on VOM405 boards 6681 6682 This patch fixes an ugly behavior of the IL712 magnetic coupler 6683 as used on VOM405. These parts will remember their last state 6684 over a power cycle which might cause unwanted behavior. 6685 6686 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 6687 Signed-off-by: Stefan Roese <sr@denx.de> 6688 6689commit be0db3e3141c6c6b4e232b51091f35a284cc54e5 6690Author: Matthias Fuchs <matthias.fuchs@esd.eu> 6691Date: Mon Oct 26 09:58:45 2009 +0100 6692 6693 ppc4xx: Initialize magnetic couplers in PLU405 6694 6695 This patch fixes an ugly behavior of the IL712 magnetic couplers 6696 as used on PLU405. These parts will remember their last state 6697 over a power cycle which might cause unwanted behavior. 6698 6699 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 6700 Signed-off-by: Stefan Roese <sr@denx.de> 6701 6702commit 067f54c66acd469870ef6946e1591bfcc02de1b3 6703Author: Matthias Fuchs <matthias.fuchs@esd.eu> 6704Date: Mon Oct 26 09:55:40 2009 +0100 6705 6706 Add minimal SJA1000 header for basic CAN mode 6707 6708 This patch is in preparation for the upcoming PLU405 board fix. 6709 6710 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 6711 Signed-off-by: Stefan Roese <sr@denx.de> 6712 6713commit 1d2e96de56cc57e25a19bc40d297f36c4c4443a2 6714Author: Dirk Behme <dirk.behme@googlemail.com> 6715Date: Mon Nov 2 20:36:26 2009 +0100 6716 6717 OMAP2/3: I2C: Add support for second and third bus 6718 6719 Add support to use second and third I2C bus, too. 6720 6721 Bus 0 is still the default, but by calling i2c_set_bus_num(1/2) before doing 6722 I2C accesses, code can switch to bus 1 and 2, too. Don't forget to switch 6723 back afterwards, then. 6724 6725 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 6726 6727commit c758e947aa7d39a2be607ecdedd818ad300807b2 6728Author: Amul Kumar Saha <amul.saha@samsung.com> 6729Date: Wed Nov 4 10:38:46 2009 +0530 6730 6731 ENV Variable support for Flex-OneNAND 6732 6733 Define and use CONFIG_ENV_ADDR_FLEX and CONFIG_ENV_SIZE_FLEX 6734 for storing environment variables. 6735 6736 Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com> 6737 Signed-off-by: Amul Kumar Saha <amul.saha@samsung.com> 6738 6739commit cacbe919584193f64e74088e03f068e52775bb86 6740Author: Amul Kumar Saha <amul.saha@samsung.com> 6741Date: Fri Nov 6 17:15:31 2009 +0530 6742 6743 Flex-OneNAND driver support 6744 6745 This patch adds support for Flex-OneNAND devices. 6746 6747 Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com> 6748 Signed-off-by: Amul Kumar Saha <amul.saha@samsung.com> 6749 6750commit 35209cbceebe212a8c5ec17d552960f8bd4725f3 6751Author: Mingkai Hu <Mingkai.hu@freescale.com> 6752Date: Tue Oct 20 16:58:17 2009 +0800 6753 6754 fsl_elbc_nand: remove the bbt descriptors relocation fixup 6755 6756 The commit 66372fe2 manually relocated the bbt pattern pointer, 6757 which can be removed by using full relocation. 6758 6759 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 6760 6761commit 25643d4da257e51f6200b213c75de4fb5b345780 6762Author: Mingkai Hu <Mingkai.hu@freescale.com> 6763Date: Tue Oct 20 16:58:16 2009 +0800 6764 6765 ppc/85xx: make boot from NAND full relocation to RAM 6766 6767 Take advantage of the latest full relocation commit of PPC platform 6768 for boot from NAND. 6769 6770 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 6771 Acked-by: Kumar Gala <galak@kernel.crashing.org> 6772 6773commit 7e86661cd777eec1e81c5e57c468e81138fda983 6774Author: David Brownell <dbrownell@users.sourceforge.net> 6775Date: Sat Nov 7 16:27:01 2009 -0500 6776 6777 NAND: fix "raw" reads with ECC syndrome layouts 6778 6779 The syndrome based page read/write routines store ECC, and possibly other 6780 "OOB" data, right after each chunk of ECC'd data. With ECC chunk size of 6781 512 bytes and a large page (2KiB) NAND, the layout is: 6782 6783 data-0 OOB-0 data-1 OOB-1 data-2 OOB-2 data-3 OOB-3 OOB-leftover 6784 6785 Where OOBx is (prepad, ECC, postpad). However, the current "raw" routines 6786 use a traditional layout -- data OOB, disregarding the prepad and postpad 6787 values -- so when they're used with that type of ECC hardware, those calls 6788 mix up the data and OOB. Which means, in particular, that bad block 6789 tables won't be found on startup, with data corruption and related chaos 6790 ensuing. 6791 6792 The current syndrome-based drivers in mainline all seem to use one chunk 6793 per page; presumably they haven't noticed such bugs. 6794 6795 Fix this, by adding read/write page_raw_syndrome() routines as siblings of 6796 the existing non-raw routines; "raw" just means to bypass the ECC 6797 computations, not change data and OOB layout. 6798 6799 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 6800 Signed-off-by: Andrew Morton <akpm@linux-foundation.org> 6801 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com> 6802 6803commit 5df3c2b62cebaa0ddb2817364f93726e5dbe3525 6804Author: Sandeep Paulraj <s-paulraj@ti.com> 6805Date: Sat Nov 7 14:25:18 2009 -0500 6806 6807 NAND: Don't walk past end of oobfree[] 6808 6809 When computing oobavail from the list of free areas in the OOB, 6810 don't assume there will always be an unused slot at the end. 6811 This syncs up with the kernel NAND driver. 6812 6813 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6814 6815commit 18b5a4b43af3c8359cb568f4fa32d6b9dcebbf26 6816Author: Sandeep Paulraj <s-paulraj@ti.com> 6817Date: Sat Nov 7 14:25:03 2009 -0500 6818 6819 NAND: Update check condition for nand_read_page_hwecc API 6820 6821 The patch updates the check condition for determining 6822 whether the ECC corrections has failed. 6823 This makes it similar to what is in the kernel NAND driver. 6824 6825 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6826 6827commit e25ee0396226fb56679702d0361cf2645504e7f6 6828Author: Sandeep Paulraj <s-paulraj@ti.com> 6829Date: Sat Nov 7 14:24:50 2009 -0500 6830 6831 NAND: Updating comments/explanations in the NAND driver 6832 6833 Patch updates the comments and explanations for 6834 the arguments to various functions. 6835 6836 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6837 6838commit aad4a28b2518e1d24ee606d9ea31f9b4dd029777 6839Author: Sandeep Paulraj <s-paulraj@ti.com> 6840Date: Sat Nov 7 14:24:34 2009 -0500 6841 6842 NAND: Subpage shift for ecc_steps equal to 16 6843 6844 This was originally part of Thomas Gleixner's patch for 6845 adding support for 4KiB pages. 6846 This is not part of the U-Boot NAND driver so updating the 6847 driver with this to sync up with the kernel NAND driver. 6848 6849 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6850 6851commit 36e0b98ec832bb5ec42d6e249058d5b84f75dff8 6852Author: Sandeep Paulraj <s-paulraj@ti.com> 6853Date: Sat Nov 7 14:24:20 2009 -0500 6854 6855 NAND: Remove commented out code 6856 6857 Patch removes already commented out dead code 6858 6859 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6860 6861commit 4f41e7ea1a17ba7207ca41379bf344b317e72c12 6862Author: Sandeep Paulraj <s-paulraj@ti.com> 6863Date: Sat Nov 7 14:24:06 2009 -0500 6864 6865 NAND: Correct the "chip_shift" calculation 6866 6867 This patch updates the "chip_shift" calculation in the 6868 NAND driver. This is being done to sync up the NAND driver with 6869 the kernel NAND driver. 6870 6871 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6872 6873commit aaa8eec532876c47acfd31bf9b573a00eaad92ae 6874Author: Sandeep Paulraj <s-paulraj@ti.com> 6875Date: Fri Oct 30 13:51:23 2009 -0400 6876 6877 NAND: Update to support 64 bit device size 6878 6879 This patch adds support for NANDs greater than 2 GB. 6880 Patch is based on the MTD NAND driver in the kernel. 6881 6882 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 6883 Signed-off-by: Scott Wood <scottwood@freescale.com> 6884 6885commit 581d04f14d7a39b63d418e2a21e44101233096d1 6886Author: Peter Tyser <ptyser@xes-inc.com> 6887Date: Thu Oct 15 10:48:18 2009 -0500 6888 6889 cmd_nand: Move conditional compilation to Makefile 6890 6891 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 6892 6893commit 9574fd63a97d080e379f30b6a81a1221eaeb797e 6894Author: Peter Tyser <ptyser@xes-inc.com> 6895Date: Thu Oct 15 10:48:17 2009 -0500 6896 6897 cmd_nand: Remove duplicate include 6898 6899 Also remove vague, unnecessary comment 6900 6901 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 6902 6903commit cdbdbe65f5f006cba208accee5a126c659d4b867 6904Author: Kumar Gala <galak@kernel.crashing.org> 6905Date: Fri Nov 13 08:52:21 2009 -0600 6906 6907 ppc/85xx: Fix how we determine the number of CAM entries 6908 6909 We were incorrectly use the max CAM size as the number of entries in 6910 the array for setting up the addrmap. We should be using the NENTRY 6911 field which is the low 12-bits of TLB1CFG. 6912 6913 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 6914 6915commit fbd47b6753b08162436d9ccad1e63c8d43ede54c 6916Author: Mike Rapoport <mike@compulab.co.il> 6917Date: Thu Nov 12 15:35:08 2009 +0200 6918 6919 smc911x: make smc911x_initialize return correct value 6920 6921 Make smc911x_initialize return -1 on error and number of interfaces 6922 detected otherwise. 6923 6924 Signed-off-by: Mike Rapoport <mike@compulab.co.il> 6925 Acked-by: Mike Frysinger <vapier@gentoo.org> 6926 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 6927 6928commit c44efcf97b335dcef7d014f65b7d3094e79adb13 6929Author: Mike Frysinger <vapier@gentoo.org> 6930Date: Thu Nov 12 22:26:02 2009 -0500 6931 6932 smc911x_eeprom: fix building after smc911x overhaul 6933 6934 When the smc911x driver was converted to NET_MULTI, the smc911x eeprom was 6935 missed. The config option needed updating as well as overhauling of the 6936 rergister read/write functions. 6937 6938 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 6939 Tested-by: Mike Rapoport <mike.rapoport@gmail.com> 6940 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 6941 6942commit 3ad95deb30ac73bd57e966d321215a17d3236f9f 6943Author: Dave Liu <daveliu@freescale.com> 6944Date: Thu Nov 12 07:26:37 2009 +0800 6945 6946 fsl-ddr: Fix the chip-select interleaving issue 6947 6948 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3 6949 introduced one new bug to chip-select interleaving. 6950 6951 Single DDR controller also can do the chip-select 6952 interleaving if there is dual-rank or qual-rank DIMMs. 6953 6954 Signed-off-by: Dave Liu <daveliu@freescale.com> 6955 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 6956 6957commit 651ef90fa6ca824c8e581aeef9e04bbbe7f7e9ce 6958Author: javier Martin <javier.martin@vista-silicon.com> 6959Date: Thu Oct 29 08:22:43 2009 +0100 6960 6961 mxc_fec: avoid free() calls to already freed pointers. 6962 6963 Sometimes, inside NetLoop, eth_halt() is called before eth_init() has 6964 been called. This is harmless except for free() calls to pointers 6965 which have not been allocated yet. 6966 6967 This patch initializes those pointers to NULL and allocates them only 6968 the first time. This way we can get rid of free calls in halt callback. 6969 6970 This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains. 6971 6972 Signed-off-by: Javier Martin <javier.martin@vista-silicon.com> 6973 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 6974 6975commit e8f1546a88b4ade6a910c4a7958a774ee1b40023 6976Author: javier Martin <javier.martin@vista-silicon.com> 6977Date: Thu Oct 29 08:18:34 2009 +0100 6978 6979 mxc_fec: fix some erroneous PHY accesses. 6980 6981 This patch fixes erroneous access to the ethernet PHY which broke the driver. 6982 1. Selector field in the auto-negotiation register must be 0x00001 for 6983 using 802.3, not 0x00000 which is reseved. 6984 2. Access to the PHY address specified by CONFIG_FEC_MXC_PHYADDR, not 6985 0x0 fixed address. 6986 6987 This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains. 6988 6989 Now using proper defines for auto-negotiation register. 6990 6991 Signed-off-by: Javier Martin <javier.martin@vista-silicon.com> 6992 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 6993 6994commit f865fcbbb35851e75fee9c3a3fa8e0f71d9e6463 6995Author: Ron Lee <ron@debian.org> 6996Date: Wed Aug 5 20:14:01 2009 +0200 6997 6998 ARM Don't inline weak symbols 6999 7000 ------------------------------------------------------------------------
7001 7002 GCC 4.4 complains about this now. 7003 7004 Signed-off-by: Ron Lee <ron@debian.org> 7005 7006commit efe12bcec55c3d77b9ead56e62010d26b66781f3 7007Author: Stefan Roese <sr@denx.de> 7008Date: Mon Nov 9 14:15:42 2009 +0100 7009 7010 ppc4xx: Katmai: Add chip_config command 7011 7012 This patch removes the Katmai "bootstrap" command and replaces it 7013 with the now common command "chip_config". 7014 7015 Signed-off-by: Stefan Roese <sr@denx.de> 7016 7017commit cdaed5dc31f4023610f180fe158ec8c6f5e855a3 7018Author: Stefan Roese <sr@denx.de> 7019Date: Mon Nov 9 14:13:43 2009 +0100 7020 7021 ppc4xx: Switch to I2C bus numer 0 for chip_config command 7022 7023 All currently available 4xx derivats have the I2C bootstrap EEPROM 7024 located on I2C bus number 0. This patch now first sets this bus number, 7025 so that the chip_config command also works for board with multiple 7026 I2C busses, like Katmai. 7027 7028 Signed-off-by: Stefan Roese <sr@denx.de> 7029 7030commit 985edaccc4fbaef6d357d104aed08f839058a32f 7031Author: Matthias Fuchs <matthias.fuchs@esd.eu> 7032Date: Tue Oct 27 12:19:11 2009 +0100 7033 7034 ppc4xx: Add UBI support to PLU405 boards 7035 7036 -add UBI support 7037 -increase malloc'able memory size 7038 -cleanup MONITOR|FLASH_BASE|LEN constants 7039 7040 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 7041 Signed-off-by: Stefan Roese <sr@denx.de> 7042 7043commit d14c7ec2b51fb92c4a5218b299b772c3d186510d 7044Author: Ben Warren <biggerbadderben@gmail.com> 7045Date: Mon Nov 9 13:09:57 2009 -0800 7046 7047 Fix SMC91111 regression: lpd7a40x build failures 7048 7049 Both lpd7a400 and lpd7a404 failed to compile because they had 7050 CONFIG_SMC_USE_IOFUNCS defined: 7051 7052 examples/standalone/smc91111_eeprom.c:388: undefined reference to `SMC_outw' 7053 7054 Also removed an orphaned paren in lpd7a404.h 7055 7056 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 7057 7058commit 1031ae960ce6ce8332190278a06e2d72c2b2793e 7059Author: Ben Warren <biggerbadderben@gmail.com> 7060Date: Mon Nov 9 14:01:08 2009 -0800 7061 7062 SMC91111: Clean up SMC_inx macros on xsengine and xaeniax 7063 7064 This patch fixes the following warnings: 7065 7066 Configuring for xaeniax board... 7067 smc91111_eeprom.c: In function 'print_macaddr': 7068 smc91111_eeprom.c:278: warning: suggest parentheses around + or - in operand of & 7069 smc91111_eeprom.c:281: warning: suggest parentheses around + or - in operand of & 7070 ... 7071 Configuring for xsengine board... 7072 smc91111_eeprom.c: In function 'print_macaddr': 7073 smc91111_eeprom.c:278: warning: suggest parentheses around + or - inside shift 7074 smc91111_eeprom.c:281: warning: suggest parentheses around + or - inside shift 7075 7076 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 7077 7078commit 830c7b6722c6a9762411bf52a7bf2fae4dc71dab 7079Author: Ben Warren <biggerbadderben@gmail.com> 7080Date: Mon Nov 9 11:43:18 2009 -0800 7081 7082 Fix CS8900 regression on impa7 board 7083 7084 The following error was seen on impa7 board, due to its use of a 32-bit bus 7085 on CS8900. 7086 cs8900.c:137:37: error: macro "get_reg_init_bus" passed 2 arguments, but takes just 1 7087 7088 This patch gives the macro the correct number of arguments 7089 7090 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 7091 7092commit e5c5d9e0834bacf1c4787fa76cc4e369f2597cf5 7093Author: Mike Frysinger <vapier@gentoo.org> 7094Date: Sun Nov 1 22:39:56 2009 -0500 7095 7096 clarify eth driver halt/recv steps 7097 7098 The dev->halt() func can be called at any time, and the dev->recv() func 7099 does not need to use NetRxPackets[] when calling NetReceive(). 7100 7101 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 7102 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 7103 7104commit 497ab0eec5e1e2dfccc141a4485cd6b940e1424a 7105Author: Hui.Tang <zetalabs@gmail.com> 7106Date: Thu Nov 5 09:58:44 2009 +0800 7107 7108 Fix cs8900 dev->priv not init issue 7109 7110 Ensure all CS8900 data structures are assigned before accessing device 7111 7112 Signed-off-by: Hui.Tang <zetalabs@gmail.com> 7113 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 7114 7115commit 4fe5193d464ecdac26ddc71b1351be5b86bbff29 7116Author: Stefan Roese <sr@denx.de> 7117Date: Tue Nov 3 14:34:45 2009 +0100 7118 7119 ppc4xx: 44x_spd_ddr2.c: Fix register macro ECCCR -> ECCES (SDRAM_ECCES) 7120 7121 This error only appears when DEBUG is enabled in this driver. That's why 7122 it went unnoticed till now. 7123 7124 Signed-off-by: Stefan Roese <sr@denx.de> 7125 7126commit 916ed9444d3ab7b5cd6312557005f2a764a8baf7 7127Author: Stefan Roese <sr@denx.de> 7128Date: Thu Oct 29 18:37:45 2009 +0100 7129 7130 ppc4xx: Canyonlands: Change EBC bus config to drive always (no high-z) 7131 7132 This patch fixes a problem only seen very occasionally on Canyonlands. 7133 The NOR flash interface (CFI driver) doesn't work reliably in all cases. 7134 Erasing and/or programming sometimes doesn't work. Sometimes with 7135 an error message, like "flash not erased" when trying to program an 7136 area that should have just been erased. And sometimes without any error 7137 messages. As mentioned above, this problem was only seen rarely and with 7138 some PLL configuration (CPU speed, EBC speed). 7139 7140 Now I spotted this problem a few times, when running my Canyonlands with 7141 the following setup (chip_config): 7142 7143 1000-nor - NOR CPU:1000 PLB: 200 OPB: 100 EBC: 100 7144 7145 Changing the EBC configuration to not release the bus into high 7146 impedance state inbetween the transfers (ATC, DTC and CTC bits set to 1 7147 in EBC0_CFG) seems to fix this problem. I haven't seen any failure 7148 anymore with this patch applied. 7149 7150 Signed-off-by: Stefan Roese <sr@denx.de> 7151 Cc: David Mitchell <dmitchell@amcc.com> 7152 Cc: Jeff Mann <MannJ@embeddedplanet.com> 7153 7154commit 56f9b39d1f5d3c51e4b19792adb65bd93a8b6fcb 7155Author: Stefan Roese <sr@denx.de> 7156Date: Mon Nov 9 13:01:19 2009 +0100 7157 7158 ppc4xx: Fix NAND booting targets after 4xx linker script consolidation 7159 7160 Somehow I missed the NAND booting targets in the 4xx linker script 7161 consolidation patchset. This patch fixes this issue. 7162 7163 Signed-off-by: Stefan Roese <sr@denx.de> 7164 7165commit 9a81c61249d8361ed57d81f496121f3eb9c0eee8 7166Author: Stefan Roese <sr@denx.de> 7167Date: Thu Oct 29 16:54:52 2009 +0100 7168 7169 ppc4xx: Remove duplicated is_pci_host() functions 7170 7171 This patch introduces a weak default function for is_pci_host(), 7172 returning 1. This is the default behaviour, since most boards only 7173 implement PCI host functionality. This weak default can be overridden 7174 by a board specific version if needed. 7175 7176 Signed-off-by: Stefan Roese <sr@denx.de> 7177 7178commit b0b867462c569e7accd6f78c942cbab028116ecf 7179Author: Stefan Roese <sr@denx.de> 7180Date: Thu Oct 29 15:04:35 2009 +0100 7181 7182 ppc4xx: Consolidate 4xx PCIe board specific configuration 7183 7184 This patch consolidates the PPC4xx board specific PCIe configuration 7185 code. This way the duplicated code is removed. Boards can implement a 7186 special, non standard behaviour (e.g. number of PCIe slots, etc) by 7187 overriding the weak default functions. 7188 7189 Signed-off-by: Stefan Roese <sr@denx.de> 7190 7191commit 25793f76bf9a7be59c9415ef0f78d034e8d53dae 7192Author: Remy Bohmer <linux@bohmer.net> 7193Date: Thu Oct 29 12:29:37 2009 +0100 7194 7195 ARM: Use Linux version for unaligned access code 7196 7197 The asm-arm/unaligned.h includes linux/unaligned/access_ok.h 7198 This file is unsafe to be used on ARM, since it does an unaligned memory 7199 accesses which fails on ARM. 7200 7201 Lookin at Linux the basic difference seems to be the header 7202 "include/asm-arm/unaligned.h". The Linux version of "unaligned.h" 7203 does *not* include "access_ok.h" at all. It includes "le_byteshift.h" 7204 and "be_byteshift.h" instead. 7205 7206 Signed-off-by: Remy Bohmer <linux@bohmer.net> 7207 Signed-off-by: Stefan Roese <sr@denx.de> 7208 -- 7209 include/asm-arm/unaligned.h | 3 - 7210 include/linux/unaligned/be_byteshift.h | 70 +++++++++++++++++++++++++++++++++ 7211 include/linux/unaligned/le_byteshift.h | 70 +++++++++++++++++++++++++++++++++ 7212 3 files changed, 142 insertions(+), 1 deletion(-) 7213 create mode 100644 include/linux/unaligned/be_byteshift.h 7214 create mode 100644 include/linux/unaligned/le_byteshift.h 7215 7216commit 6d6e7c53d5c75e5e24841c5506f4ed9d82adee09 7217Author: Kumar Gala <galak@kernel.crashing.org> 7218Date: Wed Nov 4 18:02:10 2009 -0600 7219 7220 ppc/85xx: Fix inclusion of 83xx immap in 85xx builds 7221 7222 The nand_boot_fsl_elbc.c is shared between 83xx & 85xx however we should 7223 not be including the immap_83xx.h when building 85xx. We can just get 7224 this all from common.h 7225 7226 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7227 7228commit 107b579c75256212d4bf8b99ee8d68e0078f3646 7229Author: Becky Bruce <beckyb@kernel.crashing.org> 7230Date: Wed Nov 4 17:34:04 2009 -0600 7231 7232 86xx: Remove redundant code in initdram 7233 7234 The same code exists both inside an #ifdef and outside of it. 7235 Remove the extra code for all the 86xx boards. 7236 7237 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 7238 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7239 7240commit 715d8f7608f77c93f1807a032644893fd5b6d08b 7241Author: Ed Swarthout <Ed.Swarthout@freescale.com> 7242Date: Mon Nov 2 09:05:49 2009 -0600 7243 7244 fsl_pci_init_port end-point initialization is broken 7245 7246 commit 70ed869e broke fsl pcie end-point initialization. 7247 Returning 0 is not correct. The function must return the first free 7248 bus number for the next controller. 7249 7250 fsl_pci_init() must still be called and a bus allocated even if the 7251 controller is an end-point. 7252 7253 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 7254 Acked-by: Vivek Mahajan <vivek.mahajan@freescale.com> 7255 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7256 7257commit 01471d538fb163f472a769f21267d7676c91267c 7258Author: Kumar Gala <galak@kernel.crashing.org> 7259Date: Wed Nov 4 01:29:04 2009 -0600 7260 7261 Revert "ppc/85xx/pci: fsl_pci_init: pcie agent mode support" 7262 7263 This reverts commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc. 7264 7265 There isn't any need to modify the API for fsl_pci_init_port to pass the 7266 status of host/agent(end-point) status. We can determine that 7267 internally to fsl_pci_init_port. Revert the patch that makes the API 7268 change. 7269 7270 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7271 7272commit 2cd95a25cb0ee8218b271d23d64fb3f719ac5390 7273Author: Stefan Roese <sr@denx.de> 7274Date: Tue Oct 27 16:20:05 2009 +0100 7275 7276 ppc4xx: Remove board specific linker scripts from most PPC4xx boards 7277 7278 All these linker scripts can be removed since the new common ppc4xx 7279 linker script should be able to handle all of those boards. 7280 7281 Please test and report problems. Thanks. 7282 7283 Signed-off-by: Stefan Roese <sr@denx.de> 7284 7285commit 4649913ea5f440d756d150a6fdf2fb2e8ecb75fd 7286Author: Stefan Roese <sr@denx.de> 7287Date: Tue Oct 27 16:11:26 2009 +0100 7288 7289 ppc4xx: Add common ppc4xx linker script 7290 7291 This linker script can be used by all PPC4xx platforms. It works for 7292 PPC405 and PPC440 platforms. Boards which need a board specific linker 7293 script can override this default linker script in board/*/config.mk. 7294 7295 Signed-off-by: Stefan Roese <sr@denx.de> 7296 7297commit b1245dd3c6409c743f6c2768d00e909a4c8cc4ea 7298Author: Stefan Roese <sr@denx.de> 7299Date: Tue Oct 27 16:16:13 2009 +0100 7300 7301 ppc4xx: Add custom linker script to board/*/config.mk 7302 7303 These boards have special linker scripts right now. We can't use the 7304 common 4xx linker script here. So overrride the linker script (LDSCRIPT) 7305 in board/*/config.mk and choose the board specific version. 7306 7307 Signed-off-by: Stefan Roese <sr@denx.de> 7308 7309commit ceaa62a6f0237a8ddd2a5f659e6535fcd054332f 7310Author: Stefan Roese <sr@denx.de> 7311Date: Tue Oct 27 15:57:24 2009 +0100 7312 7313 ppc4xx: Fix problems in some ppc4xx board Makefiles 7314 7315 Some 4xx Makefiles didn't add $(SOBJ) to their board library. This was 7316 no till now problem, since those boards included this object (init.o 7317 most of the time) directly from their linker scripts. This patch clean 7318 this up, so that all objects are now collected in the board library. This 7319 is in preparation for the upcoming PPC4xx linker script consolidation. 7320 7321 Signed-off-by: Stefan Roese <sr@denx.de> 7322 7323commit a0ff1f129a0e1a466e4f8568fce12b7b84578e4c 7324Author: Stefan Roese <sr@denx.de> 7325Date: Tue Oct 27 11:20:53 2009 +0100 7326 7327 ppc4xx: sc3: Remove unreferenced external declarations from sc3.h 7328 7329 Signed-off-by: Stefan Roese <sr@denx.de> 7330 Acked-by: Heiko Schocher <hs@denx.de> 7331 7332commit 7ec1fedda6ac551c67f2214ced94e4b49b6680e4 7333Author: Stefan Roese <sr@denx.de> 7334Date: Tue Oct 27 11:46:23 2009 +0100 7335 7336 mkconfig: Create board directory (CONFIG_BOARDDIR) in include/config.h 7337 7338 This patch extends the mkconfig script to automatically create a define 7339 for the board directory in include/config.h: 7340 7341 #define CONFIG_BOARDDIR board/amcc/canyonlands 7342 7343 This is needed for the upcoming PPC4xx linker script consolidation, 7344 where the PPC440 platforms need to include a board specific file in 7345 the common linker script. 7346 7347 Signed-off-by: Stefan Roese <sr@denx.de> 7348 7349commit ff88229549e08fdd3f9127c1cc4db11a3576250f 7350Author: Dave Liu <daveliu@freescale.com> 7351Date: Sat Oct 31 07:59:55 2009 +0800 7352 7353 ppc/85xx: Fix misc L2 cache enabling bug 7354 7355 We need loop-check the flash clear lock and enable bit for L2 cache. 7356 7357 Signed-off-by: Dave Liu <daveliu@freescale.com> 7358 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7359 7360commit cd12f615e4dd1dd24caab93f4157894783c6c1c0 7361Author: Wolfgang Grandegger <wg@denx.de> 7362Date: Fri Oct 23 12:03:16 2009 +0200 7363 7364 mpc52xx: add support for the IPEK01 board 7365 7366 This patch adds support for the board IPEK01 based on the MPC5200. 7367 The Futjitsu Lime graphics controller is configured in 16 bpp mode. 7368 7369 Signed-off-by: Wolfgang Grandegger <wg@denx.de> 7370 7371commit 229b6dce675c729ee0ea2d7b61fbcda89b23b6b8 7372Author: Wolfgang Grandegger <wg@denx.de> 7373Date: Fri Oct 23 12:03:15 2009 +0200 7374 7375 video: mb862xx: add option VIDEO_FB_16BPP_WORD_SWAP for IPEK01 7376 7377 In 16 bpp mode, the new IPEK01 board only requires swapping of D16 words 7378 for D32 accesses due to the diffferent connecting to the GDC bus. This 7379 patch introduces the configuration option VIDEO_FB_16BPP_WORD_SWAP, 7380 which should be set for all board using the mb862xx in 16 bpp mode. For 7381 the IPEK01, VIDEO_FB_16BPP_PIXEL_SWAP should not be set. 7382 7383 Signed-off-by: Wolfgang Grandegger <wg@denx.de> 7384 7385commit 5d16ca87100ea58c93c46b9f0264981eaed49568 7386Author: Anatolij Gustschin <agust@denx.de> 7387Date: Fri Oct 23 12:03:14 2009 +0200 7388 7389 video: mb862xx: add option CONFIG_VIDEO_MB862xx_ACCEL for 32bpp mode 7390 7391 The new IPEK01 board can use the 32 bpp mode for the Lime graphics 7392 controller. For this mode, video accelaration does not work. This patch 7393 makes the accelaration configurable via CONFIG_VIDEO_MB862xx_ACCEL, 7394 which is enabled for the lwmon5 and the socrates board for backward 7395 compatibility. 7396 7397 Signed-off-by: Anatolij Gustschin <agust@denx.de> 7398 Signed-off-by: Wolfgang Grandegger <wg@denx.de> 7399 7400commit c28d3bbe963f4c57937d6fdc1dd63cd3562c147c 7401Author: Wolfgang Grandegger <wg@denx.de> 7402Date: Fri Oct 23 12:03:13 2009 +0200 7403 7404 video: mb862xx: improve board-specific Lime configuration 7405 7406 To avoid board-specific code accessing the mb862xx registers directly, 7407 the public function mb862xx_probe() has been introduced. Furthermore, 7408 the "Change of Clock Frequency" and "Set Memory I/F Mode" registers 7409 are now defined by CONFIG_SYS_MB862xx_CCF and CONFIG_SYS_MB862xx__MMR, 7410 respectively. The BSPs for the socrates and lwmon5 boards have been 7411 adapted accordingly. 7412 7413 Signed-off-by: Wolfgang Grandegger <wg@denx.de> 7414 7415commit 08ea550eef310e9d59d83f3cfd57a902373bf17f 7416Author: Valentin Yakovenkov <yakovenkov@niistt.ru> 7417Date: Mon Oct 26 18:49:06 2009 -0400 7418 7419 new PCA9564 i2c bridge driver 7420 7421 Signed-off-by: Valentin Yakovenkov <yakovenkov@niistt.ru> 7422 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 7423 7424commit 08a1c6258c2a04cead33eac50d96ea89979dcb94 7425Author: Mike Frysinger <vapier@gentoo.org> 7426Date: Wed Oct 14 19:27:27 2009 -0400 7427 7428 Blackfin: TWI/I2C: implement bus speed get/set functions 7429 7430 While we're here, improve the speed calculation a bit to match the HRM. 7431 7432 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 7433 7434commit 3814ea4f0002536ac592480b2cdafa319a16e329 7435Author: Mike Frysinger <vapier@gentoo.org> 7436Date: Wed Oct 14 19:27:26 2009 -0400 7437 7438 Blackfin: TWI/I2C: add timeout to transfer 7439 7440 The current transfer code relies on ctrlc() to abort transfers, but this 7441 requires user interactivity. Naturalize the process with a timeout. 7442 7443 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 7444 7445commit 59434fe243962758742af5cb8e2ced976e17c302 7446Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 7447Date: Fri Oct 30 10:16:27 2009 +0900 7448 7449 sh: Update lowlevel_init.S of espt-giga 7450 7451 There was the point that did not use write macro. 7452 Change to write macro. 7453 7454 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 7455 7456commit f1cae1969d9e971fb72827a5731ce7e752464aa2 7457Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 7458Date: Fri Oct 30 10:01:25 2009 +0900 7459 7460 sh: Move some defs to convince 'pcrel too far' 7461 7462 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 7463 Signed-off-by: Takashi Yoshii <yoshii.takashi@gmail.com> 7464 7465commit 0f9eaf4b323ea0ca95944b84c7465b81ba575514 7466Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 7467Date: Thu Oct 15 13:36:34 2009 +0900 7468 7469 sh: Remove malloc_bin_reloc from lib_sh, lib_nios2 and lib_nios. 7470 7471 By "arm/microblaze/nios/nios2/sh: Remove relocation fixups" 7472 (commit: 0630535e2d062dd73c1ceca5c6125c86d1127a49", doesn't need 7473 malloc_bin_reloc function. This commit remove this. 7474 7475 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 7476 7477commit 0775437293a6963cb21244dfae6978cbf67c6bfe 7478Author: Ben Warren <biggerbadderben@gmail.com> 7479Date: Wed Oct 21 21:53:39 2009 -0700 7480 7481 Fix DM9000 MAC address handling 7482 7483 Proper behavior is to pull MAC address from NVRAM in the initialization() an 7484 stuff it in dev->address, then program the device from dev->address in 7485 the init() function. 7486 7487 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 7488 7489commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a 7490Author: Wolfgang Denk <wd@denx.de> 7491Date: Wed Oct 28 22:07:56 2009 +0100 7492 7493 sbc8349: fix incorrect comment 7494 7495 The comment for the BR0_PRELIM port size initialization incorrectly 7496 stated 32 bit, while it's actually 16 bit. The code is correct. 7497 7498 Reported-by: Guenter Koellner <guenter.koellner@nsn.com> 7499 Signed-off-by: Wolfgang Denk <wd@denx.de> 7500 7501commit a38f85e180a30b6225808828ded1017b1a5418c6 7502Author: Sandeep Paulraj <s-paulraj@ti.com> 7503Date: Wed Oct 28 11:05:03 2009 -0400 7504 7505 Fix Compliation warning for TNY-A9260 and TNY-A9G20 7506 7507 The patch fixes a compilation warning by defining 7508 CONFIG_SYS_64BIT_VSPRINTF in the config file 7509 7510 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 7511 7512commit 264e42ee54f1d322805d9068168fd362b413fd09 7513Author: Sandeep Paulraj <s-paulraj@ti.com> 7514Date: Wed Oct 28 11:04:53 2009 -0400 7515 7516 Fix Compliation warning for SBC35-A9G20 board 7517 7518 The patch fixes a compilation warning by defining 7519 CONFIG_SYS_64BIT_VSPRINTF in the config file 7520 7521 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 7522 7523commit 353462f6ff9769091fb644d44d8025f20a4192d9 7524Author: Eric Millbrandt <emillbrandt@coldhaus.com> 7525Date: Wed Oct 28 09:37:33 2009 -0500 7526 7527 galaxy5200: Add default environment variables 7528 7529 Extend bootdelay to 10 seconds. Set boot retry time to 120 seconds and use 7530 reset to retry. Define default bootcommand and bootargs for production. 7531 7532 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com> 7533 7534commit fa36ae790eb10ce70935f9a78f07703719dca422 7535Author: Stefan Roese <sr@denx.de> 7536Date: Tue Oct 27 15:15:55 2009 +0100 7537 7538 cfi: Add weak default function for flash_cmd_reset() 7539 7540 Currently the CFI driver issues both AMD and Intel reset commands. 7541 This is because the driver doesn't know yet which chips are connected. 7542 This dual reset seems to cause problems with the M29W128G chips as 7543 reported by Richard Retanubun. This patch now introduces a weak default 7544 function for the CFI reset command, still with both resets. This can 7545 be overridden by a board specific version if necessary. 7546 7547 Signed-off-by: Stefan Roese <sr@denx.de> 7548 Cc: Richard Retanubun <RichardRetanubun@ruggedcom.com> 7549 7550commit 4946775c6db52dba28f72ba3525764b54f1d4593 7551Author: Wolfgang Denk <wd@denx.de> 7552Date: Wed Oct 28 00:49:47 2009 +0100 7553 7554 Coding Style cleanup; update CHANGELOG, prepare -rc1 7555 7556 Signed-off-by: Wolfgang Denk <wd@denx.de> 7557 7558commit 246c69225c7b962d5c93e92282b78ca9fc5fefee 7559Author: Peter Tyser <ptyser@xes-inc.com> 7560Date: Sun Oct 25 15:12:56 2009 -0500 7561 7562 Add 'editenv' command 7563 7564 The editenv command can be used to edit an environment variable. 7565 Editing an environment variable is useful when one wants to tweak an 7566 existing variable, for example fix a typo or change the baudrate in the 7567 'bootargs' environment variable. 7568 7569 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 7570 7571commit b0fa8e50632a628766db23f5c884ec63f1469552 7572Author: Peter Tyser <ptyser@xes-inc.com> 7573Date: Sun Oct 25 15:12:55 2009 -0500 7574 7575 setenv(): Delete 0-length environment variables 7576 7577 Previously setenv() would only delete an environment variable if it 7578 was passed a NULL string pointer as a value. It should also delete an 7579 environment variable when it encounters a valid string pointer of 7580 0-length. 7581 7582 This change/fix is generally useful and is necessary for the upcoming 7583 "editenv" command. 7584 7585 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 7586 7587commit ecc5500ee487170d8af6ff893fd1e0082380a01a 7588Author: Peter Tyser <ptyser@xes-inc.com> 7589Date: Sun Oct 25 15:12:54 2009 -0500 7590 7591 readline(): Add ability to modify a string buffer 7592 7593 If the 'buf' parameter is a non-0-length string, its contents will be 7594 edited. Previously, the initial contents of 'buf' were ignored and the 7595 user entered its contents from scratch. 7596 7597 This change is necessary to support the upcoming "editenv" command but 7598 could also be used for future commands which require a user to modify 7599 an existing string. 7600 7601 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 7602 7603commit f923943843cd617d681387e7fe81a48060cc6401 7604Author: Peter Tyser <ptyser@xes-inc.com> 7605Date: Sun Oct 25 15:12:53 2009 -0500 7606 7607 cread_line(): Remove unused variables 7608 7609 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 7610 7611commit e491a71e578e93bd3b2f8f20d8ef8f111c98010d 7612Author: Peter Tyser <ptyser@xes-inc.com> 7613Date: Sun Oct 25 15:12:52 2009 -0500 7614 7615 Check for NULL prompt in readline_into_buffer() 7616 7617 Previously, passing readline() or readline_into_buffer() a NULL 'prompt' 7618 parameter would result in puts() printing garbage when 7619 CONFIG_CMDLINE_EDITING was enabled. 7620 7621 Note that no board currently triggers this bug. Enabling 7622 CONFIG_CMDLINE_EDITING on some boards (eg bab7xx) would result in 7623 the bug appearing. This change is only intended to prevent someone 7624 from running into this issue in the future. 7625 7626 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 7627 7628commit 16d1c10783660f3fdbc3c19141f42f3b0d1834d3 7629Author: Wolfgang Denk <wd@denx.de> 7630Date: Sun Oct 25 23:00:09 2009 +0100 7631 7632 drivers/net/phy/miiphybb.c: fix warning: no newline at end of file 7633 7634 Add missing newline. 7635 7636 Signed-off-by: Wolfgang Denk <wd@denx.de> 7637 Cc: Luigi Mantellini <luigi.mantellini@idf-hit.com> 7638 Cc: Ben Warren <biggerbadderben@gmail.com> 7639 7640commit a747a7f31059b9069e97c78bba5496409c33aa05 7641Author: Wolfgang Denk <wd@denx.de> 7642Date: Tue Oct 27 00:03:32 2009 +0100 7643 7644 Revert "env: only build env_embedded and envcrc when needed" 7645 7646 Breaks building on many boards, and no really clean fix available yet. 7647 7648 This reverts commit 6dab6add2d8ee80905234b326abc3de11be1d178. 7649 7650commit 3fca80375981fe83d4674a0267183b469a1ea7ff 7651Author: Anton Vorontsov <avorontsov@ru.mvista.com> 7652Date: Thu Oct 15 17:47:16 2009 +0400 7653 7654 mpc85xx: Configure QE USB for MPC8569E-MDS boards 7655 7656 Setup QE pin multiplexing for USB function, configure needed BCSRs 7657 and add some fdt fixups. 7658 7659 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 7660 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7661 7662commit 14809b6c21c89dd65abaf3fea7627fb5ea0f78a3 7663Author: Anton Vorontsov <avorontsov@ru.mvista.com> 7664Date: Thu Oct 15 17:47:13 2009 +0400 7665 7666 mpc85xx: Configure QE UART for MPC8569E-MDS boards 7667 7668 To make QE UART usable by Linux we should setup pin multiplexing 7669 and turn UCC2 Ethernet node into UCC2 QE UART node. 7670 7671 Also, QE UART is mutually exclusive with UART0, so we can't enable 7672 it if eSDHC is in 4-bits mode on pilot boards, or if it's a prototype 7673 board with eSDHC in 1- or 4-bits mode. 7674 7675 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 7676 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7677 7678commit 70d665b1d230b9575a647948e8db3da1e6743e5c 7679Author: Anton Vorontsov <avorontsov@ru.mvista.com> 7680Date: Thu Oct 15 17:47:11 2009 +0400 7681 7682 mpc85xx: Setup QE pinmux for SPI Flash on MPC8569E-MDS boards 7683 7684 SPI Flash (M25P40) is connected to the SPI1 bus, we need a few 7685 qe_iop entries to actually enable SPI1 on these boards. 7686 7687 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 7688 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7689 7690commit 65dec3b4599a17e83ec69dfd059e4ea1e795ef37 7691Author: Anton Vorontsov <avorontsov@ru.mvista.com> 7692Date: Thu Oct 15 17:47:09 2009 +0400 7693 7694 mpc85xx: Setup SRIO memory region LAW for MPC8569E-MDS boards 7695 7696 This patch sets memory window for Serial RapidIO on MPC8569E-MDS 7697 boards. 7698 7699 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 7700 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7701 7702commit a29155e12286cc5ec2df72c1cab28e3659bfdad5 7703Author: Anton Vorontsov <avorontsov@ru.mvista.com> 7704Date: Thu Oct 15 17:47:08 2009 +0400 7705 7706 mpc85xx: Add eLBC NAND support for MPC8569E-MDS boards 7707 7708 Simply add some defines, and adjust TLBe setup to include some 7709 space for eLBC NAND. 7710 7711 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 7712 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7713 7714commit 7f52ed5ef1b490da282ace3316be381a6abf96a5 7715Author: Anton Vorontsov <avorontsov@ru.mvista.com> 7716Date: Thu Oct 15 17:47:06 2009 +0400 7717 7718 mpc85xx: Add eSDHC support for MPC8569E-MDS boards 7719 7720 eSDHC is mutually exlusive with UART0 (in 4-bits mode) and I2C2 7721 (in 1-bit mode). When eSDHC is used, we should switch u-boot console to 7722 UART1, and make the proper device-tree fixups. 7723 7724 Because of an erratum in prototype boards it is impossible to use eSDHC 7725 without disabling UART0 (which makes it quite easy to 'brick' the board 7726 by simply issung 'setenv hwconfig esdhc', and not able to interact with 7727 U-Boot anylonger). 7728 7729 So, but default we assume that the board is a prototype, which is a most 7730 safe assumption. There is no way to determine board revision from a 7731 register, so we use hwconfig. 7732 7733 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 7734 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7735 7736commit 48618126f78f05042dae428811809b594f747eb9 7737Author: Peter Tyser <ptyser@xes-inc.com> 7738Date: Fri Oct 23 15:55:48 2009 -0500 7739 7740 xpedite5370: Enable multi-core support 7741 7742 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 7743 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7744 7745commit 5ccd29c3679b3669b0bde5c501c1aa0f325a7acb 7746Author: Peter Tyser <ptyser@xes-inc.com> 7747Date: Fri Oct 23 15:55:47 2009 -0500 7748 7749 85xx: MP Boot Page Translation update 7750 7751 This change has 3 goals: 7752 - Have secondary cores be released into spin loops at their 'true' 7753 address in SDRAM. Previously, secondary cores were put into spin 7754 loops in the 0xfffffxxx address range which required that boot page 7755 translation was always enabled while cores were in their spin loops. 7756 7757 - Allow the TLB window that the primary core uses to access the 7758 secondary cores boot page to be placed at any address. Previously, a 7759 TLB window at 0xfffff000 was always used to access the seconary cores' 7760 boot page. This TLB address requirement overlapped with other 7761 peripherals on some boards (eg XPedite5370). By default, the boot 7762 page TLB will still use the 0xfffffxxx address range, but this can be 7763 overridden on a board-by-board basis by defining a custom 7764 CONFIG_BPTR_VIRT_ADDR. Note that the TLB used to map the boot page 7765 remains in use while U-Boot executes. Previously it was only 7766 temporarily used, then restored to its initial value. 7767 7768 - Allow Boot Page Translation to be disabled on bootup. Previously, 7769 Boot Page Translation was always left enabled after secondary cores 7770 were brought out of reset. This caused the 0xfffffxxx address range 7771 to somewhat "magically" be translated to an address in SDRAM. Some 7772 boards may not want this oddity in their memory map, so defining 7773 CONFIG_MPC8xxx_DISABLE_BPTR will turn off Boot Page Translation after 7774 the secondary cores are initialized. 7775 7776 These changes are only applicable to 85xx boards with CONFIG_MP defined. 7777 7778 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 7779 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7780 7781commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc 7782Author: Vivek Mahajan <vivek.mahajan@freescale.com> 7783Date: Tue Oct 27 12:18:55 2009 +0530 7784 7785 ppc/85xx/pci: fsl_pci_init: pcie agent mode support 7786 7787 Originally written by Jason Jin and Mingkai Hu for mpc8536. 7788 7789 When QorIQ based board is configured as a PCIe agent, then unlock/enable 7790 inbound PCI configuration cycles and init a 4K inbound memory window; 7791 so that a PCIe host can access the PCIe agents SDRAM at address 0x0 7792 7793 * Supported in fsl_pci_init_port() after adding pcie_ep as a param 7794 * Revamped copyright in drivers/pci/fsl_pci_init.c 7795 * Mods in 85xx based board specific pci init after this change 7796 7797 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 7798 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7799 7800commit 273a28ad9ef59dcfcd4c056ec1f61f1e0896cfaa 7801Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 7802Date: Tue Oct 27 09:36:38 2009 +0530 7803 7804 85xx/p1_p2_rdb: Fixing DDR configuration for 800MHz data rate 7805 7806 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 7807 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7808 7809commit 924024c396761c267b948f38d78e9905f2036501 7810Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 7811Date: Tue Oct 27 09:26:55 2009 +0530 7812 7813 85xx/p1_p2rdb: Fix crash while configuring 32 bit DDR i/f for P1020RDB. 7814 7815 The data being modified was in NOR flash which caused the crash. 7816 7817 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 7818 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7819 7820commit 2c0c58b92dbb68007061bdc0edd23bdf142efebf 7821Author: Sergey Mironov <ierton@gmail.com> 7822Date: Wed Sep 23 16:47:38 2009 +0400 7823 7824 Fix bug in jumptable call stubs for SPARC. 7825 7826 Signed-off-by: Sergey Mironov <ierton@gmail.com> 7827 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 7828 7829commit 3e303f748cf57fb23e8ec95ab7eac0074be50e2b 7830Author: Anton Vorontsov <avorontsov@ru.mvista.com> 7831Date: Thu Oct 15 17:47:04 2009 +0400 7832 7833 fdt_support: Add multi-serial support for stdout fixup 7834 7835 Currently fdt_fixup_stdout() is using hard-coded CONFIG_CONS_INDEX 7836 constant. With multi-serial support, the CONS_INDEX may no longer 7837 represent actual console, so we should try to extract port number 7838 from the current stdio device name instead of always hard-coding the 7839 constant value. 7840 7841 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 7842 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 7843 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7844 7845commit da0e5f7ee828f246d85997486fff308837069453 7846Author: Leon Woestenberg <leon.woestenberg@gmail.com> 7847Date: Mon Oct 26 10:03:32 2009 +0100 7848 7849 ppc/85xx: Fix crashes due to generation of SPE instruction 7850 7851 U-Boot crashed on the last instruction: 7852 7853 int parse_stream_outer(struct in_str *inp, int flag) 7854 { 7855 effa4784: 94 21 ff 38 stwu r1,-200(r1) 7856 effa4788: 7c 08 02 a6 mflr r0 7857 effa478c: 42 9f 00 05 bcl- 20,4*cr7+so,effa4790 <parse_stream_outer+0xc> 7858 effa4790: 7d 80 00 26 mfcr r12 7859 effa4794: 13 c1 b3 21 evstdd r30,176(r1) 7860 7861 ...which is a SPE instruction, although -mno-spe was used. 7862 7863 tmp/cross/ppce500v2/bin/powerpc-angstrom-linux-gnuspe-gcc --version 7864 powerpc-angstrom-linux-gnuspe-gcc (GCC) 4.3.3 7865 7866 Seems to be a known issue (since 2008-04?!) 7867 7868 Googled some, turns out this patch/workaround works for me on MPC8536DS. 7869 7870 See http://gcc.gnu.org/ml/gcc-patches/2008-04/msg00311.html for more info 7871 7872 Signed-off-by: Leon Woestenberg <leon@sidebranch.com> 7873 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7874 7875commit 654ea1f3184235694306ddc5874baa27ad3018fe 7876Author: Dave Liu <daveliu@freescale.com> 7877Date: Thu Oct 22 00:10:23 2009 -0500 7878 7879 ppc/85xx: Make L2 support more robust 7880 7881 According the user manual, we need loop-check the L2 enable bit set. 7882 7883 Signed-off-by: Dave Liu <daveliu@freescale.com> 7884 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7885 7886commit 613ad28c3da4c7fc6336ef9d94993b25a5d0586e 7887Author: Kumar Gala <galak@kernel.crashing.org> 7888Date: Mon Oct 26 21:21:25 2009 -0500 7889 7890 ppc/85xx: Fix compiler warning in nand_spl/.../p1_p2_rdb/nand_boot.c 7891 7892 nand_boot.c: In function 'board_init_f': 7893 nand_boot.c:44: warning: 'sys_clk' may be used uninitialized in this function 7894 7895 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7896 7897commit e8967d96a0e8d09d91a3b7bd292746996dd8e7ac 7898Author: Kumar Gala <galak@kernel.crashing.org> 7899Date: Mon Oct 26 21:18:33 2009 -0500 7900 7901 ppc/85xx: Fix building NAND_SPL out of tree 7902 7903 We need to source files to exist in the O=<FOO> nand_spl dir when 7904 we build out of tree. 7905 7906 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7907 7908commit f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f 7909Author: Matthias Fuchs <matthias.fuchs@esd.eu> 7910Date: Fri Oct 23 10:52:38 2009 +0200 7911 7912 License cleanup: Fix license header for some esd display configurations 7913 7914 These files were autogenerated by EPSON configuration tools. 7915 This patch replaces the autogenerated file headers by the GPL 7916 license notice. 7917 7918 This change is done with the explicit permission 7919 of Epson Research & Development / IC Software Development. 7920 7921 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 7922 7923commit 4166ee58d30ada7b298b9c941067f0341c2dccbe 7924Author: Mike Frysinger <vapier@gentoo.org> 7925Date: Fri Oct 9 17:12:44 2009 -0400 7926 7927 sf: add GPL-2 license info 7928 7929 Some of the new spi flash files were missing explicit license lines. 7930 7931 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 7932 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 7933 7934commit d535a493004fb701f131b132402a7704f9c9342d 7935Author: Kumar Gala <galak@kernel.crashing.org> 7936Date: Wed Oct 21 23:29:51 2009 -0500 7937 7938 fdt: Fix fdt padding issue for initrd mem_rsv 7939 7940 Its possible that we end up with a device tree that happens to be a 7941 particular size that after we call fdt_resize() we don't have any 7942 space left for the initrd mem_rsv. 7943 7944 Fix this be adding a second mem_rsv into the size calculation. We 7945 had one to cover the fdt itself and we have the potential of adding 7946 a second for the initrd. 7947 7948 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 7949 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 7950 7951commit 4bc3d2afb380e78fdbb9c501d9a8da6d59eb178e 7952Author: Steve Sakoman <sakoman@gmail.com> 7953Date: Tue Oct 20 18:21:18 2009 +0200 7954 7955 ARM: OMAP3: Refactors the SM911x driver 7956 7957 Move the test up in the function to not hang on systems without ethernet. 7958 7959 Signed-off-by: Steve Sakoman <sakoman@gmail.com> 7960 Acked-by: Ben Warren <biggerbadderben@gmail.com> 7961 7962commit f3807374787e4394efb767e2e8527887f57e51b8 7963Author: Minkyu Kang <mk7.kang@samsung.com> 7964Date: Thu Oct 15 11:19:15 2009 +0900 7965 7966 s5pc1xx: SMDKC100: fix compile warnings 7967 7968 fix the following compile warnings 7969 warning: dereferencing type-punned pointer will break strict-aliasing rules 7970 7971 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 7972 7973commit 8003c361deec3ee651451662efd05352f1abdd40 7974Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 7975Date: Tue Oct 6 08:44:22 2009 +0200 7976 7977 arm926ejs: 8-byte align stack to avoid LDRD/STRD problems 7978 7979 U-boot for Marvell Kirkwood boards no longer work after the EABI changes 7980 introduced in commit f772acf8a584067033eff1e231fcd1fb3a00d3d9. This 7981 turns out to be caused by a stack alignment issue. The armv5te 7982 instructions ldrd/strd instructions require 8-byte alignment to work 7983 properly (otherwise undefined behavior). 7984 7985 Tested on an OpenRD base board, where both printouts and ubifs stuff now 7986 works. 7987 7988 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 7989 7990commit e63e5904b48528f3f3cc98317df6fc62fab25bf9 7991Author: Tom Rix <Tom.Rix@windriver.com> 7992Date: Sat Oct 17 12:41:06 2009 -0500 7993 7994 TI OMAP3 SDP3430: Initial Support 7995 7996 Start of support of 7997 Texas Instruments Software Development Platform(SDP) 7998 for OMAP3430 - SDP3430 7999 8000 Highlights of this platform are:
8001 Flash Memory devices: 8002 Sibley NOR, Micron 8bit NAND and OneNAND 8003 Connectivity: 8004 3 UARTs and expanded 4 UART ports + IrDA 8005 Ethernet, USB 8006 Other peripherals: 8007 TWL5030 PMIC+Audio+Keypad 8008 VGA display 8009 Expansion ports: 8010 Memory devices plugin boards (PISMO) 8011 Connectivity board for GPS,WLAN etc. 8012 Completely configurable boot sequence and device mapping 8013 etc. 8014 8015 Support default jumpering and: 8016 - UART1/ttyS0 console(legacy sdp3430 u-boot) 8017 - UART3/ttyS2 console (matching other boards, 8018 and SDP HW docs) 8019 - Ethernet 8020 - mmc0 8021 - NOR boot 8022 8023 Currently the UART1 is enabled by default. for 8024 compatibility with other OMAP3 u-boot platforms, 8025 enable the #define of CONSOLE_J9. 8026 8027 Conflicts: 8028 8029 Makefile 8030 8031 Fixed the conflict with smdkc100_config by moving omap_sdp3430_config 8032 to it is alphabetically sorted location above zoom1. 8033 8034 Signed-off-by: David Brownell <david-b@pacbell.net> 8035 Signed-off-by: Nishanth Menon <nm@ti.com> 8036 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 8037 8038commit a4474ff8629be5f28aefb8a9f48d4411d62fb0d2 8039Author: Sandeep Paulraj <s-paulraj@ti.com> 8040Date: Tue Oct 13 19:35:11 2009 -0400 8041 8042 TI DaVinci: Adding Copyright for DM365 EVM 8043 8044 Forgot to add Copyright while submitting the patch. 8045 This patch adds the copyright. 8046 8047 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8048 8049commit 11b0102218bbb50ac5c04f1521f2a22ed4e90cf1 8050Author: Sandeep Paulraj <s-paulraj@ti.com> 8051Date: Tue Oct 13 12:32:32 2009 -0400 8052 8053 TI DaVinci: Fix DM6467 EVM Compilation Warning 8054 8055 Due to new TI boards being added to U-Boot, the hardware.h 8056 is getting very messy. The warning being fixed is due to 8057 the EMIF addresses being redefined. 8058 8059 The long term solution(after 2009.11) to this is to 8060 have SOC specific header files. 8061 8062 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8063 8064commit fac1ef4ba685606bf28349d18e050ea08b50e669 8065Author: Sandeep Paulraj <s-paulraj@ti.com> 8066Date: Tue Oct 13 12:01:52 2009 -0400 8067 8068 TI DaVinci: DM355 Leopard: Fix compilation warning 8069 8070 We get a compliation warning when we enable the NAND driver 8071 for DM355 leopard. The waring we get is that we have 8072 an implicit declaration of davinci_nand_init. 8073 8074 It is fixed by including the asm/arch/nand_defs.h header file 8075 8076 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8077 8078commit f8a812aa656bc34622303a26fa5003d19c34aeed 8079Author: Nishanth Menon <nm@ti.com> 8080Date: Tue Oct 13 12:49:55 2009 -0400 8081 8082 TI OMAP3: make gpmc_config as const 8083 8084 gpmc_config should not be a variant as it is board specific 8085 hence make it a const parameter 8086 8087 Fixes issues identified by Dirk: 8088 - build issue for zoom2 8089 - warnings for all other OMAP3 platforms using nand/onenand etc 8090 8091 Signed-off-by: Nishanth Menon <nm@ti.com> 8092 8093commit cfc25874624a328f53ad59b1206e2103f2e62d74 8094Author: Stefan Roese <sr@denx.de> 8095Date: Mon Oct 19 16:19:36 2009 +0200 8096 8097 ppc4xx: Sequoia: Add chip_config command 8098 8099 This patch removes the Sequoia "bootstrap" command and replaces it 8100 with the now common command "chip_config". 8101 8102 Please note that the patches with the dynamic PCI sync clock 8103 configuration have to be applied, before this one should go in. 8104 This is because Sequoia has 2 different bootstrap EEPROMs, and 8105 the old bootstrap command configured different values depending 8106 on the detected PCI async clock (33 vs. 66MHz). With the PCI sync 8107 clock patches, this is not necessary anymore. The PCI sync clock 8108 will be configured correctly on-the-fly now. 8109 8110 Signed-off-by: Stefan Roese <sr@denx.de> 8111 8112commit c85b58397030e25e146ccf5085c86221c40c53b3 8113Author: Stefan Roese <sr@denx.de> 8114Date: Mon Oct 19 14:14:08 2009 +0200 8115 8116 ppc4xx: Yosemite/Yellowstone: Check and reconfigure the PCI sync clock 8117 8118 This patch now uses the 440EP(x)/GR(x) function to check and dynamically 8119 reconfigure the PCI sync clock. 8120 8121 Signed-off-by: Stefan Roese <sr@denx.de> 8122 8123commit 23c51a2d6393cd3be9eb62cb42d92138ff6db8a9 8124Author: Stefan Roese <sr@denx.de> 8125Date: Mon Oct 19 14:10:50 2009 +0200 8126 8127 ppc4xx: Sequoia/Rainer: Check and reconfigure the PCI sync clock 8128 8129 This patch now uses the 440EP(x)/GR(x) function to check and dynamically 8130 reconfigure the PCI sync clock. 8131 8132 Signed-off-by: Stefan Roese <sr@denx.de> 8133 8134commit 08c6a2628478ace808b3767db17e4148cac5a7fb 8135Author: Stefan Roese <sr@denx.de> 8136Date: Mon Oct 19 14:44:11 2009 +0200 8137 8138 ppc4xx: Print PCI synchronous clock frequency upon bootup 8139 8140 Some 4xx variants (e.g. 440EP(x)/GR(x)) have an internal 8141 synchronous PCI clock. Knowledge about the currently configured 8142 value might be helpful. So let's print it out upon bootup. 8143 8144 Signed-off-by: Stefan Roese <sr@denx.de> 8145 8146commit 5e47f9535f53fd4cc05f32fb6166870f976fbb4e 8147Author: Stefan Roese <sr@denx.de> 8148Date: Mon Oct 19 14:06:23 2009 +0200 8149 8150 ppc4xx: Add function to check and dynamically change PCI sync clock 8151 8152 PPC440EP(x)/PPC440GR(x): 8153 In asynchronous PCI mode, the synchronous PCI clock must meet 8154 certain requirements. The following equation describes the 8155 relationship that must be maintained between the asynchronous PCI 8156 clock and synchronous PCI clock. Select an appropriate PCI:PLB 8157 ratio to maintain the relationship: 8158 8159 AsyncPCIClk - 1MHz <= SyncPCIclock <= (2 * AsyncPCIClk) - 1MHz 8160 8161 This patch now adds a function to check and reconfigure the sync 8162 PCI clock to meet this requirement. This is in preparation for 8163 some AMCC boards (Sequoia/Rainier and Yosemite/Yellowstone) using this 8164 function to not violate the PCI clocking rules. 8165 8166 Signed-off-by: Stefan Roese <sr@denx.de> 8167 8168commit 92b8964bed0d1b779d9e26be4e16755b5c635415 8169Author: Stefan Roese <sr@denx.de> 8170Date: Fri Oct 16 10:01:09 2009 +0200 8171 8172 ppc4xx: Update flash size in reg property of the NOR flash node 8173 8174 Till now only the ranges in the ebc node are updated with the values 8175 currently configured in the PPC4xx EBC controller. With this patch now 8176 the NOR flash size is updated in the device tree blob as well. This is 8177 done by scanning the compatible nodes "cfi-flash" and "jedec-flash" 8178 for the correct chip select number. 8179 8180 This size fixup is enabled for all AMCC eval board right now. Other 8181 4xx boards may want to enable it as well, if this problem with multiple 8182 NOR FLASH sizes exists. 8183 8184 Signed-off-by: Stefan Roese <sr@denx.de> 8185 Cc: Wolfgang Denk <wd@denx.de> 8186 8187commit 30d45c0d3ea2231f9131276ea113595959a0720e 8188Author: Stefan Roese <sr@denx.de> 8189Date: Wed Oct 21 11:59:52 2009 +0200 8190 8191 fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb 8192 8193 This function can be used to update the size in the "reg" property 8194 of the NOR FLASH device nodes. This is necessary for boards with 8195 non-fixed NOR FLASH sizes. 8196 8197 Signed-off-by: Stefan Roese <sr@denx.de> 8198 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 8199 Acked-by: Wolfgang Denk <wd@denx.de> 8200 8201commit 76706cb86b1c76954ff5353db6757ab99cfd95fb 8202Author: Wolfgang Denk <wd@denx.de> 8203Date: Tue Oct 20 23:12:13 2009 +0200 8204 8205 cpu/ppc4xx/fdt.c: avoid strcpy() to constant string 8206 8207 strcpy() was iused with the target address being a pointer to a 8208 constant string, which potentially is read-only. Use a (writable) 8209 array of characters instead. 8210 8211 Signed-off-by: Wolfgang Denk <wd@denx.de> 8212 Signed-off-by: Stefan Roese <sr@denx.de> 8213 8214commit 0e1ac981194aa0d92eff0934442cec48a4f57834 8215Author: Wolfgang Denk <wd@denx.de> 8216Date: Tue Oct 20 23:07:04 2009 +0200 8217 8218 cpu/ppc4xx/fdt.c: avoid strcpy() to constant string 8219 8220 strcpy() was iused with the target address being a pointer to a 8221 constant string, which potentially is read-only. Use a (writable) 8222 array of characters instead. 8223 8224 Signed-off-by: Wolfgang Denk <wd@denx.de> 8225 8226commit c55096c084308c08bf8891c190f90bdc3a232394 8227Author: Daniel Mack <daniel@caiaq.de> 8228Date: Wed Apr 8 13:23:38 2009 +0200 8229 8230 smc911x: add support for LAN9220 8231 8232 Signed-off-by: Daniel Mack <daniel@caiaq.de> 8233 Cc: Sascha Hauer <s.hauer@pengutronix.de> 8234 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 8235 8236commit f67066b6b0740b826ed862615c5ab022aaf4779a 8237Author: Mike Frysinger <vapier@gentoo.org> 8238Date: Sun Oct 18 20:43:14 2009 -0400 8239 8240 envcrc: check return value of fwrite() 8241 8242 Newer toolchains will often complain about unchecked fwrite(): 8243 envcrc.c:117: warning: ignoring return value of `fwrite´, declared 8244 with attribute warn_unused_result 8245 8246 So check the return value to silence the warnings. 8247 8248 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 8249 8250commit efd988ebaa241bab265b1511052350207cb7aaa0 8251Author: Wolfgang Denk <wd@denx.de> 8252Date: Mon Oct 19 09:18:57 2009 +0200 8253 8254 mcc200: fix build error 8255 8256 Fix compile error: 8257 include/configs/mcc200.h:401:6: error: #elif with no expression 8258 8259 Signed-off-by: Wolfgang Denk <wd@denx.de> 8260 8261commit 4e0539d2696992a5e32643a0c831e870cfe9a036 8262Author: Nishanth Menon <nm@ti.com> 8263Date: Tue Oct 13 12:47:39 2009 -0400 8264 8265 OMAP3: fix warnings when NAND/ONENAND is not used 8266 8267 Fix build warnings by putting specific used variables 8268 under required #ifdefs for removing: 8269 mem.c:227: warning: unused variable 'f_sec' 8270 mem.c:226: warning: unused variable 'f_off' 8271 mem.c:225: warning: unused variable 'size' 8272 mem.c:224: warning: unused variable 'base' 8273 mem.c:222: warning: unused variable 'gpmc_config' 8274 8275 Signed-off-by: Nishanth Menon <nm@ti.com> 8276 8277commit 73db0c71da365a2d101878ae3aeb8ff3545a1828 8278Author: Nishanth Menon <nm@ti.com> 8279Date: Tue Oct 13 12:47:24 2009 -0400 8280 8281 OMAP3: export enable_gpmc_cs_config to board files 8282 8283 Export enable_gpmc_cs_config into common header to 8284 prevent warning: 8285 8286 warning: implicit declaration of function 'enable_gpmc_cs_config' 8287 8288 Signed-off-by: Nishanth Menon <nm@ti.com> 8289 8290commit 96a27c6dc29abf11740632ecd8ccab607b209c5d 8291Author: Tom Rix <Tom.Rix@windriver.com> 8292Date: Mon Oct 12 12:07:40 2009 -0400 8293 8294 Zoom2 Fix serial gpmc setup 8295 8296 The offset to the chip select is incorrect. 8297 8298 The change 187af954cf7958c24efcf0fd62289bbdb4f1f24e, 8299 8300 omap3: embedd gpmc_cs into gpmc config struct 8301 8302 introduced a problem with the serial gpmc setup. 8303 8304 This patch reverts the chip select to its previous value. 8305 8306 The symptoms of this problem are that the Zoom2 8307 currently hangs. 8308 8309 This was run tested on Zoom2. 8310 8311 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 8312 8313commit 64d945abe8cffbacdaeca5f63b9b84f895d2d9ab 8314Author: Sandeep Paulraj <s-paulraj@ti.com> 8315Date: Sun Oct 11 09:10:27 2009 -0400 8316 8317 TI DaVinci Sonata: Add Config option for 64 bit Support 8318 8319 Adding the CONFIG_SYS_64BIT_VSPRINTF fot the DM644x based Sonata 8320 Without this option enabled while performing NAND operations we will get 8321 wrong diagnostic messages. 8322 Example if the MTD NAND driver find a bad block while erasing from 8323 a certain address, it will say bad block skipped at 0x00000000. 8324 8325 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8326 8327commit 54aa603d2ce1d9374a1f5c6336362037ad2d8b51 8328Author: Sandeep Paulraj <s-paulraj@ti.com> 8329Date: Sun Oct 11 09:14:58 2009 -0400 8330 8331 TI DaVinci DVEVM: Add Config option for 64 bit Support 8332 8333 Adding the CONFIG_SYS_64BIT_VSPRINTF in the DVEVM config. 8334 Without this option enabled while performing NAND operations we will get 8335 wrong diagnostic messages. 8336 Example if the MTD NAND driver find a bad block while erasing from 8337 a certain address, it will say bad block skipped at 0x00000000. 8338 8339 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8340 8341commit b8d0aa0c78b8c0fa51acada3c486b81085924b53 8342Author: Sandeep Paulraj <s-paulraj@ti.com> 8343Date: Sat Oct 10 10:19:20 2009 -0400 8344 8345 TI DaVinci DM365: Add Config option for 64 bit Support 8346 8347 Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM365 EVM config. 8348 Without this option enabled while performing NAND operations we will get 8349 wrong diagnostic messages. 8350 Example if the MTD NAND driver find a bad block while erasing from 8351 a certain address, it will say bad block skipped at 0x00000000. 8352 8353 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8354 8355commit 86a725b9c8b829c217be90e590f3ca2c91fa1dca 8356Author: Sandeep Paulraj <s-paulraj@ti.com> 8357Date: Sat Oct 10 10:18:46 2009 -0400 8358 8359 TI DaVinci DM355: Add Config option for 64 bit Support 8360 8361 Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM355 EVM config. 8362 Without this option enabled while performing NAND operations we will get 8363 wrong diagnostic messages. 8364 Example if the MTD NAND driver find a bad block while erasing from 8365 a certain address, it will say bad block skipped at 0x00000000. 8366 8367 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8368 8369commit 9c44ddccb6602f620fc037974f3e4468ad8a7c0c 8370Author: Sandeep Paulraj <s-paulraj@ti.com> 8371Date: Wed Sep 9 11:50:40 2009 -0400 8372 8373 TI: OMAP3: Remove SZ_xx references 8374 8375 This patch removes dependency on the sizes.h header file 8376 and removes all references to SZ_xx. 8377 8378 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8379 8380commit 13d2cb988ff07addce6e10ab2cb8965a9dd23c63 8381Author: Steve Sakoman <sakoman@gmail.com> 8382Date: Sat Oct 10 14:29:37 2009 -0400 8383 8384 OMAP3: Update Overo and Beagle environment 8385 8386 Update default environment to support new kernel DSS2 subsystem and 8387 simplify rootfs type and location changes. 8388 8389 Signed-off-by: Steve Sakoman <sakoman@gmail.com> 8390 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 8391 8392commit c73607c5525c6957c815e64f7e865fdd3baffe98 8393Author: Sandeep Paulraj <s-paulraj@ti.com> 8394Date: Sat Oct 10 13:46:26 2009 -0400 8395 8396 TI DaVinci: Maintainer for DM355 and DM365 EVM 8397 8398 Adding entries to the MAINTAINERS directory for the 8399 DM355 and DM365 EVM. 8400 8401 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8402 8403commit 5df65cf56aeef9fdeab83a259c37aa7d23836dd3 8404Author: Sandeep Paulraj <s-paulraj@ti.com> 8405Date: Sat Oct 10 13:37:10 2009 -0400 8406 8407 TI: DaVinci: DM355 Leopard board support 8408 8409 This patch adds support for the leopard board which is 8410 based on the DM355 SOC. 8411 8412 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8413 8414commit 6ab176d7091d21960a1bd89fcb7fd87b9e91aca1 8415Author: Sandeep Paulraj <s-paulraj@ti.com> 8416Date: Sat Oct 10 12:00:47 2009 -0400 8417 8418 TI DaVinci DM646x: Adding initial support for DM6467 EVM 8419 8420 This patch adds the initial support for DM6467 EVM. 8421 Other features like NET and NAND support will be added as follow up patches. 8422 8423 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8424 8425commit d884f64a7b8482f6c9688600e0a4731fa5678e0c 8426Author: Sandeep Paulraj <s-paulraj@ti.com> 8427Date: Thu Oct 1 20:22:09 2009 -0400 8428 8429 TI DaVinci DM365: Fix Compilation warning for DM365 EVM 8430 8431 This patch fixes a compilation warning while compiling 8432 the DM365 EVM. 8433 8434 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8435 8436commit 6fe5e87be4b944edf428835210056e020c8bb794 8437Author: Sandeep Paulraj <s-paulraj@ti.com> 8438Date: Thu Oct 1 20:21:13 2009 -0400 8439 8440 TI DaVinci DM355: Fix Compilation warning for DM355 EVM 8441 8442 This patch fixes a compilation warning while compiling 8443 the DM355 EVM. 8444 8445 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 8446 8447commit 513bbe1b1720682e6de0aba2d9db5e60f3a428bb 8448Author: Eric Benard <eric@eukrea.com> 8449Date: Mon Oct 12 10:15:39 2009 +0200 8450 8451 AT91 CPUAT91 Fix compiler warning 8452 8453 This change fixes the compiler warning 8454 8455 main.c: In function 'abortboot': 8456 main.c:122: warning: too few arguments for format 8457 8458 Signed-off-by: Eric Benard <eric@eukrea.com> 8459 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 8460 8461commit b1e81f701d044eee3884202b127d5d1f0668bdb9 8462Author: Eric Benard <eric@eukrea.com> 8463Date: Mon Oct 12 10:15:40 2009 +0200 8464 8465 AT91 CPU9260 CPU9G20 Fix compile warnings 8466 8467 This change fixes the compiler warning 8468 8469 nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF 8470 for correct output! 8471 8472 Signed-off-by: Eric Benard <eric@eukrea.com> 8473 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 8474 8475commit 94d50c527a3cedb6a41fbe6773256cdd1855317f 8476Author: Eric Benard <eric@eukrea.com> 8477Date: Mon Oct 12 10:08:20 2009 +0200 8478 8479 AT91 CPU9260 Fix machine ID when using a CPU9G20. 8480 8481 Signed-off-by: Eric Benard <eric@eukrea.com> 8482 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 8483 8484commit 8c0a92c8f4cf399e873c2611939f3617983785a9 8485Author: Alessandro Rubini <rubini@unipv.it> 8486Date: Sat Oct 10 11:51:26 2009 +0200 8487 8488 lcd: remove '#if 0' 32-bit scroll, now memcpy does it 8489 8490 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 8491 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 8492 8493commit e3ea948d4588e7efddbf0ee92147d93f827d7cea 8494Author: Alessandro Rubini <rubini@unipv.it> 8495Date: Sat Oct 10 11:51:16 2009 +0200 8496 8497 lib_generic memset: fill one word at a time if possible 8498 8499 If the destination is aligned, fill ulong values until possible. 8500 Then fill remaining part by byte. 8501 8502 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 8503 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 8504 Acked-by: Mike Frysinger <vapier@gentoo.org> 8505 8506commit ecd830b863e5c6ac5d804d3b3a92453a98d526fc 8507Author: Alessandro Rubini <rubini@unipv.it> 8508Date: Sat Oct 10 11:51:05 2009 +0200 8509 8510 lib_generic memcpy: copy one word at a time if possible 8511 8512 If source and destination are aligned, this copies ulong values 8513 until possible, trailing part is copied by byte. Thanks for the details 8514 to Wolfgang Denk, Mike Frysinger, Peter Tyser, Chris Moore. 8515 8516 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 8517 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 8518 Acked-by: Mike Frysinger <vapier@gentoo.org> 8519 8520commit 9c5586aa19bbedf290d2a663813404d2db87dfa5 8521Author: Alessandro Rubini <rubini@unipv.it> 8522Date: Thu Oct 8 14:29:14 2009 +0200 8523 8524 setenv: do console redirection even if previously unset 8525 8526 If "stdout" is not previously set, doing "setenv stdout lcd" had no 8527 effect, since console redirection only worked if the environment 8528 variable was already set; the second time you run setenv it worked. 8529 Most default environments lack stdin/out/err definitions, so I'm sure 8530 I'm not alone with this problem. 8531 8532 This patch simply moves a block of code out of a conditional, to do 8533 the same work even if the variable was previously unset. 8534 8535 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 8536 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 8537 8538commit c9ee39972a7758e883b73c6c0e3c3a14cd5b2f43 8539Author: Martha Stan <mmarx@silicontkx.com> 8540Date: Wed Oct 7 04:38:46 2009 -0400 8541 8542 mpc512x: fix System Clock Control constants for USB1 & USB2 8543 8544 Signer-off-by: Martha Stan <mmarx@silicontkx.com> 8545 8546commit 87b22b7787f397fc3daad570d711e478b1a7d253 8547Author: Paul Gortmaker <paul.gortmaker@windriver.com> 8548Date: Fri Oct 2 18:18:33 2009 -0400 8549 8550 mem_mtest: fix error reporting, allow escape with ^C 8551 8552 The basic memtest function tries to watch for ^C after each 8553 pattern pass as an escape mechanism, but if things are horribly 8554 wrong, we'll be stuck in an inner loop flooding the console with 8555 error messages and never check for ^C. To make matters worse, 8556 if the user waits for all the error messages to complete, we 8557 then incorrectly report the test passed without errors. 8558 8559 Adding a check for ^C after any error is printed will give 8560 the end user an escape mechanism from a console flood without 8561 slowing down the overall test speed on a slow processor. 8562 8563 Also, the more extensive memtest quit after just a single error, 8564 which is inconsistent with the normal memtest, and not useful if 8565 if you are doing dynamic environmental impact testing, such as 8566 heating/cooling etc. 8567 8568 Both tests now track the error count and report it properly 8569 at test completion. 8570 8571 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 8572 Acked-by: Mike Frysinger <vapier@gentoo.org> 8573 8574commit 9f4a420663419dc13f08a0ce65b93033c6172c69 8575Author: Mike Frysinger <vapier@gentoo.org> 8576Date: Thu Oct 1 12:11:54 2009 -0400 8577 8578 new default shortcut to config & build a board 8579 8580 The majority of the time that I build things in U-Boot, I want to just 8581 build for the board. I don't make board config tweaks after selecting the 8582 board. So add a new pattern rule that allows people to combine two steps 8583 in one go: 8584 `make foo_config && make` => `make foo` 8585 8586 This shouldn't conflict with any existing make rules as the pattern rule 8587 is used only the rule doesn't already exist. 8588 8589 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 8590 8591commit 6dab6add2d8ee80905234b326abc3de11be1d178 8592Author: Mike Frysinger <vapier@gentoo.org> 8593Date: Wed Sep 30 15:29:58 2009 -0400 8594 8595 env: only build env_embedded and envcrc when needed 8596 8597 The env code is protected by the ENV_IS_EMBEDDED define, so attempting to 8598 compile the code when this isn't defined is pointless. Now that the env 8599 headers have unified around CONFIG_ENV_IS_EMBEDDED, convert the build 8600 system to only build the env objects when this is enabled. And now that 8601 the env code is conditionally compiled, we can drop the source code checks. 8602 8603 For people who want to extract the environment manually, add a new option 8604 CONFIG_BUILD_ENVCRC that only enables the envcrc utility. 8605 8606 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 8607 8608commit 78f4ca7976748159080c9d920d5eb542d1b32d4f 8609Author: Daniel Mack <daniel@caiaq.de> 8610Date: Mon Sep 28 11:40:38 2009 +0200 8611 8612 part_dos: check status flags of partitions 8613 8614 Only read partitions which have 0x00 or 0x80 set in their status field. 8615 All others are invalid. 8616 8617 Signed-off-by: Daniel Mack <daniel@caiaq.de> 8618 8619commit 45def0ab9d1dedcd2a73939aad8373f760498762 8620Author: Eric Millbrandt <emillbrandt@coldhaus.com> 8621Date: Fri Sep 25 17:47:43 2009 -0500 8622 8623 galaxy5200: change cs1 configuration 8624 8625 Correct the chip select configuration for the nand flash chip select. 8626 8627 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com> 8628 8629commit 7936b51165b519a16ecf3db302fb88df8b8b3b3d 8630Author: Niklaus Giger <niklaus.giger@netstal.com> 8631Date: Wed Sep 23 08:12:14 2009 +0200 8632 8633 Cleanup: use constant 8634 8635 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 8636 8637commit 7120c888101952b7e61b9e54bb42370904aa0e68 8638Author: Kim Phillips <kim.phillips@freescale.com> 8639Date: Mon Oct 12 11:06:19 2009 -0500 8640 8641 mpc83xx: mpc8313 - handle erratum IPIC1 (TSEC IRQ number swappage) 8642 8643 mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1 8644 h/w (see AN3545). The base device tree in use has rev. 1 ID numbers, 8645 so if on Rev. 2 (and higher) h/w, we fix them up here. 8646 8647 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 8648 Reviewed-by: Roland Lezuo <roland.lezuo@chello.at> 8649 8650commit 91525c67153fcf2c19b2fc8d9c6376ac1a019f52 8651Author: Anton Vorontsov <avorontsov@ru.mvista.com> 8652Date: Mon Oct 12 23:55:39 2009 +0400 8653 8654 mpc85xx: Fix booting on various boards 8655 8656 commit 0e870980a64584a591af775bb9c9fe9450124df9 ("8xxx: Removed 8657 CONFIG_NUM_CPUS from 85xx/86xx") breaks U-Boot on various boards, 8658 namely the ones that call get_sys_info() from board_early_init_f(). 8659 8660 get_sys_info() calls cpu_numcores(), which depends on probecpu() 8661 being called before. But probecpu() is called after board_early_init_f(), 8662 and so cpu_numcores() returns random values, which in turn crashes 8663 get_sys_info(). 8664 8665 To fix the issue we place probecpu() before board_early_init_f() 8666 in an initialization sequence. 8667 8668 Booting on the following boards should be revived now: 8669 mpc8540ads 8670 mpc8541cds 8671 mpc8548cds 8672 mpc8555cds 8673 mpc8560ads 8674 mpc8568mds 8675 mpc8569mds 8676 and maybe more. 8677 8678 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 8679 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 8680 8681commit 26df6aa9916443077139f8f008fbc5f414ba05e5 8682Author: Paul Gortmaker <paul.gortmaker@windriver.com> 8683Date: Fri Oct 2 18:48:07 2009 -0400 8684 8685 mpc86xx: delete unused MPC86xx_DDR_SDRAM_CLK_CNTL define 8686 8687 This is an orphaned legacy leftover that is just polluting 8688 the config file namespace. 8689 8690 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 8691 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 8692 8693commit fad15096e3b34927444ba5f6133742d40d78a425 8694Author: Dipen Dudhat <dipen.dudhat@freescale.com> 8695Date: Thu Oct 8 13:33:29 2009 +0530 8696 8697 ppc/P1_P2_RDB: On-chip BootROM support 8698 8699 On Chip BootROM support for P1 and P2 series RDB platforms. 8700 8701 This patch is derived from latest On Chip BootROM support on MPC8536DS 8702 8703 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com> 8704 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 8705 8706commit f7780ec977e545b83bc5068e0957d640f1d98f13 8707Author: Dipen Dudhat <dipen.dudhat@freescale.com> 8708Date: Thu Oct 8 13:33:18 2009 +0530 8709 8710 ppc/P1_P2_RDB: NAND Boot Support 8711 8712 NAND Boot support for P1 and P2 series RDB platforms. 8713 8714 This patch is derived from NAND Boot support on MPC8536DS. 8715 8716 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com> 8717 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 8718 8719commit d11823ca3cb551814ffcd926402c8bcf3a7eff35 8720Author: Paul Gortmaker <paul.gortmaker@windriver.com> 8721Date: Wed Oct 7 16:34:28 2009 -0400 8722 8723 mpc8xxx: improve LAW error messages when setting up DDR 8724 8725 When setting up the LAWs for the DDR, if there was an error, 8726 you got the not-so-helpful error text "ERROR" and nothing 8727 else. Not only is it non-informative, but it is also 8728 pretty frustrating trying to grep for "ERROR" in the source. 8729 8730 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 8731 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 8732 8733commit a9946e3fc7089ddc6b7711a44e07a6b0827b79a7 8734Author: Paul Gortmaker <paul.gortmaker@windriver.com> 8735Date: Wed Sep 30 16:12:31 2009 -0400 8736 8737 sbc8641d: fix LAW so board doesn't hang on DDR init 8738 8739 All versions between now and since this commit: 8740 8741 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf 8742 MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default 8743 8744 will fail to allow the SBC8641D to get past DDR init, because the 8745 LAW config was overlapping. Eventually this board will do SPD 8746 EEPROM config, but for now this gets the board working again. 8747 8748 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 8749 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 8750 8751commit 3d1988ab47cc0e265272967e07d747ec600a44c9 8752Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> 8753Date: Sat Oct 10 13:34:09 2009 +0900 8754 8755 Clean-up of s3c24x0 nand driver 8756 8757 This patch re-formats the arm920t s3c24x0 nand driver in preparation for changes 8758 to add support for the Embest SBC2440-II Board. 8759 8760 The changes are as follows: 8761 - re-indent the code using Lindent 8762 - make sure register layouts are defined using a C struct 8763 - replace the upper-case typedef'ed C struct names with lower case 8764 non-typedef'ed ones 8765 - make sure registers are accessed using the proper accessor functions 8766 - run checkpatch.pl and fix any error reports 8767 8768 It assumes the following patch has been applied first: 8769 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009 8770 - patches 1/4, 2/4 and 3/4 of this series 8771 8772 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have 8773 any s3c2400 or s3c2410 boards but need this patch applying before I can submit 8774 patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400, 8775 smdk2410 and trab configs to use the mtd nand driver (which isn't used by any 8776 board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or 8777 errors were found. 8778 8779 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk> 8780 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 8781 8782commit eb0ae7f549b7142826a8bcdd2dc945fac9c36349 8783Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> 8784Date: Sat Oct 10 13:33:11 2009 +0900 8785 8786 Clean-up of s3c24x0 drivers excluding nand driver 8787 8788 This patch re-formats the arm920t s3c24x0 driver files, excluding the nand 8789 driver, in preparation for changes to add support for the Embest SBC2440-II Board. 8790 8791 The changes are as follows: 8792 - re-indent the code using Lindent 8793 - make sure register layouts are defined using a C struct 8794 - replace the upper-case typedef'ed C struct names with lower case 8795 non-typedef'ed ones 8796 - make sure registers are accessed using the proper accessor functions 8797 - run checkpatch.pl and fix any error reports 8798 8799 It assumes the following patch has been applied first: 8800 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009 8801 - patches 1/4 and 2/4 of this series 8802 8803 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have 8804 any s3c2400 or s3c2410 boards but need this patch applying before I can submit 8805 patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400, 8806 smdk2410 and trab configs to use the mtd nand driver (which isn't used by any 8807 board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or 8808 errors were found. 8809 8810 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk> 8811 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 8812 8813commit 8250d0bae84229abea397f6b474b3556b0f04e80 8814Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> 8815Date: Sat Oct 10 13:32:01 2009 +0900 8816 8817 Clean-up of s3c24x0 header files 8818 8819 This patch re-formats the arm920t s3c24x0 header files in preparation for 8820 changes to add support for the Embest SBC2440-II Board. 8821 8822 The changes are as follows: 8823 - re-indent the code using Lindent 8824 - make sure register layouts are defined using a C struct 8825 - replace the upper-case typedef'ed C struct names with lower case 8826 non-typedef'ed ones 8827 - make sure registers are accessed using the proper accessor functions 8828 - run checkpatch.pl and fix any error reports 8829 8830 It assumes the following patch has been applied first: 8831 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009 8832 - patch 1/4 of this series 8833 8834 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have 8835 any s3c2400 or s3c2410 boards but need this patch applying before I can submit 8836 patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400, 8837 smdk2410 and trab configs to use the mtd nand driver (which isn't used by any 8838 board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or 8839 errors were found. 8840 8841 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk> 8842 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 8843 8844commit d67cce2dda3a40c3bd90a6c6e129fbb26dd4cfab 8845Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> 8846Date: Sat Oct 10 13:30:22 2009 +0900 8847 8848 Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code 8849 8850 This patch re-formats the code in cpu/arm920t and cpu/arm920t/23c24x0 in 8851 preparation for changes to add support for the Embest SBC2440-II Board. 8852 8853 The changes are as follows: 8854 - re-indent the code using Lindent 8855 - make sure register layouts are defined using a C struct 8856 - replace the upper-case typedef'ed C struct names with lower case 8857 non-typedef'ed ones 8858 - make sure registers are accessed using the proper accessor functions 8859 - run checkpatch.pl and fix any error reports 8860 8861 It assumes the following patch has been applied first: 8862 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009 8863 8864 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have 8865 any s3c2400 or s3c2410 boards but need this patch applying before I can submit 8866 patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets and no 8867 new warnings or errors were found. 8868 8869 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk> 8870 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 8871 8872commit cd85662b345c0c2248fd7637f65bb2fbb4d53dd9 8873Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> 8874Date: Sun Sep 6 00:33:13 2009 +0900 8875 8876 CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards 8877 8878 This sets CONFIG_SYS_HZ to 1000 for all boards that use the s3c2400 and 8879 s3c2410 cpu's which fixes various problems such as the timeouts in tftp being 8880 too short. 8881 8882 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't 8883 have any s3c2400 or s3c2410 boards but need this patch applying before I can 8884 submit patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets 8885 and no new warnings or errors were found. 8886 8887 It was originally submitted on 21/06/2009 but didn't get into the 2009.08 8888 release, and Jean-Pierre made one comment on the original patch (see 8889 http://lists.denx.de/pipermail/u-boot/2009-July/055470.html). I've made two 8890 changes to the original patch: 8891 - it's been re-based to the current release 8892 - I've re-named get_timer_raw() to get_ticks() in response to Jean-Pierre's comment 8893 8894 This affects the sbc2410, smdk2400, smdk2410 and trab boards. I've copied it 8895 directly to the maintainers of all except the sbc2410 which doesn't have an 8896 entry in MAINTAINERS. 8897 8898 Signed-off-by: Kevin Morfitt <kmorfitt@aselaptop-1.localdomain> 8899 Tested-by: Wolfgang Denk <wd@denx.de> 8900 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 8901 8902commit 8bc4ee9e8213abe4031ea1720aa02fa98d4402ad 8903Author: Minkyu Kang <mk7.kang@samsung.com> 8904Date: Thu Oct 1 17:20:40 2009 +0900 8905 8906 s5pc1xx: add support SMDKC100 board 8907 8908 Adds new board SMDKC100 that uses s5pc100 SoC 8909 8910 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 8911 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com> 8912 8913commit dd2c9e6a3b67c8ff56694e515e6e3c7baddd8f52 8914Author: Minkyu Kang <mk7.kang@samsung.com> 8915Date: Thu Oct 1 17:20:28 2009 +0900 8916 8917 s5pc1xx: support serial driver 8918 8919 This patch includes the serial driver for s5pc1xx. 8920 s5pc1xx uart driver needs own register setting and clock configuration. 8921 So, need to special driver. 8922 8923 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 8924 8925commit 4678d674f0cacc983dca7f6b9933cd8291c9797c 8926Author: Minkyu Kang <mk7.kang@samsung.com> 8927Date: Thu Oct 1 17:20:08 2009 +0900 8928 8929 s5pc1xx: support onenand driver 8930 8931 This patch includes the onenand driver for s5pc100 8932 8933 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 8934 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 8935 8936commit 399e5ae0d0b2eb4663fc5784201968c07d45afac 8937Author: Minkyu Kang <mk7.kang@samsung.com> 8938Date: Thu Oct 1 17:20:01 2009 +0900 8939 8940 s5pc1xx: support Samsung s5pc1xx SoC 8941 8942 This patch adds support for the Samsung s5pc100 and s5pc110 8943 SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. 8944 8945 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 8946 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com> 8947 8948commit d087d19a994e741f0ce526124be117c90be482ae 8949Author: Mike Frysinger <vapier@gentoo.org> 8950Date: Tue Oct 13 21:58:26 2009 -0400 8951 8952 Blackfin: drop MAC display at boot 8953 8954 The default Blackfin boot would display the MAC address for the first NIC, 8955 but this relies on the environment. The current net multi stack no longer 8956 writes the default hardware settings to the environment, so most of the 8957 time the display shows all zeros. This can be pretty confusing and really 8958 doesn't add anything useful, so just drop it. 8959 8960 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 8961 8962commit 1f003cf4738a199d99c818124784058526d2d40e 8963Author: Mike Frysinger <vapier@gentoo.org> 8964Date: Fri Oct 9 02:24:33 2009 -0400 8965 8966 Blackfin: reset watchdog in udelay() 8967 8968 All arches apparently should reset the watchdog in their udelay loop as 8969 noted on the mailing list recently: 8970 8971 > A comment in flash_status_check() suggests that udelay() is 8972 > expected to reset the watchdog, but I can't find any architecture 8973 > where it does. 8974 8975 If this is missing in other architectures, it should be fixed at the 8976 root cause, i. e. in udelay() or in the respective support routines. 8977 8978 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 8979 8980commit 370ec734557d0b0f266e6d0953229ee12cae5edd 8981Author: Mike Frysinger <vapier@gentoo.org> 8982Date: Fri Oct 9 02:22:11 2009 -0400 8983 8984 Blackfin: Remove relocation fixups 8985 8986 Blackfin pieces like commit 0630535e2d062dd73c1ceca5c6125c86d1127a49. 8987 8988 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 8989 8990commit a380279b2abe130c2d3d2c8de36f8ff98bc6b3b0 8991Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 8992Date: Tue Sep 29 08:03:12 2009 +0200 8993 8994 at91: Update MEESC board support 8995 8996 This patch implements several updates: 8997 -disable CONFIG_ENV_OVERWRITE 8998 -add new hardware style variants and set the arch numbers appropriate 8999 -pass the serial# and hardware revision to the kernel 9000 -removed unused macros from include/configs/meesc.h
9001 -fixed multiline comment style 9002 9003 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 9004 9005commit 9df20ce211576aa7ac75710dcd8d0a6236abfd70 9006Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]> 9007Date: Thu Oct 1 19:41:50 2009 +0530 9008 9009 arm: Correct build with CONFIG_SYS_HUSH_PARSER set 9010 9011 FLAG_PARSE_SEMICOLON is not defined without hush.h, so include that. 9012 9013 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 9014 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 9015 9016commit df3826262c0efd2baec4df23d44b3942af98f5a7 9017Author: Olof Johansson <olof@lixom.net> 9018Date: Tue Sep 29 10:22:45 2009 -0400 9019 9020 TI: OMAP3: Overo Tobi ethernet support 9021 9022 Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded 9023 over tftp. 9024 9025 This also refactors the smc911x driver to allow for detecting when the 9026 chip is missing. I.e. the detect_chip() function is called earlier and 9027 will abort gracefully when the Chip ID read returns all 1's. 9028 9029 Signed-off-by: Olof Johansson <olof@lixom.net> 9030 Acked-by: Dirk Behme <dirk.behme@googlemail.com> 9031 Acked-by: Ben Warren <biggerbadderben@gmail.com> 9032 9033commit 2a6cc97b91997ae485312ac91ffbcea6a89b663a 9034Author: Olof Johansson <olof@lixom.net> 9035Date: Tue Sep 29 10:21:29 2009 -0400 9036 9037 SMC911X: Add chip auto detection 9038 9039 Refactor the smc911x driver to allow for detecting when the chip is missing. 9040 I.e. the detect_chip() function is called earlier and will abort gracefully 9041 when the Chip ID read returns all 1's. 9042 9043 Signed-off-by: Olof Johansson <olof@lixom.net> 9044 Acked-by: Dirk Behme <dirk.behme@googlemail.com> 9045 Acked-by: Ben Warren <biggerbadderben@gmail.com> 9046 9047commit 0297ec7e2a4039b8a28346f52f3ccca4db1ddc62 9048Author: Tom Rix <Tom.Rix@windriver.com> 9049Date: Tue Sep 29 10:19:49 2009 -0400 9050 9051 TI OMAP3 Use arm init sequence to initialize i2c 9052 9053 This changes fixes an early i2c error. 9054 9055 It appears that I2C is working because once a read or write 9056 error is detected, the omap24xx_i2c driver calls i2c_init 9057 inside its error handling check. 9058 9059 While it is ok to attempt error handling this way, the boards 9060 must not depend on this side effect to initialize it's i2c. 9061 9062 Instead of explicitly calling i2c_init for every board, use 9063 the generic arm initialization in lib_arm/board.c. By defining 9064 the config variable CONFIG_HARD_I2C, the omap3 i2c initialization 9065 is included in the init_sequence table. 9066 9067 Run tested on Beagle. 9068 Compile tested on the omap3's 9069 9070 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 9071 Acked-by: Dirk Behme <dirk.behme@googlemail.com> 9072 9073commit 4df30f3bb7285b2c962713a5c693c16fd90885e0 9074Author: Sandeep Paulraj <s-paulraj@ti.com> 9075Date: Tue Sep 29 09:43:04 2009 -0400 9076 9077 TI: DaVinci DM365: Enabling network Support on DM365 EVM 9078 9079 This patch enables EMAC on the DM365 EVM. 9080 9081 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 9082 Acked-by: Tom Rix <Tom.Rix@windriver.com> 9083 9084commit 00e1665a3cf956e09ac2ce86ef6ec459f6bfb33c 9085Author: Sandeep Paulraj <s-paulraj@ti.com> 9086Date: Tue Sep 29 10:02:38 2009 -0400 9087 9088 TI: DaVinci: GPIO header file and definitions 9089 9090 Some DaVinci SOC's use GPIOs to enable EMAC and DM9000. 9091 This patch adds some definitions for GPIO registers and also adds 9092 structures for GPIO. 9093 A separate header file is being added so that in future we 9094 can have a DaVinci GPIO driver similer to OMAP. 9095 9096 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 9097 Acked-by: Tom Rix <Tom.Rix@windriver.com> 9098 9099commit 95ae803afbdd9f673c94b992ea624a10d252afc2 9100Author: Sandeep Paulraj <s-paulraj@ti.com> 9101Date: Fri Sep 18 17:30:05 2009 -0400 9102 9103 TI: DaVinci DM646x: Update flag used to represent DM646x SOC's 9104 9105 In the DaVinci specific code, we use both CONFIG_SOC_DM646X and 9106 CONFIG_SOC_DM646x to represent DM646x specific code. 9107 This patch changes occurrences of CONFIG_SOC_DM646x to 9108 CONFIG_SOC_DM646X. This is because for DM644x series of SOCs we use 9109 the flag CONFIG_SOC_DM644X. We want some uniformity. 9110 9111 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 9112 Acked-by: Tom Rix <Tom.Rix@windriver.com> 9113 9114commit fc9165fdb3b021aa8ff02417692220fe9344072b 9115Author: Olof Johansson <olof@lixom.net> 9116Date: Mon Sep 28 08:19:30 2009 -0400 9117 9118 OMAP3: Clean up whitespace in mux configs 9119 9120 Switch from space-based indentation to tab-based in mux configs, as pointed 9121 out by WD at: 9122 9123 http://lists.denx.de/pipermail/u-boot/2009-September/061241.html 9124 9125 Nothing but whitespace changes in this patch (diff -w gives no output). 9126 9127 Signed-off-by: Olof Johansson <olof@lixom.net> 9128 9129commit 9de0212bd7c4c82a7e8c2a2c8714f8c7abc57d08 9130Author: Dirk Behme <dirk.behme@googlemail.com> 9131Date: Mon Sep 28 08:17:50 2009 -0400 9132 9133 OMAP3 MMC: Fix warning dereferencing type-punned pointer 9134 9135 Fix warning 9136 Dereferencing type-punned pointer will break strict-aliasing rules 9137 9138 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 9139 CC: Steve Sakoman <sakoman@gmail.com> 9140 Acked-by: Tom Rix <Tom.Rix@windriver.com> 9141 9142commit e92daeb5c2050438402b87c7d614e8a13c294348 9143Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]> 9144Date: Tue Sep 22 04:01:01 2009 +0530 9145 9146 Support for the OpenRD base board 9147 9148 The implementation is borrowed from the sheevaplug board and the Marvell 9149 1.1.4 code. Unsupported (or untested) is the SD card, PCIe and SATA. 9150 9151 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 9152 9153commit a62e78fc444c67f958be48891bef3dab0e9eb285 9154Author: Prafulla Wadaskar <prafulla@marvell.com> 9155Date: Mon Sep 21 20:15:17 2009 +0530 9156 9157 Kirkwood: mv88f6281gtw_ge: Add kwbimage build support 9158 9159 This patch adds kwbimage configuration file 9160 (used by mkimage utility) 9161 to support u-boot.kwb target on mv88f6281gtw_ge board. 9162 9163 To create Kirkwood boot image to be flashed on SPI Flash, 9164 additional parameter u-boot.kwb need to be passed during make. 9165 9166 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 9167 9168commit 5bc7cbc15b1890682c0b279f708914518bd25f8d 9169Author: Prafulla Wadaskar <prafulla@marvell.com> 9170Date: Mon Sep 21 18:23:11 2009 +0530 9171 9172 Kirkwood: rd6281a: Add kwbimage build support 9173 9174 This patch adds kwbimage configuration file 9175 (used by mkimage utility) 9176 to support u-boot.kwb target on rd6281a platform. 9177 9178 To create Kirkwood boot image to be flashed on NAND, 9179 additional parameter u-boot.kwb need to be passed during make. 9180 9181 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 9182 9183commit 23b80982a02a43bf4ead91574c9d6f1b647ccc8f 9184Author: Tom Rix <Tom.Rix@windriver.com> 9185Date: Sun Sep 27 11:10:09 2009 -0500 9186 9187 Add support for Eukrea CPU9260/CPU9G20 SBC 9188 9189 these boards are built around Atmel's AT91SAM9260/9G20 and have 9190 up to 64MB of NOR flash, up to 128MB of SDRAM, up to 2GB of NAND 9191 and include a 10/100 Ethernet PHY in RMII mode. 9192 9193 Signed-off-by: Eric Benard <eric@eukrea.com> 9194 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 9195 9196commit d8380c9d35e88759c96e68a03738446ca0cb292f 9197Author: Tom Rix <Tom.Rix@windriver.com> 9198Date: Sun Sep 27 07:47:24 2009 -0500 9199 9200 Add support for Eukrea CPUAT91 SBC 9201 9202 CPUAT91 is built around Atmel's AT91RM9200 and has up to 16MB of NOR 9203 flash, up to 128MB of SDRAM, and includes a Micrel KS8721 PHY in RMII 9204 mode. 9205 9206 Signed-off-by: Eric Benard <eric@eukrea.com> 9207 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 9208 9209commit eb95aa15e644c29b01832703aa4964fe419170f0 9210Author: Sandeep Paulraj <s-paulraj@ti.com> 9211Date: Mon Sep 14 14:57:47 2009 -0400 9212 9213 TI: DaVinci DM365: Minor config cleanup 9214 9215 The DM365 config was using the 'CONFIG_CMD_SAVEENV' flag. 9216 This is already included when we include the 9217 config_cmd_default.h header file. So this flag is removed. 9218 Also another flag to enable NAND functions was being 9219 enabled incorrectly. 9220 9221 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 9222 9223commit 5d783c1ffd691ffdadbc2c2f796c41481b7cdce7 9224Author: Sandeep Paulraj <s-paulraj@ti.com> 9225Date: Mon Sep 14 15:03:06 2009 -0400 9226 9227 TI DaVinci DM365: Removing header file which does not exist 9228 9229 The DaVinci DM365 EVM board specific code was including a header file 9230 which does not exist. So removing this header file. 9231 9232 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 9233 9234commit 409ec37bd8ae8822d276e77419d899571891b191 9235Author: Sandeep Paulraj <s-paulraj@ti.com> 9236Date: Tue Sep 8 18:08:06 2009 -0400 9237 9238 TI DaVinci: DM355: Config Cleanup and Update 9239 9240 This patch does the following 9241 1) Enables the NAND driver which is now available. 9242 2) Enables the 'CONFIG_MTD_DEVICE' as without this the 9243 compilation will fail 9244 3) We now have a safe place to store environment and defines 9245 an offset where this can be stored. This offset value is such that it is after 9246 the location where U-Boot is flashed using TI flash utilities. 9247 4) Enables Bootdelay 9248 5) Increases malloc() arena size. Manufacturers are coming out with 9249 NAND with large blocks sizes of upto 1 MiB. It has been noticed that 9250 as the block size of the NAND used is increased, if this particular 9251 value is not increased, the NAND driver will output out of memory 9252 errors. 9253 9254 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 9255 9256commit 7908c97a106765ad8816bf2271a5bf315728b274 9257Author: Sandeep Paulraj <s-paulraj@ti.com> 9258Date: Tue Sep 8 11:37:39 2009 -0400 9259 9260 TI DaVinci: DM646x: Initial Support for DM646x SOC 9261 9262 DM646x is an SOC from TI which has both an ARM and a DSP. 9263 There are multiple variants of the SOC mainly dealing with different 9264 core speeds. 9265 This patch adds the initial framework for the DM646x SOC. 9266 9267 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 9268 9269commit 5d0f53624c24eaf82d58368a6a5b8476392dd5c7 9270Author: Sandeep Paulraj <s-paulraj@ti.com> 9271Date: Wed Sep 9 15:26:00 2009 -0400 9272 9273 TI DaVinci: DM6446: Fix Compilation error in NAND mode 9274 9275 The Default mode that is built for the Davinci DVEVM happens 9276 to be the NOR mode. 9277 When we want to build for the NAND mode, we get a compilation 9278 error. This is overcome by defining the CONFIG_MTD_DEVICE 9279 flag in the NAND mode. 9280 The image built for NAND mode was successfully tested on the 9281 DaVinci DM6446 EVM. 9282 9283 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 9284 9285commit 7a2aa8b68120f333ed2edc33475ca195810d6cb1 9286Author: Tom Rix <Tom.Rix@windriver.com> 9287Date: Thu Sep 10 15:27:57 2009 -0400 9288 9289 OMAP3 Move cache routine to cache.S 9290 9291 v7_flush_dcache_all, because it depends on omap ROM code is not 9292 generic. Rename the function to 'invalidate_dcache' and move it 9293 to the omap cpu directory. 9294 9295 Collect the other omap cache routines l2_cache_enable and 9296 l2_cache_disable with invalide_dcache into cache.S. This 9297 means removing the old cache.c file that contained l2_cache_enable 9298 and l2_cache_disable. 9299 9300 The conversion from cache.c to cache.S was done most through 9301 disassembling the uboot binary. The only significant change was 9302 to change the comparision for the return of get_cpu_rev from 9303 9304 cmp r0, #0 9305 beq earlier_than_label 9306 9307 Which was lost information to 9308 9309 cmp r0, #CPU_3XX_ES20 9310 blt earlier_than_label 9311 9312 The paths through the enable routine were verified by 9313 adding an infinite loop and seeing the hang. Then 9314 removing the infinite loop and seeing it continue. 9315 9316 The disable routine is similar enough that it was not 9317 tested with this method. 9318 9319 Run tested by cold booting from nand on beagle and zoom1. 9320 Compile tested on MAKEALL arm. 9321 9322 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 9323 9324commit a16df2c11188297eca43cf6080c70fb69b960232 9325Author: Sandeep Paulraj <s-paulraj@ti.com> 9326Date: Tue Sep 8 17:09:52 2009 -0400 9327 9328 TI DaVinci: Remove references to SZ_xx 9329 9330 This patch removes the asm/sizes.h header file from being 9331 included in the DaVinci SOC configs. 9332 References to SZ_xx have been replaced by appropriate 9333 bit shifted values. 9334 9335 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 9336 Acked-by: Wolfgang Denk <wd@denx.de> 9337 9338commit 285870f75378aca41c5063e4358ad93bf3014fd8 9339Author: Ed Swarthout <Ed.Swarthout@freescale.com> 9340Date: Thu Oct 9 01:27:18 2008 -0500 9341 9342 Leave x86emu op code tables in default section 9343 9344 Forcing the tables into got2 caused extra relocation when using -mrelocatable. 9345 This patch requires any board defining CONFIG_BIOSEMU to use -mrelocatable. 9346 9347 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 9348 Acked-by: Jin Zhengxiong <Jason.Jin@freescale.com> 9349 9350commit be2254423b86572841aa70ff05d20933d1b49823 9351Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 9352Date: Sat Oct 10 12:42:22 2009 +0200 9353 9354 Update all board to support new bbmiiphy driver (with multibus support) 9355 9356 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 9357 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9358 9359commit 310cecb8ccdbc8a9be580e75b2fd362179d78535 9360Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 9361Date: Sat Oct 10 12:42:21 2009 +0200 9362 9363 Add bb_miiphy_init call before any ethernet bring-up code. 9364 9365 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 9366 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9367 9368commit 4ba31ab33ac824635fcb49ac609070a9ebcab7f0 9369Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 9370Date: Sat Oct 10 12:42:20 2009 +0200 9371 9372 Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an arbitrary number of mii buses. 9373 9374 This feature is useful when your board uses different mii buses for different 9375 phys and all (or a part) of these buses are implemented via bit-banging mode. 9376 9377 The driver requires that the following macros should be defined into the board 9378 configuration file: 9379 9380 CONFIG_BITBANGMII - Enable the miiphybb driver 9381 CONFIG_BITBANGMII_MULTI - Enable the multi bus support 9382 9383 If the CONFIG_BITBANGMII_MULTI is not defined, the board's config file needs 9384 to define at least the following macros: 9385 9386 MII_INIT - Generic code to enable the MII bus (optional) 9387 MDIO_DECLARE - Declaration needed to access to the MDIO pin (optional) 9388 MDIO_ACTIVE - Activate the MDIO pin as out pin 9389 MDIO_TRISTATE - Activate the MDIO pin as input/tristate pin 9390 MDIO_READ - Read the MDIO pin 9391 MDIO(v) - Write v on the MDIO pin 9392 MDC_DECLARE - Declaration needed to access to the MDC pin (optional) 9393 MDC(v) - Write v on the MDC pin 9394 9395 The previous macros make the driver compatible with the previous version 9396 (that didn't support the multi-bus). 9397 9398 When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fill 9399 the bb_miiphy_buses[] array with a record for each required bus and declare 9400 the bb_miiphy_buses_num variable with the number of mii buses. 9401 The record (struct bb_miiphy_bus) has the following fields/callbacks (see 9402 miiphy.h for details): 9403 9404 char name[] - The symbolic name that must be equal to the MII bus 9405 registered name 9406 int (*init)() - Initialization function called at startup time (just 9407 before the Ethernet initialization) 9408 int (*mdio_active)() - Activate the MDIO pin as output 9409 int (*mdio_tristate)() - Activate the MDIO pin as input/tristate pin 9410 int (*set_mdio)() - Write the MDIO pin 9411 int (*get_mdio)() - Read the MDIO pin 9412 int (*set_mdc)() - Write the MDC pin 9413 int (*delay)() - Delay function 9414 void *priv - Private data used by board specific code 9415 9416 The board code will look like: 9417 9418 struct bb_miiphy_bus bb_miiphy_buses[] = { 9419 { .name = miibus#1, .init = b1_init, .mdio_active = b1_mdio_active, ... }, 9420 { .name = miibus#2, .init = b2_init, .mdio_active = b2_mdio_active, ... }, 9421 ... 9422 int bb_miiphy_buses_num = sizeof(bb_miiphy_buses) / 9423 sizeof(bb_miiphy_buses[0]); 9424 9425 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 9426 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9427 9428commit efaf6f1bf6ebdd8f16b0d0c2960abe8d06f95af4 9429Author: Paul Gortmaker <paul.gortmaker@windriver.com> 9430Date: Fri Oct 2 18:54:20 2009 -0400 9431 9432 mpc83xx: cosmetic comment update relating to SPD EEPROM 9433 9434 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76 did the big 9435 rename of CFG_ macros to CONFIG_SYS macros. But it missed 9436 a couple of instances within comments. 9437 9438 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 9439 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 9440 9441commit afc3ba0fc4195624e79e21244380ed7cc2fd6969 9442Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 9443Date: Thu Oct 8 02:03:51 2009 +0200 9444 9445 relocation: Do not relocate NULL pointers. 9446 9447 NULL is an absolute value and should not be relocated. 9448 After this correction code like: 9449 void weak_fun(void) __attribute__((weak)); 9450 printf("weak_fun:%p\n", weak_fun); 9451 will still print null after relocation. 9452 9453 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 9454 9455commit 3beb40c2473f0dd373231c723d88c51e46ad96f7 9456Author: Peter Tyser <ptyser@xes-inc.com> 9457Date: Wed Oct 7 11:45:00 2009 -0500 9458 9459 85xx: Ensure BSS segment isn't linked at address 0 9460 9461 When U-Boot is relocated from flash to RAM pointers are modified 9462 accordingly. However, pointers initialzed with NULL values should not 9463 be modified so that they maintain their intended NULL value. If the 9464 BSS segment is linked at address 0 its address will not be 9465 updated as necessary during relocation. 9466 9467 This is a temporary workaround. The end goal is to add support to 9468 U-Boot to dynamically locate the BSS at an arbitrary address at 9469 runtime. When the ability to fixup the BSS inteligently is 9470 added, this workaround can be removed and the 85xx link script 9471 can put the BSS at a fixed address at link time. 9472 9473 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9474 9475commit 95c44ec485b46ffb43dbdaa299f1491a500fdadf 9476Author: Detlev Zundel <dzu@denx.de> 9477Date: Wed Oct 7 16:38:05 2009 +0200 9478 9479 tqm5200: Correct comment and code in post_hotkeys_pressed. 9480 9481 This fixes the code and the comment according to the original intent of 9482 doing an intensive memory test when PSC6_3 is pulled low on the STK52xx. 9483 Notably PORT_CONFIG will be overridden with this correct code now, 9484 so beware. 9485 9486 The original code only worked by coincidence depending on the PORT_CONFIG 9487 setting from the header file. The new code was tested to ensure that the 9488 (undocumented) memory test still works on the STK52x. 9489 9490 Signed-off-by: Detlev Zundel <dzu@denx.de> 9491 CC: Martin Krause <Martin.Krause@tqs.de> 9492 9493 Minor white-space cleanup. 9494 Signed-off-by: Wolfgang Denk <wd@denx.de> 9495 9496commit da01f53404f99db185d196867af79371725d4683 9497Author: Wolfgang Denk <wd@denx.de> 9498Date: Sun Oct 4 22:56:08 2009 +0200 9499 9500 mpc512x: fix fixed_sdram() init code. 9501 9502 Commit 054197ba and later fixes used an array to initialize some of 9503 the MDDRC parameters; however, the use of an array turned out to be a 9504 bad idea as it was not possible to correlate structure entries to 9505 array indices in readable and reliable way. Now we use a struct 9506 instead, which makes this self-explanatory. 9507 9508 Signed-off-by: Wolfgang Denk <wd@denx.de> 9509 9510commit dbcc357166bed20df13450e93a501f30b197efd1 9511Author: Niklaus Giger <niklaus.giger@member.fsf.org> 9512Date: Sun Oct 4 20:04:22 2009 +0200 9513 9514 ppc4xx: respect 80-chars per line in ppc*.h files 9515 9516 After running checkstyle.pl on the three previous patches I noted that in 9517 the *.h files there were a lot of long lines. This patch solves this problem. 9518 9519 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 9520 Signed-off-by: Stefan Roese <sr@denx.de> 9521 9522commit 78d2a641371ec71cc3786b167a318c7b115fbb90 9523Author: Niklaus Giger <niklaus.giger@member.fsf.org> 9524Date: Sun Oct 4 20:04:21 2009 +0200 9525 9526 ppc4xx: Rework cmd reginfo 9527 9528 The command "reginfo" got an overhaul for the ppc4xx. It dumps all the 9529 relevant HW configuration registers (address, symbolic name, content). 9530 This allows to easily detect errors in *.h files and changes in the HW 9531 configuration. 9532 9533 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 9534 Signed-off-by: Stefan Roese <sr@denx.de> 9535 9536commit ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd 9537Author: Niklaus Giger <niklaus.giger@member.fsf.org> 9538Date: Sun Oct 4 20:04:20 2009 +0200 9539 9540 ppc_4xx: Apply new HW register names 9541 9542 Modify all existing *.c files to use the new register names 9543 as seen in the AMCC manuals. 9544 9545 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 9546 Signed-off-by: Stefan Roese <sr@denx.de> 9547 9548commit f80e61dcfe53fa3a5936659883415c9bd1b5a3d9 9549Author: Niklaus Giger <niklaus.giger@member.fsf.org> 9550Date: Sun Oct 4 20:04:19 2009 +0200 9551 9552 ppc4xx: Cleanup some HW register names 9553 9554 Here you find all the changes in the include directory for new register names 9555 and adapting other ones to the names used by AMCC in their manuals, e.g. 9556 For 440EPx/GRPPC440EPx/GRX, Revision 1.15 – September 22, 2008 9557 For PPC405GP Embedded Processor, Revision 1.02 – March 22, 2006 9558 9559 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 9560 Signed-off-by: Stefan Roese <sr@denx.de> 9561 9562commit 56f14818f66c68a8b9e45925f29ceb974405ad48 9563Author: Stefan Roese <sr@denx.de> 9564Date: Tue Oct 6 07:21:08 2009 +0200 9565 9566 ppc4xx: Add PPC405EX(r) Rev D support 9567 9568 Unfortunately some Rev D PPC405EX/405EXr PVR's are identical with older 9569 405EX(r) parts. Here a list: 9570 9571 0x12911475 - 405EX Rev D with Security *and* 405EX Rev A/B witout Sec 9572 0x12911473 - 405EX Rev D without Security *and* 405EXr Rev A/B with Sec 9573 9574 Since there are only a few older parts in the field, this patch now 9575 changes the PVR's above to represent the new Rev D versions. 9576 9577 Signed-off-by: Stefan Roese <sr@denx.de> 9578 Cc: Phong Vo" <pvo@amcc.com> 9579 9580commit 06dfaeef52a5f773ae4292432e3c74ff52ead316 9581Author: Stefan Roese <sr@denx.de> 9582Date: Fri Oct 2 14:35:16 2009 +0200 9583 9584 ppc4xx: Fix msg "initialization as root-complex failed" upon PCIe scan 9585 9586 This message is printed upon PCIe bus scan, not only upon error, but also 9587 if no PCIe device is detected at all. Since this is not an error, let's 9588 remove this message in this case. We already have the message 9589 "link is not up." if there is no PCIe device present. 9590 9591 Signed-off-by: Stefan Roese <sr@denx.de> 9592 Acked-by: Wolfgang Denk <wd@denx.de> 9593 9594commit 54f5f056aa1daa3e39bad1c5c3fb43a72cdb9e84 9595Author: Mike Nuss <mike@terascala.com> 9596Date: Mon Oct 5 12:33:28 2009 -0400 9597 9598 PPC4xx: Denali core: Fix incorrect DDR row bits 9599 9600 The SPD detection code for the Denali memory controller used on some 9601 ppc4xx 9602 processors incorrectly encodes DDR0_42. With certain memory 9603 configurations, 9604 this can cause the bootwrapper to incorrectly calculate the installed 9605 memory 9606 size, because the number of row bits is wrong. This patch fixes that 9607 encoding. 9608 9609 Signed-off-by: Mike Nuss <mike@terascala.com> 9610 Signed-off-by: Stefan Roese <sr@denx.de> 9611 9612commit 99dbd4efd6d5ecc37d7e8f28b20d9be8c83055c7 9613Author: Ben Warren <biggerbadderben@gmail.com> 9614Date: Mon Oct 5 00:02:51 2009 -0700 9615 9616 Add information about return values of xxx_eth_register() in documentation 9617 9618 As discussed on mailing list, <0 indicates failure, >=0 indicates number 9619 of interfaces found. 9620 9621 Also added blurb about private data 9622 9623 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9624 9625commit 1f1e774ec6242d4ea34e5cff57232deb5bb587e0 9626Author: Mike Frysinger <vapier@gentoo.org> 9627Date: Wed Sep 9 14:41:22 2009 -0400 9628 9629 document network driver framework 9630 9631 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 9632 Acked-by: Wolfgang Denk <wd@denx.de> 9633 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9634 9635commit aba8237257dd15b0e76cc517f0e741c0908ee0b9 9636Author: Prafulla Wadaskar <prafulla@marvell.com> 9637Date: Wed Sep 9 15:59:19 2009 +0530 9638 9639 net: kirkwood_egiga.c: fixed build warning 9640 9641 if link up detection code is disabled through config option, it gives build warning. 9642 This patch fixes the same 9643 9644 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 9645 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9646 9647commit 7194ab809532eeca3e2ee5dc12017cb901cc5842 9648Author: Ben Warren <biggerbadderben@gmail.com> 9649Date: Sun Oct 4 22:37:03 2009 -0700 9650 9651 Convert SMC91111 Ethernet driver to CONFIG_NET_MULTI API 9652 9653 All in-tree boards that use this controller have CONFIG_NET_MULTI 9654 added 9655 Also: 9656 - changed CONFIG_DRIVER_SMC91111 to CONFIG_SMC91111 9657 - cleaned up line lengths 9658 - modified all boards that override weak function in this driver 9659 - modified all eeprom standalone apps to work with new driver 9660 - updated blackfin standalone EEPROM app after testing 9661 9662 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9663 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 9664 9665commit 32e7f239dda8638377edb0d3e7ac269cabbafbe6 9666Author: Prafulla Wadaskar <prafulla@marvell.com> 9667Date: Mon Sep 21 20:28:18 2009 +0530 9668 9669 net: phy: mv88e61xx.c : fixed build warning 9670 9671 following build warning was observed 9672 9673 mv88e61xx.c: In function ‘mv88e61xx_busychk’: 9674 mv88e61xx.c:208: warning: dereferencing type-punned pointer will break strict-aliasing rules 9675 9676 This patch fixes the same 9677 Patch tested for rd6281a board build 9678 9679 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 9680 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9681 9682commit c0b46d8ead3c6c5b569c83544fd71b9d73356869 9683Author: James Clough <james@rtetc.com> 9684Date: Thu Sep 10 09:11:50 2009 +0200 9685 9686 net: Fix problem with 405EZ ethernet interrupt 9687 9688 On 405EZ the RX-/TX-interrupts are coalesced into one IRQ bit in the 9689 UIC. We need to acknowledge the RX-/TX-interrupts in the 9690 SDR0_ICINTSTAT reg as well. 9691 9692 This problem was introduced with commit 9693 d1631fe1 [ppc4xx: Consolidate PPC4xx UIC defines] 9694 9695 Signed-off-by: James Clough <james@rtetc.com> 9696 Signed-off-by: Stefan Roese <sr@denx.de> 9697 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9698 9699commit 91b469c95faf92435e3d5d78292ba78075a3c5ca 9700Author: Mike Frysinger <vapier@gentoo.org> 9701Date: Wed Sep 2 04:18:55 2009 -0400 9702 9703 net: add random_port() prototype 9704 9705 The random_port() is meant to be used by other net code, but without a 9706 prototype, we get fun warnings like: 9707 dns.c: In function 'DnsSend': 9708 dns.c:89: warning: implicit declaration of function 'random_port' 9709 9710 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 9711 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 9712 9713commit 3469424cb6d939c7aedf1e0efdec44a797c0a18c 9714Author: Peter Tyser <ptyser@xes-inc.com> 9715Date: Mon Sep 21 11:20:37 2009 -0500 9716 9717 ppc: Remove reloc_off field from global_data structure 9718 9719 Now that proper relocation is supported, the reloc_off field is no longer 9720 necessary. 9721 9722 Note that the location of the standalone application jump table pointer 9723 in the global data structure is affected by this change, breaking 9724 execution of standalone applications compiled for previous versions of 9725 U-Boot. 9726 9727 We therefore increment XF_VERSION to 6 9728 9729 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9730 Signed-off-by: Wolfgang Denk <wd@denx.de> 9731 9732commit 0630535e2d062dd73c1ceca5c6125c86d1127a49 9733Author: Peter Tyser <ptyser@xes-inc.com> 9734Date: Tue Sep 22 09:27:55 2009 -0500 9735 9736 arm/microblaze/nios/nios2/sh: Remove relocation fixups 9737 9738 These architectures don't need relocation fixups, so reduce their 9739 codesize a bit by defining CONFIG_RELOC_FIXUP_WORKS. 9740 9741 Also remove the reloc_off field from their global data structures 9742 as it is no longer needed. 9743 9744 Note that the location of the standalone application jump table pointer 9745 in the global data structure is affected by this change, breaking 9746 execution of standalone applications compiled for previous versions of 9747 U-Boot. We will therefore increment XF_VERSION in the next commit, 9748 which also touches this area. 9749 9750 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9751 Signed-off-by: Wolfgang Denk <wd@denx.de> 9752 9753commit 521af04d853361b49344b61892eb0618f9f713c5 9754Author: Peter Tyser <ptyser@xes-inc.com> 9755Date: Mon Sep 21 11:20:36 2009 -0500 9756 9757 Conditionally perform common relocation fixups 9758 9759 Add #ifdefs where necessary to not perform relocation fixups. This 9760 allows boards/architectures which support relocation to trim a decent 9761 chunk of code. 9762 9763 Note that this patch doesn't add #ifdefs to architecture-specific code 9764 which does not support relocation. 9765 9766 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9767 9768commit 3cbcfa70b116df1bbdc90ba31c61adcaec058a8a 9769Author: Peter Tyser <ptyser@xes-inc.com> 9770Date: Mon Sep 21 11:20:35 2009 -0500 9771 9772 p3mx: Remove serial relocation fixups 9773 9774 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9775 9776commit 80f73b92a19129854876ec3f1aef531a09e86d2d 9777Author: Peter Tyser <ptyser@xes-inc.com> 9778Date: Mon Sep 21 11:20:34 2009 -0500 9779 9780 lwmon, lwmon5: Remove sysmon POST relocation fixups 9781 9782 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9783 9784commit 331ab60c4a418c39e5b1a05d4648a4155d0ad13e 9785Author: Peter Tyser <ptyser@xes-inc.com> 9786Date: Mon Sep 21 11:20:33 2009 -0500 9787 9788 mpl: Remove memory test relocation fixups 9789 9790 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9791 9792commit 6385b28116f775da4771b768ba9bf93c3aaaf26e 9793Author: Peter Tyser <ptyser@xes-inc.com> 9794Date: Mon Sep 21 11:20:32 2009 -0500 9795 9796 fpga: Remove relocation fixups 9797 9798 PPC boards are the only users of the current FPGA code which is littered 9799 with manual relocation fixups. Now that proper relocation is supported 9800 for PPC boards, remove FPGA manual relocation. 9801 9802 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9803 9804commit cd1011db80287eef933d1599b74cff1116c93134 9805Author: Peter Tyser <ptyser@xes-inc.com> 9806Date: Mon Sep 21 11:20:31 2009 -0500 9807 9808 tsec: Remove PHY command relocation fixups 9809 9810 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9811 9812commit b5650c5d8c99100144d8e4e9af910405f857bb7a 9813Author: Peter Tyser <ptyser@xes-inc.com> 9814Date: Mon Sep 21 11:20:30 2009 -0500 9815 9816 ppc: Remove board-specific command table relocation fixups 9817 9818 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9819 9820commit e6b05e774d7ce1641613cdeffb69c1d48139a869 9821Author: Peter Tyser <ptyser@xes-inc.com> 9822Date: Mon Sep 21 11:20:29 2009 -0500 9823 9824 ppc: Remove extable relocation fixups 9825 9826 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9827 9828commit b32a894011b1436758905fa10e6a03b8539c43c9 9829Author: Peter Tyser <ptyser@xes-inc.com> 9830Date: Mon Sep 21 11:20:28 2009 -0500 9831 9832 ppc: Remove pci config table pointer relocation fixups 9833 9834 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9835 9836commit a0e2066f392782730f0398095e583c87812d97f2 9837Author: Peter Tyser <ptyser@xes-inc.com> 9838Date: Mon Sep 21 11:20:27 2009 -0500 9839 9840 ppc: Remove board.c relocation fixups 9841 9842 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9843 9844commit 244615197469dd6fe75ae082f38424b97c79aeaf 9845Author: Peter Tyser <ptyser@xes-inc.com> 9846Date: Mon Sep 21 11:20:26 2009 -0500 9847 9848 ppc: Check for compilers that don't support relocation 9849 9850 Certain ppc compilers are known not to generate the .fixup section 9851 properly. The .fixup section is necessary to create a relocatable 9852 U-Boot image. A basic check for the existence of the .fixup section 9853 should hopefully catch the majority of broken compilers which don't 9854 support relocation. 9855 9856 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9857 9858commit 858290178f222d998b6425d85cf06822467918f3 9859Author: Peter Tyser <ptyser@xes-inc.com> 9860Date: Mon Sep 21 11:20:25 2009 -0500 9861 9862 ppc: Enable full relocation to RAM 9863 9864 The following changes allow U-Boot to fully relocate from flash to 9865 RAM: 9866 - Remove linker scripts' .fixup sections from the .text section 9867 - Add -mrelocatable to PLATFORM_RELFLAGS for all boards 9868 - Define CONFIG_RELOC_FIXUP_WORKS for all boards 9869 9870 Previously, U-Boot would partially relocate, but statically initialized 9871 pointers needed to be manually relocated. 9872 9873 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 9874 9875commit 3b4bd2d75c4b3c1a4570f47ffaaed66f56a78ff4 9876Author: Matthias Fuchs <matthias.fuchs@esd.eu> 9877Date: Wed Sep 30 11:55:04 2009 +0200 9878 9879 ppc4xx: Add SDRAM detection for PMC440 boards 9880 9881 This patch adds support to detect the amount of DDR2 SDRAM 9882 on PMC440 modules. Detection is done by probing through 9883 a list of available and supported hardware configurations 9884 from 1GByte down to 256MB. 9885 9886 The static TLB entry is replaced by dynamically created entries. 9887 9888 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 9889 Signed-off-by: Stefan Roese <sr@denx.de> 9890 9891commit fb95169e39f2d03270bed552d27bbb02627a443e 9892Author: Stefan Roese <sr@denx.de> 9893Date: Mon Sep 28 17:33:45 2009 +0200 9894 9895 ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling 9896 9897 This patch merges the ECC handling (ECC parity byte writing) into one 9898 file (ecc.c) for all PPC4xx SDRAM controllers except for PPC440EPx/GRx. 9899 This exception is because only those PPC's use the completely different 9900 Denali SDRAM controller core. 9901 9902 Previously we had two routines to generate/write the ECC parity bytes. 9903 With this patch we now only have one core function left. 9904 9905 Tested on Kilauea (no ECC) and Katmai (with and without ECC). 9906 9907 Signed-off-by: Stefan Roese <sr@denx.de> 9908 Cc: Felix Radensky <felix@embedded-sol.com> 9909 Cc: Grant Erickson <gerickson@nuovations.com> 9910 Cc: Pieter Voorthuijsen <pv@prodrive.nl> 9911 9912commit d24bd2517a2b847f773453eab0ee5b1c8ebc74ba 9913Author: Felix Radensky <felix@embedded-sol.com> 9914Date: Sun Sep 27 23:56:12 2009 +0200 9915 9916 ppc4xx: Reorganize DDR2 ECC handling 9917 9918 Reorganize DDR2 ECC handling to use common code for 9919 SPD DIMMs and soldered SDRAM. Also, use common code 9920 to display SDRAM info (ECC, CAS latency) for SPD and 9921 soldered SDRAM variants. 9922 9923 Signed-off-by: Felix Radensky <felix@embedded-sol.com> 9924 Signed-off-by: Stefan Roese <sr@denx.de> 9925 9926commit 46a887949e11d2cddb91e17ca47e73341d71a379 9927Author: Mike Frysinger <vapier@gentoo.org> 9928Date: Wed Sep 30 03:09:16 2009 -0400 9929 9930 Blackfin: update default console= settings 9931 9932 The Linux kernel has changed the way it numbers serial ports, so update 9933 the default command line to match it. 9934 9935 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 9936 9937commit 4c5f307d58604dea001cccf388aa077a902ab0a5 9938Author: Mike Frysinger <vapier@gentoo.org> 9939Date: Mon Sep 21 18:04:49 2009 -0400 9940 9941 Blackfin: bf533-ezkit: update env location 9942 9943 The u-boot image has outgrown the current space and overflowed into the 9944 env sector. So move the env to the next available sector (we've already 9945 allocated the first few sectors anyways for u-boot). 9946 9947 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 9948 9949commit 24b17d8a3c3a4b9ceaf6363ebe0021011b0b8bd8 9950Author: Kumar Gala <galak@kernel.crashing.org> 9951Date: Wed Sep 30 08:39:44 2009 -0500 9952 9953 ppc/85xx: get_law_entry isn't used in CONFIG_NAND_SPL 9954 9955 Don't include get_law_entry as part of the NAND_SPL build since the 9956 code isnt used. 9957 9958 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 9959 9960commit 693a048d8ac191181f5b9adbff642d3f1bbd479f 9961Author: Mingkai Hu <Mingkai.hu@freescale.com> 9962Date: Wed Sep 23 15:20:39 2009 +0800 9963 9964 Add README.mpc8536ds 9965 9966 Add boot from NAND/eSDHC/eSPI description 9967 9968 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 9969 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 9970 9971commit e40ac4870c6e72302044e98338322f45c34435bd 9972Author: Mingkai Hu <Mingkai.hu@freescale.com> 9973Date: Wed Sep 23 15:20:38 2009 +0800 9974 9975 On-chip ROM boot: MPC8536DS support 9976 9977 The MPC8536E is capable of booting from the on-chip ROM - boot from 9978 eSDHC and boot from eSPI. When power on, the porcessor excutes the 9979 ROM code to initialize the eSPI/eSDHC controller, and loads the mian 9980 U-Boot image from the memory device that interfaced to the controller, 9981 such as the SDCard or SPI EEPROM, to the target memory, e.g. SDRAM or 9982 L2SRAM, then boot from it. 9983 9984 The memory device should contain a specific data structure with control 9985 word and config word at the fixed address. The config word direct the 9986 process how to config the memory device, and the control word direct 9987 the processor where to find the image on the memory device, or where 9988 copy the main image to. The user can use any method to store the data 9989 structure to the memory device, only if store it on the assigned address. 9990 9991 The on-chip ROM code will map the whole 4GB address space by setting 9992 entry0 in the TLB1, so the main image need to switch to Address space 1 9993 to disable this mapping and map the address space again. 9994 9995 This patch implements loading the mian U-Boot image into L2SRAM, so 9996 the image can configure the system memory by using SPD EEPROM. 9997 9998 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 9999 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10000
10001commit 9a1a0aedbbd56f901bfbc124f18ec6d9dcefe282 10002Author: Mingkai Hu <Mingkai.hu@freescale.com> 10003Date: Wed Sep 23 15:20:37 2009 +0800 10004 10005 NAND boot: MPC8536DS support 10006 10007 MPC8536E can support booting from NAND flash which uses the 10008 image u-boot-nand.bin. This image contains two parts: a 4K 10009 NAND loader and a main U-Boot image. The former is appended 10010 to the latter to produce u-boot-nand.bin. The 4K NAND loader 10011 includes the corresponding nand_spl directory, along with the 10012 code twisted by CONFIG_NAND_SPL. The main U-Boot image just 10013 like a general U-Boot image except the parts that included by 10014 CONFIG_SYS_RAMBOOT. 10015 10016 When power on, eLBC will automatically load from bank 0 the 10017 4K NAND loader into the FCM buffer RAM where CPU can execute 10018 the boot code directly. In the first stage, the NAND loader 10019 copies itself to RAM or L2SRAM to free up the FCM buffer RAM, 10020 then loads the main image from NAND flash to RAM or L2SRAM 10021 and boot from it. 10022 10023 This patch implements the NAND loader to load the main image 10024 into L2SRAM, so the main image can configure the RAM by using 10025 SPD EEPROM. In the first stage, the NAND loader copies itself 10026 to the second to last 4K address space, and uses the last 4K 10027 address space as the initial RAM for stack. 10028 10029 Obviously, the size of L2SRAM shouldn't be less than the size 10030 of the image used. If so, the workaround is to generate another 10031 image that includes the code to configure the RAM by SPD and 10032 load it to L2SRAM first, then relocate the main image to RAM 10033 to boot up. 10034 10035 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 10036 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10037 10038commit 07355700523203c5f72018712cf0d93683f255c8 10039Author: Mingkai Hu <Mingkai.hu@freescale.com> 10040Date: Wed Sep 23 15:19:32 2009 +0800 10041 10042 mpc8536: fix board config file line length 10043 10044 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 10045 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10046 10047commit dd9ca98f2600000e5c2744735040100b770650e7 10048Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10049Date: Fri Sep 25 11:14:11 2009 -0400 10050 10051 sbc8548: reclaim wasted sector in boot flash 10052 10053 By nature of being based off the MPC8548CDS board, this 10054 board inherited an ENV_SIZE setting of 256k. But since 10055 it has a smaller flash device (8MB soldered on), it has 10056 a native sector size of 128k, and hence the ENV_SIZE was 10057 causing 2 sectors to be used for the environment. 10058 10059 By removing the unused sector, we can push TEXT_BASE up 10060 closer to the end of address space and reclaim that 10061 sector for any other application. This also fixes the 10062 mismatch between TEXT_BASE and MONITOR_LEN reported by 10063 Kumar earlier. 10064 10065 Since this board also supports the ability to boot off 10066 the 64MB SODIMM flash, this change is forward looking 10067 with that in mind; i.e. the settings for MONITOR_LEN 10068 and ENV_SIZE will work when the 512k sectors of the 10069 SODIMM flash are used for alternate boot in the future. 10070 10071 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10072 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10073 10074commit 8280912e0657e96a7b7d8da7003656d62b0fd109 10075Author: Kumar Gala <galak@kernel.crashing.org> 10076Date: Mon Sep 28 21:38:00 2009 -0500 10077 10078 ppc/85xx: Clean up immap_85xx.h 10079 10080 * Converted all white space to tabs 10081 * Converted all types to u8/u16/u32 10082 * Reduce lines to fit in 80 columns 10083 * Renamed MPC85xx_{Q,B}MAN -> FSL_CORENET_{Q,B}MAN 10084 10085 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10086 10087commit d44e9c1736283f0abc5d3c5d28cfea8480c93a79 10088Author: Scott Wood <scottwood@freescale.com> 10089Date: Mon Sep 28 16:33:18 2009 -0500 10090 10091 NAND: davinci: Fix warnings when 4-bit ECC not used 10092 10093 I accidentally left v2 of "NAND: DaVinci:Adding 4 BIT ECC support" 10094 applied when I pushed the tree last merge window, and missed these fixes 10095 which were in v3 of that patch. 10096 10097 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 10098 Signed-off-by: Scott Wood <scottwood@freescale.com> 10099 10100commit ca6189db484882798f2a35a476c07e618e21f6d3 10101Author: Kyungmin Park <kmpark@infradead.org> 10102Date: Tue Sep 22 09:05:00 2009 +0900 10103 10104 Refactor OneNAND IPL code 10105 10106 Refactoring the OneNAND IPL code 10107 10108 and some minor fixed: 10109 - Remove unnecessary header file 10110 - Fix wrong access at read interrupt 10111 - The recent OneNAND has 4KiB pagesize 10112 10113 Also Board can override OneNAND IPL image 10114 10115 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 10116 10117commit a05e3f9a084fc8951d87745b3a91df246432df7d 10118Author: Shinya Kuribayashi <skuribay@pobox.com> 10119Date: Sat Sep 12 18:01:40 2009 +0900 10120 10121 MIPS: VCT: Remove read_spareram reference 10122 10123 The commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29 (OneNAND: Remove 10124 unused read_spareram and add unlock_all as kernel does) forgot to remove 10125 a local reference to read_spareram in board/micronas/vct/ebi_onenand.c, 10126 which causes the following build failure when configured with OneNAND: 10127 10128 ebi_onenand.c: In function 'onenand_board_init': 10129 ebi_onenand.c:196: error: 'struct onenand_chip' has no member named 'read_spareram' 10130 make[1]: *** [ebi_onenand.o] Error 1 10131 make[1]: *** Waiting for unfinished jobs.... 10132 make: *** [board/micronas/vct/libvct.a] Error 2 10133 10134 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com> 10135 Acked-by: Stefan Roese <sr@denx.de> 10136 Cc: Kyungmin Park <kyungmin.park@samsung.com> 10137 Signed-off-by: Scott Wood <scottwood@freescale.com> 10138 10139commit ef37c6835eac66206a9c7c11f0c7186f5d64bf91 10140Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 10141Date: Fri Sep 25 14:05:57 2009 +0200 10142 10143 ubifs: Correct dereferencing of files-after-symlinks 10144 10145 Files in directories which are symlinked to were not dereferenced 10146 correctly in last commit. E.g., with a symlink 10147 10148 /boot/lnk -> /boot/real_dir 10149 10150 loading 10151 10152 /boot/lnk/uImage 10153 10154 will fail. This patch fixes that by simply seeing to it that the target 10155 base directory has a slash after it. 10156 10157 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 10158 Signed-off-by: Stefan Roese <sr@denx.de> 10159 10160commit b306db2f1bf561b5823a655c677fe28cfad80cfb 10161Author: Stefan Roese <sr@denx.de> 10162Date: Thu Sep 24 14:10:30 2009 +0200 10163 10164 ppc4xx: Remove mtsdram0() marcos and use common mtsdram() instead 10165 10166 Additionally some whitespace coding style fixes. 10167 10168 Signed-off-by: Stefan Roese <sr@denx.de> 10169 10170commit 95b602bab5fec2fffab07a01ea3947c70d1bacc1 10171Author: Stefan Roese <sr@denx.de> 10172Date: Thu Sep 24 13:59:57 2009 +0200 10173 10174 ppc4xx: Convert PPC4xx SDRAM defines from lower case to upper case 10175 10176 The latest PPC4xx register cleanup patch missed some SDRAM defines. 10177 This patch now changes lower case UIC defines to upper case. Also 10178 some names are changed to match the naming in the IBM/AMCC users 10179 manuals (e.g. mem_mcopt1 -> SDRAM0_CFG). 10180 10181 Signed-off-by: Stefan Roese <sr@denx.de> 10182 10183commit 952e7760bfc5b0e3b142b9ce34e7fbb7d008c900 10184Author: Stefan Roese <sr@denx.de> 10185Date: Thu Sep 24 09:55:50 2009 +0200 10186 10187 ppc4xx: Convert PPC4xx UIC defines from lower case to upper case 10188 10189 The latest PPC4xx register cleanup patch missed the UIC defines. 10190 This patch now changes lower case UIC defines to upper case. 10191 10192 Signed-off-by: Stefan Roese <sr@denx.de> 10193 10194commit d1c9e5b37901b53ffc1ce3f08ec8ed61bfd557b6 10195Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 10196Date: Tue Sep 22 13:40:44 2009 +0200 10197 10198 fsl_i2c: Do not generate STOP after read. 10199 10200 __i2c_read always ends with a STOP condition thereby releasing 10201 the bus. It is cleaner to do the STOP magic in i2c_read(), like 10202 i2c_write() does. This may also help future multimaster systems which 10203 wants to hold on to the bus until all transactions are finished. 10204 10205 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 10206 10207commit 99404202127346b9e91503bbd69deafa18c980c4 10208Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 10209Date: Thu Sep 17 11:07:17 2009 +0200 10210 10211 fsl_i2c: Impl. AN2919, rev 5 to calculate FDR/DFSR 10212 10213 The latest AN2919 has changed the way FDR/DFSR should be calculated. 10214 Update the driver according to spec. However, Condition 2 10215 is not accounted for as it is not clear how to do so. 10216 10217 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 10218 Acked-by: Wolfgang Grandegger <wg@grandegger.com> 10219 10220commit d01ee4db9302cfccaa5c548a1c4e873b415681a0 10221Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 10222Date: Thu Sep 17 11:07:16 2009 +0200 10223 10224 fsl_i2c: Add CONFIG_FSL_I2C_CUSTOM_{DFSR/FDR} 10225 10226 Some boards need a higher DFSR value than the spec currently 10227 recommends so give these boards the means to define there own. 10228 10229 For completeness, add CONFIG_FSL_I2C_CUSTOM_FDR too. 10230 10231 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 10232 10233commit 21f4cbb77299788e2b06c9b0f48cf20a5ab00d4a 10234Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 10235Date: Thu Sep 17 11:07:15 2009 +0200 10236 10237 fsl_i2c: Wait for STOP condition to propagate 10238 10239 After issuing a STOP one must wait until the STOP has completed 10240 on the bus before doing something new to the controller. 10241 10242 Also add an extra read of SR as the manual mentions doing that 10243 is a good idea. 10244 10245 Remove surplus write of CR just before a write, isn't required and 10246 could potentially disturb the I2C bus. 10247 10248 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 10249 10250commit c7190f028fa950d4d36b6d0b4bb3fc72602ec54c 10251Author: Kim Phillips <kim.phillips@freescale.com> 10252Date: Fri Sep 25 18:19:44 2009 -0500 10253 10254 mpc83xx: retain POR values of non-configured ACR, SPCR, SCCR, and LCRR bitfields 10255 10256 some LCRR bits are not documented throughout the 83xx family RMs. 10257 New board porters copying similar board configurations might omit 10258 setting e.g., DBYP since it was not documented in their SoC's RM. 10259 10260 Prevent them bricking their board by retaining power on reset values 10261 in bit fields that the board porter doesn't explicitly configure 10262 via CONFIG_SYS_<registername>_<bitfield> assignments in the board 10263 config file. 10264 10265 also move LCRR assignment to cpu_init_r[am] to help ensure no 10266 transactions are being executed via the local bus while CLKDIV is being 10267 modified. 10268 10269 also start to use i/o accessors. 10270 10271 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 10272 10273commit 00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd 10274Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10275Date: Mon Sep 21 17:44:51 2009 -0400 10276 10277 sbc8349: tidy up Makefile to use new configuration script. 10278 10279 Commit 804d83a5 allows us to move all the configuration 10280 variation tweaks out of the top level Makefile and down 10281 into the board config header. This takes advantage of 10282 that for the sbc8349 board. 10283 10284 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10285 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 10286 10287commit da6eea0f48c24a318e6de69d6bca0bb5ab70572b 10288Author: Anton Vorontsov <avorontsov@ru.mvista.com> 10289Date: Wed Sep 16 23:22:08 2009 +0400 10290 10291 mpc83xx: mpc8360emds: Add QE USB device tree fixups 10292 10293 With this patch we can change QE USB mode without need to hand-edit 10294 the device tree. 10295 10296 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 10297 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 10298 10299commit 89da44ce3fe1638312d71cb3add8c6a6d2c7c1f3 10300Author: Anton Vorontsov <avorontsov@ru.mvista.com> 10301Date: Wed Sep 16 23:21:59 2009 +0400 10302 10303 mpc83xx: mpc8360emds: Use RGMII-ID mode, add workarounds for rev. 2.1 CPUs 10304 10305 This patch fixes various ethernet issues with gigabit links handling 10306 in U-Boot. The workarounds originally implemented by Kim Phillips for 10307 Linux kernel. 10308 10309 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 10310 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 10311 10312commit 034477bb31948d698d18b84bc0834c3e25a14d04 10313Author: Anton Vorontsov <avorontsov@ru.mvista.com> 10314Date: Wed Sep 16 23:21:57 2009 +0400 10315 10316 mpc83xx: mpc8360emds: Don't use LBC SDRAM when DDR is available 10317 10318 Since commit 5c2ff323a94e27e481f70c44838d43fcd844dd46 ("mpc8360emds: 10319 rework LBC SDRAM setup"), LBC SDRAM is available for use in Linux. 10320 10321 Though, it appears that QE Ethernet in Gigabit mode can't transmit 10322 large packets when it tries to work with a data in LBC SDRAM (memtest 10323 didn't discover any issues, is LBC SDRAM just too slow?). 10324 10325 With this patch we can still use the board without DDR memory, but 10326 if DDR is available, we don't use LBC SDRAM. 10327 10328 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 10329 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 10330 10331commit d77c779bc23596aa3693d1c5c4d5b6e1072f93f2 10332Author: Anton Vorontsov <avorontsov@ru.mvista.com> 10333Date: Wed Sep 16 23:21:55 2009 +0400 10334 10335 net: uec: Fix uccf.h and uec.h headers to include headers they depend on 10336 10337 Headers should include headers containing prototypes and defines they 10338 depend on, don't assume that they're included by somebody else. 10339 10340 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 10341 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 10342 10343commit 6185f80c311cc3bdef2f8d5096c61e40ca6f48b2 10344Author: Anton Vorontsov <avorontsov@ru.mvista.com> 10345Date: Wed Sep 16 23:21:53 2009 +0400 10346 10347 net: uec_phy: Implement TXID and RXID RGMII modes for Marvell PHYs 10348 10349 This will be needed for MPC8360E-MDS boards with rev. 2.1 CPUs. 10350 10351 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 10352 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 10353 10354commit 984f10baac8ef6032df52f135943d6b0bc96f724 10355Author: Wolfgang Denk <wd@denx.de> 10356Date: Fri Sep 25 14:16:00 2009 +0200 10357 10358 mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[] 10359 10360 Signed-off-by: Wolfgang Denk <wd@denx.de> 10361 10362commit 6e748ea004473cce99fbde6382dd580c10ffdb60 10363Author: Ken MacLeod <ken@bitsko.slc.ut.us> 10364Date: Fri Sep 11 15:16:18 2009 -0500 10365 10366 cmd_fdt.c: fix parse of byte streams and strings 10367 10368 Commit 4abd844d8e extended the fdt command parser to handle property 10369 strings which are split across multiple arguments but it was broken for 10370 byte streams and strings. 10371 10372 Byte stream parsing: 10373 10374 * Fixes where it would terminate early or go into an endless loop. 10375 10376 * Fixes a 0x00 being inserted into the data if there is a space after 10377 '[' or a separate argument. 10378 10379 * Fixes dereferencing the argument pointer after the last argument. 10380 10381 * Checks for bad characters. 10382 10383 String parsing: 10384 10385 * Treat multiple arguments as a string list. This fixes an issue where 10386 only the last argument was stored. 10387 10388 Signed-off-by: Ken MacLeod <ken@bitsko.slc.ut.us> 10389 10390commit 3887c3fbdbbe6bbb4df60ed415c8e1ab9fe56b5e 10391Author: Heiko Schocher <hs@denx.de> 10392Date: Wed Sep 23 07:56:08 2009 +0200 10393 10394 mucmc52, uc101: delete ata@3a00 node, if no CF card is detected 10395 10396 U-Boot can detect if an IDE device is present or not. 10397 If not, and this new config option is activated, U-Boot 10398 removes the ATA node from the DTS before booting Linux, 10399 so the Linux IDE driver does not probe the device and 10400 crash. This is needed for buggy hardware (uc101) where 10401 no pull down resistor is connected to the signal IDE5V_DD7. 10402 10403 Signed-off-by: Heiko Schocher <hs@denx.de> 10404 10405commit 7f625fc6d3ba8f890e843ac01717804c2462ed53 10406Author: Heiko Schocher <hs@denx.de> 10407Date: Wed Sep 23 07:56:04 2009 +0200 10408 10409 mpc5200, mucmc52, uc101: config cleanup 10410 10411 - As these boards are similiar, collect common config options 10412 in manroland/common.h and manroland/mpc52xx-common.h 10413 for mpc5200 specific common options for this manufacturer. 10414 - add OF support 10415 - update default environment 10416 10417 Signed-off-by: Heiko Schocher <hs@denx.de> 10418 10419 Minor edit of commit message. 10420 10421 Signed-off-by: Wolfgang Denk <wd@denx.de> 10422 10423commit 9d142ea8f787882ab732fa531a34db091bfa363d 10424Author: Wolfgang Denk <wd@denx.de> 10425Date: Fri Sep 25 00:57:49 2009 +0200 10426 10427 Fix "ppc/85xx: Clean up use of LAWAR defines" breakage 10428 10429 Commit 002741ae86 modified include/asm-ppc/mmu.h such that the LAWAR_ 10430 defines were only enabled for the 83xx platform, but they are also 10431 needed on MPC512x system. Enabling these for E300 systems seems thus 10432 more appropriate. 10433 10434 Signed-off-by: Wolfgang Denk <wd@denx.de> 10435 10436commit a5aa3998ab6408a6ac738a3ce8005e647b9465f8 10437Author: Martha M Stan <mmarx@silicontkx.com> 10438Date: Mon Sep 21 14:08:00 2009 -0400 10439 10440 Add Elpida Memory Configuration to mpc5121ads Boards 10441 10442 Signed-off-by: Martha M Stan <mmarx@silicontkx.com> 10443 10444 Minor coding style cleanup. 10445 10446 Signed-off-by: Wolfgang Denk <wd@denx.de> 10447 10448commit 054197ba8ee5ef1e41694df58531b6e53ec43f2d 10449Author: Martha M Stan <mmarx@silicontkx.com> 10450Date: Mon Sep 21 14:07:14 2009 -0400 10451 10452 mpc512x: Streamlined fixed_sdram() init sequence. 10453 10454 Signed-off-by: Martha M Stan <mmarx@silicontkx.com> 10455 10456 Minor cleanup: 10457 10458 Re-ordered default_mddrc_config[] to have matching indices. 10459 10460 This allows to use the same index "N" for source and target fields; 10461 before, we had code like this 10462 10463 out_be32(&im->mddrc.ddr_time_config2, mddrc_config[3]); 10464 10465 which always looked like a copy & paste error because 2 != 3. 10466 10467 Also, use NULL when meaning a null pointer. 10468 10469 Signed-off-by: Wolfgang Denk <wd@denx.de> 10470 10471commit 39aaca1f66a0e5b1204b0789f6c0097938c00ad1 10472Author: Kumar Gala <galak@kernel.crashing.org> 10473Date: Thu Mar 19 02:46:19 2009 -0500 10474 10475 ppc/p4080: Determine various chip frequencies on CoreNet platforms 10476 10477 The means to determine the core, bus, and DDR frequencies are completely 10478 new on CoreNet style platforms. Additionally on p4080 we can have 10479 different frequencies for FMAN and PME IP blocks. We need to keep track 10480 of the FMAN & PME frequencies since they are used for time stamping 10481 capabilities inside each block. 10482 10483 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10484 10485commit 3c2a67eec8a0facc865b400caca52e7f6b7adf01 10486Author: Kumar Gala <galak@kernel.crashing.org> 10487Date: Thu Sep 17 01:52:37 2009 -0500 10488 10489 ppc/p4080: Handle timebase enabling and frequency reporting 10490 10491 On CoreNet style platforms the timebase frequency is the bus frequency 10492 defined by 16 (on PQ3 it is divide by 8). Also on the CoreNet platforms 10493 the core not longer controls the enabling of the timebase. We now need 10494 to enable the boot core's timebase via CCSR register writes. 10495 10496 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10497 10498commit 7e4259bba4c56536760e42d32dacfb3233f216fd 10499Author: Kumar Gala <galak@kernel.crashing.org> 10500Date: Thu Mar 19 02:39:17 2009 -0500 10501 10502 ppc/p4080: Add various p4080 related defines (and p4040) 10503 10504 There are various locations that we have chip specific info: 10505 10506 * Makefile for which ddr code to build 10507 * Added p4080 & p4040 to cpu_type_list and SVR list 10508 * Added number of LAWs for p4080 10509 * Set CONFIG_MAX_CPUS to 8 for p4080 10510 10511 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10512 10513commit 39a7e7fd538cdf49e7e8a2f0634ea5e15e12b4ec 10514Author: Kumar Gala <galak@kernel.crashing.org> 10515Date: Thu Sep 17 01:44:39 2009 -0500 10516 10517 ppc/p4080: CoreNet platfrom style secondary core release 10518 10519 The CoreNet platform style of bringing secondary cores out of reset is 10520 a bit different that the PQ3 style. Mostly the registers that we use 10521 to setup boot translation, enable time bases, and boot release the cores 10522 have moved around. 10523 10524 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10525 10526commit a880cf3e0e1c220d780eccd0b101170c4499485d 10527Author: Kumar Gala <galak@kernel.crashing.org> 10528Date: Thu Sep 17 01:44:00 2009 -0500 10529 10530 ppc/p4080: CoreNet platfrom style CCSRBAR setting 10531 10532 On CoreNet based platforms the CCSRBAR address is split between an high & 10533 low register and we no longer shift the address. 10534 10535 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10536 Signed-off-by: Scott Wood <scottwood@freescale.com> 10537 10538commit 418ec8584343f04048e2cc7ee96b6b29be54ad97 10539Author: Kumar Gala <galak@kernel.crashing.org> 10540Date: Thu Mar 19 02:32:23 2009 -0500 10541 10542 ppc/p4080: Add support for CoreNet style platform LAWs 10543 10544 On CoreNet based platforms the LAW address is split between an high & 10545 low register and we no longer shift the address. Also, the target IDs 10546 on CoreNet platforms have been completely re-assigned. 10547 10548 Additionally, added a new find_law() API to which LAW an address hits in. 10549 This is need for the CoreNet style boot release code since it will need 10550 to determine what the target ID should be set to for boot window 10551 translation. 10552 10553 Finally, enamed LAWAR_EN to LAW_EN and moved to header so we can use 10554 it elsewhere. 10555 10556 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10557 10558commit 01df521217957d77d53c2d570183eded7030938f 10559Author: Kumar Gala <galak@kernel.crashing.org> 10560Date: Wed Sep 16 09:43:12 2009 -0500 10561 10562 ppc/p4080: Add p4080 platform immap definitions 10563 10564 The p4080 SoC has a significant amount of commonality with the 85xx/PQ3 10565 platform. We reuse the 85xx immap and just add new definitions for 10566 local access and global utils. The global utils is now broken into 10567 global utils, clocking and run control/power management. 10568 10569 The offsets from CCSR for a number of blocks have also changed. We 10570 introduce the CONFIG_FSL_CORENET define to distinquish the PQ3 style of 10571 platform from the new p4080 platform. We don't use QoirQ as there are 10572 products (like p2020) that are PQ3 based platforms but have the QoirQ 10573 name. 10574 10575 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10576 10577commit 25bacf7a2b096496e2c58f2de4e5b2bce8fba038 10578Author: Kumar Gala <galak@kernel.crashing.org> 10579Date: Tue Sep 22 15:45:44 2009 -0500 10580 10581 ppc/85xx: Fix enabling of L2 cache 10582 10583 We need to flash invalidate the locks in addition to the cache 10584 before we enable. 10585 10586 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10587 10588commit cb0ff65c619efacdc0ba69aa8ee6ede7dd364a38 10589Author: Vivek Mahajan <vivek.mahajan@freescale.com> 10590Date: Tue Sep 22 12:48:27 2009 +0530 10591 10592 85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ 10593 10594 The code assumed names where just numbers and always prefixed 'mpc'. 10595 However newer QorIQ don't follow the mpc naming scheme. 10596 10597 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 10598 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10599 10600commit 234a89d911ce28e46372f555d7c14e28424f2b0d 10601Author: Mingkai Hu <Mingkai.hu@freescale.com> 10602Date: Tue Sep 22 14:53:21 2009 +0800 10603 10604 ppc/85xx: add cpu init config file for boot from NAND 10605 10606 When boot from NAND, the NAND flash must be connected to br/or0. 10607 Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to 10608 it. 10609 10610 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 10611 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10612 10613commit 266139b88b43ae1d87abb5f5431e6f57b801795f 10614Author: Mingkai Hu <Mingkai.hu@freescale.com> 10615Date: Tue Sep 22 14:53:34 2009 +0800 10616 10617 immap_85xx: add porpllsr's plat ratio definition 10618 10619 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 10620 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10621 10622commit 098bcbae3172d73d24ca8ba196328d901eed4132 10623Author: Mingkai Hu <Mingkai.hu@freescale.com> 10624Date: Tue Sep 22 14:53:10 2009 +0800 10625 10626 ppc/85xx: add ld script file for boot from NAND 10627 10628 The first stage 4K image uses a seperate ld script file to 10629 generate 4K image. This patch moves it to the cpu/mpc85xx/* 10630 to make it avaliable for 85xx platform. 10631 10632 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 10633 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10634 10635commit 8439f05cfd8cbb38485376a34d9fe297ba262737 10636Author: Peter Tyser <ptyser@xes-inc.com> 10637Date: Mon Sep 21 23:09:28 2009 -0500 10638 10639 mpc8610hpcd: Use common 86xx fdt fixup code 10640 10641 Using the common 86xx fdt fixups removes some board-specific code and 10642 should make the mpc8610hpcd easier to maintain in the long run. 10643 10644 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 10645 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10646 10647commit 928435d11b898870415910efff87a4d6399cecb8 10648Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10649Date: Mon Sep 21 17:19:17 2009 -0400 10650 10651 sbc85x0: tidy up Makefile to use new configuration script. 10652 10653 Commit 804d83a5 allows us to move all the configuration 10654 variation tweaks out of the top level Makefile and down 10655 into the boards config header. This takes advantage of 10656 that for the sbc8540/sbc8560 boards. 10657 10658 There were a couple of cheezy comments pointing at incorrect 10659 files, or files that don't exist, so I've cleaned those up too. 10660 10661 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10662 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10663 10664commit 2738bc8df65ec905094d83f62f87fed123a03b9c 10665Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10666Date: Sun Sep 20 20:36:06 2009 -0400 10667 10668 sbc8548: allow enabling PCI via a make config option 10669 10670 Prior to this commit, to enable PCI, you had to go manually 10671 edit the board config header, and if you had 33MHz PCI, you 10672 had to manually change CONFIG_SYS_NS16550_CLK too, which was 10673 not real user friendly, 10674 10675 This adds the typical PCI and clock speed make targets to the 10676 toplevel Makefile in accordance with what is being done with 10677 other boards (i.e. using the "-t" to mkconfig). 10678 10679 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10680 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10681 10682commit fdc7eb90b504daa020f290604d50da8f7cb70d8a 10683Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10684Date: Sun Sep 20 20:36:05 2009 -0400 10685 10686 sbc8548: update PCI/PCI-e support code 10687 10688 The PCI/PCI-e support for the sbc8548 was based on an earlier 10689 version of what the MPC8548CDS board was using, and in its 10690 current state it won't even compile. This re-syncs it to match 10691 the latest codebase and makes use of the new shared PCI functions 10692 to reduce board duplication. 10693 10694 It borrows from the MPC8568MDS, in that it pulls the PCI-e I/O 10695 back to 0xe280_0000 (where PCI2 would be on MPC8548CDS), and 10696 similarly it coalesces the PCI and PCI-e mem into one single TLB. 10697 10698 Both PCI-x and PCI-e have been tested with intel e1000 cards 10699 under linux (with an accompanying dts change in place) 10700 10701 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10702 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10703 10704commit a8b3e90f798e0cca5f11c912f9d0823a1c5b6c24 10705Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10706Date: Sun Sep 20 20:36:01 2009 -0400 10707 10708 fsl_pci: create a SET_STD_PCI_INFO() helper wrapper 10709 10710 Recycle the recently added PCI-e wrapper used to reduce board 10711 duplication of code by creating a similar version for plain PCI. 10712 10713 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10714 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10715 10716commit 11d5a629f8a40f9d7cffc74e58f4e3ed258e56ab 10717Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10718Date: Sun Sep 20 20:36:04 2009 -0400 10719 10720 sbc8548: correct local bus SDRAM size from 64M to 128M 10721 10722 The size of the LB SDRAM on this board is 128MB, spanning CS3 10723 and CS4. It was previously only being configured for 64MB on 10724 CS3, since that was what the original codebase of the MPC8548CDS 10725 had. In addition to setting up BR4/OR4, this also adds the TLB 10726 entry for the second half of the SDRAM. 10727 10728 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10729 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10730 10731commit 0c7e4d45d9fb3c9e503ee93d50572d346dae150e 10732Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10733Date: Sun Sep 20 20:36:03 2009 -0400 10734 10735 sbc8548: use I/O accessors 10736 10737 Sweep throught the board specific file and replace the various 10738 register proddings with the equivalent I/O accessors. 10739 10740 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10741 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10742 10743commit fc38eb98ff226f2c53eecbee033a6ab7619473dc 10744Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10745Date: Sun Sep 20 20:36:02 2009 -0400 10746 10747 sbc8548: remove eTSEC3/4 voltage hack 10748 10749 With only eTSEC1 and 2 being brought out to RJ-45 connectors, we 10750 aren't interested in the eTSEC3/4 voltage hack on this board 10751 10752 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10753 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10754 10755commit 9b3ba24f18900633a394416cc056c44a1a6eb754 10756Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10757Date: Fri Sep 18 19:08:41 2009 -0400 10758 10759 sbc8548: enable access to second bank of flash 10760 10761 The sbc8548 has a 64MB SODIMM flash module off of CS6 that 10762 previously wasn't enumerated by u-boot. There were already 10763 BR6/OR6 settings for it [used by cpu_init_f()] but there 10764 was no TLB entry and it wasn't in the list of flash banks 10765 reported to u-boot. 10766 10767 The location of the 64MB flash is "pulled back" 8MB from 10768 a 64MB boundary, in order to allow address space for the 10769 8MB boot flash that is at the end of 32 bit address space. 10770 This means creating two 4MB TLB entries for the 8MB chunk, 10771 and then expanding the original boot flash entry to 64MB 10772 in order to cover the 8MB boot flash and the remainder 10773 (56MB) of the user flash. 10774 10775 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10776 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10777 10778commit ded58f4153923dfff16d2f96495bd7acf1f7e10e 10779Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10780Date: Wed Sep 23 17:30:57 2009 -0400 10781 10782 sbc8548: cosmetic line re-wrap 10783 10784 Fix the extra long lines to be consistent with u-boot coding style. 10785 No functional change here. 10786 10787 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10788 10789commit 2c40acd3525b75db3fcd3f5a5bd40445679b5547 10790Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10791Date: Fri Sep 18 19:08:40 2009 -0400 10792 10793 sbc8548: get_clock_freq is not valid for this board 10794 10795 The get_clock_freq() comes from freescale/common/cadmus.c and is 10796 only valid for the CDS based 85xx reference platforms. It would 10797 be nice if we could read the 33 vs. 66MHz status somehow, but in 10798 the meantime, tie it to CONFIG_SYS_CLK_FREQ like all the other 10799 non-CDS boards do. 10800 10801 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10802 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10803 10804commit 7b1f1399e876587e0a268a5a471dd444bfbc3114 10805Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10806Date: Fri Sep 18 19:08:39 2009 -0400 10807 10808 sbc8548: delete unused MPC8548CDS info carried over from port 10809 10810 There are a couple defines and PCI bridge quirks related to the PCI 10811 backplane of the MPC8548CDS that have no meaning in the context of 10812 the port to the sbc8548 board, so delete them. 10813 10814 Also, the form factor of the sbc8548 is a standalone board with a 10815 single PCI-X and a single PCI-e slot. That pretty much guarantees 10816 that it will never be a PCI agent itself, so the host/agent and root 10817 complex/end node distinctions have been removed. 10818 10819 Similarly, since there is no physical connector mapping to PCI2, so 10820 all references of PCI2 in the board support files have been removed 10821 as well. 10822 10823 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10824 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10825 10826commit 94ca091456d5c3040ddd6351c80cf3e74393f9be 10827Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10828Date: Fri Sep 18 19:08:44 2009 -0400 10829 10830 sbc8548: enable use of PCI network cards 10831 10832 Create a board_eth_init to allow a place to hook in 10833 the PCI ethernet init after all the eTSEC are up 10834 and configured. 10835 10836 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10837 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10838 10839commit 82b7725b6d46d9ad2b962b4cdfa896bd5ee32fb5 10840Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 10841Date: Sat Sep 19 17:50:17 2009 +0530 10842 10843 ppc/85xx: 32bit DDR changes for P1020/P1011 10844 10845 The P1020/P1011 SOCs support max 32bit DDR width as opposed to P2020/P2010 10846 where max DDR data width supported is 64bit. 10847 10848 As a next step the DDR data width initialization would be made more dynamic 10849 with more flexibility from the board perspective and user choice. 10850 Going forward we would also remove the hardcodings for platforms with onboard 10851 memories and try to use the FSL SPD code for DDR initialization. 10852 10853 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 10854 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10855 10856commit bd42bbb858dde713f023fc2e4f512ec174a1a8d2 10857Author: Paul Gortmaker <paul.gortmaker@windriver.com> 10858Date: Fri Sep 18 19:08:46 2009 -0400 10859 10860 sbc8548: replace README with completely new document 10861 10862 The previous README.sbc8548 was pretty much content-free. Replace 10863 it with something that actually gives the end user some relevant 10864 hardware details, and also lists the u-boot configuration choices. 10865 10866 Also in the cosmetic department, fix the bogus line in the Makefile 10867 that was carried over from the SBC8560 Makefile, and the typo in 10868 the sbc8548.c copyright. 10869 10870 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 10871 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10872 10873commit 002741ae862c1c7e3dad89d020e392e6add1c05d 10874Author: Kumar Gala <galak@kernel.crashing.org> 10875Date: Sat Sep 19 11:20:54 2009 -0500 10876 10877 ppc/85xx: Clean up use of LAWAR defines 10878 10879 On 85xx platforms we shouldn't be using any LAWAR_* defines 10880 but using the LAW_* ones provided by fsl-law.h. Rename any such 10881 uses and limit the LAWAR_ to the 83xx platform as the only user so 10882 we will get compile errors in the future. 10883 10884 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10885 10886commit f61dae7c9dc526410faec15ce352b11fc36a560b 10887Author: Kumar Gala <galak@kernel.crashing.org> 10888Date: Thu Sep 3 10:20:09 2009 -0500 10889 10890 ppc/85xx: Clean up mpc8572DS PCI setup code 10891 10892 Use new fsl_pci_init_port() that reduces amount of duplicated code in the 10893 board ports, use IO accessors and clean up printing of status info. 10894 10895 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10896 10897commit 4958af8735207640181c4423e41b24ee7418361a 10898Author: Kumar Gala <galak@kernel.crashing.org> 10899Date: Thu Sep 3 09:42:01 2009 -0500 10900 10901 ppc/85xx: Clean up p2020ds PCI setup code 10902 10903 Use new fsl_pci_init_port() that reduces amount of duplicated code in the 10904 board ports, use IO accessors and clean up printing of status info. 10905 10906 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10907 10908commit 93a83872c707891bad22f7776d79a650c870601f 10909Author: Kumar Gala <galak@kernel.crashing.org> 10910Date: Thu Sep 3 10:09:04 2009 -0500 10911 10912 ppc/85xx: Clean up p1_p2_rdb PCI setup 10913 10914 General code cleanup to use in/out IO accessors as well as making 10915 the code that prints out info sane between board and generic fsl pci 10916 code. 10917 10918 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10919 10920commit 62ca21c442e18fec118ec83e183d64ea49966ce7 10921Author: Kumar Gala <galak@kernel.crashing.org> 10922Date: Thu Sep 10 16:31:53 2009 -0500 10923 10924 ppc/85xx: Simplify the top makefile for P1_P2_RDB boards 10925 10926 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10927 10928commit a0f9e0e0f06033807de0ae017ad4d9cf5ddff84b 10929Author: Kumar Gala <galak@kernel.crashing.org> 10930Date: Thu Sep 10 16:26:37 2009 -0500 10931 10932 ppc/85xx: Simplify the top makefile for 36-bit config for P2020DS 10933 10934 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10935 10936commit f9edcc10e6cb497dd7dcbaf691cfd1859abae27a 10937Author: Kumar Gala <galak@kernel.crashing.org> 10938Date: Thu Sep 10 16:23:45 2009 -0500 10939 10940 ppc/85xx: Simplify the top makefile for 36-bit config for MPC8572DS 10941 10942 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10943 10944commit 0e905ac28b1e039d74e63232293972bff6b5a0ce 10945Author: Mingkai Hu <Mingkai.hu@freescale.com> 10946Date: Fri Sep 18 11:45:09 2009 +0800 10947 10948 ppc/85xx: simplify the top makefile for 36-bit config for mpc8536ds 10949 10950 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 10951 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10952 10953commit 202d94875c98b7b573f136c4f353609758ed9733 10954Author: Kumar Gala <galak@kernel.crashing.org> 10955Date: Tue Sep 15 22:21:58 2009 -0500 10956 10957 ppc/85xx: Fix LCRR_CLKDIV defines 10958 10959 For some reason the CLKDIV field varies between SoC in how it interprets 10960 the bit values. 10961 10962 All 83xx and early (e500v1) PQ3 devices support: 10963 clk/2: CLKDIV = 2 10964 clk/4: CLKDIV = 4 10965 clk/8: CLKDIV = 8 10966 10967 Newer PQ3 (e500v2) and MPC86xx support: 10968 clk/4: CLKDIV = 2 10969 clk/8: CLKDIV = 4 10970 clk/16: CLKDIV = 8 10971 10972 Ensure that the MPC86xx and MPC85xx still get the same behavior and make 10973 the defines reflect their logical view (not the value of the field). 10974 10975 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 10976 Acked-by: Peter Tyser <ptyser@xes-inc.com> 10977 10978commit 55f786d8ba8ce58a81428536da34a2192b9bad9f 10979Author: Peter Tyser <ptyser@xes-inc.com> 10980Date: Mon Sep 21 12:04:33 2009 -0500 10981 10982 MAKEALL: Use POSIX math 10983 10984 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 10985 10986commit 40a28f0885e62b6607e12ed6baa6284927f5263e 10987Author: Peter Tyser <ptyser@xes-inc.com> 10988Date: Mon Sep 21 12:04:32 2009 -0500 10989 10990 MAKEALL: Add summary information 10991 10992 This change adds some basic summary information to the MAKEALL script. 10993 The summary information includes how many boards were compiled, how many 10994 boards had compile warnings or errors, and which specific boards had 10995 compile warnings or errors. 10996 10997 This information is useful when doing compile testing to quickly 10998 determine which boards are broken. 10999 11000 As a side benefit, no empty $BOARD.ERR files are generated by MAKEALL.
11001 Previously, each board had a corresponding $BOARD.ERR file, even if the 11002 board compiled cleanly. 11003 11004 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 11005 11006commit 71ce9bd7f551e44c4ddb4c985c095da6d3452d79 11007Author: Eric Millbrandt <emillbrandt@coldhaus.com> 11008Date: Mon Sep 21 11:05:55 2009 -0500 11009 11010 galaxy5200: enable version environment variable 11011 11012 Add version environment variable configuration to the galaxy5200 11013 board header file. 11014 11015 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com> 11016 11017 Edited commit message. 11018 11019 Signed-off-by: Wolfgang Denk <wd@denx.de> 11020 11021commit c569ad6e1e8768a0fec513ffc156412240b7eb35 11022Author: Werner Pfister <werner.pfister@intercontrol.de> 11023Date: Mon Sep 21 14:49:56 2009 +0200 11024 11025 digsy_mtc: Add TCR register value for RTC (DS1339) 11026 11027 Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de> 11028 Signed-off-by: Detlev Zundel <dzu@denx.de> 11029 11030commit b0078c8792badd81aed51b7eabe85e960036361c 11031Author: Werner Pfister <werner.pfister@intercontrol.de> 11032Date: Mon Sep 21 14:49:55 2009 +0200 11033 11034 rtc/ds1337.c: Allow to set TCR register 11035 11036 This is needed to correctly start the charging of an attached capacitor 11037 or battery. 11038 11039 Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de> 11040 Signed-off-by: Detlev Zundel <dzu@denx.de> 11041 11042commit 9d7952e4c636b8c99289a44dbe28c6f93c43b9f7 11043Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 11044Date: Tue Sep 15 09:53:29 2009 +0200 11045 11046 ubifs: Add support for looking up directory and relative symlinks 11047 11048 This patch adds support for resolving symlinks to directories as well as 11049 relative symlinks. Symlinks are now always resolved during file lookup, 11050 so the load stage no longer needs to special-case them. 11051 11052 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 11053 Signed-off-by: Stefan Roese <sr@denx.de> 11054 11055commit fcdb36b85ac033c09a9762a0a14808f7cb2ed54c 11056Author: Rupjyoti Sarmah <rsarmah@amcc.com> 11057Date: Mon Sep 21 11:26:19 2009 -0700 11058 11059 ppc4xx: Fix PCIE PLL lock on 440SPe Yucca board 11060 11061 u-boot reports a PCIE PLL lock error at boot time on Yucca board, and 11062 left PCIe nonfunctional. This is fixed by making u-boot function 11063 ppc4xx_init_pcie() to wait 300 uS after negating reset before the 11064 first check of the PLL lock. 11065 11066 Signed-off-by: Rupjyoti Sarmah <rsarmah@amcc.com> 11067 Signed-off-by: Stefan Roese <sr@denx.de> 11068 11069commit 91d599044caac4a8c228115b16cf3b073f902080 11070Author: Dirk Eibach <eibach@gdsys.de> 11071Date: Mon Sep 21 13:27:14 2009 +0200 11072 11073 ppc4xx: Make DDR2 timing for intip more robust 11074 11075 DDR2 timing for intip was on the edge for some of the available chips 11076 for this board. Now it is verfied to work with all of them. 11077 11078 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 11079 Signed-off-by: Stefan Roese <sr@denx.de> 11080 11081commit 184a3a27f5cd2c64666f74df94c86b94c4383ef8 11082Author: Wolfgang Denk <wd@denx.de> 11083Date: Tue Sep 15 00:26:02 2009 +0200 11084 11085 board/linkstation/ide.c: Fix compile warning 11086 11087 Fix warning: ide.c:60: warning: dereferencing type-punned pointer will 11088 break strict-aliasing rules 11089 11090 Signed-off-by: Wolfgang Denk <wd@denx.de> 11091 Cc: Guennadi Liakhovetski <lg@denx.de> 11092 11093commit 004eca0c9ba328de457d5dc9ef8805639dfef893 11094Author: Peter Tyser <ptyser@xes-inc.com> 11095Date: Wed Sep 16 22:03:08 2009 -0500 11096 11097 ppc: Clean up calling of phy_reset() during init 11098 11099 Remove board-specific #ifdefs for calling phy_reset() during 11100 initializtion 11101 11102 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 11103 11104commit 3a8f28d0a6d9f8505017680233064c13e4587174 11105Author: Peter Tyser <ptyser@xes-inc.com> 11106Date: Wed Sep 16 22:03:07 2009 -0500 11107 11108 ppc: Clean up calling of misc_init_r() during init 11109 11110 Remove board-specific #ifdefs for calling misc_init_r() during 11111 initializtion 11112 11113 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 11114 Acked-by: Heiko Schocher <hs@denx.de> 11115 11116commit 3202d33169df04da5cf3dea8c5ab0a902b90ecaa 11117Author: Peter Tyser <ptyser@xes-inc.com> 11118Date: Wed Sep 16 21:38:10 2009 -0500 11119 11120 Remove deprecated 'autoscr' command/variables 11121 11122 The more standard 'source' command provides identical functionality to 11123 the autoscr command. 11124 11125 Environment variable names/values on the MVBC_P, MVBML7, kmeter1, 11126 mgcoge, and km8xx boards are updated to no longer refernce 'autoscr'. 11127 11128 The 'autoscript' and 'autoscript_uname' environment variables are 11129 also removed. 11130 11131 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 11132 Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 11133 Acked-by: Heiko Schocher <hs@denx.de> 11134 11135commit d3f4941874a20d8a390a36ba71335ae1db2f9ba0 11136Author: Paul Gibson <paul.gibson2074@gmail.com> 11137Date: Wed Sep 16 10:05:00 2009 +1000 11138 11139 mpc512x. Micron nand flash needs a reset before a read command is issued. 11140 11141 Micron nand flash needs a reset before a read command is issued. 11142 The current mpc5121_nfc driver ignores the reset command. 11143 11144commit b55ae40249545eabb9d6bfb850b1400a32561b1f 11145Author: Marcel Ziswiler <marcel@ziswiler.com> 11146Date: Wed Sep 9 21:18:41 2009 +0200 11147 11148 FDT: remove obsolete OF_CPU and OF_SOC macros. 11149 11150 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com> 11151 Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 11152 Acked-by: Heiko Schocher <hs@denx.de> 11153 11154commit 3b6a9267f0de7b85d387fa4123d0b58379363447 11155Author: Wolfgang Denk <wd@denx.de> 11156Date: Tue Sep 15 00:09:21 2009 +0200 11157 11158 board/flagadm/flash.c: fix compile warning 11159 11160 Fix warning: flash.c:531: warning: dereferencing type-punned pointer 11161 will break strict-aliasing rules 11162 11163 Signed-off-by: Wolfgang Denk <wd@denx.de> 11164 Cc: Kári Davíðsson <kd@flaga.is> 11165 11166commit 0413cfecea350000eab5e591a0965c3e3ee0ff00 11167Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 11168Date: Thu Sep 17 15:15:52 2009 +0200 11169 11170 Correct ffs/fls regression for PowerPC etc 11171 11172 Commits 11173 11174 02f99901ed1c9d828e3ea117f94ce2264bf8389e 11175 52d61227b66d4099b39c8309ab37cb67ee09a405 11176 11177 introduced a regression where platform-specific ffs/fls implementations 11178 were defined away. This patch corrects that by using PLATFORM_xxx 11179 instead of the name itself. 11180 11181 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 11182 Acked-by: Kumar Gala <galak@kernel.crashing.org> 11183 Acked-by: Stefan Roese <sr@denx.de> 11184 11185commit e67af44d0167d8237dd2c2ddf8e301d19ca12914 11186Author: Stefan Roese <sr@denx.de> 11187Date: Mon Sep 14 11:13:34 2009 +0200 11188 11189 ppc4xx: Consolidate get_OPB_freq() 11190 11191 All 4xx variants had their own, mostly identical get_OPB_freq() 11192 function. Some variants even only had the OPB frequency calculated 11193 in this routine and not supplied the sys_info.freqOPB variable 11194 correctly (e.g. 405EZ). This resulted in incorrect OPB values passed 11195 via the FDT to Linux. 11196 11197 This patch now removes all those copies and only uses one function 11198 for all 4xx variants (except for IOP480 which doesn't have an OPB). 11199 11200 Signed-off-by: Stefan Roese <sr@denx.de> 11201 11202commit 84a45d33c2cc261dbd5411f7c2ad45f6003025b6 11203Author: Stefan Roese <sr@denx.de> 11204Date: Fri Sep 11 17:09:45 2009 +0200 11205 11206 ppc4xx: Enable commands for FDT enabled Linux booting on AMCC Acadia 11207 11208 Acadia still used the "old" arch/ppc bootm commands for booting 11209 Linux images without FDT. This patch now enables these fdt-aware 11210 boot commands for Acadia as well. 11211 11212 Signed-off-by: Stefan Roese <sr@denx.de> 11213 11214commit 95a4a593b577b6e2f1da2d4b0f5ec86975c33413 11215Author: Stefan Roese <sr@denx.de> 11216Date: Fri Sep 11 17:07:55 2009 +0200 11217 11218 ppc4xx: Fix 405EZ uart base baud calculation 11219 11220 With this fix, Linux correctly configures the baudrate when booting 11221 with FDT passed from U-Boot to Linux. 11222 11223 Signed-off-by: Stefan Roese <sr@denx.de> 11224 11225commit 15fba3279b56333bdb65ead366f82c945ed320d1 11226Author: Kumar Gala <galak@kernel.crashing.org> 11227Date: Fri Sep 11 15:28:41 2009 -0500 11228 11229 ppc/85xx: Disable all async interrupt sources when we boot 11230 11231 We should make sure to clear MSR[ME, CE, DE] when we boot an OS image 11232 since we have changed the exception vectors and the OSes vectors might 11233 not be setup we should avoid async interrupts at all costs. 11234 11235 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11236 11237commit 9f00409a9d04cf533305531da32437130802f3a3 11238Author: Kumar Gala <galak@kernel.crashing.org> 11239Date: Fri Sep 11 13:52:45 2009 -0500 11240 11241 ppc/85xx: Split out cpu_init_early into its own file for NAND_SPL 11242 11243 By pulling out cpu_init_early we can build just it and not all of 11244 cpu_init for NAND_SPL. 11245 11246 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11247 11248commit 0456dbf3475d0aec42873a967ac97ed81f376119 11249Author: Kumar Gala <galak@kernel.crashing.org> 11250Date: Fri Sep 11 13:41:49 2009 -0500 11251 11252 ppc/85xx: Change cpu_init_early_f so we can use with NAND SPL 11253 11254 Use write_tlb and don't use memset so we can use the same code for 11255 cpu_init_early_f between NAND SPL and not. 11256 11257 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11258 11259commit 6e1385d5f8d137e741dfef02465d7dc328040ad7 11260Author: Mingkai Hu <Mingkai.hu@freescale.com> 11261Date: Fri Sep 11 10:53:08 2009 +0800 11262 11263 NAND boot: change NAND loader's relocate SP to CONFIG param 11264 11265 So that we can set the NAND loader's relocate stack pointer 11266 to the value other than the relocate address + 0x10000. 11267 11268 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 11269 Acked-by: Kim Phillips <kim.phillips@freescale.com> 11270 Acked-by: Scott Wood <scottwood@freescale.com> 11271 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11272 11273commit 7da53351d817c6d77364cfde922891f37d0e5ed8 11274Author: Mingkai Hu <Mingkai.hu@freescale.com> 11275Date: Fri Sep 11 14:19:10 2009 +0800 11276 11277 ppc/85xx: add boot from NAND/eSDHC/eSPI support 11278 11279 The MPC8536E is capable of booting form NAND/eSDHC/eSPI, this patch 11280 implements these three bootup methods in a unified way - all of these 11281 use the general cpu/mpc85xx/start.S, and load the main image to L2SRAM 11282 which lets us use the SPD to initialize the SDRAM. 11283 11284 For all three bootup methods, the bootup process can be divided into two 11285 stages: the first stage will initialize the corresponding controller, 11286 configure the L2SRAM, then copy the second stage image to L2SRAM and 11287 jump to it. The second stage image is just like the general U-Boot image 11288 to configure all the hardware and boot up to U-Boot command line. 11289 11290 When boot from NAND, the eLBC controller will first load the first stage 11291 image to internal 4K RAM buffer because it's also stored on the NAND 11292 flash. The first stage image, also call 4K NAND loader, will initialize 11293 the L2SRAM, load the second stage image to L2SRAM and jump to it. The 4K 11294 NAND loader's code comes from the corresponding nand_spl directory, along 11295 with the code twisted by CONFIG_NAND_SPL. 11296 11297 When boot from eSDHC/eSPI, there's no such a first stage image because 11298 the CPU ROM code does the same work. It will initialize the L2SRAM 11299 according to the config addr/word pairs on the fixed address and 11300 initialize the eSDHC/eSPI controller, then load the second stage image 11301 to L2SRAM and jump to it. 11302 11303 The macro CONFIG_SYS_RAMBOOT is used to control the code to produce the 11304 second stage image for all different bootup methods. It's set in the 11305 board config file when one of the bootup methods above is selected. 11306 11307 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 11308 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11309 11310commit b2eec281a811bb52941f61203d8fe35256b3582c 11311Author: Kumar Gala <galak@kernel.crashing.org> 11312Date: Fri Sep 11 12:32:01 2009 -0500 11313 11314 ppc/85xx: Move code around to prep for NAND_SPL 11315 11316 If we move some of the functions in tlb.c around we need less 11317 ifdefs. The first stage loader just needs invalidate_tlb and 11318 init_tlbs. 11319 11320 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11321 11322commit 206af3527c05e520e28d38a48a1d15433e34675d 11323Author: Kumar Gala <galak@kernel.crashing.org> 11324Date: Fri Sep 11 11:30:30 2009 -0500 11325 11326 ppc/85xx: Repack tlb_table to save space 11327 11328 We can pack the initial tlb_table in MAS register format and use 11329 write_tlb to set things up. This savings can be helpful for NAND 11330 style first stage boot loaders. 11331 11332 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11333 11334commit d30f9043539d372cf66406bc2f21bb8c20e67009 11335Author: Kumar Gala <galak@kernel.crashing.org> 11336Date: Fri Sep 11 11:27:00 2009 -0500 11337 11338 ppc/85xx: Introduce low level write_tlb function 11339 11340 Factor out the code we use to actually write a tlb entry. 11341 11342 set_tlb is a logical view of the TLB while write_tlb is a low level 11343 matching the MAS registers. 11344 11345 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11346 11347commit 0ead6f2ed7cf4e1f70dab5b529ad121e38359485 11348Author: Roy Zang <tie-fei.zang@freescale.com> 11349Date: Thu Sep 10 14:44:48 2009 +0800 11350 11351 ppc/85xx: Enable usb ehci support for p2020ds board 11352 11353 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 11354 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11355 11356commit 6d8565a1ed5acb01bad4a4cd74a93be5f7fb7f7c 11357Author: Kumar Gala <galak@kernel.crashing.org> 11358Date: Thu Sep 10 14:54:55 2009 -0500 11359 11360 ppc/8xxx: Misc DDR related fixes 11361 11362 * Fix setting of ESDMODE (MR1) register - the bit shifting was wrong 11363 * Fix the format string to match size in a debug print 11364 11365 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 11366 11367commit 3e3c9c157b89eab2dc2f897899b1b95cd70c1a58 11368Author: Scott Wood <scottwood@freescale.com> 11369Date: Thu Aug 20 17:45:00 2009 -0500 11370 11371 ppc/85xx: Remove some bogus code from external interrupt handler. 11372 11373 Skipping the interrupted instruction will accomplish nothing other 11374 than turning a spurious interrupt into a crash. 11375 11376 External interrupts are not machine checks, so don't count them as such. 11377 11378 Signed-off-by: Scott Wood <scottwood@freescale.com> 11379 11380commit dcc87dd58db466caa2d66755c5ec9455edf42fe8 11381Author: Scott Wood <scottwood@freescale.com> 11382Date: Thu Aug 20 17:45:05 2009 -0500 11383 11384 ppc/85xx: Ensure that MAS8 is zero when writing TLB entries. 11385 11386 Its reset value is random, and we sometimes read uninitialized TLB 11387 arrays. Make sure that we don't retain MAS8 from reading such an entry 11388 if the VF bit in MAS8 is set, attempts to use the mapping will trap. 11389 11390 Signed-off-by: Scott Wood <scottwood@freescale.com> 11391 11392commit 1b72dbecca2d7ad7a21c92d80227daa2d8ec5a57 11393Author: Scott Wood <scottwood@freescale.com> 11394Date: Thu Aug 20 17:44:20 2009 -0500 11395 11396 ppc/85xx: Don't enable interrupts before we're ready 11397 11398 We cannot handle any exceptions while running in AS1, as the exceptions 11399 will transition back to AS0 without a valid mapping. 11400 11401 Signed-off-by: Scott Wood <scottwood@freescale.com> 11402 11403commit 3ca55bce9c8bf00df06a20487fafc16fa2f8084b 11404Author: Marcel Ziswiler <marcel@ziswiler.com> 11405Date: Fri Sep 11 07:50:33 2009 -0400 11406 11407 mpc8260: remove Ethernet node fixup to use generic FDT code. 11408 11409 Remove Ethernet node fixup from mgcoge and muas3001 boards and modify its 11410 configs for the common mpc8260 code to use generic Ethernet fixup. 11411 11412 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com> 11413 Tested-by: Heiko Schocher <hs@denx.de> 11414 11415commit 1c20e4a9fbc531e2149ae061e8583f5fad82f163 11416Author: Mike Frysinger <vapier@gentoo.org> 11417Date: Wed Sep 9 12:20:21 2009 -0400 11418 11419 tools/netconsole: use ncb automatically if available 11420 11421 The standard netcat, while ubiquitous, doesn't handle broadcast udp packets 11422 properly. The local ncb util does however. So if ncb can be located in 11423 the standard locations, automatically use that instead. 11424 11425 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 11426 11427commit 770931805d292908a57a3d2c5f9a4fcde888b5a2 11428Author: Mike Frysinger <vapier@gentoo.org> 11429Date: Wed Sep 9 12:20:20 2009 -0400 11430 11431 tools/netconsole: make a bit more robust 11432 11433 The netcat utility likes to exit when it receives an empty packet (as it 11434 thinks this means EOF). This can easily occur when working with command 11435 line editing as this behavior will be triggered when using backspace. Or 11436 with tabs and command line completion. So create two netcat processes - 11437 one to only listen (and put it into a loop), and one to do the sending. 11438 Once the user quits the transmitting netcat, the listening one will be 11439 killed automatically. 11440 11441 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 11442 11443commit a6e19d69f63c14b7672c65ca4b014621c6fd0201 11444Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 11445Date: Mon Aug 24 09:10:16 2009 +0200 11446 11447 arm: Define test_and_set_bit and test_and_clear bit for ARM 11448 11449 Needed for (e.g.) ubifs support to work. 11450 11451 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 11452 11453commit 52d61227b66d4099b39c8309ab37cb67ee09a405 11454Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 11455Date: Mon Aug 24 09:10:12 2009 +0200 11456 11457 Define ffs/fls for all architectures 11458 11459 UBIFS requires fls(), which is not defined for arm (and some other 11460 architectures) and this patch adds it. The implementation is taken from 11461 Linux and is generic. ffs() is also defined for those that miss it. 11462 11463 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 11464 11465commit 4b15de08fe4d2c9d12a3764394731018a763216b 11466Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 11467Date: Mon Aug 24 09:10:03 2009 +0200 11468 11469 arm: Make arm bitops endianness-independent 11470 11471 Bring over the bitop implementations from the Linux 11472 include/asm-generic/bitops/non-atomic.h to provide 11473 endianness-independence. 11474 11475 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 11476 11477commit 02f99901ed1c9d828e3ea117f94ce2264bf8389e 11478Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 11479Date: Mon Aug 24 09:09:50 2009 +0200 11480 11481 Move __set/clear_bit from ubifs.h to bitops.h 11482 11483 __set_bit and __clear_bit are defined in ubifs.h as well as in 11484 asm/include/bitops.h for some architectures. This patch moves 11485 the generic implementation to include/linux/bitops.h and uses 11486 that unless it's defined by the architecture. 11487 11488 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 11489 11490commit 557555fe0b82940ba7cc69f81d31d6ef4d4933b4 11491Author: Mike Frysinger <vapier@gentoo.org> 11492Date: Fri Sep 4 19:54:45 2009 -0400 11493 11494 standalone: convert to kbuild style 11495 11496 Clean up the arch/cpu/board/config checks as well as redundant setting of 11497 srec/bin variables by using the kbuild VAR-$(...) style. 11498 11499 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 11500 11501commit 804d83a563c47b55e1f14f5de3b6e9d7e2a7ef5e 11502Author: Wolfgang Denk <wd@denx.de> 11503Date: Tue Sep 15 22:12:31 2009 +0200 11504 11505 mkconfig: split the board make target to multiple config targets 11506 11507 To simplify the top level makefile it useful to be able to parse 11508 the top level makefile target to multiple individual target, then 11509 put them to the config.h, leave the board config file to handle 11510 the different targets. 11511 11512 Note that this method uses the '_'(underline) as the delimiter when 11513 splits the board make target. 11514 11515 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 11516 11517 This also reverts commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f. 11518 11519 Signed-off-by: Wolfgang Denk <wd@denx.de> 11520 11521commit ceb2d57c2205db5bbd868577f756c74a2568160c 11522Author: Wolfgang Denk <wd@denx.de> 11523Date: Tue Sep 15 21:13:27 2009 +0200 11524 11525 kwbimage.c: Fix compile warning when building on 64 bit systems (again) 11526 11527 Commit 51003b89 attempted to fix a build problem on 64 bit systems, 11528 but just turned it into a build problem on 32 bit systems (silly me). 11529 11530 Now do the Right Thing (TM) and use a "%zu" printf format. 11531 11532 Also fix spelling error. 11533 11534 Signed-off-by: Wolfgang Denk <wd@denx.de> 11535 11536commit 6c7bc91fb3dba186d3398a1653f6db236510ffa7 11537Author: Wolfgang Denk <wd@denx.de> 11538Date: Fri Sep 11 11:30:34 2009 +0200 11539 11540 board/amcc/common/flash.c: Fix compile warning 11541 11542 Fix warning: ../common/flash.c:917: warning: dereferencing type-punned 11543 pointer will break strict-aliasing rules 11544 11545 Signed-off-by: Wolfgang Denk <wd@denx.de> 11546 Cc: Stefan Roese <sr@denx.de> 11547 Acked-by: Stefan Roese <sr@denx.de> 11548 11549commit 70fb809c563c340538264d2a9436135e74c38bfe 11550Author: Wolfgang Denk <wd@denx.de> 11551Date: Fri Sep 11 11:47:07 2009 +0200 11552 11553 board/amcc/yucca/flash.c: Fix compile warning 11554 11555 Fix warning: flash.c:919: warning: dereferencing type-punned pointer 11556 will break strict-aliasing rules 11557 11558 Signed-off-by: Wolfgang Denk <wd@denx.de> 11559 Cc: Stefan Roese <sr@denx.de> 11560 Acked-by: Stefan Roese <sr@denx.de> 11561 11562commit 030ec52f8cc83015f968db30208f4bd07feffa6c 11563Author: Wolfgang Denk <wd@denx.de> 11564Date: Fri Sep 11 11:44:39 2009 +0200 11565 11566 board/amcc/taihu/flash.c: Fix compile warning 11567 11568 Fix warnings: 11569 flash.c: In function 'write_word_1': 11570 flash.c:696: warning: dereferencing type-punned pointer will break strict-aliasing rules 11571 flash.c: In function 'write_word_2': 11572 flash.c:1044: warning: dereferencing type-punned pointer will break strict-aliasing rules 11573 11574 Signed-off-by: Wolfgang Denk <wd@denx.de> 11575 Cc: Stefan Roese <sr@denx.de> 11576 Acked-by: Stefan Roese <sr@denx.de> 11577 11578commit 0fd3d902d920f3e60f88530c33f1ae7581260951 11579Author: Wolfgang Denk <wd@denx.de> 11580Date: Fri Sep 11 11:37:20 2009 +0200 11581 11582 board/etin/debris/phantom.c: Fix compile error 11583 11584 Fix build problem caused by commit e84aba13: "Replace BCD2BIN and 11585 BIN2BCD macros with inline functions" 11586 11587 phantom.c:163: error: redefinition of 'bcd2bin' 11588 /home/wd/git/u-boot/work/include/bcd.h:16: error: previous definition of 'bcd2bin' was here 11589 phantom.c:168: error: redefinition of 'bin2bcd' 11590 /home/wd/git/u-boot/work/include/bcd.h:21: error: previous definition of 'bin2bcd' was here 11591 11592 Signed-off-by: Wolfgang Denk <wd@denx.de> 11593 Cc: Sangmoon Kim <dogoil@etinsys.com> 11594 11595commit 5168801f4b71c2f8dcd92a80cfcfda84246e67fe 11596Author: Wolfgang Denk <wd@denx.de> 11597Date: Fri Sep 11 11:28:21 2009 +0200 11598 11599 board/dave/common/flash.c: fix compile warning 11600 11601 Fix warning: ../common/flash.c:668: warning: dereferencing type-punned 11602 pointer will break strict-aliasing rules 11603 11604 Signed-off-by: Wolfgang Denk <wd@denx.de> 11605 Cc: Andrea Marson <andrea.marson@dave-tech.it> 11606 11607commit 97138fc48091f2b063c4e32f36d05854b9d113fb 11608Author: Wolfgang Denk <wd@denx.de> 11609Date: Fri Sep 11 11:15:31 2009 +0200 11610 11611 board/esd/cpci750/ide.c: fix compile warning 11612 11613 Fix warning: ide.c:54: warning: dereferencing type-punned pointer will 11614 break strict-aliasing rules 11615 11616 Signed-off-by: Wolfgang Denk <wd@denx.de> 11617 Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 11618 Cc: Stefan Roese <sr@denx.de> 11619 Acked-by: Stefan Roese <sr@denx.de> 11620 11621commit ba73060cf4163bd5eb1711020126e2f7f62d363e 11622Author: Wolfgang Denk <wd@denx.de> 11623Date: Fri Sep 11 10:13:26 2009 +0200 11624 11625 board/esd/common/flash.c: Fix compile warning 11626 11627 Fix warning: ../common/flash.c:635: warning: dereferencing type-punned 11628 pointer will break strict-aliasing rules 11629 11630 Signed-off-by: Wolfgang Denk <wd@denx.de> 11631 Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 11632 Cc: Stefan Roese <sr@denx.de> 11633 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu> 11634 Acked-by: Stefan Roese <sr@denx.de> 11635 11636commit 2d6d9f0848e952ea33c658dfba335685a2725b8b 11637Author: Wolfgang Denk <wd@denx.de> 11638Date: Fri Sep 11 09:36:31 2009 +0200 11639 11640 sk98lin: fix compile warnings 11641 11642 Fix warnings: 11643 skge.c: In function 'BoardInitMem': 11644 skge.c:1389: warning: dereferencing type-punned pointer will break strict-aliasing rules 11645 skge.c:1390: warning: dereferencing type-punned pointer will break strict-aliasing rules 11646 skge.c:1391: warning: dereferencing type-punned pointer will break strict-aliasing rules 11647 skgesirq.c: In function 'SkGePortCheckUpXmac': 11648 skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules 11649 skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules 11650 skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules 11651 skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules 11652 skrlmt.c: In function 'SkRlmtInit': 11653 skrlmt.c:661: warning: dereferencing type-punned pointer will break strict-aliasing rules 11654 skxmac2.c: In function 'SkMacPromiscMode': 11655 skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules 11656 skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules 11657 skxmac2.c: In function 'SkMacHashing': 11658 skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules 11659 skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules 11660 skxmac2.c: In function 'SkMacFlushTxFifo': 11661 skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules 11662 skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules 11663 skxmac2.c: In function 'SkMacFlushRxFifo': 11664 skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules 11665 skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules 11666 skxmac2.c: In function 'SkXmInitPauseMd': 11667 skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules 11668 skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules 11669 skxmac2.c: In function 'SkXmOverflowStatus': 11670 skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules 11671 skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules 11672 skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules 11673 skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules 11674 11675 Signed-off-by: Wolfgang Denk <wd@denx.de> 11676 Cc: Ben Warren <biggerbadderben@gmail.com> 11677 11678commit 3708e4cdb1f1d3d5128cf87be040d7e6b85f60dd 11679Author: Wolfgang Denk <wd@denx.de> 11680Date: Fri Sep 11 09:13:58 2009 +0200 11681 11682 drivers/net/natsemi.c: fix compile warning 11683 11684 Fix warning: natsemi.c:757: warning: dereferencing type-punned pointer 11685 will break strict-aliasing rules 11686 11687 Signed-off-by: Wolfgang Denk <wd@denx.de> 11688 Cc: Ben Warren <biggerbadderben@gmail.com> 11689 11690commit 78d19a398778a58d7b40b0c78e026515271b1a84 11691Author: Michal Simek <monstr@monstr.eu> 11692Date: Mon Sep 7 09:08:02 2009 +0200 11693 11694 net: emaclite: Cleanup license to be GPL compatible 11695 11696 Signed-off-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com> 11697 Signed-off-by: Michal Simek <monstr@monstr.eu> 11698 11699commit 0900bee9ab9818439b2d1298fa8909a88f74ec0d 11700Author: Michal Simek <monstr@monstr.eu> 11701Date: Fri Aug 14 13:41:17 2009 +0200 11702 11703 microblaze: Enable hush parser 11704 11705 With Hush parser is possible to change command line in dtb 11706 11707 Signed-off-by: Michal Simek <monstr@monstr.eu> 11708 11709commit 13916abf996b127b681ddc26664c236ded28ba7f 11710Author: Michal Simek <monstr@monstr.eu> 11711Date: Thu Aug 20 22:44:02 2009 +0200 11712 11713 microblaze: Remove AtmarkTechno Suzaku board 11714 11715 Users should use microblaze-generic platform. 11716 This platform is longer not supported. 11717 11718 Signed-off-by: Michal Simek <monstr@monstr.eu> 11719 11720commit 3ceba1d45d007144d10368f91ff9e36f3b5f39a1 11721Author: Michal Simek <monstr@monstr.eu> 11722Date: Thu Aug 20 22:36:20 2009 +0200 11723 11724 net: Remove old Xilinx Emac driver 11725 11726 Signed-off-by: Michal Simek <monstr@monstr.eu> 11727 11728commit 2fddd44464d02e0f3ade06dabe0e165835fa61f0 11729Author: Michal Simek <monstr@monstr.eu> 11730Date: Wed Aug 19 08:10:08 2009 +0200 11731 11732 microblaze: Short size of global data and fix malloc size 11733 11734 If is full malloc area global, data are rewrite because 11735 there was bad size of malloc area. 11736 11737 Signed-off-by: Michal Simek <monstr@monstr.eu> 11738 11739commit aedb4683097d3e5de8833f4a9e34664d3d2bd077 11740Author: Michal Simek <monstr@monstr.eu> 11741Date: Fri Aug 14 17:02:35 2009 +0200 11742 11743 microblaze: Add sbss, scommon and COMMON symbols for clearing 11744 11745 Signed-off-by: Michal Simek <monstr@monstr.eu> 11746 11747commit 4c1883670acbf1cc83c04df1876235c3aedde128 11748Author: Dirk Eibach <eibach@gdsys.de> 11749Date: Wed Sep 9 12:36:07 2009 +0200 11750 11751 ppc4xx: Rename compactcenter to intip 11752 11753 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 11754 Signed-off-by: Stefan Roese <sr@denx.de> 11755 11756commit d1c3b27525b664e8c4db6bb173eed51bfc8220de 11757Author: Stefan Roese <sr@denx.de> 11758Date: Wed Sep 9 16:25:29 2009 +0200 11759 11760 ppc4xx: Big cleanup of PPC4xx defines 11761 11762 This patch cleans up multiple issues of the 4xx register (mostly 11763 DCR, SDR, CPR, etc) definitions: 11764 11765 - Change lower case defines to upper case (plb4_acr -> PLB4_ACR) 11766 - Change the defines to better match the names from the 11767 user's manuals (e.g. cprpllc -> CPR0_PLLC) 11768 - Removal of some unused defines 11769 11770 Please test this patch intensive on your PPC4xx platform. Even though 11771 I tried not to break anything and tested successfully on multiple 11772 4xx AMCC platforms, testing on custom platforms is recommended. 11773 11774 Signed-off-by: Stefan Roese <sr@denx.de> 11775 11776commit d8d8724be06df43772162dc344ae20dfa814dc72 11777Author: Wolfgang Denk <wd@denx.de> 11778Date: Fri Sep 11 09:05:32 2009 +0200 11779 11780 net/bootp.c: fix compile warning 11781 11782 Fix warning: bootp.c:695: warning: dereferencing type-punned pointer 11783 will break strict-aliasing rules 11784 11785 Signed-off-by: Wolfgang Denk <wd@denx.de> 11786 Cc: Ben Warren <biggerbadderben@gmail.com> 11787 11788commit 51003b89816848cbe86a8fe48f970ba8b14005f5 11789Author: Wolfgang Denk <wd@denx.de> 11790Date: Fri Sep 11 08:58:11 2009 +0200 11791 11792 kwbimage.c: Fix compile warning when building on 64 bit systems 11793 11794 Fix this warning when building on 64 bit systems: 11795 tools/kwbimage.c: In function 'kwbimage_checksum32': 11796 tools/kwbimage.c:135: warning: format '%d' expects type 'int', 11797 but argument 4 has type 'long unsigned int' 11798 11799 Signed-off-by: Wolfgang Denk <wd@denx.de> 11800 Cc: Prafulla Wadaskar <prafulla@marvell.com> 11801 11802commit e7963772eb78a6aa1fa65063d64eab3a8626daac 11803Author: Marcel Ziswiler <marcel@ziswiler.com> 11804Date: Wed Sep 9 21:11:18 2009 +0200 11805 11806 muas3001: remove BRG clock node fixup to use common mpc8260 code. 11807 11808 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com> 11809 Acked-by: Heiko Schocher <hs@denx.de> 11810 11811commit c7c1dbbf7159b38f3302b845dd97d28a543ff91b 11812Author: Marcel Ziswiler <marcel@ziswiler.com> 11813Date: Wed Sep 9 21:09:00 2009 +0200 11814 11815 r7780mp: fix typo in Ethernet chip model number comment. 11816 11817 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com> 11818 11819commit 45f89f340b4d8aa099fd022260dcb13cf3321b61 11820Author: Marcel Ziswiler <marcel@ziswiler.com> 11821Date: Wed Sep 9 21:22:08 2009 +0200 11822 11823 ep8248: add support for device tree and secondary Ethernet interface. 11824 11825 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com> 11826 11827commit aa0c7a86cd236b8193218a09e1365c8991bb5ddc 11828Author: Prafulla Wadaskar <prafulla@marvell.com> 11829Date: Mon Sep 7 15:05:02 2009 +0530 11830 11831 mkimage: Add Kirkwood Boot Image support (kwbimage) 11832 11833 This patch adds support for "kwbimage" (Kirkwood Boot Image) 11834 image types to the mkimage code. 11835 11836 For details refer to docs/README.kwbimage 11837 11838 This patch is tested with Sheevaplug board 11839 11840 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11841 Acked-by: Ron Lee <ron@debian.org> 11842 11843 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11844 11845commit 7809fbb9aafd60e3a6e5dfe456ae30b93ac61338 11846Author: Prafulla Wadaskar <prafulla@marvell.com> 11847Date: Mon Sep 7 14:59:09 2009 +0530 11848 11849 Kirkwood: Sheevaplug: Add kwimage configuration file 11850 11851 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11852 11853commit b029dddc9ae958b1ccf875649f52c6db396a742d 11854Author: Prafulla Wadaskar <prafulla@marvell.com> 11855Date: Mon Sep 7 14:59:08 2009 +0530 11856 11857 mkimage: Make table_entry code global 11858 11859 - make get_table_entry_id() global 11860 - make get_table_entry_name() global 11861 - move struct table_entry to image.h 11862 11863 Currently this code is used by image.c only. 11864 11865 This patch makes this API global so it can be used by other parts of 11866 code, too. 11867 11868 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11869 Acked-by: Ron Lee <ron.debian.org> 11870 11871 Edit comments and commit message. 11872 11873 Signed-off-by: Wolfgang Denk <wd@denx.de> 11874 11875commit f666dea8ab215c76c3c2a077ad299f90dd1ace7c 11876Author: Prafulla Wadaskar <prafulla@marvell.com> 11877Date: Mon Sep 7 14:59:07 2009 +0530 11878 11879 mkimage: Make genimg_print_size() global 11880 11881 Currently it is used by image.c only, but the the function can be 11882 used to support additional mkimage types like for example kwbimage, 11883 so make this function globally visible. 11884 11885 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11886 11887 Edited commit message. 11888 11889 Signed-off-by: Wolfgang Denk <wd@denx.de> 11890 11891commit 37b801888cf73b18f78c1109140ff44e3e37914f 11892Author: Prafulla Wadaskar <prafulla@marvell.com> 11893Date: Mon Sep 7 14:59:06 2009 +0530 11894 11895 mkimage: Include missing files in build dependency calculations 11896 11897 Include default_image.o and fit_image.o into the build dependency 11898 calculations. This makes sure they get rebuilt if any of the headers 11899 they include are modified 11900 11901 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11902 Acked-by: Ron Lee <ron@debian.org> 11903 11904 Edited commit message. 11905 11906 Signed-off-by: Wolfgang Denk <wd@denx.de> 11907 11908commit 3a2003f61ee79ac53d20c24cc896c2637a2dfc24 11909Author: Wolfgang Denk <wd@denx.de> 11910Date: Wed Aug 19 11:42:56 2009 +0200 11911 11912 tools/mkimage: fix compiler warnings, use "const" 11913 11914 This fixes some compiler warnings: 11915 tools/default_image.c:141: warning: initialization from incompatible pointer type 11916 tools/fit_image.c:202: warning: initialization from incompatible pointer type 11917 and changes to code to use "const" attributes in a few places where 11918 it's appropriate. 11919 11920 Signed-off-by: Wolfgang Denk <wd@denx.de> 11921 11922commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5 11923Author: Prafulla Wadaskar <prafulla@marvell.com> 11924Date: Wed Aug 19 17:36:46 2009 +0530 11925 11926 tools: mkimage: split code into core, default and FIT image specific 11927 11928 This is a first step towards reorganizing the mkimage code to make it 11929 easier to add support for additional images types. Current mkimage 11930 code is specific to generating uImage and FIT image files, but the 11931 same framework can be used to generate other image types like 11932 Kirkwood boot images (kwbimage-TBD). For this, the mkimage code gets 11933 reworked: 11934 11935 Here is the brief plan for the same:- 11936 a) Split mkimage code into core and image specific support 11937 b) Implement callback functions for image specific code 11938 c) Move image type specific code to respective C files 11939 Currently there are two types of file generation/list 11940 supported (i.e uImage, FIT), the code is abstracted from 11941 mkimage.c/.h and put in default_image.c and fit_image.c; 11942 all code in these file is static except init function call 11943 d) mkimage_register API is added to add new image type support 11944 All above is addressed in this patch 11945 e) Add kwbimage type support to this new framework (TBD) 11946 This will be implemented in a following commit. 11947 11948 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11949 Edit commit message, fix coding style and typos. 11950 Signed-off-by: Wolfgang Denk <wd@denx.de> 11951 11952commit 449609f5b11cce6beba7338bc4ce0f3345376a0b 11953Author: Prafulla Wadaskar <prafulla@marvell.com> 11954Date: Sun Aug 16 05:28:19 2009 +0530 11955 11956 tools: mkimage: Fixed build warnings 11957 11958 uninitialized retval variable warning fixed 11959 crc32 APIs moved to crc.h (newly added) and build warnings fixed 11960 11961 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11962 Signed-off-by: Wolfgang Denk <wd@denx.de> 11963 11964commit 14821d7dea8d7209f2457c3179fa6551c088ba71 11965Author: Prafulla Wadaskar <prafulla@marvell.com> 11966Date: Mon Aug 10 20:44:06 2009 +0530 11967 11968 tools: mkimage: Makefile sorted 11969 11970 The tools/Makefile is sorted for all entries, 11971 11972 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11973 11974commit f7644c0bf3502529031657a869fa213cda5a2424 11975Author: Prafulla Wadaskar <prafulla@marvell.com> 11976Date: Mon Aug 10 18:49:37 2009 +0530 11977 11978 tools: mkimage : bugfix returns correct value for list command 11979 11980 List command always return "EXIT_SUCCESS" even in case of 11981 failure by any means. 11982 11983 This patch return 0 if list command is sucessful, 11984 returns negative value reported by check_header functions 11985 11986 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 11987 Signed-off-by: Wolfgang Denk <wd@denx.de> 11988 11989commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f 11990Author: Mingkai Hu <Mingkai.hu@freescale.com> 11991Date: Tue Sep 8 15:07:12 2009 +0800 11992 11993 mkconfig: pass the board name to board config file 11994 11995 Then we can handle different config targets in the board file, which 11996 simplifies the top level Makefile for boards that have multiple 11997 config targets. 11998 11999 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 12000
12001commit d640ac58dbf61c769864b3fe76314306b7336cf1 12002Author: Wolfgang Denk <wd@denx.de> 12003Date: Mon Sep 7 23:52:31 2009 +0200 12004 12005 Remove "atmel_df_pow2" binary with "make clean" 12006 12007 Commit 65f6f07b added support for the atmel_df_pow2 standalone program 12008 but missed to add a rule to remove it to the "clean" make target. 12009 12010 Signed-off-by: Wolfgang Denk <wd@denx.de> 12011 12012commit 0b34dbbd0b6969c98c44313b291836d9056ec40a 12013Author: Stefan Roese <sr@denx.de> 12014Date: Mon Sep 7 10:52:24 2009 +0200 12015 12016 ppc4xx: Fix compilation warning in 4xx miiphy.c 12017 12018 This patch fixes the following compilation warning: 12019 12020 miiphy.c: In function 'emac4xx_miiphy_read': 12021 miiphy.c:353: warning: dereferencing type-punned pointer will break 12022 strict-aliasing rules 12023 12024 Signed-off-by: Stefan Roese <sr@denx.de> 12025 12026commit 82379b5564819e62624a3c58fbc43f1afedf4f5f 12027Author: Matthias Fuchs <matthias.fuchs@esd.eu> 12028Date: Mon Sep 7 17:00:41 2009 +0200 12029 12030 ppc4xx: Add CONFIG_PCI_4xx_PTM_OVERWRITE to some esd 4xx boards 12031 12032 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 12033 Signed-off-by: Stefan Roese <sr@denx.de> 12034 12035commit 99bcf14d553f399148a7660b98f7acbd8cc72d80 12036Author: Matthias Fuchs <matthias.fuchs@esd.eu> 12037Date: Mon Sep 7 17:00:40 2009 +0200 12038 12039 ppc4xx: Allow overwriting pci target registers for all 4xx boards 12040 12041 This patch adds the CONFIG_PCI_4xx_PTM_OVERWRITE option and replaces 12042 the ugly 'if defined(BOARD1) || ... || defined(BOARDn)' construct 12043 in 4xx pci code. 12044 12045 When CONFIG_PCI_4xx_PTM_OVERWRITE is defined the default ptm register 12046 setup can be overwritten through environment variables ptm1la, ptm1ms, 12047 ptm2la and ptm2ms to do application specific pci target BAR configuration. 12048 12049 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 12050 Signed-off-by: Stefan Roese <sr@denx.de> 12051 12052commit cfab2ae322a99ad55364d054054f138f51130c2a 12053Author: Matthias Fuchs <matthias.fuchs@esd.eu> 12054Date: Fri Sep 4 10:37:04 2009 +0200 12055 12056 ppc4xx: Fix PMC405DE support 12057 12058 This patch fixes PMC405DE support. Patch 85d6bf0b fixed out-of-tree 12059 building for this board but the loadpci object did not get linked 12060 after that. 12061 12062 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 12063 Signed-off-by: Stefan Roese <sr@denx.de> 12064 12065commit c8355b9d9f778bd12ee19c8f34d88e13758a4efd 12066Author: Detlev Zundel <dzu@denx.de> 12067Date: Wed Sep 2 17:24:57 2009 +0200 12068 12069 amcc-common.h: Use filenames from environment variables for update procedure. 12070 12071 Using a separate "u-boot" environment variable allows to easily 12072 specify different filenames for the update procedure. This is also in 12073 line with many other board configurations defining an "update" script. 12074 12075 Signed-off-by: Detlev Zundel <dzu@denx.de> 12076 Acked-by: Wolfgang Denk <wd@denx.de> 12077 Signed-off-by: Stefan Roese <sr@denx.de> 12078 12079commit 6c97a20d0b2f56cb4f3745d94b1f96986e8cced5 12080Author: Kumar Gala <galak@kernel.crashing.org> 12081Date: Wed Sep 9 11:40:41 2009 -0500 12082 12083 ppc/85xx: Introduce RESET_VECTOR_ADDRESS to handle non-standard link address 12084 12085 Some board ports place TEXT_BASE at a location that would cause the 12086 RESET_VECTOR_ADDRESS not to be at 0xfffffffc when we link. By default 12087 we assume RESET_VECTOR_ADDRESS will be 0xfffffffc if the board doesn't 12088 explicitly set it. 12089 12090 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12091 Acked-by: Wolfgang Denk <wd@denx.de> 12092 12093commit c348322ac7f76318295cf25ffab2cc2a4900a234 12094Author: Kumar Gala <galak@kernel.crashing.org> 12095Date: Tue Sep 8 13:46:46 2009 -0500 12096 12097 ppc/85xx: Clean up do_reset 12098 12099 There is no reason to do a run time check for e500 v1 based cores to 12100 determine if we have the GUTs RSTCR facility. Only the first generation 12101 of PQ3 parts (MPC8540/41/55/60) do not have it. So checking to see if 12102 we are e500 v2 would miss future parts (like e500mc). 12103 12104 Just change this to be ifdef'd based on CONFIG_MPC85{40,41,55,60}. 12105 12106 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12107 12108commit 21170c80a83f1e60ce7f6f83005e06a5c2d15a8e 12109Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 12110Date: Thu Sep 3 19:42:40 2009 +0530 12111 12112 ppc/85xx/86xx: Bug fix: call to puts in probecpu() moved to checkcpu(). 12113 12114 While in probecpu() UART is still not initialized. 12115 12116 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 12117 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12118 12119commit f8027f6b4789e3340f10620d8fb6113b95b88d9c 12120Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 12121Date: Wed Sep 2 19:40:36 2009 +0530 12122 12123 ppc/85xx/86xx: Device tree fixup for number of cores 12124 12125 Fixing the number of cores in the device tree based on the actual number of 12126 cores on the system. With this same device tree image can be used for dual 12127 core and single core members of otherwise exactly same SOC. 12128 12129 For example: 12130 * P2020RDB and P2010RDB 12131 * P1020RDB and P1011RDB 12132 * MPC8641D and MPC8641 12133 12134 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 12135 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12136 12137commit 58442dc01e47cc8ce42af4f29486a34cad60b9d2 12138Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 12139Date: Wed Sep 2 13:35:21 2009 +0530 12140 12141 ppc/85xx,86xx: Handling Unknown SOC version 12142 12143 Incase the system is detected with Unknown SVR, let the system boot 12144 with a default value and a proper message. 12145 12146 Now with dynamic detection of SOC properties from SVR, this is necessary 12147 to prevent a crash. 12148 12149 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 12150 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12151 12152commit 3e7b6c1f2db5ec31f9e7dbc3e0cbca602167a46a 12153Author: Kumar Gala <galak@kernel.crashing.org> 12154Date: Wed Sep 2 09:03:08 2009 -0500 12155 12156 ppc/8xxx: Refactor code to determine if PCI is enabled & agent/host 12157 12158 Refactor the code into a simple bitmask lookup table that determines if 12159 a given PCI controller is enabled and if its in host/root-complex or 12160 agent/end-point mode. 12161 12162 Each processor in the PQ3/MPC86xx family specified different encodings 12163 for the cfg_host_agt[] and cfg_IO_ports[] boot strapping signals. 12164 12165 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12166 12167commit 5052a771cf1722c37c732f3c340775b55fbe3a22 12168Author: Kumar Gala <galak@kernel.crashing.org> 12169Date: Wed Sep 2 09:00:50 2009 -0500 12170 12171 ppc/85xx: Cleanup makefile and related optional files 12172 12173 Cleaned up cpu/mpc85xx/Makefile to use CONFIG_* for those obvious cases 12174 we have like PCI, CPM2, QE. Also reworked it to use one line per file 12175 for everything and sorted in alphabetical order. 12176 12177 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12178 12179commit 74c5dfd81f94a2a1f0d6990d17c491d718e8b9ea 12180Author: Timur Tabi <timur@freescale.com> 12181Date: Fri Sep 4 17:05:24 2009 -0500 12182 12183 fsl: add register read-back to set_law() 12184 12185 After programming a new LAW, we should read-back the LAWAR register so that 12186 we sync the writes. Otherwise, code that attempts to use the new LAW-mapped 12187 memory might fail right away. 12188 12189 Signed-off-by: Timur Tabi <timur@freescale.com> 12190 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12191 12192commit c7259086816405fe0eb77f4dc22e76980a040cef 12193Author: Kumar Gala <galak@kernel.crashing.org> 12194Date: Thu Sep 3 08:41:31 2009 -0500 12195 12196 ppc/85xx: Fix bug in setup_mp code 12197 12198 Its possible that we try and copy the boot page code out of flash into a 12199 DDR location that doesn't have a TLB cover it. For example, if we have 12200 3G of DDR we typically only map the first 2G. In the cases of 4G+ this 12201 wasn't an issue since the reset page TLB mapping covered the last page 12202 of memory which we wanted to copy to. 12203 12204 We now change the physical address of the reset page TLB to map to the 12205 true physical location of the boot page code, copy and than set the 12206 TLB back to its 1:1 mapping of the reset page. 12207 12208 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12209 12210commit c2287af1552bd630956568d3957c370f86801b7d 12211Author: Kumar Gala <galak@kernel.crashing.org> 12212Date: Thu Sep 3 08:20:24 2009 -0500 12213 12214 ppc/85xx: Add a simple function to search the TLB 12215 12216 Allow us to search the TLB array based on an address. This is useful 12217 if we want to change an entry but dont know where it happens to be 12218 located. 12219 12220 For example, the boot page mapping we use on MP or the flash TLB that 12221 we change the WIMGE settings for after we've relocated. 12222 12223 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12224 12225commit 26f4cdba6b51deab4ec99d60be381244068ef950 12226Author: Kumar Gala <galak@kernel.crashing.org> 12227Date: Fri Aug 14 13:37:54 2009 -0500 12228 12229 85xx: Add support for setting IVORs to fixed offset defaults 12230 12231 In future Book-E implementations IVORs will most likely go away and be 12232 replaced with fixed offsets. The IVPR will continue to exist to allow 12233 for relocation of the interrupt vectors. 12234 12235 This code adds support to setup the IVORs as their fixed offset values 12236 per the ISA 2.06 spec when we transition from u-boot to another OS 12237 either via 'bootm' or a cpu release. 12238 12239 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12240 12241commit da1cd955dfec35b0e15381ad1ee248fa194eed82 12242Author: Dipen Dudhat <dipen.dudhat@freescale.com> 12243Date: Wed Sep 2 11:25:08 2009 +0530 12244 12245 ppc/85xx: Fix up eSDHC controller clock frequency in the device tree 12246 12247 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com> 12248 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12249 12250commit 2abbd31da6d900473ed678ca50789ee58bc9bb00 12251Author: Kumar Gala <galak@kernel.crashing.org> 12252Date: Tue Sep 1 22:01:54 2009 -0500 12253 12254 ppc/8xxx: Remove ddr_pd_cntl register since it doesn't exist 12255 12256 The ddr_pd_cntl isn't defined in any reference manual and thus we wil 12257 remove especially since we set it to 0, which would most likely be its 12258 POR value. 12259 12260 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12261 12262commit 13d46ab2572c0283d34f93bebc9a41295ef84ca5 12263Author: Kumar Gala <galak@kernel.crashing.org> 12264Date: Tue Sep 1 21:07:08 2009 -0500 12265 12266 ppc/8xxx: relocate cpu pointer in global data 12267 12268 Now that we have a pointer to the cpu struct we need to relocate it once 12269 we get into ram. 12270 12271 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12272 12273commit 9c671e7062720074f894ee329eaa6995b0823727 12274Author: Anton Vorontsov <avorontsov@ru.mvista.com> 12275Date: Wed Sep 2 02:17:24 2009 +0400 12276 12277 fsl: sys_eeprom: Fix 'may be used uninitialized' warning 12278 12279 The warning is bogus, so silence it by initializing the 'ret' variable. 12280 12281 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 12282 Acked-by: Timur Tabi <timur@freescale.com> 12283 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12284 12285commit 6b9ea08c5010eab5ad1056bc9bf033afb672d9cc 12286Author: Dipen Dudhat <dipen.dudhat@freescale.com> 12287Date: Tue Sep 1 17:27:00 2009 +0530 12288 12289 ppc/85xx: Use CONFIG_FSL_ESDHC to enable sdhc clk 12290 12291 Enable eSDHC Clock based on generic CONFIG_FSL_ESDHC define instead of a 12292 platform define. This will enable all the 85xx platforms to use sdhc_clk 12293 based on CONFIG_FSL_ESDHC. 12294 12295 Signed-off-by: Gao Guanhua <B22826@freescale.com> 12296 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com> 12297 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12298 12299commit 92477a631bbda2dc0dd2194e03f9bd3ddb8b9c21 12300Author: Timur Tabi <timur@freescale.com> 12301Date: Fri Sep 4 16:28:35 2009 -0500 12302 12303 fsl_i2c: increase I2C timeout values and make them configurable 12304 12305 The value of I2C_TIMEOUT in fsl_i2c.c has several problems. First, it is 12306 defined as CONFIG_HZ/4, but it is used as a count of microseconds, so it makes 12307 no sense to derive it from a clock rate. Second, the current value (250) is 12308 too low for some boards, so it needs to be increased. Third, the timeout 12309 necessary for multiple-master arbitration is larger than the timeout for basic 12310 read/write operations, so we shouldn't have a single constant for both timeouts. 12311 Finally, it would be nice if we could override these values on a per-board 12312 basis. 12313 12314 Signed-off-by: Timur Tabi <timur@freescale.com> 12315 Acked-by: Wolfgang Denk <wd@denx.de> 12316 Tested-by: Peter Tyser <ptyser@xes-inc.com> 12317 Acked-by: Peter Tyser <ptyser@xes-inc.com> 12318 12319commit 5da71efa18e8b4eac9afd8bfa13e3c7e7ddde1d0 12320Author: Eric Millbrandt <emillbrandt@coldhaus.com> 12321Date: Thu Sep 3 08:09:44 2009 -0500 12322 12323 Reset i2c slave devices during init on mpc5xxx cpus 12324 12325 Reset any i2c devices that may have been interrupted during a system reset. 12326 Normally this would be accomplished by clocking the line until SCL and SDA 12327 are released and then sending a start condtiion (From an Atmel datasheet). 12328 There is no direct access to the i2c pins so instead create start commands 12329 through the i2c interface. Send a start command then delay for the SDA Hold 12330 time, repeat this by disabling/enabling the bus a total of 9 times. 12331 12332 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com> 12333 12334commit 2d4072c06b5549444e4140231bba3d47d9b0bc53 12335Author: Sandeep Paulraj <s-paulraj@ti.com> 12336Date: Sat Aug 15 11:20:58 2009 -0400 12337 12338 ARM: DaVinci: Adding Support for DaVinci DM365 EVM 12339 12340 This patch adds support for the DM365 EVM. 12341 It has been tested on a DM365 EVM. 12342 12343 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 12344 12345commit cf463091bce8b0f8951dd08f94754d08d64793b8 12346Author: Sandeep Paulraj <s-paulraj@ti.com> 12347Date: Sat Aug 15 11:20:44 2009 -0400 12348 12349 ARM: DaVinci: DaVinci DM365 SOC specific code 12350 12351 This patch adds support for DaVinci DM365 SOC. 12352 12353 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 12354 12355commit e830b66b3592f115316600d370399f3ee148e909 12356Author: Ilko Iliev <iliev@ronetix.at> 12357Date: Sat Sep 5 02:51:34 2009 +0200 12358 12359 DM9000 init for pm9261 12360 12361 Signed-off-by: Ilko Iliev <iliev@ronetix.at> 12362 12363commit c35d7cf071f171bd6bba69f1563a6ac578a18ea6 12364Author: Frederik Kriewitz <frederik@kriewitz.eu> 12365Date: Sun Aug 23 12:56:42 2009 +0200 12366 12367 Add support for the DevKit8000 board 12368 12369 This patch adds support for the DevKit8000 board. 12370 12371 Signed-off-by: Frederik Kriewitz <frederik@kriewitz.eu> 12372 12373commit 127f9ae575991aee3e105e1448c49b5b4e254998 12374Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 12375Date: Sun Aug 23 16:32:40 2009 +0200 12376 12377 omap3: move the other boards to board/ 12378 12379 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 12380 12381commit 350f3ac5731faf0f02ca55ab016694b7c7269f97 12382Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 12383Date: Sun Aug 23 16:32:39 2009 +0200 12384 12385 arm: move Logicpd's boards to board/logicpd/ 12386 12387 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 12388 12389commit 0a0e4bad9693ef1d2ca8c33ba551d395a4e3d641 12390Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 12391Date: Sun Aug 23 16:32:38 2009 +0200 12392 12393 omap: move TI's boards to board/ti/ 12394 12395 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 12396 12397commit 9f23ca42b3ba19b24e66fade572f2b86d929b6e8 12398Author: Wolfgang Denk <wd@denx.de> 12399Date: Fri Sep 4 23:20:29 2009 +0200 12400 12401 ARM: Update mach-types 12402 12403 Signed-off-by: Wolfgang Denk <wd@denx.de> 12404 12405commit 262ae0a6193f10b6a94e86d2f752e7f5510416fa 12406Author: Mike Frysinger <vapier@gentoo.org> 12407Date: Thu Sep 3 23:12:47 2009 -0400 12408 12409 push LOAD_ADDR out to arch mk files 12410 12411 Rather than maintain/extend the current ifeq($(ARCH)) mess that exists in 12412 the standalone Makefile, push the setting up of LOAD_ADDR out to the arch 12413 config.mk (and rename to STANDALONE_LOAD_ADDR in the process). This keeps 12414 the common code clean and lets the arch do whatever crazy crap it wants in 12415 its own area. 12416 12417 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12418 12419commit 7662eb2b9d6fbc95ecb1fb3e5b5147215e251e7d 12420Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com> 12421Date: Thu Sep 3 07:37:46 2009 -0400 12422 12423 zlib: fix code when DEBUG is defined 12424 12425 Removed stdio.h inclusion and moved trace macros to use printf avoiding to 12426 write debug informations to standard error. 12427 12428 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com> 12429 12430commit cfcbf8c4cf3da96b9e3f652506b664bfd766a520 12431Author: Scott Wood <scottwood@freescale.com> 12432Date: Wed Sep 2 16:45:31 2009 -0500 12433 12434 mxc_nand: Remove Freescale's "All Rights Reserved." 12435 12436 Signed-off-by: Scott Wood <scottwood@freescale.com> 12437 12438commit 001d615681333569c555e6cde07d8d23e2c536fb 12439Author: Anton Vorontsov <avorontsov@ru.mvista.com> 12440Date: Wed Sep 2 17:58:48 2009 +0400 12441 12442 mpc83xx/serdes: License cleanup: remove "All Rights Reserved" notice 12443 12444 "All Rights Reserved" conflicts with the GPL. 12445 12446 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 12447 12448commit 46ff6d461321f5b565cc790e02679237ffd9a20f 12449Author: Wolfgang Denk <wd@denx.de> 12450Date: Wed Sep 2 14:57:27 2009 +0200 12451 12452 License cleanup: remove unintended "All Rights Reserved" notices. 12453 12454 Some files included my old standerd file header which had a "All 12455 Rights Reserved" part. As this has never been my intention, I remove 12456 these lines to make the files compatible with GPL v.2 and later. 12457 12458 Signed-off-by: Wolfgang Denk <wd@denx.de> 12459 12460commit 37daa77f3cafb5ec9a974eff3db2af4a0560a9ef 12461Author: Wolfgang Denk <wd@denx.de> 12462Date: Wed Sep 2 10:21:20 2009 +0200 12463 12464 cmd_mtdparts.c: fix compiler warning in debug code 12465 12466 Fix warning messages: 12467 cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long 12468 unsigned int', but argument 6 has type 'u32' 12469 cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long 12470 unsigned int', but argument 7 has type 'u32' 12471 12472 Signed-off-by: Wolfgang Denk <wd@denx.de> 12473 12474commit d8bc55a6fb28876abcbf4a3fc3b6c3ce429c1bb3 12475Author: Anton Vorontsov <avorontsov@ru.mvista.com> 12476Date: Tue Sep 1 20:58:03 2009 +0400 12477 12478 Move uninitialized_var() macro from ubi_uboot.h to compiler.h 12479 12480 This is needed so that we could use this macro for non-UBI code. 12481 12482 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 12483 12484commit d72871e1387094972569e4b77c25e88020f7b68f 12485Author: Kumar Gala <galak@kernel.crashing.org> 12486Date: Tue Sep 1 11:24:45 2009 -0500 12487 12488 arm: Remove -fno-strict-aliasing 12489 12490 -fno-strict-aliasing is hidding warnings. 12491 12492 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12493 12494commit d6281ff0cc2ebb5d6a5c3e1021837334074f92ec 12495Author: Kumar Gala <galak@kernel.crashing.org> 12496Date: Tue Sep 1 11:24:44 2009 -0500 12497 12498 ppc: Remove -fno-strict-aliasing 12499 12500 -fno-strict-aliasing is hidding warnings. 12501 12502 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12503 12504commit 795d246c278e70b4ba9868cc9f2c8fbada49d388 12505Author: Eric Millbrandt <emillbrandt@coldhaus.com> 12506Date: Fri Aug 28 07:14:04 2009 -0500 12507 12508 galaxy5200: Add chip select region for an Epson S1D15313 12509 12510 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com> 12511 12512commit 3dfad40a0459f63099e177dc15a1df39d048f860 12513Author: Kumar Gala <galak@kernel.crashing.org> 12514Date: Thu Aug 27 08:23:55 2009 -0500 12515 12516 Add ability for arch code to make changes before we boot 12517 12518 Added a arch_preboot_os() function that cpu specific code can implement to 12519 allow for various modifications to the state of the machine right before 12520 we boot. This can be useful to setup register state to a specific 12521 configuration. 12522 12523 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 12524 12525commit 9ea005fb4428c922536fa75991ce9972304a02fb 12526Author: Roy Zang <tie-fei.zang@freescale.com> 12527Date: Sat Aug 22 03:49:52 2009 +0800 12528 12529 Use different PBA value for E1000 PCI and PCIe cards 12530 12531 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 12532 Acked-by: André Schwarz <andre.schwarz@matrix-vision.de> 12533 12534commit 5b34a296d47b236dafbcaf1c91ae11b5aeb1ef51 12535Author: Graeme Russ <graeme.russ@gmail.com> 12536Date: Sun Aug 23 12:59:58 2009 +1000 12537 12538 Add PCI support to eNET board 12539 12540 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12541 12542commit f50b619d9cb297b0125fe78dcd6f255eb0d91659 12543Author: Graeme Russ <graeme.russ@gmail.com> 12544Date: Sun Aug 23 12:59:57 2009 +1000 12545 12546 i386: Moved PCI from #ifdef to conditional compile for sc520 boards 12547 12548 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12549 12550commit ed7a1b681de1e31d18d5b92e2767ae8df3241687 12551Author: Graeme Russ <graeme.russ@gmail.com> 12552Date: Sun Aug 23 12:59:56 2009 +1000 12553 12554 i386: Replace [read, write]_mmcr_[byte, word, long] with memory mapped structure 12555 12556 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12557 12558commit 9b32f96b5b92ba13fdb4b5eb637734752235f260 12559Author: Graeme Russ <graeme.russ@gmail.com> 12560Date: Sun Aug 23 12:59:55 2009 +1000 12561 12562 Misc sc520 cdp fixups 12563 12564 Now that the PCI, SATA et al compile problems have been resolved, the 12565 cludge that was applied to avoid them can be removed 12566 12567 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12568 12569commit 91ee4e183cb7ac5f86e7673ead51400f19906635 12570Author: Graeme Russ <graeme.russ@gmail.com> 12571Date: Sun Aug 23 12:59:54 2009 +1000 12572 12573 Fixup sc520_spunk board 12574 12575 Primary intent is to resolve build errors for this board which has been 12576 neglected for a very long time. I do not have one of these boards, so I 12577 cannot test functionality 12578 12579 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12580 12581commit 8907b8dbc5805094f1316d64737d3428b3863693 12582Author: Graeme Russ <graeme.russ@gmail.com> 12583Date: Sun Aug 23 12:59:53 2009 +1000 12584 12585 Misc ds1722 fixups 12586 12587 This patch is based on a patch submitted by Jean-Christophe PLAGNIOL-VILLARD 12588 on 18th May 2008 as part of a general i386 / sc520 fixup which was never 12589 applied 12590 12591 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12592 12593commit a92510e7fae523145b58765cdc46110f1162260d 12594Author: Graeme Russ <graeme.russ@gmail.com> 12595Date: Sun Aug 23 12:59:52 2009 +1000 12596 12597 Misc ti_pci1410a fixups 12598 12599 Removed do_pinit() - now declared in cmd_pcmcia.c 12600 12601 Added #define CONFIG_CMD_PCMCIA around pcmcia_off() in line with other 12602 PCMCIA drivers 12603 12604 signed/unsigned type fixups 12605 12606 Added semi-colon after default: label as required by newer gcc 12607 12608 The only board that appears to use this driver is the sc520_spunk which 12609 is very old and very likely very broken anyway. I do not have one to test 12610 whether this patch breaks anything functionaly, I have can only check 12611 that it compiles without warning or error 12612 12613 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12614 12615commit 31b9ab33d93d88ff89f3046aa45c68667a378a56 12616Author: Graeme Russ <graeme.russ@gmail.com> 12617Date: Sun Aug 23 12:59:51 2009 +1000 12618 12619 Misc SATA fixups 12620 12621 Cast first parameter to sata_cpy() 12622 12623 In /drivers/block/ata_piix.h, ata_id_has_lba48(), ata_id_has_lba(), 12624 ata_id_has_dma(), ata_id_u32(), ata_id_u64() are all defined in 12625 include/libata.h which is included in ata.h which is included by all files 12626 which include ata_piix.h (only ata_piix.c) so these definitions are 12627 supurflous to (and conlict with) this in libata.h. Interestingly, my 12628 compiler complains about ata_id_u64 already being defined, but not 12629 ata_id_u32 12630 12631 ata_dump_id() is defined in include/libata.h and should not be static 12632 (maybe should even use ata_dump_id() in libata.c 12633 12634 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12635 12636commit d7549024098af093785151261266a02be19af633 12637Author: Graeme Russ <graeme.russ@gmail.com> 12638Date: Sun Aug 23 12:59:50 2009 +1000 12639 12640 i386: Misc PCI fixups 12641 12642 Change PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY (Originally done in 12643 commit ff4e66e93c1a, regressed by commit 6d7f610b09f8) 12644 12645 Cast PCI_ROM_ADDRESS_MASK to u32 12646 12647 Wrap probe_pci_video() call inside #ifdef CONFIG_VIDEO 12648 12649 Change call to pci_find_class() to pci_find_devices(). This is based on a 12650 patch submitted on 1st March 2007 (Patch that fixes the compilation errors 12651 for sc520_cdp board) by mushtaq_k 12652 12653 This patch requires that PCI_VIDEO_VENDOR_ID and PCI_VIDEO_DEVICE_ID be 12654 specified in the board config file. Dummy values have been added for the 12655 SC520 CDP board to enable compilation, but since I do not have one of these, 12656 I do know what the values should be 12657 12658 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12659 12660commit 04ff9ab158714d43cdf2f4f6f0235c3ea9d241a2 12661Author: Graeme Russ <graeme.russ@gmail.com> 12662Date: Sun Aug 23 12:59:49 2009 +1000 12663 12664 Fix sc520 timer interrupt generation 12665 12666 The current implementation has the timer being started before the interrupt 12667 handler is installed. It the interrupt occurs before the handler is 12668 installed, the timer interrupt is never reset and the timer stops 12669 12670 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12671 12672commit f3a8d6b29b1cd01fdd940e8ff7a62b1df0ebbf82 12673Author: Graeme Russ <graeme.russ@gmail.com> 12674Date: Sun Aug 23 12:59:48 2009 +1000 12675 12676 Fix environment configuration for eNET board 12677 12678 The current configuration of the Environment has the redundant copy of the 12679 environment in the Boot Flash - This was never the intent. The Environment 12680 should instead be in the first two sectors of the first Strata Flash 12681 12682 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12683 12684commit ea0c37798c3823fdd77edfffd27b20191f8ca1f0 12685Author: Graeme Russ <graeme.russ@gmail.com> 12686Date: Sun Aug 23 12:59:47 2009 +1000 12687 12688 i386: Fix regression introduced by commit 8c63d47651f7 12689 12690 A local variable was deleted that should not have been 12691 12692 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12693 12694commit cfb3a736ffcff3e3753b902cad536f22fcf8961d 12695Author: Graeme Russ <graeme.russ@gmail.com> 12696Date: Sun Aug 23 12:59:46 2009 +1000 12697 12698 i386: Change inline asm global symbols to local 12699 12700 gcc 4.3.2 optimiser creates multiple copies of inline asm (who knows why) 12701 Remove use of global names for labels to prevent 'symbol already defined' 12702 errors 12703 12704 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12705 12706commit a3ab8caee696a1d53fc82fa321e2b2f179970168 12707Author: Graeme Russ <graeme.russ@gmail.com> 12708Date: Sun Aug 23 12:59:45 2009 +1000 12709 12710 i386: Add errno.h 12711 12712 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 12713 12714commit d4e8ada0f6d51e0e3b80790fb9375ac8910f5352 12715Author: Peter Tyser <ptyser@xes-inc.com> 12716Date: Fri Aug 21 23:05:21 2009 -0500 12717 12718 Consolidate arch-specific mem_malloc_init() implementations 12719 12720 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 12721 12722commit a483a167bc8d808145ca1224a2c238cda90aa60c 12723Author: Peter Tyser <ptyser@xes-inc.com> 12724Date: Fri Aug 21 23:05:20 2009 -0500 12725 12726 Standardize mem_malloc_init() implementation 12727 12728 This lays the groundwork to allow architectures to share a common 12729 mem_malloc_init(). 12730 12731 Note that the x86 implementation was not modified as it did not fit the 12732 mold of all other architectures. 12733 12734 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 12735 12736commit 5e93bd1c9aaea886c5e5c7c1b6114ab36c30668f 12737Author: Peter Tyser <ptyser@xes-inc.com> 12738Date: Fri Aug 21 23:05:19 2009 -0500 12739 12740 Consolidate arch-specific sbrk() implementations 12741 12742 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 12743 12744commit 65f6f07b72a71b83d775c4d20d7ebcd6b2d2086d 12745Author: Mike Frysinger <vapier@gentoo.org> 12746Date: Thu Jul 23 16:37:03 2009 -0400 12747 12748 atmel_df_pow2: standalone to convert dataflashes to pow2 12749 12750 Atmel DataFlashes by default operate with pages that are slightly bigger 12751 than normal binary sizes (i.e. many are 1056 byte pages rather than 1024 12752 bytes). However, they also have a "power of 2" mode where the pages show 12753 up with the normal binary size. The latter mode is required in order to 12754 boot with a Blackfin processor, so many people wish to convert their 12755 DataFlashes on their development systems to this mode. This standalone 12756 application does just that. 12757 12758 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12759 12760commit cb95c7a935ab9b52dac5d08e5ba4007c5a480f97 12761Author: Mike Frysinger <vapier@gentoo.org> 12762Date: Wed Sep 2 05:52:37 2009 -0400 12763 12764 Blackfin: cm-bf548: fix device->stdio_dev fallout 12765 12766 The recent 52cb4d4fb348 commit which renamed device to stdio_dev missed the 12767 cm-bf548's video board. 12768 12769 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12770 12771commit c7bcdde46a7ef78628f0f09fdc6cb61bb1bd7e79 12772Author: Mike Frysinger <vapier@gentoo.org> 12773Date: Wed Sep 2 04:21:16 2009 -0400 12774 12775 Blackfin: enable 64bit printf for nand 12776 12777 Since the NAND code now uses 64bit code, make sure we enable support for 12778 ADI Blackfin boards in printf to avoid the warning: 12779 nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output! 12780 12781 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12782 12783commit 9c46e71af2b03ccd721c56b1dc906ead702d6fb5 12784Author: Mike Frysinger <vapier@gentoo.org> 12785Date: Mon Aug 24 20:48:04 2009 -0400 12786 12787 Blackfin: use scratch pad for exception stack 12788 12789 If the memory layout pushes the stack out of the default DCPLB coverage, 12790 the exception handler may trigger a double fault by trying to push onto 12791 the uncovered stack. So handle the exception stack similar to the kernel 12792 by using the top of the scratch pad SRAM. 12793 12794 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12795 12796commit 69a25ce3578f34c8accb476f70089f3a44b78ed9 12797Author: Mike Frysinger <vapier@gentoo.org> 12798Date: Mon Aug 24 20:36:25 2009 -0400 12799 12800 Blackfin: increase default console size 12801 12802 The default console size indirectly applies to length of env vars, so a 12803 smaller length makes it hard to pass longer command lines to kernels. 12804 12805 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12806 12807commit f541e1d6d99c22bbd4bc8c84fdb02baad0277847 12808Author: Mike Frysinger <vapier@gentoo.org> 12809Date: Mon Aug 24 19:03:18 2009 -0400 12810 12811 Blackfin: fix debug printf modifiers 12812 12813 The display_global_data() function generated warnings with pretty much 12814 every variable. 12815 12816 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12817 12818commit 4640c2b8699bcdd2346a2c633486f07f061a2939 12819Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 12820Date: Thu Aug 20 19:20:41 2009 -0400 12821 12822 Blackfin: cm-bf537u: new board port 12823 12824 The CM-BF537U is similar to the CM-BF537E module, but enough to need its 12825 own board port. 12826 12827 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 12828 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12829 12830commit c4db335c2e0805e1ce4c33d278b77492c0812353 12831Author: Robin Getz <robin.getz@analog.com> 12832Date: Mon Aug 17 15:23:02 2009 +0000 12833 12834 Blackfin: change global data register from P5 to P3 12835 12836 Since the Blackfin ABI favors higher scratch registers by default, use the 12837 last scratch register (P3) for global data rather than the first (P5). 12838 This allows the compiler's register allocator to use higher number scratch 12839 P registers, which in turn better matches the Blackfin instruction set, 12840 which reduces the size of U-Boot by more than 1024 bytes... 12841 12842 Signed-off-by: Robin Getz <robin.getz@analog.com> 12843 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12844 12845commit 574b70df03fba0ea635e2fe71fbd7b97d19b706a 12846Author: Robin Getz <robin.getz@analog.com> 12847Date: Tue Aug 11 14:20:13 2009 +0000 12848 12849 Blackfin: enable more network commands for ADI dev boards 12850 12851 Add dns and ntp to default networking commands, and ask for more dhcp 12852 options to better configure the network environment. 12853 12854 Signed-off-by: Robin Getz <robin.getz@analog.com> 12855 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12856 12857commit aa7b248a05323d4720969227603e39a22777ed95 12858Author: Michael Hennerich <michael.hennerich@analog.com> 12859Date: Thu Jun 18 09:12:50 2009 +0000 12860 12861 Blackfin: bf537-stamp: comment CF-Flash Card Support better 12862 12863 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> 12864 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12865 12866commit 69c6d268a29cf6d61e096d815abf5abf24136f45 12867Author: Robin Getz <robin.getz@analog.com> 12868Date: Fri Jul 10 18:37:15 2009 +0000 12869 12870 Blackfin: use +(filesize) to make sure we are only doing what is necessary 12871 12872 Signed-off-by: Robin Getz <robin.getz@analog.com> 12873 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 12874 12875commit 2dc851e3b0f07a56f83060f13882ff4b62cf5112 12876Author: Albin Tonnerre <albin.tonnerre@free-electrons.com> 12877Date: Thu Aug 20 16:04:49 2009 +0200 12878 12879 Support for the Calao TNY-A9260/TNY-A9G20 boards 12880 12881 The Calao TNY-A9260 and TNY-9G20 are boards manufactured and sold by 12882 Calao Systems <http://www.calao-systems.com>. Their components are very 12883 similar to the AT91SAM9260EK board, so their configuration is based on 12884 the configuration of this board. There are however some differences: 12885 different clocks, no LCD, no ethernet. They also can use SPI EEPROM to 12886 store the environment. 12887 12888 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 12889 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 12890 12891commit 49d2cb4d6153a6c18249dccb5de5cffeb261a61c 12892Author: Prafulla Wadaskar <prafulla@marvell.com> 12893Date: Thu Aug 20 20:59:28 2009 +0530 12894 12895 arm: Kirkwood: add SYSRSTn Duration Counter Support 12896 12897 This feature can be used to trigger special command "sysrstcmd" using 12898 reset key long press event and environment variable "sysrstdelay" is set 12899 (useful for reset to factory or manufacturing mode execution) 12900 12901 Kirkwood SoC implements a hardware-based SYSRSTn duration counter. 12902 When SYSRSTn is asserted low, a SYSRSTn duration counter is running. 12903 The counter value is stored in the SYSRSTn Length Counter Register 12904 The counter is based on the 25-MHz reference clock (40ns) 12905 It is a 29-bit counter, yielding a maximum counting duration of 12906 2^29/25 MHz (21.4 seconds). When the counter reach its maximum value, 12907 it remains at this value until counter reset is triggered by setting 12908 bit 31 of KW_REG_SYSRST_CNT 12909 12910 Implementation: 12911 Upon long reset assertion (> ${sysrstdelay} in secs) sysrstcmd will be 12912 executed if pre-defined in environment variables. 12913 This feature will be disabled if "sysrstdelay" variable is unset. 12914 12915 for-ex. 12916 setenv sysrst_cmd "echo starting factory reset; 12917 nand erase 0xa0000 0x20000; 12918 echo finish ed sysrst command;" 12919 will erase particular nand sector if triggered by this event 12920 12921 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 12922 12923commit 9453967e28c5e3abbf856f95735ea69bae1e77fa 12924Author: Albin Tonnerre <albin.tonnerre@free-electrons.com> 12925Date: Mon Aug 24 18:03:26 2009 +0200 12926 12927 Add support for the Calao SBC35-A9G20 board 12928 12929 The Calao SBC35-A9G20 board is manufactured and sold by Calao Systems 12930 <http://www.calao-systems.com>. It is built around an AT91SAM9G20 ARM SoC 12931 running at 400MHz. It features an Ethernet port, an SPI RTC backed by an onboard 12932 battery , an SD/MMC slot, a CompactFlash slot, 64Mo of SDRAM, 256Mo of NAND 12933 flash, two USB host ports, and an USB device port. More informations can be 12934 found at <http://www.calao-systems.com/articles.php?lng=en&pg=5936> 12935 12936 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 12937 12938commit 10bc241dfc15a0820d9c52469173b7ccafec0b84 12939Author: Ilya Yanok <yanok@emcraft.com> 12940Date: Tue Aug 11 02:32:09 2009 +0400 12941 12942 imx27lite: add support for imx27lite board from LogicPD 12943 12944 This patch adds support for i.MX27-LITEKIT development board from 12945 LogicPD. This board uses i.MX27 SoC and has 2MB NOR flash, 64MB NAND 12946 flash, FEC ethernet controller integrated into i.MX27. 12947 12948 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 12949 Acked-by: Wolfgang Denk <wd@denx.de> 12950 12951commit 50b5fff55827946c86a60db8b21a9358be720666 12952Author: Albin Tonnerre <albin.tonnerre@free-electrons.com> 12953Date: Tue Sep 1 11:26:20 2009 +0200 12954 12955 at91sam9260/afeb9260: Fix SPI initialization 12956 12957 Commit 7ebafb7ec1a0285af8380623c009576f92583b98 introduced a mistake in the spi 12958 init function call for those boards. This patch fixes this. 12959 12960 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 12961 12962commit f3d4f8870e69e0fd177397778d97d0751bbd020a 12963Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 12964Date: Tue Aug 18 11:13:44 2009 +0200 12965 12966 Remove duplicate set_cr 12967 12968 Remove duplicate set_cr 12969 12970 set_cr is defined in both asm-arm/proc-armv/system.h and 12971 include/asm-arm/system.h. This patch removes it (and some duplicate 12972 defines) from the former. 12973 12974 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 12975 12976commit 3d35d87d5482de23cd5dc4d7721b1086107cae50 12977Author: Wolfgang Denk <wd@denx.de> 12978Date: Mon Aug 31 19:57:42 2009 +0200 12979 12980 Prepare 2009.08 12981 12982 Update CHANGELOG 12983 12984 Signed-off-by: Wolfgang Denk <wd@denx.de> 12985 12986commit 632a6dd0b612eb7b143f789f2a0273917468c041 12987Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 12988Date: Mon Aug 31 16:18:24 2009 +0200 12989 12990 Add common code dir for Matrix Vision boards. 12991 12992 This fixes current build failure. 12993 12994 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 12995 12996 mvblm7.c: fix warning: implicit declaration of function 12997 'mv_reset_environment' 12998 12999 Signed-off-by: Wolfgang Denk <wd@denx.de> 13000
13001commit 52f6c34c85d6c16f2a41433b5000490ecf374992 13002Author: David Brownell <dbrownell@users.sourceforge.net> 13003Date: Sun Aug 30 11:05:29 2009 -0700 13004 13005 bugfix CONFIG_SYS_CONSOLE_INFO_QUIET 13006 13007 The "console: unify printing current devices" patch goofed: 13008 CONFIG_SYS_CONSOLE_INFO_QUIET is supposed to *REMOVE* boot 13009 time noise, not add it. Said patch changed the #ifndefs 13010 to #ifdef; this one restores them to the proper sense. 13011 13012 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 13013 13014commit 2d04db088e6df8a008bb09f604876a45031df93b 13015Author: Timur Tabi <timur@freescale.com> 13016Date: Fri Aug 28 16:56:45 2009 -0500 13017 13018 fsl: simplify the "mac id" command, improve boot-time informational message 13019 13020 The "mac id" command took a 4-character parameter as the identifier string. 13021 However, for any given board, only one kind of identifier is acceptable, so it 13022 makes no sense to ask the user to type it in. Instead, if the user enters 13023 "mac id", the identifier (and also the version, if it's NXID) will 13024 automatically be set to the correct value. 13025 13026 Improve the message that is displayed when EEPROM is read during boot. It now 13027 displays "EEPROM:" and then either an error message or the EEPROM identifier 13028 if successful. 13029 13030 If the identifier in EEPROM is valid, then always reject a bad CRC, even if the 13031 CRC field has not been initialized. 13032 13033 Don't force the MAC address count to MAX_NUM_PORTS or less. Forcing the value 13034 to be changed resulting in an in-memory copy that does not match what's in 13035 hardware, even though the user did not request that change. 13036 13037 Finally, always update the CRC value in the in-memory copy after any field 13038 is changed, so that the CRC is always correct. 13039 13040 Signed-off-by: Timur Tabi <timur@freescale.com> 13041 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13042 13043commit 33f3f34255bd7cf0be502275c59f0ff22dc50080 13044Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13045Date: Fri Aug 21 07:29:58 2009 +0530 13046 13047 85xx: Added PCIe support for P1 P2 RDB 13048 13049 Call fsl_pci_init_port() to initialize all the PCIe ports on the board. 13050 13051 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13052 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13053 13054commit 0d3d68b25a8e7790f58530ddccbd61f9fc0245ef 13055Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13056Date: Fri Aug 21 07:29:42 2009 +0530 13057 13058 driver/fsl_pci: Add fsl_pci_init_port function to initialize a PCI controller 13059 13060 fsl_pci_init_port can be called from board specific PCI initialization 13061 routines to setup the PCI (or PCIe) controller. This will reduce code 13062 redundancy in most of the 85xx/86xx FSL board ports that setup PCI. 13063 13064 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13065 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13066 13067commit 05f6f66474312ad03c39b4ca4875af46c87366bf 13068Author: Timur Tabi <timur@freescale.com> 13069Date: Thu Aug 20 17:41:11 2009 -0500 13070 13071 85xx: Improve MPIC initialization 13072 13073 The MPIC initialization code for Freescale e500 CPUs was not using I/O 13074 accessors, and it was not issuing a read-back to the MPIC after setting 13075 mixed mode. This may be the cause of a spurious interrupt on some systems. 13076 13077 Signed-off-by: Timur Tabi <timur@freescale.com> 13078 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13079 13080commit c17b79fbd0c7923948331d65cb588734a9c681ff 13081Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13082Date: Thu Aug 20 18:59:18 2009 +0530 13083 13084 85xx: Added support for P1011RDB and P2010RDB 13085 13086 P1011 and P2010 are single core variants of P1010 and P2020 respectively. 13087 The board(RDB) will be same. 13088 13089 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13090 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13091 13092commit a713ba926b45da9a6f923f1ac9e60a66852e5f2d 13093Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13094Date: Thu Aug 20 18:57:45 2009 +0530 13095 13096 85xx: Added single core members of FSL P1xx/P2xx processors series 13097 13098 P1011 - Single core variant of P1020 13099 P2010 - Single core variant of P2020 13100 13101 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13102 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13103 13104commit bf488bc0949fc900d1296a7f35a38a6a28cb5fab 13105Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13106Date: Thu Aug 20 18:57:02 2009 +0530 13107 13108 85xx: P1020RDB Support Added 13109 13110 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13111 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13112 13113commit 3b1f243b8dad30a646a0f056b0268519eadbc3c5 13114Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13115Date: Thu Aug 20 18:55:35 2009 +0530 13116 13117 85xx: Added CONFIG_MAX_CPUS for P1020 13118 13119 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13120 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13121 13122commit 76b474e2f5a223fcabfeaa4f1c8fb699062b986c 13123Author: Mingkai Hu <Mingkai.hu@freescale.com> 13124Date: Tue Aug 18 15:37:15 2009 +0800 13125 13126 85xx: Add L2SRAM Register's macro definition 13127 13128 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 13129 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13130 13131commit 158c6724c99368a4d8eef11ee7e3c7ad0ef03a15 13132Author: Felix Radensky <felix@embedded-sol.com> 13133Date: Sat Aug 15 15:08:37 2009 +0300 13134 13135 85xx: Fix memory test range on MPC8536DS 13136 13137 With current values of CONFIG_SYS_MEMTEST_START and CONFIG_SYS_MEMTEST_END 13138 memory test hangs if run without arguments. Set them to sane values, so 13139 that all available 512MB of RAM excluding exception vectors at the bottom 13140 and u-boot code and stack at the top can be tested. 13141 13142 Signed-off-by: Felix Radensky <felix@embedded-sol.com> 13143 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13144 13145commit ef41f2a25c554604156b59f5945feadae2f3cb55 13146Author: Kumar Gala <galak@kernel.crashing.org> 13147Date: Wed Aug 12 00:10:44 2009 -0500 13148 13149 85xx: Removed BEDBUG support on P1_P2_RDB 13150 13151 To match all other 85xx platforms we are removing BEDBUG support. 13152 13153 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13154 13155commit b560ab85edfb68da653bf2527c390c3e182392a1 13156Author: Kumar Gala <galak@kernel.crashing.org> 13157Date: Sat Aug 8 10:42:30 2009 -0500 13158 13159 85xx: Init pci ethernet cards if we enable any on MPC8572DS 13160 13161 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13162 13163commit 1bb61b69f7aba4931ede35fdcabd8e5ecad121d7 13164Author: Peter Tyser <ptyser@xes-inc.com> 13165Date: Fri Aug 7 13:16:34 2009 -0500 13166 13167 xes: Use proper IO access functions 13168 13169 Also fix some minor whitespace oddities while we're cleaning up 13170 13171 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 13172 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13173 13174commit ec79d33b2c41ee8b6d1354cc0910217b769c5036 13175Author: Kumar Gala <galak@kernel.crashing.org> 13176Date: Fri Aug 7 13:00:55 2009 -0500 13177 13178 85xx: Move to a common linker script 13179 13180 There are really no differences between all the 85xx linker scripts so 13181 we can just move to a single common one. Board code is still able to 13182 override the common one if need be. 13183 13184 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13185 13186commit 87c7661b42aa7672539b54b51d3d5c4013ec6f6c 13187Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13188Date: Fri Jul 31 12:08:27 2009 +0530 13189 13190 85xx: Added P1020 Processor Support. 13191 13192 P1020 is another member of QorIQ series of processors which falls in ULE 13193 category. It is an e500 based dual core SOC. 13194 13195 Being a scaled down version of P2020 it has following differences: 13196 - 533MHz - 800MHz core frequency. 13197 - 256Kbyte L2 cache 13198 - Ethernet controllers with classification capabilities. 13199 Also the SOC is pin compatible with P2020 13200 13201 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13202 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13203 13204commit 728ece343e8bb2a66ee977c49d455439e3b28da9 13205Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13206Date: Wed Aug 5 13:29:24 2009 +0530 13207 13208 85xx: Add support for P2020RDB board 13209 13210 The code base adds P1 & P2 RDB platforms support. 13211 The folder and file names can cater to future SOCs of P1/P2 family. 13212 P1 & P2 processors are 85xx platforms, part of Freescale QorIQ series. 13213 13214 Tested following on P2020RDB: 13215 1. eTSECs 13216 2. DDR, NAND, NOR, I2C. 13217 13218 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13219 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13220 13221commit 0e870980a64584a591af775bb9c9fe9450124df9 13222Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13223Date: Fri Jul 31 12:08:14 2009 +0530 13224 13225 8xxx: Removed CONFIG_NUM_CPUS from 85xx/86xx 13226 13227 The number of CPUs are getting detected dynamically by checking the 13228 processor SVR value. Also removed CONFIG_NUM_CPUS references from all 13229 the platforms with 85xx/86xx processors. 13230 13231 This can help to use the same u-boot image across the platforms. 13232 13233 Also revamped and corrected few Freescale Copyright messages. 13234 13235 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13236 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13237 13238commit 18bacc2027f8531d8dec15ba8da3242dfb4e63f3 13239Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13240Date: Fri Jul 31 12:07:45 2009 +0530 13241 13242 8xxx: Refactored common cpu specific code for 85xx/86xx into one file. 13243 13244 Removed same code pieces from cpu/mpc85xx/cpu.c and cpu/mpc86xx/cpu.c 13245 and moved to cpu/mpc8xxx/cpu.c(new file) 13246 13247 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 13248 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13249 13250commit 7b18c227b847e4782eb1492219ebd555f521b08b 13251Author: Alex Dubov <oakad@yahoo.com> 13252Date: Fri Aug 7 15:28:32 2009 +1000 13253 13254 stx: create common vendor/board hierarchy for STx boards 13255 13256 Move files belonging to the STx boards into common vendor directory and 13257 update the Makefile to reflect this. 13258 13259 Signed-off-by: Alex Dubov <oakad@yahoo.com> 13260 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13261 13262commit bafdf9aa9dbb69d937b72db17ed5800998c59523 13263Author: Peter Tyser <ptyser@xes-inc.com> 13264Date: Tue Aug 4 17:38:00 2009 -0500 13265 13266 85xx: Remove unused CONFIG_CLEAR_LAW0 defines 13267 13268 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 13269 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13270 13271commit 73aacc522849486b60a5611f678f0bf1c3053779 13272Author: Kumar Gala <galak@kernel.crashing.org> 13273Date: Thu Aug 6 18:38:43 2009 -0500 13274 13275 86xx: Remove redudant PLATFORM_CPPFLAGS 13276 13277 For historic reasons we had defined some additional PLATFORM_CPPFLAGS like: 13278 13279 PLATFORM_CPPFLAGS += -DCONFIG_MPC86xx=1 13280 PLATFORM_CPPFLAGS += -DCONFIG_MPC8641=1 13281 13282 However these are all captured in the config.h and thus redudant. Also 13283 moved common 86xx flags into cpu/mpc86xx/config.mk. 13284 13285 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13286 13287commit 53efa1f1acacacb76fa9a21b09b3294783a11c03 13288Author: Kumar Gala <galak@kernel.crashing.org> 13289Date: Thu Aug 6 18:28:34 2009 -0500 13290 13291 85xx: Remove redudant PLATFORM_CPPFLAGS 13292 13293 For historic reasons we had defined some additional PLATFORM_CPPFLAGS 13294 like: 13295 13296 PLATFORM_CPPFLAGS += -DCONFIG_E500=1 13297 PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1 13298 PLATFORM_CPPFLAGS += -DCONFIG_MPC8548=1 13299 13300 However these are all captured in the config.h and thus redudant. 13301 13302 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13303 13304commit 337f9fde2e9317c1d9e85a4a8955a2f14730a00f 13305Author: Kumar Gala <galak@kernel.crashing.org> 13306Date: Thu Jul 30 15:54:07 2009 -0500 13307 13308 85xx: Add a 36-bit physical configuration for MPC8536DS 13309 13310 We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary 13311 to allow for larger memory sizes. 13312 13313 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13314 Acked-by: Wolfgang Denk <wd@denx.de> 13315 13316 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13317 13318commit ecead84d56b0ced67b727f5ce21ba08c53b5f09e 13319Author: Kumar Gala <galak@kernel.crashing.org> 13320Date: Tue Aug 4 09:10:03 2009 -0500 13321 13322 85xx: Cleanup whitespace in mpc8536ds.c 13323 13324 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13325 13326commit ad19e7a5d2de337064ce7728d6504df9648f5d31 13327Author: Kumar Gala <galak@kernel.crashing.org> 13328Date: Wed Aug 5 07:59:35 2009 -0500 13329 13330 pci/fsl_pci_init: Rework PCI ATMU setup to handle >4G of memory 13331 13332 The old PCI ATMU setup code would just mimic the PCI regions into the 13333 ATMU registers. For simple memory maps in which all memory, MMIO, etc 13334 space fit into 4G this works ok. However there are issues with we have 13335 >4G of memory as we know can't access all of memory and we need to 13336 ensure that PCICSRBAR (PEXCSRBAR on PCIe) isn't overlapping with 13337 anything since we can't turn it off. 13338 13339 We first setup outbound windows based on what the board code setup 13340 in the pci regions for MMIO and IO access. Next we place PCICSRBAR 13341 below the MMIO window. After which we try to setup the inbound windows 13342 to map as much of memory as possible. 13343 13344 On PCIe based controllers we are able to overmap the ATMU setup since 13345 RX & TX links are separate but report the proper amount of inbound 13346 address space to the region tracking to ensure there is no overlap. 13347 13348 On PCI based controllers we use as many inbound windows as available to 13349 map as much of the memory as possible. 13350 13351 Additionally we changed all the CCSR register access to use proper IO 13352 accessor functions. Also had to add CONFIG_SYS_CCSRBAR_PHYS to some 13353 86xx platforms that didn't have it defined. 13354 13355 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13356 13357commit 8295b94400449586505ffe34ec024feb3d2c8fe4 13358Author: Kumar Gala <galak@kernel.crashing.org> 13359Date: Wed Aug 5 07:49:27 2009 -0500 13360 13361 pci/fsl_pci_init: Use PCIe capability to determine if controller is PCIe 13362 13363 Change the code to use the PCIe capabilities register to determine if we 13364 are a PCIe controller or not. Additionally cleaned up some white space 13365 and formatting in the file. 13366 13367 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13368 13369commit cb151aa2cf5fbb1e412fc763a3a611758f066238 13370Author: Kumar Gala <galak@kernel.crashing.org> 13371Date: Mon Aug 3 21:02:02 2009 -0500 13372 13373 pci/fsl_pci_init: Fold fsl_pci_setup_inbound_windows into fsl_pci_init 13374 13375 Every platform that calls fsl_pci_init calls fsl_pci_setup_inbound_windows 13376 before it calls fsl_pci_init. There isn't any reason to just call it 13377 from fsl_pci_init and simplify things a bit. 13378 13379 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13380 13381commit fb3143b35eb5890ec72e79d17a6068a84a057d47 13382Author: Kumar Gala <galak@kernel.crashing.org> 13383Date: Mon Aug 3 20:44:55 2009 -0500 13384 13385 pci/fsl_pci_init: Fold pci_setup_indirect into fsl_pci_init 13386 13387 Every platform that calls fsl_pci_init calls pci_setup_indirect before 13388 it calls fsl_pci_init. There isn't any reason to just call it from 13389 fsl_pci_init and simplify things a bit. 13390 13391 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 13392 13393commit 28887d831b02c66ccc10d7f1379204b5a62f4543 13394Author: André Schwarz <andre.schwarz@matrix-vision.de> 13395Date: Thu Aug 27 14:48:35 2009 +0200 13396 13397 Use common code for Matrix Vision boards 13398 13399 Clean up existing boards (mvBC-P/MPC5200 and mvBL-M7/MPC8343) by 13400 using common code. 13401 13402 Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de> 13403 13404commit 05f91a65abc3180e2896cd8ddee7a34b1d1ce6e0 13405Author: Kim Phillips <kim.phillips@freescale.com> 13406Date: Wed Aug 26 21:27:37 2009 -0500 13407 13408 mpc83xx: mpc8349itx - accommodate larger kernel sizes & unzero the bootdelay 13409 13410 apparently the ITX was missed last round. 13411 13412 Also make bootdelay consistent with other boards, so as to give on the 13413 opportunity to fix mistakenly set bootcmd without having checked for an 13414 bootdelay zero setting first. 13415 13416 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 13417 13418commit cc861f7127f200e704baaf061a7f508e3c93f2a3 13419Author: Kim Phillips <kim.phillips@freescale.com> 13420Date: Wed Aug 26 21:25:46 2009 -0500 13421 13422 mpc83xx: match dtb filename references to their dts equivalents in the linux kernel 13423 13424 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 13425 13426commit 77b351cd0f20483eefa09bebebb3e0cbf5555b2c 13427Author: Sandeep Paulraj <s-paulraj@ti.com> 13428Date: Tue Aug 18 10:10:42 2009 -0400 13429 13430 NAND: DaVinci: V2 Adding 4 BIT ECC support 13431 13432 This patch adds 4 BIT ECC support in the DaVinci NAND 13433 driver. Tested on both the DM355 and DM365. 13434 13435 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 13436 Signed-off-by: Scott Wood <scottwood@freescale.com> 13437 13438commit f83b7f9e8a5d1334e24506ea5953dd871596ea8a 13439Author: Sandeep Paulraj <s-paulraj@ti.com> 13440Date: Mon Aug 10 13:27:56 2009 -0400 13441 13442 MTD:NAND: ADD new ECC mode NAND_ECC_HW_OOB_FIRST 13443 13444 This patch adds the new mode NAND_ECC_HW_OOB_FIRST in the nand code to 13445 support 4-bit ECC on TI DaVinci devices with large page (up to 2K) NAND 13446 chips. This ECC mode is similar to NAND_ECC_HW, with the exception of 13447 read_page API that first reads the OOB area, reads the data in chunks, 13448 feeds the ECC from OOB area to the ECC hw engine and perform any 13449 correction on the data as per the ECC status reported by the engine. 13450 13451 This patch has been accepted by Andrew Morton and can be found at 13452 13453 http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-new-ecc-mode-ecc_hw_oob_first.patch 13454 13455 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 13456 Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com> 13457 Signed-off-by: Scott Wood <scottwood@freescale.com> 13458 13459commit 36fab997d85d89ee7fd2c7fd6057fab786d556aa 13460Author: Ilya Yanok <yanok@emcraft.com> 13461Date: Tue Aug 11 02:32:54 2009 +0400 13462 13463 mxc_nand: add nand driver for MX2/MX3 13464 13465 Driver for NFC NAND controller found on Freescale's MX2 and MX3 13466 processors. Ported from Linux. Tested only with i.MX27 but should 13467 works with other MX2 and MX3 processors too. 13468 13469 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 13470 Signed-off-by: Scott Wood <scottwood@freescale.com> 13471 13472commit a2c65b47effcb3d0aa23e58596538acd338ac7c5 13473Author: Sandeep Paulraj <s-paulraj@ti.com> 13474Date: Mon Aug 10 13:27:46 2009 -0400 13475 13476 NAND: ADD page Parameter to all read_page/read_page_raw API's 13477 13478 This patch adds a new "page" parameter to all NAND read_page/read_page_raw 13479 APIs. The read_page API for the new mode ECC_HW_OOB_FIRST requires the 13480 page information to send the READOOB command and read the OOB area before 13481 the data area. 13482 13483 This patch has been accepted by Andrew Morton and can be found at 13484 http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-page-parameter-to-all-read_page-read_page_raw-apis.patch 13485 13486 WE would like this to become part of the u-boot GIT as well 13487 13488 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 13489 Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com> 13490 Signed-off-by: Scott Wood <scottwood@freescale.com> 13491 13492commit de4250929f37e6c16860741b74546bedbe0bdaba 13493Author: Heiko Schocher <hs@denx.de> 13494Date: Tue Jul 21 17:13:40 2009 +0200 13495 13496 83xx, kmeter1: added NAND support 13497 13498 Signed-off-by: Heiko Schocher <hs@denx.de> 13499 Signed-off-by: Scott Wood <scottwood@freescale.com> 13500 13501commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29 13502Author: Kyungmin Park <kmpark@infradead.org> 13503Date: Tue Jul 21 11:58:04 2009 +0900 13504 13505 OneNAND: Remove unused read_spareram 13506 13507 Remove unused read_spareram and add unlock_all as kernel does 13508 13509 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 13510 Signed-off-by: Scott Wood <scottwood@freescale.com> 13511 13512commit 403ce1f759b5acec8514cd7e10ce76704fed519c 13513Author: Matthias Kaehlcke <matthias@kaehlcke.net> 13514Date: Thu Jul 16 21:19:29 2009 +0200 13515 13516 KB9202: Add NAND support 13517 13518 Add KB9202 NAND driver 13519 13520 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net> 13521 Signed-off-by: Scott Wood <scottwood@freescale.com> 13522 13523commit ce3277a6f2c082f39596d3d3d88dd0a5bc91439d 13524Author: Kyungmin Park <kmpark@infradead.org> 13525Date: Tue Jul 21 11:58:04 2009 +0900 13526 13527 OneNAND: Remove unused read_spareram 13528 13529 Remove unused read_spareram and add unlock_all as kernel does 13530 13531 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 13532 13533commit 0d042037b3cf8693ea0f793d0c292430bfc5a95c 13534Author: Eric Millbrandt <emillbrandt@coldhaus.com> 13535Date: Tue Aug 25 10:30:26 2009 -0500 13536 13537 galaxy5200: Cleanup typo and trailing whitespace 13538 13539 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com> 13540 13541commit f6a309080b2da9e509b5ee8d091dca5e175415b7 13542Author: TsiChung Liew <tsicliew@gmail.com> 13543Date: Wed Jul 22 18:42:45 2009 +0000 13544 13545 ColdFire: Fix compile warning messages 13546 13547 Change %08lX to %08X in board.c. Remove unused variable 13548 'oscillator' in mcf5227x/cpu_init.c and 'scm2' in 13549 mcf532x/cpu_init.c. Provide argument type cast in 13550 drivers/dma/MCD_dmaApi.c. 13551 13552 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 13553 13554commit 88c811b153771a3d1bfe958297c69722efb278e9 13555Author: TsiChung Liew <tsicliew@gmail.com> 13556Date: Wed Jul 22 16:32:39 2009 +0000 13557 13558 ColdFire: Fix missing _IO_BASE which caused compile error 13559 13560 The compile error was caused by a recent patch. Affected platforms - 13561 M5253DEMO.h, M5253EVBE.h, and M54455EVB.h. Adding the _IO_BASE 13562 automatically defined to 0 in asm-m68k/io.h if it isn't set in 13563 platform configuration file. 13564 13565 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 13566 13567commit 3a7b2c21fb08b022e3e624cd071002b4aaed1606 13568Author: Niklaus Giger <niklaus.giger@member.fsf.org> 13569Date: Wed Jul 22 17:13:24 2009 +0200 13570 13571 Support up to 7 banks for ids as specified in JEDEC JEP106Z 13572 13573 see http://www.jedec.org/download/search/jep106Z.pdf 13574 Add some second source legacy flash chips 256x8. 13575 13576 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 13577 Signed-off-by: Stefan Roese <sr@denx.de> 13578 13579commit 0d071cdd782e917b43e04869843df31670231ffd 13580Author: Kim Phillips <kim.phillips@freescale.com> 13581Date: Mon Aug 24 14:32:26 2009 -0500 13582 13583 net: tsec - handle user interrupt while waiting for PHY auto negotiation to complete 13584 13585 if you don't have firmware installed for the PHY to come to life, this 13586 wait can be painful - let's give the option to avoid it if we want. 13587 13588 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 13589 Acked-by: Andy Fleming <afleming@freescale.com> 13590 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 13591 13592commit 4fccb818e7ee1190602e79aa5729a23bc349bf0c 13593Author: Robin Getz <rgetz@blackfin.uclinux.org> 13594Date: Thu Aug 20 10:50:20 2009 -0400 13595 13596 Add Transfer Size Option to tftp 13597 13598 Optionally add RFC 2349 "Transfer Size Option", so we can minimize the 13599 time spent sending data over the UART (now print a single line during a 13600 tftp transfer). 13601 13602 - If turned on (CONFIG_TFTP_TSIZE), U-Boot asks for the size of the file. 13603 - if receives the file size, a single line (50 chars) are printed. 13604 one hash mark == 2% of the file downloaded. 13605 - if it doesn't receive the file size (the server doesn't support RFC 13606 2349, prints standard hash marks (one mark for each UDP frame). 13607 13608 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org> 13609 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 13610 13611commit 488feef85229c08cd3aa1fa183bc8f483d2ae832 13612Author: Robin Getz <rgetz@blackfin.uclinux.org> 13613Date: Mon Aug 24 10:33:39 2009 -0400 13614 13615 Add debug message for Blackfin Ethernet Rx function. 13616 13617 Add a simple print for the Blackfin's Ethernet Rx function, 13618 so we can debug incomming Ethernet functions easier. 13619 13620 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org> 13621 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 13622 13623commit b1c0eaac110bc919e5b4e88821348e714493f266 13624Author: Ben Warren <biggerbadderben@gmail.com> 13625Date: Tue Aug 25 13:09:37 2009 -0700 13626 13627 Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API 13628 13629 All in-tree boards that use this controller have CONFIG_NET_MULTI added 13630 Also: 13631 - changed CONFIG_DRIVER_CS8900 to CONFIG_CS8900 13632 - changed CS8900_BASE to CONFIG_CS8900_BASE 13633 - changed CS8900_BUS?? to CONFIG_CS8900_BUS?? 13634 - cleaned up line lengths 13635 - modified VCMA9 command function that accesses the device 13636 - removed MAC address initialization from lib_arm/board.c 13637 13638 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 13639 Tested-by: Wolfgang Denk <wd@denx.de> 13640 Acked-by: Wolfgang Denk <wd@denx.de> 13641 13642commit d47628a6ecf80cd4584a50b6c795b90c985a48e5 13643Author: Alessandro Rubini <rubini-list@gnudd.com> 13644Date: Fri Aug 7 13:59:26 2009 +0200 13645 13646 arm nomadik: activate defrag choose 4k transfer block size 13647 13648 This chooses 4kB data size for both TFTP and NFS, as an example 13649 about how to use support for IP fragments. 13650 13651 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 13652 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 13653 13654commit bd931ca61c84039241d438ade4a9755ae0e5372f 13655Author: Alessandro Rubini <rubini-list@gnudd.com> 13656Date: Fri Aug 7 13:59:16 2009 +0200 13657 13658 nfs: accept CONFIG_NFS_READ_SIZE from config file 13659 13660 To take advantage of defragmented packets, the config file 13661 can define CONFIG_NFS_READ_SIZE to override the 1kB default. 13662 No support is there for an environment variable by now. 13663 13664 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 13665 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 13666 13667commit 89ba81d1079a07b8430a98c1746c6d411312eb0d 13668Author: Alessandro Rubini <rubini-list@gnudd.com> 13669Date: Fri Aug 7 13:59:06 2009 +0200 13670 13671 tftp: get the tftp block size from config file and from the environment 13672 13673 Increasing the block size is useful if CONFIG_IP_DEFRAG is 13674 used. Howerver, the last fragments in a burst may overflow the 13675 receiving ethernet, so the default is left at 1468, with thre new 13676 CONFIG_TFTP_BLOCKSIZE for config files. Further, "tftpblocksize" 13677 can be set in the environment. 13678 13679 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 13680 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 13681 13682commit 5cfaa4e54d0eb8232fa1cf092d955fdaed5b673d 13683Author: Alessandro Rubini <rubini-list@gnudd.com> 13684Date: Fri Aug 7 13:58:56 2009 +0200 13685 13686 net: defragment IP packets 13687 13688 The defragmenting code is enabled by CONFIG_IP_DEFRAG; the code is 13689 useful for TFTP and NFS transfers. The user can specify the maximum 13690 defragmented payload as CONFIG_NET_MAXDEFRAG (default 16k). 13691 Since NFS has a bigger per-packet overhead than TFTP, the static 13692 reassembly buffer can hold CONFIG_NET_MAXDEFRAG + the NFS overhead. 13693 13694 The packet buffer is used as an array of "hole" structures, acting as 13695 a double-linked list. Each new fragment can split a hole in two, 13696 reduce a hole or fill a hole. No support is there for a fragment 13697 overlapping two diffrent holes (i.e., thre new fragment is across an 13698 already-received fragment). 13699 13700 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 13701 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 13702 13703commit 68e74567cf317318df52dbcb2ac170ffc5e7758a 13704Author: Feng Kan <fkan@amcc.com> 13705Date: Fri Aug 21 10:59:42 2009 -0700 13706 13707 ppc4xx: Fix ECC Correction bug with SMC ordering for NDFC driver 13708 13709 Fix ECC Correction bug where the byte offset location were double 13710 flipped causing correction routine to toggle the wrong byte location 13711 in the ECC segment. The ndfc_calculate_ecc routine change the order 13712 of getting the ECC code. 13713 /* The NDFC uses Smart Media (SMC) bytes order */ 13714 ecc_code[0] = p[2]; 13715 ecc_code[1] = p[1]; 13716 ecc_code[2] = p[3]; 13717 But in the Correction algorithm when calculating the byte offset 13718 location, the s1 is used as the upper part of the address. Which 13719 again reverse the order making the final byte offset address 13720 location incorrect. 13721 byteoffs = (s1 << 0) & 0x80; 13722 . 13723 . 13724 byteoffs |= (s0 >> 4) & 0x08; 13725 The order is change to read it in straight and let the correction 13726 function to revert it to SMC order. 13727 13728 Signed-off-by: Feng Kan <fkan@amcc.com> 13729 Acked-by: Victor Gallardo <vgallardo@amcc.com> 13730 Acked-by: Prodyut Hazarika <phazarika@amcc.com> 13731 Signed-off-by: Stefan Roese <sr@denx.de> 13732 13733commit 307ecb6db04eebdc06b8c87d48bf48d3cbd5e9d7 13734Author: Eric Millbrandt <emillbrandt@coldhaus.com> 13735Date: Thu Aug 13 08:32:37 2009 -0500 13736 13737 Add support for USB on PSC3 for the mpc5200 13738 13739 Support USB on PSC3 on the mpc5200. Before this patch, enabling USB support 13740 would reconfigure PSC4 and PSC5 to USB. The mpc5200 does not support USB 13741 enabled on both the standard USB port and PSC3. This patch masks the 13742 appropriate bits when enabling USB. 13743 13744 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com> 13745 Acked-by: Grant Likely <grant.likely@secretlab.ca> 13746 Acked-by: Remy Bohmer <linux@bohmer.net> 13747 13748commit 6b8548b0f7068379ad1efa4fa28725f361b2d3cd 13749Author: Albin Tonnerre <albin.tonnerre@free-electrons.com> 13750Date: Thu Aug 13 19:12:44 2009 +0200 13751 13752 Add driver for the ST M41T94 SPI RTC 13753 13754 This RTC is used in some Calao boards. The driver code is taken from 13755 the linux rtc-m41t94 driver 13756 13757 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 13758 13759commit 885fc78c28fbe773bcb4edc9dd0fdac05ebb5b38 13760Author: Albin Tonnerre <albin.tonnerre@free-electrons.com> 13761Date: Thu Aug 13 15:31:12 2009 +0200 13762 13763 Switch from per-driver to common definition of bin2bcd and bcd2bin 13764 13765 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 13766 Acked-by: Stefan Roese <sr@denx.de> 13767 13768commit e84aba135ed7145299304ef550e92f08b2c99d7a 13769Author: Albin Tonnerre <albin.tonnerre@free-electrons.com> 13770Date: Thu Aug 13 15:31:11 2009 +0200 13771 13772 Replace BCD2BIN and BIN2BCD macros with inline functions 13773 13774 In the process, also remove backward-compatiblity macros BIN_TO_BCD and 13775 BCD_TO_BIN and update the sole board using them to use the new bin2bcd 13776 and bcd2bin instead 13777 13778 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 13779 Acked-by: Stefan Roese <sr@denx.de> 13780 Acked-by: Detlev Zundel <dzu@denx.de> 13781 13782commit 5b53b29bc2e82b80b669f1d2402068c60d7fecd0 13783Author: Eric Millbrandt <emillbrandt@coldhaus.com> 13784Date: Thu Aug 13 10:14:21 2009 -0500 13785 13786 Add support for the galaxy5200 13787 13788 Add support for the DEKA Research and Development galaxy5200 board 13789 13790 The galaxy5200 is an Freescale mpc5200 based embedded industrial 13791 control board. 13792 13793 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com> 13794 13795commit 0a9e4e772123fe3e2bb499d7d2160c4cfd8a3a8d 13796Author: Mike Frysinger <vapier@gentoo.org> 13797Date: Fri Jul 24 16:34:32 2009 -0400 13798 13799 unify {CONFIG_,}ENV_IS_EMBEDDED 13800 13801 Some boards have fallen out of sync by defining CONFIG_ENV_IS_EMBEDDED 13802 manually. While it is useful to have this available to the build system, 13803 let's do it automatically rather than forcing people to opt into it. 13804 13805 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 13806 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 13807 Signed-off-by: Wolfgang Denk <wd@denx.de> 13808 13809commit 02c9aa1d41f73fdcf8383a36cc0cbbfaf952855d 13810Author: Robin Getz <rgetz@blackfin.uclinux.org> 13811Date: Mon Jul 27 00:07:59 2009 -0400 13812 13813 Add md5sum and sha1 commands... 13814 13815 Now that we have sha1 and md5 in lib_generic, allow people to use 13816 them on the command line, for checking downloaded files. 13817 13818 Signed-off-by: Robin Getz <rgetz@analog.com> 13819 13820commit 30fc5cd3116cb112d0aab7e6d7c8eef1b67ed075 13821Author: Wolfgang Denk <wd@denx.de> 13822Date: Tue Aug 25 12:22:38 2009 +0200 13823 13824 include/s3c24x0.h: fix S3C24X0_SPI_CHANNEL declaration 13825 13826 The SPI controller on the S3C24X0 has 8 bit registers, not 32 bit. 13827 13828 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 13829 Signed-off-by: Wolfgang Denk <wd@denx.de> 13830 13831commit e637385e69f63bc73b9dfd2ddd8d0f383790ca28 13832Author: Mike Frysinger <vapier@gentoo.org> 13833Date: Thu Aug 20 19:17:59 2009 -0400 13834 13835 Blackfin: fix typos in gpio comments 13836 13837 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 13838 13839commit c2fbcb6ae86c10621a386c13be57eaa766221ed5 13840Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 13841Date: Tue Aug 18 04:49:57 2009 -0400 13842 13843 Blackfin: cm-bf527/cm-bf537: increase flash sectors 13844 13845 Newer revisions of these boards have slightly larger flashes, so increase 13846 the configured number of sectors so that U-Boot works on all revisions. 13847 13848 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 13849 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 13850 13851commit a794f59a75bf9fd4a44f1ad2349cae903c42b89c 13852Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 13853Date: Sun Aug 23 14:14:52 2009 +0200 13854 13855 sh/rsk7203: add missing include net.h 13856 13857 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 13858 13859commit 6ac9f47977a9fc1876979871eeb14f26ba1bdbe6 13860Author: Mike Frysinger <vapier@gentoo.org> 13861Date: Sun Aug 23 02:47:59 2009 -0400 13862 13863 start a linker script helper file 13864 13865 Start a common header file for common linker script code (such as 13866 workarounds for older linkers) rather than doing this in the build system. 13867 13868 As fallout, we no longer execute the linker every time config.mk is 13869 included by a build file (which can easily be 70+ times), but rather only 13870 execute it once. 13871 13872 This also fixes a bug in the major version checking by creating a macro to 13873 easily compare versions and keep people from making the same common 13874 mistake (forgetting to check major and minor together). 13875 13876 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 13877 13878commit 2ed0869d30602eb660569eababb8fedff36bd23a 13879Author: Mike Frysinger <vapier@gentoo.org> 13880Date: Sat Aug 22 19:50:22 2009 -0400 13881 13882 Blackfin: use common code to preprocess linker script 13883 13884 Now that the common code preprocesses the linker script, the Blackfin code 13885 no longer needs to do it. 13886 13887 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 13888 13889commit 4d3758c835c7e96da2a291e7fb5acfc19bc06e8e 13890Author: Mike Frysinger <vapier@gentoo.org> 13891Date: Sat Aug 22 19:48:56 2009 -0400 13892 13893 .gitignore: ignore generated u-boot.lds 13894 13895 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 13896 13897commit 79b91de958511840d2a7491be92d435b7ef43f17 13898Author: Albin Tonnerre <albin.tonnerre@free-electrons.com> 13899Date: Sat Aug 22 14:21:53 2009 +0200 13900 13901 include/mmc.h: Fix typo in IS_SD() macro 13902 13903 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 13904 13905commit 963f2f611741f8d9c38bd7caf20ae8c95cab7b3f 13906Author: Wolfgang Denk <wd@denx.de> 13907Date: Sat Aug 22 23:27:26 2009 +0200 13908 13909 Prepare 2009.08-rc3 13910 13911 Update CHANGELOG, minor Coding Style cleanup. 13912 13913 Signed-off-by: Wolfgang Denk <wd@denx.de> 13914 13915commit 5b2da6a309266f21cbb68f06fcfdf9ba141022e7 13916Author: Michal Simek <monstr@monstr.eu> 13917Date: Fri Aug 21 06:52:25 2009 +1000 13918 13919 qemu-mips: Fix Qemu website 13920 13921 Signed-off-by: Michal Simek <monstr@monstr.eu> 13922 Signed-off-by: Michal Simek <michal.simek@petalogix.com> 13923 Acked-by: Shinya Kuribayashi <skuribay@pobox.com> 13924 13925commit 79f516bccc3cff5a5cd4b3dffb7d254e746fdbde 13926Author: Kim Phillips <kim.phillips@freescale.com> 13927Date: Fri Aug 21 16:34:38 2009 -0500 13928 13929 mpc83xx: accommodate larger kernel sizes by default 13930 13931 linux mpc83xx_defconfig kernels are getting bigger, accommodate for 13932 their growth by adjusting default load and fdt addresses. 13933 13934 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 13935 13936commit 8eceeb7fd656d6d071c0a8b615e178aca5775fff 13937Author: Kim Phillips <kim.phillips@freescale.com> 13938Date: Fri Aug 21 16:33:15 2009 -0500 13939 13940 mpc83xx: mpc8377erdb - change DDR settings to those from latest bsp 13941 13942 when using Linus' 83xx_defconfig, the mpc8377rdb would hang at boot 13943 at either: 13944 13945 NET: Registered protocol family 16 13946 13947 or the 13948 13949 io scheduler cfq registered 13950 13951 message. Fixing up these DDR settings appears to fix the problem. 13952 13953 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 13954 13955commit 27c5248dd4c9ba4a36899689595956c5e59e349a 13956Author: Kim Phillips <kim.phillips@freescale.com> 13957Date: Fri Aug 21 16:31:20 2009 -0500 13958 13959 mpc83xx: tqm8349 - remove pci & flash window conflict 13960 13961 commit 9993e196da707a0a1cd4584f1fcef12382c1c144 "mpc83xx: convert all 13962 remaining boards over to 83XX_GENERIC_PCI" remapped pci windows on 13963 tqm834x to make it more consistent with the other 83xx boards. During 13964 that time however, the author failed to realize that FLASH_BASE was 13965 occupying the same range as what PCI1_MEM_BASE was being assigned. 13966 13967 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 13968 Tested-by: Wolfgang Denk <wd@denx.de> 13969 13970commit 6d2c26ac831f033b0025cfb256365a047f8dd115 13971Author: Heiko Schocher <hs@denx.de> 13972Date: Fri Aug 21 16:30:30 2009 -0500 13973 13974 mpc83xx: add missing CSCONFIG_ODT_WR_CFG for 832x CPUs 13975 13976 Signed-off-by: Heiko Schocher <hs@denx.de> 13977 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 13978 13979commit 193b4cb3f641ed0fd9bb79b8fa4671882c50ffdb 13980Author: Paul Gortmaker <paul.gortmaker@windriver.com> 13981Date: Fri Aug 21 16:27:05 2009 -0500 13982 13983 mpc83xx: mpc8349 - delete unused SYS_MID_FLASH_JUMP 13984 13985 This was introduced with the MPC8349EMDS board, and then copied to 13986 a couple other boards by nature of being the reference implementation. 13987 13988 u-boot$git grep CONFIG_SYS_MID_FLASH_JUMP 13989 include/configs/MPC8349EMDS.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000 13990 include/configs/sbc8349.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000 13991 include/configs/vme8349.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000 13992 u-boot$ 13993 13994 It currently isn't used, so delete it before it spreads further. 13995 13996 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 13997 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 13998 13999commit c0d660fbbede322648ec79d3e39389e48f5fab24 14000Author: Paul Gortmaker <paul.gortmaker@windriver.com>
14001Date: Fri Aug 21 16:21:58 2009 -0500 14002 14003 mpc83xx: sbc8349 - make enabling PCI more user friendly 14004 14005 Prior to this commit, to enable PCI, you had to go manually 14006 edit the board config header, which isn't really user friendly. 14007 This adds the typical PCI make targets to the toplevel Makefile 14008 in accordance with what is being done with other boards. 14009 14010 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 14011 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 14012 14013commit a3c5057a6c05b4c7235a270486220e4511366133 14014Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 14015Date: Fri Aug 7 23:37:54 2009 +0200 14016 14017 eeprom_m95xxx: remove unused variable i 14018 14019 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 14020 14021commit 8cf19b9fec92d8aa22b2fe4b4e6976743b1daa51 14022Author: Ilya Yanok <yanok@emcraft.com> 14023Date: Fri Jul 17 15:02:42 2009 +0400 14024 14025 jffs2: some fixes to summary support 14026 14027 This patch fixes some issues with JFFS2 summary support in U-Boot. 14028 1/ Summary support made compilation configurable (as summary support 14029 considered expiremental even in Linux). 14030 2/ Summary code can do unaligned 16-bit and 32-bit memory accesses. 14031 We need to get data byte by byte to exclude data aborts. 14032 3/ Make summary scan in two passes so we can safely fall back to full 14033 scan if we found unsupported entry in the summary. 14034 14035 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 14036 14037commit 11906936e168d12d684bb3d2930a62693ba3d84e 14038Author: Prafulla Wadaskar <prafulla@marvell.com> 14039Date: Mon Aug 10 18:55:54 2009 +0530 14040 14041 arm: rd6281a: Fixed NAND specific warning 14042 14043 It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF 14044 for NAND specific warning removal, same is done in this patch 14045 14046 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 14047 14048commit b5ffb193330113d2e00489d96bf8ec1f541ed4e1 14049Author: Wolfgang Denk <wd@denx.de> 14050Date: Thu Aug 13 00:37:16 2009 +0200 14051 14052 TRAB: make independent of specific libgcc helper routines 14053 14054 The TRAB board references local libgcc helper routines 14055 (lib_arm/div0.o and lib_arm/_umodsi3.o) which cause build problems 14056 when we try to use the normal, compiler provided libgcc instead. 14057 Removing these references allows to build both with and without the 14058 local libgcc helper routines. 14059 14060 Signed-off-by: Wolfgang Denk <wd@denx.de> 14061 14062commit 1aada9cd643567d351667138851e9231ccfa245a 14063Author: Wolfgang Denk <wd@denx.de> 14064Date: Mon Aug 17 14:00:53 2009 +0200 14065 14066 Fix all linker scripts for older binutils versions (pre-2.16) 14067 14068 Commit f62fb99941c6 fixed handling of all rodata sections by using a 14069 wildcard combined with calls to ld's builtin functions SORT_BY_ALIGNMENT() 14070 and SORT_BY_NAME(). Unfortunately these functions were only 14071 introduced with biunutils version 2.16, so the modification broke 14072 building with all tool chains using older binutils. 14073 14074 This patch makes it work again. This is done by omitting the use of 14075 these functions for such old tool chains. This will result in 14076 slightly larger target binaries, as the rodata sections are no longer 14077 in optimal order alignment-wise which reauls in unused gaps, but the 14078 effect was found to be insignificant - especially compared to the fact 14079 that you cannot build U-Boot at all in the current state. 14080 14081 As ld seems to have no support for conditionals we run the linker 14082 script through the C preprocessor which can be easily used to remove 14083 the unwanted function calls. 14084 14085 Note that the C preprocessor must be run with the "-ansi" (or a 14086 "-std=") option to make sure all the system-specific predefined 14087 macros outside the reserved namespace are suppressed. Otherise, cpp 14088 might for example substitute "powerpc" to "1", thus corrupting for 14089 example "OUTPUT_ARCH(powerpc)" etc. 14090 14091 Signed-off-by: Wolfgang Denk <wd@denx.de> 14092 Cc: Mike Frysinger <vapier@gentoo.org> 14093 14094commit f772acf8a584067033eff1e231fcd1fb3a00d3d9 14095Author: Wolfgang Denk <wd@denx.de> 14096Date: Mon Aug 17 13:17:29 2009 +0200 14097 14098 ARM: compiler options cleanup - improve tool chain support 14099 14100 For some time there have been repeated reports about build problems 14101 with some ARM (cross) tool chains. Especially issues about 14102 (in)compatibility with the tool chain provided runtime support 14103 library libgcc.a caused to add and support a private implementation 14104 of such runtime support code in U-Boot. A closer look at the code 14105 indicated that some of these issues are actually home-made. This 14106 patch attempts to clean up some of the most obvious problems and make 14107 building of U-Boot with different tool chains easier: 14108 14109 - Even though all ARM systems basicy used the same compiler options 14110 to select a specific ABI from the tool chain, the code for this was 14111 distributed over all cpu/*/config.mk files. We move this one level 14112 up into lib_arm/config.mk instead. 14113 14114 - So far, we only checked if "-mapcs-32" was supported by the tool 14115 chain; if yes, this was used, if not, "-mabi=apcs-gnu" was 14116 selected, no matter if the tool chain actually understood this 14117 option. There was no support for EABI conformant tool chains. 14118 This patch implements the following logic: 14119 14120 1) If the tool chain supports 14121 "-mabi=aapcs-linux -mno-thumb-interwork" 14122 we use these options (EABI conformant tool chain). 14123 2) Otherwise, we check first if 14124 "-mapcs-32" 14125 is supported, and then check for 14126 "-mabi=apcs-gnu" 14127 If one test succeeds, we use the first found option. 14128 3) In case 2), we also test if "-mno-thumb-interwork", and use 14129 this if the test succeeds. [For "-mabi=aapcs-linux" we set 14130 "-mno-thumb-interwork" mandatorily.] 14131 14132 This way we use a similar logic for the compile options as the 14133 Linux kernel does. 14134 14135 - Some EABI conformant tool chains cause external references to 14136 utility functions like raise(); such functions are provided in the 14137 new file lib_arm/eabi_compat.c 14138 14139 Note that lib_arm/config.mk gets parsed several times, so we must 14140 make sure to add eabi_compat.o only once to the linker list. 14141 14142 Signed-off-by: Wolfgang Denk <wd@denx.de> 14143 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 14144 Cc: Dirk Behme <dirk.behme@googlemail.com> 14145 Cc: Magnus Lilja <lilja.magnus@gmail.com> 14146 Cc: Tom Rix <Tom.Rix@windriver.com> 14147 Cc: Prafulla Wadaskar <prafulla@marvell.com> 14148 Acked-by: Sergey Kubushyn <ksi@koi8.net> 14149 Tested-by: Magnus Lilja <lilja.magnus@gmail.com> 14150 Tested-by: Andrzej Wolski <awolski@poczta.fm> 14151 Tested-by: Gaye Abdoulaye Walsimou <walsimou@walsimou.com> 14152 Tested-by: Tom Rix <Tom.Rix@windriver.com> 14153 Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 14154 14155commit 269610f6ba2e4a7bc27d2e53d43160614016964f 14156Author: Mingkai Hu <Mingkai.hu@freescale.com> 14157Date: Thu Jul 30 17:56:51 2009 +0800 14158 14159 NAND boot: fix nand_load overlap issue 14160 14161 The code copy data from NAND flash block by block, so when 14162 the data length isn't a whole-number multiple of the block 14163 size, it will overlap the rest space. 14164 14165 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 14166 Signed-off-by: Scott Wood <scottwood@freescale.com> 14167 14168commit 1fc1d9aed08f2b3366d634fda6712a710b2cff9a 14169Author: Giulio Benetti <giulio.benetti@micronovasrl.com> 14170Date: Fri Jul 31 17:30:34 2009 -0500 14171 14172 add WATCHDOG_RESET() on nand write and read 14173 14174 Signed-off-by: giulio.benetti@micronovasrl.com 14175 Acked-by: Wolfgang Denk <wd@denx.de> 14176 Signed-off-by: Scott Wood <scottwood@freescale.com> 14177 14178commit b1e849f2201bbbf3ca81fde164f154f9caf7f0e9 14179Author: Peter Tyser <ptyser@xes-inc.com> 14180Date: Wed Feb 4 15:14:05 2009 -0600 14181 14182 tsec: Wait for auto-negotiation to complete without link 14183 14184 Previously, waiting for auto-negotiation would only occur if a valid 14185 link had been detected. Problems arose when attempting to use a 14186 tsec immediately after bootup but before link was achieved, eg: 14187 => dhcp 14188 Auto-neg error, defaulting to 10BT/HD 14189 eTSEC1: No link. 14190 Auto-neg error, defaulting to 10BT/HD 14191 eTSEC2: No link. 14192 => 14193 14194 With this patch applied the same operation as above resulted in: 14195 => dhcp 14196 Waiting for PHY auto negotiation to complete. done 14197 Enet starting in 1000BT/FD 14198 Speed: 1000, full duplex 14199 14200 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 14201 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14202 14203commit 477fa6378fbd3e47a5e2e83d0dd3970d5b1c8371 14204Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 14205Date: Thu Aug 20 10:14:11 2009 +0200 14206 14207 arm: kirkwood: See to it that sent data is 8-byte aligned 14208 14209 U-boot might use non-8-byte-aligned addresses for sending data, which 14210 the kwgbe_send doesn't accept (bootp does this for me). This patch 14211 copies the data to be sent to a malloced temporary buffer if it is 14212 non-aligned. 14213 14214 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 14215 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14216 14217commit cad713bf7548b9e90433dac8270165402a6c9cc3 14218Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 14219Date: Thu Aug 20 10:13:06 2009 +0200 14220 14221 Wait for the link to come up on kirkwood network init 14222 14223 This patch makes the device wait for up to 5 seconds for the link to 14224 come up, similar to what many of the other network drivers do. This 14225 avoids confusing situations where, e.g., a tftp fails when initiated 14226 early after U-boot has started (before the link has come up). 14227 14228 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 14229 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14230 14231commit bb1ca3b27f7fba8c73cb10279a6a8b8b69a308ff 14232Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 14233Date: Thu Aug 20 10:12:28 2009 +0200 14234 14235 arm:kirkwood Define kirkwood phy address magic number 14236 14237 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 14238 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14239 14240commit f81ecb5d3300bf92d17302d3712f30585c182da9 14241Author: Timur Tabi <timur@freescale.com> 14242Date: Mon Aug 17 15:55:38 2009 -0500 14243 14244 e1000: fix PCI memory addressing 14245 14246 The Intel E1000 driver was making assumptions about the relationship between 14247 some virtual, physical, and PCI addresses. 14248 14249 Also fix some bad usage of the DEBUGOUT macro 14250 14251 Signed-off-by: Timur Tabi <timur@freescale.com> 14252 Acked-by: Kumar Gala <galak@kernel.crashing.org> 14253 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14254 14255commit b644006e1a7baa227aedc606ecdf0bb5eeb24cab 14256Author: Ilya Yanok <yanok@emcraft.com> 14257Date: Wed Aug 12 16:42:48 2009 +0400 14258 14259 jffs2: clean the cache in case of malloc fails in build_lists 14260 14261 We should call jffs2_clean_cache() if we return from jffs2_build_lists() 14262 with an error to prevent usage of incomplete lists. Also we should 14263 free() a local buffer to prevent memory leaks. 14264 14265 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 14266 14267commit 7ff66bb0be80cadd681be22a72e5eb02ee14c878 14268Author: Heiko Schocher <hs@denx.de> 14269Date: Wed Aug 12 10:17:03 2009 +0200 14270 14271 ppc: trigger WDT before starting Linux 14272 14273 Signed-off-by: Heiko Schocher <hs@denx.de> 14274 14275commit 918319c705d8a3d6251919a660baef32ff3a829a 14276Author: Albin Tonnerre <albin.tonnerre@free-electrons.com> 14277Date: Wed Jul 22 18:30:03 2009 +0200 14278 14279 Update the mtd driver name in bootargs for at91-based boards 14280 14281 The name of the atmel nand driver in the kernel changed from at91_nand 14282 to atmel_nand back in June 2008, but the at91-based boards config files 14283 still refer to at91_nand. This patch updates them with the new name 14284 14285 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 14286 14287commit 8fa656aa5289815d942ebdc26182ccb9f2b9c86f 14288Author: Ben Goska <goskab@onid.oregonstate.edu> 14289Date: Fri Aug 14 10:03:36 2009 -0700 14290 14291 omap3: Fixed a problem with hwecc 14292 14293 In commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e there 14294 was a typo that offset all the ecc registers by 4 bytes, fixed that. 14295 14296 Signed-off-by: Ben Goska <goskab@onid.oregonstate.edu> 14297 Acked-by: Dirk Behme <dirk.behme@googlemail.com> 14298 14299commit 514bab6609acd1a2a19fdd75c2f6255178db7c96 14300Author: Stefan Roese <sr@denx.de> 14301Date: Mon Aug 17 16:57:53 2009 +0200 14302 14303 ppc4xx: Fix "chip_config" command for AMCC Arches 14304 14305 This patch fixes the "chip_config" command for I2C bootstrap EEPROM 14306 configuration. First it changes the I2C bootstrap EEPROM address to 14307 0x54 as this is used on Arches (instead of 0x52 on Canyonlands/ 14308 Glacier). Additionally, the NAND bootstrap settings are removed 14309 for Arches since Arches doesn't support NAND-booting. 14310 14311 Signed-off-by: Stefan Roese <sr@denx.de> 14312 14313commit 4af34177b657e91263919a307fd0b0865a299e52 14314Author: Wolfgang Denk <wd@denx.de> 14315Date: Sun Aug 16 23:40:13 2009 +0200 14316 14317 Monahans: avoid floating point calculations 14318 14319 Current code for the Monahans CPU defined OSCR_CLK_FREQ as 3.250 (MHz) 14320 which caused floating point operations to be used. This resulted in 14321 unresolved references to some FP related libgcc functions when using 14322 U-Boot's private libgcc functions. 14323 14324 Change the code to use fixed point math only. 14325 14326 Signed-off-by: Wolfgang Denk <wd@denx.de> 14327 14328commit e393e2e9bc5cd3d5484e193d1380e7cd7587ab5c 14329Author: Kumar Gala <galak@kernel.crashing.org> 14330Date: Fri Aug 14 16:43:22 2009 -0500 14331 14332 85xx: Fix addrmap to include memory 14333 14334 When we init the addrmap based on the TLB we will not end up getting 14335 the TLB that covers memory if we are using SPD. The reason is we 14336 haven't relocated at the point that we setup the memory TLB and thus it 14337 will not get setup in the addrmap. 14338 14339 Instead we can just walk over the TLB array after we've relocated and 14340 see all the TLBs that have been set and use that information to populate 14341 the initial addrmap. By doing this we insure that we get the TLB 14342 entries that cover memory. 14343 14344 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 14345 14346commit 7dedefdf749ff02c1086f7ddb8cb83a77b00d030 14347Author: John Schmoller <jschmoller@xes-inc.com> 14348Date: Wed Aug 12 10:55:47 2009 -0500 14349 14350 flash: Fix CFI buffer size bug 14351 14352 Fix bug introduced by 9c048b523413ae5f3ff34e00cf57569c3368ab51. 14353 14354 The cfi_flash.c driver cast the flash buffer size to a uchar in 14355 flash_write_cfibuffer(). On some flash parts, (tested on Numonyx 14356 part PC32F512M29EWH), the buffer size is 1KB. Remove the cast to 14357 uchar to enable buffer sizes to be larger. 14358 14359 Signed-off-by: John Schmoller <jschmoller@xes-inc.com> 14360 Signed-off-by: Stefan Roese <sr@denx.de> 14361 14362commit f6e3a1fa92f61083885178101e973c86b419a6f7 14363Author: Mike Frysinger <vapier@gentoo.org> 14364Date: Thu Aug 13 00:32:14 2009 -0400 14365 14366 trab: rename spi_init() 14367 14368 The local board-specific spi_init() function conflicts with the common SPI 14369 layer, so rename it to something board-specific. 14370 14371 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 14372 14373commit 253cb831f5861358a7fa673305cdf7ded1096f44 14374Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com> 14375Date: Wed Jul 29 06:05:20 2009 -0400 14376 14377 zlib: add watchdog reset call 14378 14379 This patch adds watchdog reset call to allow its invokation during decompression 14380 phase. This control was present on old zlib version and here it is 14381 backported for those relevant routines. This patch is sent as a zlib separate 14382 one beacuse it was not tested due to specific board lack. 14383 zlib patches will be unified just in one when this will be validated through 14384 tests. 14385 14386 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com> 14387 14388commit dce3d797102b6618e8bdd4a09cfd35969f165d86 14389Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com> 14390Date: Wed Jul 29 08:05:08 2009 -0400 14391 14392 zlib: updated to v.1.2.3 14393 14394 This patch updates zlib to the latest stable version. 14395 Only relevant zlib parts were ported to u-boot tree, as already did for the 14396 current zlib (0.95). New zlib guarantees a faster inflate performances 14397 other then others improvements as explained at www.zlib.net. 14398 It also includes Alessandro Rubini's patches to allow 0 as destination pointer 14399 and to call watchdog reset if required by architecture. 14400 14401 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com> 14402 Reviewed-by: Angelo Castello <angelo.castello@st.com> 14403 Reviewed-by: Alessandro Rubini <rubini-list@gnudd.com> 14404 14405commit 3426d65daab6af483b177ed502038f52ed2e5aef 14406Author: Heiko Schocher <hs@denx.de> 14407Date: Tue Aug 11 10:37:58 2009 +0200 14408 14409 dtt, lm81: move unneccessary printf into a debug printf 14410 14411 Signed-off-by: Heiko Schocher <hs@denx.de> 14412 14413commit 54e399f110bbaa24e662e6dd9e88ddb86989d668 14414Author: Mark Jackson <mpfj-list@mimc.co.uk> 14415Date: Tue Aug 11 11:33:47 2009 +0100 14416 14417 MIMC200: reduce LCD pixclock 14418 14419 The initial pixclock for the MIMC200 board is wrong (and causes 14420 screen corruption due to DMA underruns). 14421 14422 This patch simply reduces the pixel clock to fix the problem. 14423 14424 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 14425 14426commit 1443cd7e54d6893ab7cc51d93fe7759cdaa8b31f 14427Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 14428Date: Wed Jul 1 14:04:05 2009 -0400 14429 14430 UEC FIXED PHY: Determine fixed-phy port using UEC interface name. 14431 14432 Fixed a misunderstanding in the original implementation, 'devnum' that 14433 was used in the cpu/ppc4xx/4xx_enet.c implementation was NOT the 14434 PHY's SMI address, rather it was the number of the MAC interface on 14435 the CPU. The equivalent of this for uec_phy will be the UEC number 14436 stored in mii_info->dev->name. Usage example is updated for uec. 14437 14438 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 14439 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14440 14441commit 1a9519373b977ef3f7c9563ad3acb6c6f2424657 14442Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 14443Date: Wed Jul 1 14:03:15 2009 -0400 14444 14445 Assigned a static SMI address to all UECs TBIPA address. 14446 14447 It is set to 0x1F by default and can be overwritten on the board 14448 header file by defining CONFIG_UTBIPAR_INIT_TBIPA. This allows 14449 the CPU to simply "reserve" one SMI address instead of using 14450 a different one for each UEC. 14451 14452 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 14453 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14454 14455commit 9fd38a01cbc0ce4a8db41f72677103ed04b23db5 14456Author: Prafulla Wadaskar <prafulla@marvell.com> 14457Date: Mon Aug 10 19:43:06 2009 +0530 14458 14459 net: kirkwood: updates: used eth_setenv_enetaddr api 14460 14461 eth_setenv_enetaddr is avaible by upper layer 14462 using this saves 204 bytes on total image size 14463 14464 used Local OUI instead of Marvell OUI for 14465 random MAC address generation logic 14466 14467 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 14468 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14469 14470commit ecbd2078a1f56c85b6c56afaaed862bf92ccd3f3 14471Author: Roy Zang <tie-fei.zang@freescale.com> 14472Date: Tue Aug 11 03:48:05 2009 +0800 14473 14474 Fix E1000 build warning on AP1000 board 14475 14476 Fix E1000 build warning on AP1000 board 14477 Fix the build warning on AP1000 board: 14478 e1000.c:131: warning: 'e1000_read_eeprom' used but never defined 14479 e1000.c:2012: warning: 'e1000_set_phy_mode' defined but not used 14480 14481 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 14482 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14483 14484commit b3af1d698b031e721bacaee8715d79daaf823de6 14485Author: Sandeep Paulraj <s-paulraj@ti.com> 14486Date: Mon Aug 10 12:24:40 2009 -0400 14487 14488 ARM: Davinci DM355: Enabling DM9000 on DM355 EVM 14489 14490 Due to recent changes to the NET support on U-boot, DM9000 14491 is no longer detected on the DM355 EVM. 14492 This minor update enables DM9000 on the DM355 EVM. 14493 Tested on the DM355 EVM 14494 14495 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 14496 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14497 14498commit 08c2df33f1cd5935938486e968696f94ad406313 14499Author: Prafulla Wadaskar <prafulla@marvell.com> 14500Date: Mon Aug 10 19:23:19 2009 +0530 14501 14502 net: phy: bugfixes: mv88E61xx compiler warnings fixed 14503 14504 1. mv88E61xx driver compiler warnings fixed 14505 2. idstr if-else statements changed to switch() construct 14506 and added default case too. 14507 This fixed idstr may be uninitialized warning 14508 14509 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 14510 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14511 14512commit 750326e5d540885e3ec36bda9464b8269249f6ce 14513Author: Po-Yu Chuang <ratbert@faraday-tech.com> 14514Date: Mon Aug 10 11:00:00 2009 +0800 14515 14516 arm: A320: driver for FTMAC100 ethernet controller 14517 14518 This patch adds an FTMAC100 ethernet driver for Faraday A320 evaluation board. 14519 14520 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com> 14521 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14522 14523commit f90dc43fd67eea71124b999a7d5e617d0d86795b 14524Author: Kumar Gala <galak@kernel.crashing.org> 14525Date: Mon Aug 10 16:40:55 2009 -0500 14526 14527 85xx: Removed BEDBUG support from FSL 85xx boards 14528 14529 For some reason the MPC8544 enabled BEDBUG if PCI was enabled and that 14530 got copied int the MPC8536, MPC8572 and P2020 DS boards. The BEDBUG 14531 support has never been made to work completely on e500/85xx so we 14532 just disable it to save space and match the other FSL 85xx boards. 14533 14534 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 14535 14536commit eb1a4d0a471505c169bef19a73a60f8641f0b875 14537Author: Wolfgang Denk <wd@denx.de> 14538Date: Mon Aug 10 10:39:12 2009 +0200 14539 14540 Prepare 2009.08-rc2 14541 14542 Update CHANGELOG 14543 14544 Signed-off-by: Wolfgang Denk <wd@denx.de> 14545 14546commit 53cc18c71b2b920cca171874c6663e274fa80556 14547Author: Wolfgang Denk <wd@denx.de> 14548Date: Mon Aug 10 10:38:34 2009 +0200 14549 14550 Minor coding style cleanup. 14551 14552 Signed-off-by: Wolfgang Denk <wd@denx.de> 14553 14554commit d371708a1beda0f529756e614af785b30461379e 14555Author: Wolfgang Denk <wd@denx.de> 14556Date: Mon Aug 10 09:59:10 2009 +0200 14557 14558 net/tftp.c: fix warning: pointer targets differ in signedness 14559 14560 tftp.c:294: warning: pointer targets in passing argument 1 of 'strlen' 14561 differ in signedness 14562 14563 This was only visible for the utx8245 board which seems to have DEBUG 14564 enabled. 14565 14566 Signed-off-by: Wolfgang Denk <wd@denx.de> 14567 14568commit 3ed9e943fdfe51174b23989d48563b8c1b7d2ea8 14569Author: Dirk Behme <dirk.behme@googlemail.com> 14570Date: Sat Aug 8 16:06:47 2009 +0200 14571 14572 ARM Cortex A8: Remove bogus config.mk entries 14573 14574 Remove bogus config.mk entry, fix newline and remove redundant 14575 omap3/config.mk 14576 14577 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 14578 14579commit cd3dcba1422d3441503251fbc69cf2437c440781 14580Author: Dirk Behme <dirk.behme@googlemail.com> 14581Date: Sat Aug 8 12:46:09 2009 +0200 14582 14583 OMAP3: Fix missing GPMC_CONFIG_CS0_BASE 14584 14585 Applying two indepenent OMAP3 patches resulted in missing 14586 GPMC_CONFIG_CS0_BASE. Patch "omap3: embedd gpmc_cs into gpmc 14587 config struct" removes GPMC_CONFIG_CS0_BASE, independent patch 14588 "omap3: bug fix for NOR boot support" introduces it's usage. 14589 Re-introduce GPMC_CONFIG_CS0_BASE. 14590 14591 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 14592 14593commit ba3dbaf281130029ecb970a922551902c1d80b50 14594Author: Ilya Yanok <yanok@emcraft.com> 14595Date: Mon Jun 8 04:12:49 2009 +0400 14596 14597 mxc-mmc: sdhc host driver for MX2 and MX3 proccessor 14598 14599 This is a port of Linux driver for SDHC host controller hardware 14600 found on Freescale's MX2 and MX3 processors. Uses new generic MMC 14601 framework (CONFIG_GENERIC_MMC) and it looks like there are some 14602 problems with a framework (at least on LE cpus). Some of these 14603 problems are addressed in the following patches. 14604 14605 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 14606 14607commit 642d7b63c343633dcafc4e23a20e32604a05ff13 14608Author: Alessandro Rubini <rubini-list@gnudd.com> 14609Date: Fri Aug 7 12:35:47 2009 +0200 14610 14611 kirkwood/gpio.h: remove duplicate definition 14612 14613 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 14614 14615commit 3ac374c0f0b7d856f1a43317a286f2079106bd6a 14616Author: Albin Tonnerre <albin.tonnerre@free-electrons.com> 14617Date: Fri Aug 7 12:37:36 2009 +0200 14618 14619 Add driver for the ST M95xxx SPI EEPROM 14620 14621 This chip is used in a number of boards manufactured by Calao-Systems 14622 which should be supported soon. This driver provides the necessary 14623 spi_read and spi_write functions necessary to communicate with the chip. 14624 14625 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com> 14626 14627commit 30951960bae9a2c33e324a7165962a082e913f9e 14628Author: Prafulla Wadaskar <prafulla@marvell.com> 14629Date: Fri Aug 7 22:27:32 2009 +0530 14630 14631 arm: Sheevaplug: Fixed NAND specific warning 14632 14633 It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF 14634 for NAND specific warning removal, same is done in this patch 14635 14636 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 14637 14638commit 317734966e763fdee183898c0ed940c9bada2541 14639Author: Josh Boyer <jwboyer@linux.vnet.ibm.com> 14640Date: Fri Aug 7 13:53:20 2009 -0400 14641 14642 Dual-license IBM code contributions 14643 14644 It was brought to our attention that U-Boot contains code derived from the 14645 IBM OpenBIOS source code originally provided with some of the older PowerPC 14646 4xx development boards. As a result, the original license of this code has 14647 been carried in the various files for a number of years in the U-Boot project. 14648 14649 IBM is dual-licensing the IBM code contributions already present in U-Boot 14650 under either the terms of the GNU General Public License version 2, or the 14651 original code license already present. 14652 14653 Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com> 14654 14655commit cfd700be9f5ed289fd57a9bd61e266319badcb0d 14656Author: Kumar Gala <galak@kernel.crashing.org> 14657Date: Wed Aug 5 09:03:54 2009 -0500 14658 14659 fdt: Fix fdt_pci_dma_ranges handling of 64-bit ranges 14660 14661 If the size of a region equal to 4G it can't be represnted in a 32-bit 14662 BAR so we should have marked that case as MEM64. 14663 14664 Additionally bump the number of inbound windows up to 4 to handle the 14665 fact that Freescale PPCs that have an implicit window for CCSRBAR. 14666 14667 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 14668 14669commit 59b4d7471c42e955bd9846892a0cc7478171778d 14670Author: Wolfgang Denk <wd@denx.de> 14671Date: Thu Aug 6 21:29:59 2009 +0200 14672 14673 ARM EABI: add new helper functions resp. function names 14674 14675 The ARM EABI defines new names for GCC helper functions, 14676 and GCC seems to need some new functions as well. 14677 14678 This patch is a minimal-invasive approach to fix problems with EABI 14679 conformant tool chains (to be used with "USE_PRIVATE_LIBGCC=yes"). 14680 14681 Signed-off-by: Wolfgang Denk <wd@denx.de> 14682 Tested-by: Dirk Behme <dirk.behme@googlemail.com> 14683 14684commit 197324d7d998a791e5137b8176981b4af25220ae 14685Author: Peter Tyser <ptyser@xes-inc.com> 14686Date: Wed Aug 5 16:18:44 2009 -0500 14687 14688 hush: Fix bogus free() call 14689 14690 An off-by-one error in hush.c resulted in an unintentional free() call 14691 every time a command was executed 14692 14693 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 14694 14695commit ff27650bb255e2275a212357b78c3b77cbf1d2e9 14696Author: Detlev Zundel <dzu@denx.de> 14697Date: Wed Aug 5 18:37:45 2009 +0200 14698 14699 digsy_mtc: Update default environment 14700 14701 Signed-off-by: Detlev Zundel <dzu@denx.de> 14702 14703commit 0b40bd439a33bde9e3cccf1acb5744225d0c6103 14704Author: Detlev Zundel <dzu@denx.de> 14705Date: Wed Aug 5 18:37:44 2009 +0200 14706 14707 digsy_mtc: Add delay in SPI transfers to the companion controller. 14708 14709 While at it, remove initialization of variables which will be set 14710 before usage in all cases. 14711 14712 Signed-off-by: Detlev Zundel <dzu@denx.de> 14713 14714commit 0bf00750e082a004e5fb058925622ae72890cc56 14715Author: Anatolij Gustschin <agust@denx.de> 14716Date: Wed Aug 5 18:37:43 2009 +0200 14717 14718 digsy_mtc: minor fixes for mtc command help 14719 14720 Add mtc state subcommand description to the 14721 help of mtc command. 14722 14723 Remove some newlines in description of commands 14724 for proper help formating. 14725 14726 Signed-off-by: Anatolij Gustschin <agust@denx.de> 14727 14728commit 5cc69084189bf49aa99d13d57515be72d1844bdf 14729Author: Grzegorz Bernacki <gjb@semihalf.com> 14730Date: Wed Aug 5 18:37:42 2009 +0200 14731 14732 digsy_mtc: Add mtc state command. 14733 14734 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 14735 14736commit 716655288a53c95fad203ebf21d0b8ffdc2f7525 14737Author: Wolfgang Denk <wd@denx.de> 14738Date: Tue Jul 28 22:35:39 2009 +0200 14739 14740 Partition support: remove newline from partition name 14741 14742 Remove bogus newline character that got added to the .name field of 14743 the disk_partition_t structure. 14744 14745 Signed-off-by: Wolfgang Denk <wd@denx.de> 14746 14747commit 3f1649fb0dfb1e5c8890de154c332c394db5cdb5 14748Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 14749Date: Tue Jul 28 09:33:17 2009 +0200 14750 14751 Fix LZMA string.h header inclusion issue and remove unused variables. 14752 14753 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 14754 14755commit 1c6232f1e2eae87e0e36d489611eb6891dff21e1 14756Author: Jens Scharsig <esw@bus-elektronik.de> 14757Date: Mon Jul 27 15:28:42 2009 +0200 14758 14759 bus_vcxk.c: fix warning: unused variable 'lineptr' 14760 14761 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de> 14762 14763commit 18304f7675e84252965b4e24cba279071f1da472 14764Author: Mike Frysinger <vapier@gentoo.org> 14765Date: Fri Jul 24 17:51:27 2009 -0400 14766 14767 env: kill off default_environment_size 14768 14769 The only environment type that uses this variable is spi flash, and that is 14770 only because it is reimplementing the common set_default_env() function. 14771 So fix the spi flash code and kill off the default_environment_size in the 14772 process. 14773 14774 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 14775 14776commit bedd8403f77f790e9876578885eab1200ba2f8d8 14777Author: Mike Frysinger <vapier@gentoo.org> 14778Date: Thu Jul 23 16:37:48 2009 -0400 14779 14780 export SPI functions to standalone apps 14781 14782 While we're here, fix the broken #ifdef handling in _exports.h. 14783 14784 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 14785 14786commit 3b9043a7c03290c9bdbef03848307263f5f3472c 14787Author: Penda Naveen Kumar <pnaveen@ti.com> 14788Date: Fri Jul 31 00:06:36 2009 +0530 14789 14790 omap3: bug fix for NOR boot support 14791 14792 This patch provides bug fix, when omap3 uses nor boot. 14793 14794 Signed-off-by: Penda Naveen Kumar<pnaveen@ti.com> 14795 Acked-by: Dirk Behme <dirk.behme@googlemail.com> 14796 14797commit 61c68ae0b43bb5d6ab32958c45289aa197b1a2d1 14798Author: Michael Evans <horse_dung@hotmail.com> 14799Date: Mon Jul 13 20:13:45 2009 +0100 14800 14801 Fix examples for OMAP3 boards... 14802 14803 The attached patch corrects an error in the examples/Makefile which 14804 causes the applications in the examples directory to hang on OMAP3 14805 based boards. The current Makefile sets -Ttext during linking to 14806 0x0c100000 which is outside of addressable SDRAM memory. The script 14807 corrects the existing ifeq...else...endif logic to look at the VENDOR 14808 tag rather than the CPU tag. 14809 14810 The patch affects the following configs: omap3_beagle_config, 14811 omap3_overo_config, omap3_evm_config, omap3_pandora_config, 14812 omap3_zoom1_config and omap3_zoom2_config. 14813 14814 Signed-off-by: Michael Evans <horse_dung@hotmail.com> 14815 14816 Edited commit message. 14817 Signed-off-by: Wolfgang Denk <wd@denx.de> 14818 14819commit a3d1421dfd0bb1a729e171f8a093ac837f92cec6 14820Author: Dirk Behme <dirk.behme@googlemail.com> 14821Date: Sat Aug 8 09:30:23 2009 +0200 14822 14823 omap3: use only fixed-size types inside ctrl_structs 14824 14825 replace variable types in ctrl_structs for omap3 by those with 14826 fixed size (u8, u16, u32). 14827 Additional ifndef-protection is needed by examples which do not 14828 compile when including asm/types.h 14829 14830 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de> 14831 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 14832 14833commit 894113529e3a04871544dde977d6d7adee05d3bf 14834Author: Dirk Behme <dirk.behme@googlemail.com> 14835Date: Sat Aug 8 09:30:22 2009 +0200 14836 14837 omap3: replace all instances of gpmc config struct by one global 14838 14839 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de> 14840 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 14841 14842commit 97a099eaa48d5c762c4f73c52c3090c513b8b877 14843Author: Dirk Behme <dirk.behme@googlemail.com> 14844Date: Sat Aug 8 09:30:21 2009 +0200 14845 14846 omap3: remove typedefs for configuration structs 14847 14848 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de> 14849 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 14850 14851commit aa0707897c49c330b7d6b8d8362e44f60f224732 14852Author: Roy Zang <tie-fei.zang@freescale.com> 14853Date: Fri Jul 31 13:34:02 2009 +0800 14854 14855 Add Intel E1000 PCIE card support 14856 14857 Based on Intel PRO/1000 Network Driver 7.3.20-k2 14858 Add Intel E1000 PCIE card support. The following cards are added: 14859 INTEL_82571EB_COPPER 14860 INTEL_82571EB_FIBER, 14861 INTEL_82571EB_SERDES 14862 INTEL_82571EB_QUAD_COPPER 14863 INTEL_82571PT_QUAD_COPPER 14864 INTEL_82571EB_QUAD_FIBER 14865 INTEL_82571EB_QUAD_COPPER_LOWPROFILE 14866 INTEL_82571EB_SERDES_DUAL 14867 INTEL_82571EB_SERDES_QUAD 14868 INTEL_82572EI_COPPER 14869 INTEL_82572EI_FIBER 14870 INTEL_82572EI_SERDES 14871 INTEL_82572EI 14872 INTEL_82573E 14873 INTEL_82573E_IAMT 14874 INTEL_82573L 14875 INTEL_82546GB_QUAD_COPPER_KSP3 14876 INTEL_80003ES2LAN_COPPER_DPT 14877 INTEL_80003ES2LAN_SERDES_DPT 14878 INTEL_80003ES2LAN_COPPER_SPT 14879 INTEL_80003ES2LAN_SERDES_SPT 14880 14881 82571EB_COPPER dual ports, 14882 82572EI single port, 14883 82572EI_COPPER single port PCIE cards 14884 and 14885 82545EM_COPPER, 14886 82541GI_LF 14887 pci cards are tested on both P2020 board 14888 and MPC8544DS board. 14889 14890 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 14891 14892 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14893 14894commit 86848a74c3c8eb2f8dd179d039ee604dc45288cf 14895Author: Mike Frysinger <vapier@gentoo.org> 14896Date: Wed Jul 15 21:31:28 2009 -0400 14897 14898 net: sync env ethaddr to device enetaddr in eth_init() 14899 14900 In the previous enetaddr refactoring, the assumption with commit 56b555a644 14901 was that the eth layer would handle the env -> device enetaddr syncing. 14902 This was not the case as eth_initialize() is called only once and the sync 14903 occurs there. So make sure the eth_init() function does the env -> device 14904 sync with every network init. 14905 14906 Reported-by: Andrzej Wolski <awolski@poczta.fm> 14907 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 14908 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14909 14910commit 0ebf04c607b54a352629dcf7e76b76f1785dae54 14911Author: Robin Getz <rgetz@blackfin.uclinux.org> 14912Date: Thu Jul 23 03:01:03 2009 -0400 14913 14914 minor debug cleanups in ./net 14915 14916 Minor ./net cleanups - no functional changes 14917 - change #ifdef DEBUG printf(); #endif to just debug() 14918 - changed __FUNCTION__ to __func__ 14919 - got rid of extra whitespace between function and opening brace 14920 - removed unnecessary braces on if statements 14921 14922 gcc dead code elimination should make this functionally/size equivalent 14923 when DEBUG is not defined. (confirmed on Blackfin, with gcc 4.3.3). 14924 14925 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org> 14926 14927 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 14928 14929commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e 14930Author: Matthias Ludwig <mludwig@ultratronik.de> 14931Date: Tue May 19 09:09:31 2009 +0200 14932 14933 omap3: embedd gpmc_cs into gpmc config struct 14934 14935 Embedd chip select configuration into struct for gpmc config 14936 instead of having it completely separated as suggested by 14937 Wolfgang Denk on 14938 http://lists.denx.de/pipermail/u-boot/2009-May/052247.html 14939 14940 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de> 14941 14942commit 06bffc6ea52d4b390843d295d438b2037d12e5fd 14943Author: David Brownell <david-b@pacbell.net> 14944Date: Thu Jul 16 18:40:55 2009 -0700 14945 14946 rm9200 lowevel_init: don't touch reserved/readonly registers 14947 14948 For some reason the AT91rm9200 lowlevel init writes to a bunch of 14949 reserved or read-only addresses. All the boards seem to define the 14950 value-to-be-written values as zero ... but they shouldn't actually 14951 be writing *anything* there. 14952 14953 No documented erratum justifies these accesses. It looks like maybe 14954 some pre-release BDI-2000 setup code has been carried along by cargo 14955 cult programming since at least late 2004 (per GIT history). 14956 14957 Here's a patch disabling what seems to be bogosity. Tested on a 14958 csb337; there were no behavioral changes. 14959 14960 Signed-off-by: David Brownell <david-b@pacbell.net> 14961 14962 on RM9200ek 14963 Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 14964 14965commit 301b7db88fbdf7d118efb79b371b2527a2c31868 14966Author: David Hunter <hunterd42@gmail.com> 14967Date: Thu Jul 30 14:32:49 2009 -0700 14968 14969 pxa: Fix typo in GCDR(x) 14970 14971 Fix a typo in the GCDR(x) macro. It's a good thing no one was using it. 14972 14973 Signed-off-by: David Hunter <hunterd42@gmail.com> 14974 14975commit 3c448e648221879ae0e030e94508b4f9f63b7ab8 14976Author: Eric Benard <eric@eukrea.com> 14977Date: Sat Jul 18 23:45:15 2009 +0200 14978 14979 Add AT91SAM9260 to at91's lowlevel_init.S 14980 14981 Needed for AT91SAM9260 NOR Boot on Eukrea's CPU9260. 14982 14983 Signed-off-by: Eric Benard <eric@eukrea.com> 14984 14985commit 56bdfa961242fc6acaeebc800640a12b28db3899 14986Author: Dirk Eibach <eibach@gdsys.de> 14987Date: Thu Jul 30 09:36:33 2009 +0200 14988 14989 ppc4xx: Remove check for PPC460EX from CompactCenter 14990 14991 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 14992 Signed-off-by: Stefan Roese <sr@denx.de> 14993 14994commit c3fa4f0c8684c862ecd3fb622fab1e17e44e82e1 14995Author: Stefan Roese <sr@denx.de> 14996Date: Wed Jul 29 08:46:10 2009 +0200 14997 14998 ppc4xx: Add support for PPC460EX/460GT rev B chip to AMCC Canyonlands 14999 15000 This patch is based on a diff created by Phong Vo from AMCC.
15001 15002 Signed-off-by: Phong Vo <pvo@amcc.com> 15003 Signed-off-by: Stefan Roese <sr@denx.de> 15004 15005commit 89bcc4875007ef6608297dc11e7a0d1fbd9900d2 15006Author: Stefan Roese <sr@denx.de> 15007Date: Wed Jul 29 08:45:27 2009 +0200 15008 15009 ppc4xx: Add basic support for AMCC PPC460EX/460GT rev B chips 15010 15011 This patch is based on a diff created by Phong Vo from AMCC. 15012 15013 Signed-off-by: Phong Vo <pvo@amcc.com> 15014 Signed-off-by: Stefan Roese <sr@denx.de> 15015 15016commit 82a7edc7ea8f5fe55fed4ff7e127469569e539c4 15017Author: Stefan Roese <sr@denx.de> 15018Date: Tue Jul 28 15:12:04 2009 +0200 15019 15020 ppc4xx: Canyonlands-NAND-boot: Support 2 Crucial 512MByte SODIMM's 15021 15022 Some Canyonlands boards are equipped with different SODIMM's. This is no 15023 problem with the "normal" NOR booting Canyonlands U-Boot, since it 15024 automatically detects the SODIMM's via SPD data and correctly configures 15025 them. But the NAND booting version is different. Here we only have 4k 15026 of image size to completely setup the hardware, including DDR2 setup. 15027 So we need to use a fixed DDR2 setup here. This doesn't work for different 15028 SODIMM's right now. 15029 15030 Currently only this Crucial SODIMM is support: 15031 CT6464AC667.8FB (dual ranked) 15032 15033 Now some boards are shipped with this SODIMM: 15034 CT6464AC667.4FE (single ranked) 15035 15036 This patch now supports both SODIMM's by configuring first for the dual 15037 ranked DIMM. A quick shows, if this module is really installed. If this test 15038 fails, the DDR2 controller is re-configured for the single 15039 ranked SODIMM. 15040 15041 Tested with those SODIMM's: 15042 15043 CT6464AC667.8FB (dual ranked) 15044 CT6464AC667.4FE (single ranked) 15045 15046 Signed-off-by: Stefan Roese <sr@denx.de> 15047 15048commit 27dd5f8e1062684f1ba685760409d9b2ab6691bf 15049Author: Stefan Roese <sr@denx.de> 15050Date: Tue Jul 28 10:56:03 2009 +0200 15051 15052 ppc4xx: amcc: Move "kernel_addr_r" etc to higher locations (> 16MB) 15053 15054 This patch moves the load addresses for kernel, fdt and ramdisk to higher 15055 addresses (>= 16MB). This enables booting of bigger kernel images (e.g. 15056 lockdep enabled). 15057 15058 Signed-off-by: Stefan Roese <sr@denx.de> 15059 15060commit 6942efc2be1b90054fa4afa5cda7023469fe08b9 15061Author: Stefan Roese <sr@denx.de> 15062Date: Tue Jul 28 10:50:32 2009 +0200 15063 15064 ppc4xx: amcc: Set CONFIG_SYS_BOOTMAPSZ to 16MB for big kernels 15065 15066 This patch changes CONFIG_SYS_BOOTMAPSZ from 8MB to 16MB which is the 15067 initial TLB on 40x PPC's in the Linux kernel. With this change even bigger 15068 Linux kernels (> 8MB) can be booted. 15069 15070 This patch also sets CONFIG_SYS_BOOTM_LEN to 16MB (default 8MB) to enable 15071 decompression of bigger images. 15072 15073 Signed-off-by: Stefan Roese <sr@denx.de> 15074 15075commit 901be89a27e11b2627c132ee87c7761bd6886091 15076Author: Heiko Schocher <hs@denx.de> 15077Date: Tue Jul 28 14:53:44 2009 +0200 15078 15079 83xx, kmeter1, fix: update in the DTS the correct size for the first flash 15080 15081 When updating the "reg" in the "/localbus/flash@f0000000,0" node 15082 size was wrong updated for the first flash, because the total 15083 size was filled in, instead of the right size for it. 15084 15085 Signed-off-by: Heiko Schocher <hs@denx.de> 15086 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 15087 15088commit 4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d 15089Author: Kumar Gala <kumar.gala@freescale.com> 15090Date: Tue Jul 28 21:49:52 2009 -0500 15091 15092 Update Freescale copyrights to remove "All Rights Reserved" 15093 15094 "All Rights Reserved" conflicts with the GPL. 15095 15096 Signed-off-by: Kumar Gala <kumar.gala@freescale.com> 15097 15098commit bb4291e62579dbc611e84eaaf973631e0bf129c7 15099Author: Alessandro Rubini <rubini@unipv.it> 15100Date: Fri Jul 24 11:27:14 2009 +0200 15101 15102 arm nomadik: add i2c 15103 15104 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 15105 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 15106 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 15107 15108commit 60cbfbfd0fbebb4682f10ba96f622bfe17317598 15109Author: Alessandro Rubini <rubini@unipv.it> 15110Date: Fri Jul 24 11:27:03 2009 +0200 15111 15112 arm nomadik: add gpio support 15113 15114 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 15115 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 15116 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 15117 15118commit 549b98306d897ae5991362d6096a36df50efe686 15119Author: Tom Rix <Tom.Rix@windriver.com> 15120Date: Sun Jun 28 12:52:32 2009 -0500 15121 15122 OMAP3 Remove twl4030 defines 15123 15124 These defines have been subplanted by the equivelent defines in 15125 include/twl4030.h 15126 15127 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 15128 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 15129 Acked-by: Heiko Schocher <hs@denx.de> 15130 15131commit fccc0fcaaae5154612f8259365d26d04f204859f 15132Author: Tom Rix <Tom.Rix@windriver.com> 15133Date: Sun Jun 28 12:52:31 2009 -0500 15134 15135 OMAP3 Move twl4030 mmc function 15136 15137 Because twl4030 now has its own device files, move and rename 15138 twl4030_mmc_config. 15139 15140 twl4030_mmc_config initializes the twl4030 power setting to 15141 the mmc device. Because it is in the twl4030 power domain, move 15142 it out of drivers/mmc/omap3_mmc.c and into drivers/power/twl4030.c. 15143 15144 The function was renamed to twl4030_power_mmc_init because all 15145 the functions in this file are to have the format 15146 15147 twl4030_power_<device>_<action> 15148 15149 In this case the suffix is mmc_init so 15150 device : mmc 15151 action : init 15152 15153 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 15154 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 15155 Acked-by: Heiko Schocher <hs@denx.de> 15156 15157commit 2c15513010493435c78f83202940ac3be11de2c3 15158Author: Tom Rix <Tom.Rix@windriver.com> 15159Date: Sun Jun 28 12:52:30 2009 -0500 15160 15161 OMAP3 Move twl4030 power and led functions 15162 15163 Because twl4030 now has its own device files, move exiting 15164 omap3 power_init_r to a new location. 15165 15166 power_init_r is the only function in board/omap3/common. 15167 It initializes the twl4030 power for the board and enables 15168 the led. 15169 15170 The power part of the the function is moved to twl4030_power_init in 15171 drivers/power/twl4030.c The power compilation is conditional on the 15172 existing config variable CONFIG_TWL4030_POWER. 15173 15174 The led part is moved to twl4030_led_init in the new file 15175 drivers/misc/twl4030_led.c The led compilation is conditional on 15176 the new config variable CONFIG_TWL4030_LED 15177 15178 The directory board/omap3/common was removed because power_init_r 15179 was the only function in it. 15180 15181 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 15182 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 15183 Acked-by: Heiko Schocher <hs@denx.de> 15184 15185commit 3cb7a4805fc8fb4c09e4801e1c7d531186f20190 15186Author: Wolfgang Denk <wd@denx.de> 15187Date: Tue Jul 28 22:13:52 2009 +0200 15188 15189 TQM8xx* boards: set larger SMC Rx buffer len 15190 15191 Commit 2b3f12c2 added support for configurable SMC Rx buffer length on 15192 8xx systems. Enable this feature on TQM8xx* based boards. 15193 15194 This fixes the problem that pasting text in the middle of a line 15195 (i. e. inserting in edit mode) did not work - only the first two 15196 characters got inserted, the rest was lost. 15197 15198 Signed-off-by: Wolfgang Denk <wd@denx.de> 15199 15200commit 4b7511478b62a539e5b066d19a986b75e5d9a527 15201Author: Wolfgang Denk <wd@denx.de> 15202Date: Tue Jul 28 22:07:37 2009 +0200 15203 15204 Fix ext2load return code 15205 15206 Make the ext2load command return 0 on success (instead of the file 15207 length). 15208 15209 Also fix output format (get rid of random newlines) and some coding 15210 style issues (long lines etc.). 15211 15212 Signed-off-by: Wolfgang Denk <wd@denx.de> 15213 15214commit 56fdaadc124a8ef9ec0fd8ff578233ec3b1137be 15215Author: Weirich, Bernhard <Bernhard.Weirich@riedel.net> 15216Date: Wed Jun 10 14:00:37 2009 +0200 15217 15218 ext2: fix inode size and calculations 15219 15220 Signed-off-by: unsik Kim <donari75@gmail.com> 15221 Signed-off-by: Bernhard Weirich <bernhard.weirich@riedel.net> 15222 Signed-off-by: Wolfgang Denk <wd@denx.de> 15223 Tested-by: Wolfgang Denk <wd@denx.de> 15224 15225commit cd7826359ee71e8f6f3d68331930ab9cbe1c990e 15226Author: Tom Rix <Tom.Rix@windriver.com> 15227Date: Sun Jun 28 12:52:29 2009 -0500 15228 15229 TWL4030 Add power reset button 15230 15231 The Zoom2 power reset button is on the top right side of the 15232 main board. Press and hold for about to 8 seconds to completely 15233 reset the board. 15234 15235 Some of the beta boards have a hardware problem that prevents 15236 using this feature. If is difficult to further characterize the 15237 boards that fail. So disable resetting for all beta boards. 15238 15239 The Zoom1 reset button is the red circle on the top right, 15240 front of the board. Press and hold the button for 8 seconds to 15241 completely reset the board. 15242 15243 After analyzing beagle, it was determined that other boards 15244 that use the twl4030 for power managment can also make use 15245 this function. 15246 15247 The resetting is done by the power management part of the twl4030. 15248 Since there is no existing drivers/power, add one. 15249 15250 The compilation of power/twl4030.h is controlled by the config 15251 variable CONFIG_TWL4030_POWER 15252 15253 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 15254 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 15255 Acked-by: Heiko Schocher <hs@denx.de> 15256 15257commit 8966eb4c1c2d894b2a76174ba904c26c5af815b8 15258Author: Tom Rix <Tom.Rix@windriver.com> 15259Date: Sun Jun 28 12:52:28 2009 -0500 15260 15261 TWL4030 Add initial support 15262 15263 The TWL4030 supplies many peripherals for OMAP3 boards. These include 15264 power management, usb and, keyboard. 15265 15266 The product description is found here: 15267 15268 http://focus.ti.com/docs/prod/folders/print/tps65950.html 15269 15270 Product reference document, tps65950.pdf, is found here: 15271 15272 http://www.ti.com/lit/gpn/tps65950 15273 15274 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 15275 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 15276 Acked-by: Heiko Schocher <hs@denx.de> 15277 15278commit 7f79dfb48b7419d5caa1cf932fcff4e2fb7040af 15279Author: Tom Rix <Tom.Rix@windriver.com> 15280Date: Sun Jun 28 12:52:27 2009 -0500 15281 15282 OMAP I2C Fix the sampling clock. 15283 15284 This problem is seen on Zoom1 and Zoom2 in the startup and 15285 when i2c probe is used 15286 15287 Before : 15288 15289 In: serial 15290 Out: serial 15291 Err: serial 15292 timed out in wait_for_bb: I2C_STAT=1000 15293 timed out in wait_for_bb: I2C_STAT=1000 15294 timed out in wait_for_bb: I2C_STAT=1000 15295 timed out in wait_for_pin: I2C_STAT=1000 15296 I2C read: I/O error 15297 timed out in wait_for_bb: I2C_STAT=1000 15298 timed out in wait_for_bb: I2C_STAT=1000 15299 Die ID #327c00020000000004013ddd05026013 15300 Hit any key to stop autoboot: 0 15301 OMAP3 Zoom1# i2c probe 15302 Valid chip addresses:timed out in wait_for_bb: I2C_STAT=1000 15303 02 03 04 05 06 07 08 09 0A 0B 0C 0D <snip> 15304 15305 After : 15306 15307 In: serial 15308 Out: serial 15309 Err: serial 15310 Die ID #327c00020000000004013ddd05026013 15311 Hit any key to stop autoboot: 0 15312 OMAP3 Zoom1# i2c probe 15313 Valid chip addresses: 48 49 4A 4B 15314 15315 The addresses are for the twl4030. 15316 15317 The prescalar that converts the function clock to the sampling 15318 clock is hardcoded to 0. The reference manual recommends 7 15319 if the function clock is 96MHz. 15320 15321 Instead of just changing the hardcoded values, the prescalar 15322 is calculated from the value I2C_IP_CLK. 15323 15324 The i2c #defines are in kHz. The speed passed into the 15325 i2c init routine is in Hz. To be consistent, change the 15326 defines to be in Hz. 15327 15328 The timing calculations are based on what is done in the 15329 linux 2.6.30 kernel in drivers/i2c/buses/i2c_omap.c as 15330 apposed to what is done in TRM. 15331 15332 The major variables in the timing caculations are 15333 specified as #defines that can be overriden as required. 15334 15335 The variables and their defaults are 15336 15337 I2C_IP_CLK SYSTEM_CLOCK_96 15338 I2C_INTERNAL_SAMPLING_CLK 19200000 15339 I2C_FASTSPEED_SCLL_TRIM 6 15340 I2C_FASTSPEED_SCLH_TRIM 6 15341 I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM I2C_FASTSPEED_SCLL_TRIM 15342 I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM I2C_FASTSPEED_SCLH_TRIM 15343 I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM I2C_FASTSPEED_SCLL_TRIM 15344 I2C_HIGHSPEED_PHASE_TWO_SCLH I2C_FASTSPEED_SCLH_TRIM 15345 15346 This was runtime verified on Zoom1, Zoom2, Beagle and Overo. 15347 The 400kHz and 3.4M cases were verifed on test Zoom1, 15348 Zoom2, Beagle and Overo configurations. 15349 15350 Testing for omap2 will be done in a second step as Nishanth 15351 and Jean-Christophe commented. 15352 15353 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 15354 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 15355 Acked-by: Heiko Schocher <hs@denx.de> 15356 15357commit 4ce5a72851ff2960543b125866c6132e0094e1ee 15358Author: Heiko Schocher <hs@denx.de> 15359Date: Mon Jul 20 09:59:37 2009 +0200 15360 15361 arm, i2c: added support for the TWSI I2C Interface 15362 15363 Signed-off-by: Heiko Schocher <hs@denx.de> 15364 15365commit 042d01c72e0ea95731708dd24bb8b6cf42e75c80 15366Author: Stefan Roese <sr@denx.de> 15367Date: Mon Jul 27 09:13:38 2009 +0200 15368 15369 ppc4xx: Fix problem with NOR range assignment in Canyonlands ft_board_setup 15370 15371 This patch fixes the problem, that the current fdt board fixup code only 15372 set's one range, the one for NOR. By this it's overwriting the already 15373 correctly configured values done in __ft_board_setup(). Just remove this 15374 now unneeded NOR fixup and all the ranges are correctly defined. 15375 15376 Signed-off-by: Stefan Roese <sr@denx.de> 15377 Cc: Dirk Eibach <eibach@gdsys.de> 15378 Cc: Felix Radensky <felix@embedded-sol.com> 15379 15380commit 11a1604f8d0a8d936b42f6435d004b4aa33a5d87 15381Author: Stefan Roese <sr@denx.de> 15382Date: Mon Jul 27 07:42:48 2009 +0200 15383 15384 ppc4xx: Add some NAND-booting bootstrap entries to Kilauea chip_config cmd 15385 15386 This patch adds some I2C bootstrap setting for NAND booting to the Kilauea 15387 chip_config command ("533-nand" and "600-nand"). 15388 15389 Additionally some incorrectly indented lines are fixed. 15390 15391 Signed-off-by: Stefan Roese <sr@denx.de> 15392 15393commit 5b34691ff87821891375b28ec5bcf5154575a735 15394Author: Stefan Roese <sr@denx.de> 15395Date: Mon Jul 27 07:42:37 2009 +0200 15396 15397 ppc4xx: Kilauea: Fix SDRAM init in NAND booting version 15398 15399 DDR2 Auto-calibration needs to be disabled on the NAND booting PPC4xx 15400 targets. Otherwise the configured fixed init values for some DDR2 15401 controller registers (e.g. RQDC) are not initialized at all resulting 15402 in a non working SDRAM. 15403 15404 Signed-off-by: Stefan Roese <sr@denx.de> 15405 15406commit f3ed3c9b7441cde936d06a1ff7b1490ff0d600e6 15407Author: Stefan Roese <sr@denx.de> 15408Date: Mon Jul 27 10:53:43 2009 +0200 15409 15410 ppc4xx: Fix Arches DDR2 initialization 15411 15412 Testing on AMCC Arches with the latest U-Boot version yielded that DDR2 15413 initialization is currently broken. U-Boot hangs upon relocation to SDRAM 15414 or crashes with random traps. This patch fixes this problem. Arches now 15415 uses a different WRDTR and CLKTR default setting than Canyonlands/Glacier. 15416 15417 Signed-off-by: Stefan Roese <sr@denx.de> 15418 15419commit ab4c62c1ba788bf7f673a985d99a76d9c2fd7eca 15420Author: Dirk Eibach <eibach@gdsys.de> 15421Date: Mon Jul 27 08:49:48 2009 +0200 15422 15423 ppc4xx: Add GDsys CompactCenter board support. 15424 15425 Board support for the Guntermann & Drunck CompactCenter and 15426 DevCon-Center. 15427 Based on the AMCC Canyonlands board support by Stefan Roese. 15428 15429 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 15430 Signed-off-by: Stefan Roese <sr@denx.de> 15431 15432commit c2e49f706ba13213f3c8da3a33e88010214e1997 15433Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 15434Date: Sat Jul 25 06:19:12 2009 +0200 15435 15436 mpc83xx: Add esd VME8349 board support 15437 15438 This patch adds support for the esd VME8349 board equipped with the 15439 MPC8349. It's a VME PMC carrier board equipped with the Tundra 15440 TSI148 VME-bridge. 15441 15442 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 15443 Signed-off-by: Stefan Roese <sr@denx.de> 15444 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 15445 15446commit fe613cdd4eb2c5b257a60d8dfb7759742318c28a 15447Author: Paul Gortmaker <paul.gortmaker@windriver.com> 15448Date: Thu Jul 23 17:10:55 2009 -0400 15449 15450 sbc8349: combine HRCW flash and u-boot image flash 15451 15452 Up to this point in time, the sbc8349 board was storing the u-boot 15453 image in flash 2x. One for the HRCW value at the beginning of 15454 flash (0xff80_0000), and once close to the end of flash (0xfff8_0000) 15455 for the actual image that got executed. 15456 15457 This moves the TEXT_BASE to be the beginning of flash, which makes 15458 the second copy of the image redundant, and frees up the flash 15459 from the end of the environment storage to the end of the flash 15460 device itself. 15461 15462 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 15463 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 15464 15465commit be9b56df02168ca97562d6b9ec791136e4cd925a 15466Author: Kim Phillips <kim.phillips@freescale.com> 15467Date: Thu Jul 23 14:09:38 2009 -0500 15468 15469 mpc83xx: CONFIG_83XX_GENERIC_PCI is now synonymous with CONFIG_PCI; remove the former 15470 15471 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 15472 15473commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69 15474Author: Wolfgang Denk <wd@denx.de> 15475Date: Mon Jul 27 10:37:37 2009 +0200 15476 15477 Prepare 2009.08-rc1 (again, after fixing last minute issues). 15478 15479 Update CHANGELOG 15480 15481 Signed-off-by: Wolfgang Denk <wd@denx.de> 15482 15483commit 9689ddcca6e01f3637b4442fa8575f29ef4d7aa3 15484Author: Wolfgang Denk <wd@denx.de> 15485Date: Mon Jul 27 10:06:39 2009 +0200 15486 15487 cpu/arm920t/start.S: include <common.h> to have ROUND() defined 15488 15489 Commit fcd3c87e made include/common.h usable by assembler code but 15490 failed to update cpu/arm920t/start.S 15491 15492 Signed-off-by: Wolfgang Denk <wd@denx.de> 15493 15494commit c9ed38cb6de50fdb4aaa60b668c555002903b211 15495Author: Wolfgang Denk <wd@denx.de> 15496Date: Mon Jul 27 10:01:11 2009 +0200 15497 15498 at91cap9adk: fix #ifdef/#endif pairing (2nd try) 15499 15500 Commit 7024aa14 was supposed to fix the #ifdef/#endif pairing in 15501 include/configs/at91cap9adk.h, but did not cate all problems. 15502 15503 Signed-off-by: Wolfgang Denk <wd@denx.de> 15504 15505commit fb364bec5f29164d3ee681fcd9d187be8435db12 15506Author: Wolfgang Denk <wd@denx.de> 15507Date: Mon Jul 27 09:58:14 2009 +0200 15508 15509 Fix include/common.h for boards with CONFIG_STATUS_LED 15510 15511 The reordering of include/common.h by commit fcd3c87e495f3c48 broke 15512 boards with status LED support, resulting in 15513 error: #error Status LED configuration missing 15514 errors. Undo this reordering to avoid this issue. 15515 15516 Signed-off-by: Wolfgang Denk <wd@denx.de> 15517 15518commit 942828a0980b3cea7db698784cc7f6a3e7740b2b 15519Author: Wolfgang Denk <wd@denx.de> 15520Date: Mon Jul 27 09:19:15 2009 +0200 15521 15522 ABI: fix build problems due to now needed div64 routine. 15523 15524 Signed-off-by: Wolfgang Denk <wd@denx.de> 15525 15526commit 85d6bf0bdc8ccad2d67a9160472f6f8c6bb482fb 15527Author: Wolfgang Denk <wd@denx.de> 15528Date: Mon Jul 27 08:50:59 2009 +0200 15529 15530 PMC405DE: fix out of tree building 15531 15532 Signed-off-by: Wolfgang Denk <wd@denx.de> 15533 15534commit 10c7604d021949464b1e4ba903df95e6b2f0d2ff 15535Author: Wolfgang Denk <wd@denx.de> 15536Date: Mon Jul 27 00:24:55 2009 +0200 15537 15538 Prepare 2009.08-rc1 15539 15540 Update CHANGELOG, minor coding style fix. 15541 15542 Signed-off-by: Wolfgang Denk <wd@denx.de> 15543 15544commit fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22 15545Author: rhabarber1848@web.de <rhabarber1848@web.de> 15546Date: Fri Jul 24 08:16:30 2009 +0200 15547 15548 add WATCHDOG_RESET to allow LZMA kernel decompression on slow machines 15549 15550 Signed-off-by: rhabarber1848@web.de 15551 15552commit 3c972849f2becbf19c13a24f090d293f37ecf616 15553Author: Niklaus Giger <niklaus.giger@member.fsf.org> 15554Date: Thu Jul 23 23:31:58 2009 +0200 15555 15556 Less verbose output when loading vxworks 6.x images 15557 15558 Loading vxWorks 5.x images resulted just into 3 or 4 lines of output. 15559 With vxWorks 6.x and the new GCC it emits about 30 lines, which is 15560 far too noisy in my opinion. 15561 15562 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 15563 15564commit fcd3c87e495f3c48b70c919869fb1e0b93d4880b 15565Author: Wolfgang Denk <wd@denx.de> 15566Date: Fri Jul 24 00:17:48 2009 +0200 15567 15568 Make include/common.h usable by assembler code 15569 15570 Commit 70ebf316 factored out the ROUND() macro into include/common.h, 15571 not realizing that the primary use of this macro on AT91 systems was 15572 in start.S where common.h was not included, and could not be included 15573 because it contains a lot of C code which the assembler doesn't 15574 understand. 15575 15576 This patch wraps such code in common.h in a "#ifndef __ASSEMBLY__" 15577 construct, and then adds an include to cpu/arm926ejs/start.S thus 15578 solving the problem. 15579 15580 Signed-off-by: Wolfgang Denk <wd@denx.de> 15581 15582commit deec15b3064d3bb0189aede3c2921fd7ee401a0f 15583Author: Heiko Schocher <heiko.schocher@invitel.hu> 15584Date: Thu Jul 23 13:27:04 2009 +0200 15585 15586 arm: add _lshrdi3.S 15587 15588 Signed-off-by: Heiko Schocher <hs@denx.de> 15589 15590commit 52b1bf2c5cd2f8af880dab503d0039b35570665b 15591Author: Wolfgang Denk <wd@denx.de> 15592Date: Thu Jul 23 13:15:59 2009 +0200 15593 15594 Make linking against libgcc configurable 15595 15596 Many (especially ARM) tool chains seem to come with broken or 15597 otherwise unusable (for the purposes of builing U-Boot) run-time 15598 support libraries `libgcc.a'. By using the "USE_PRIVATE_LIBGCC" 15599 setting we allow to use alternative libraries instead. 15600 15601 "USE_PRIVATE_LIBGCC" can either be set as an environment variable in 15602 the shell, or as a command line argument when running "make", i. e. 15603 $ make USE_PRIVATE_LIBGCC=yes 15604 or 15605 $ USE_PRIVATE_LIBGCC=yes 15606 $ export USE_PRIVATE_LIBGCC 15607 $ make 15608 15609 The value of "USE_PRIVATE_LIBGCC" is the name of the directory which 15610 contains the alternative run-time support library `libgcc.a'. The 15611 special value "yes" selects the directory $(OBJTREE)/lib_$(ARCH) . 15612 15613 Note that not all architectures provide an alternative `libgcc.a' in 15614 their lib_$(ARCH) directories - so far, only ARM does. 15615 15616 Signed-off-by: Wolfgang Denk <wd@denx.de> 15617 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 15618 Cc: Prafulla Wadaskar <prafulla@marvell.com> 15619 cc: Stefan Roese <sr@denx.de> 15620 15621commit 479105065d965121f57b55dcfe83a940cba46ac1 15622Author: Dirk Behme <dirk.behme@googlemail.com> 15623Date: Wed Jul 22 17:51:56 2009 +0200 15624 15625 Use do_div from div64.h for vsprintf 15626 15627 Use do_div from div64.h for vsprintf in case of 64bit division. 15628 For 32bit division, do_div from div64.h can't be used as it 15629 needs a 64bit parameter. 15630 15631 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 15632 Acked-by: Stefan Roese <sr@denx.de> 15633 CC: Simon Kagstrom <simon.kagstrom@netinsight.net> 15634 15635commit 48287792384a93d77d43aaaa1c06cac275bbe1bb 15636Author: Kyungmin Park <kmpark@infradead.org> 15637Date: Mon Jul 20 09:47:47 2009 +0900 15638 15639 Fix compiler warnings after loff_t change 15640 15641 Now 'env_addr' type is loff_t so use correct field type. 15642 15643 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 15644 15645commit 9c67352f727a5b5eff531c852f9cff59fcb17f7f 15646Author: Wolfgang Denk <wd@denx.de> 15647Date: Sun Jul 26 23:28:02 2009 +0200 15648 15649 Revert "ppc: Unlock cache-as-ram in a consistent manner" 15650 15651 This reverts commit 982adfc610669482a32127282fe489857a92cfe3. 15652 15653 This patch causes problems on MPC83xx boards - flash recognition stops 15654 working. 15655 15656 Signed-off-by: Wolfgang Denk <wd@denx.de> 15657 15658commit 35cf3b57eafe3ee1f693e24267e0ecfefab60251 15659Author: Jens Scharsig <esw@bus-elektronik.de> 15660Date: Fri Jul 24 10:31:48 2009 +0200 15661 15662 update the EB+MCF-EV123 board support 15663 15664 This patch updates the support for EB+MCF-EV123 board and needs 15665 the [PATCH 1/2 V3] new video driver for bus vcxk framebuffers 15666 15667 * remove the board framebuffer driver 15668 * use the common bus_vcxk framebuffer driver 15669 * adds bmp support 15670 * adds splashimage support 15671 * fix serveral cosmetical errors 15672 15673 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de> 15674 [agust@denx.de: fixed some style issues before applying] 15675 Signed-off-by: Anatolij Gustschin <agust@denx.de> 15676 15677commit 04538cdb752eeea8fd23cf7ac3394439f189fb77 15678Author: Anatolij Gustschin <agust@denx.de> 15679Date: Sun Jul 26 12:05:25 2009 +0200 15680 15681 video: bus_vcxk.c: fix style issues added by 50217dee 15682 15683 Signed-off-by: Anatolij Gustschin <agust@denx.de> 15684 15685commit 50217deeb07911d686790d34d468eb9a5245f68d 15686Author: Jens Scharsig <esw@bus-elektronik.de> 15687Date: Fri Jul 24 10:09:02 2009 +0200 15688 15689 new video driver for bus vcxk framebuffers 15690 15691 This patch adds a new video driver 15692 15693 * adds common bus_vcxk framebuffer driver 15694 15695 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de> 15696 [agust@denx.de: fixed lots of style issues before applying] 15697 Signed-off-by: Anatolij Gustschin <agust@denx.de> 15698 15699commit 60e97419246d0a3615758ad6af40680aefb5f7f1 15700Author: Alessandro Rubini <rubini@gnudd.com> 15701Date: Tue Jul 21 14:09:45 2009 +0200 15702 15703 lcd.h: define extern vidinfo_t for all cases 15704 15705 include/lcd.h has different vidinfo for different platforms, 15706 and several extern declaration, but one for the default case was 15707 missing. This makes them a single extern declaration for everyone. 15708 15709 Signed-off-by: Alessandro Rubini <rubini@gnudd.com> 15710 15711commit bcf0b5248952c6b03081dc5cc4ff9e0b2299c5fa 15712Author: Anatolij Gustschin <agust@denx.de> 15713Date: Sun Jul 26 11:04:59 2009 +0200 15714 15715 mimc200.c: fix too long lines added by f68378d6 15716 15717 Signed-off-by: Anatolij Gustschin <agust@denx.de> 15718 15719commit f68378d60a905d43155f2e89bf81999d3c93a90a 15720Author: Mark Jackson <mpfj-list@mimc.co.uk> 15721Date: Tue Jul 21 11:35:22 2009 +0100 15722 15723 Add LCD support to MIMC200 board 15724 15725 This patch updates the MIMC200 files to enable the LCD. 15726 15727 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 15728 15729commit 69f32e6c24d41fcdf347ff64e9c13b25059ace58 15730Author: Mark Jackson <mpfj-list@mimc.co.uk> 15731Date: Tue Jul 21 11:18:44 2009 +0100 15732 15733 Add 16bit colour support in lcd.h 15734 15735 This patch adds support for LCD_COLOR16 in include/lcd.h. 15736 15737 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 15738 15739commit bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3 15740Author: Anatolij Gustschin <agust@denx.de> 15741Date: Sun Jul 26 10:34:58 2009 +0200 15742 15743 lib_avr32/board.c: fix too long line added by 716ece1d 15744 15745 Signed-off-by: Anatolij Gustschin <agust@denx.de> 15746 15747commit 716ece1de9a7d43a61d8698ac41b71b64f66f9e9 15748Author: Mark Jackson <mpfj-list@mimc.co.uk> 15749Date: Tue Jul 21 11:11:37 2009 +0100 15750 15751 Add AVR32 LCD support 15752 15753 This patch adds support for the AVR32 LCD controller. This patch is 15754 based off the latest u-boot-video. 15755 15756 A quick summary of what's going on:- 15757 15758 Enable LCDC pixel clock 15759 Enable LCDC port pins 15760 Add framebuffer pointer to global_data struct 15761 Allocate framebuffer 15762 15763 To use the new code, update your board config to include something like 15764 this:- 15765 15766 #define CONFIG_LCD 1 15767 15768 #if defined(CONFIG_LCD) 15769 #define CONFIG_CMD_BMP 15770 #define CONFIG_ATMEL_LCD 1 15771 #define LCD_BPP LCD_COLOR16 15772 #define CONFIG_BMP_16BPP 1 15773 #define CONFIG_FB_ADDR 0x10600000 15774 #define CONFIG_WHITE_ON_BLACK 1 15775 #define CONFIG_VIDEO_BMP_GZIP 1 15776 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE 262144 15777 #define CONFIG_ATMEL_LCD_BGR555 1 15778 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 1 15779 #define CONFIG_SPLASH_SCREEN 1 15780 #endif 15781 15782 The standard U-Boot BMP and Splash-screen features should just work. 15783 15784 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 15785 [agust@denx.de: fixed some style issues] 15786 Signed-off-by: Anatolij Gustschin <agust@denx.de> 15787 15788commit 6111722a9281c6e04a7304d502556afff6a5a1f8 15789Author: Alessandro Rubini <rubini@gnudd.com> 15790Date: Sun Jul 19 17:52:27 2009 +0200 15791 15792 video: move extern declarations from C to headers 15793 15794 This moves some extern declaration from lcd.c to lcd.h, removing 15795 unneeded ifdef around a pair of them. Additionally, since 15796 gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I 15797 removed the static. The extra "#include <lcd.h>" in cmd_bmp.c is 15798 added to ensure the header is consistent with the source. 15799 15800 This has been compile-tested on both ARM (at91 boards) and PowerPC 15801 (HH405_config, TQM823L_LCD_config, mcc200_config), to test all use 15802 combinations. 15803 15804 Signed-off-by: Alessandro Rubini <rubini@gnudd.it> 15805 [agust@denx.de: removed gunzip_bmp() fixes as commit c01171ea did it] 15806 Signed-off-by: Anatolij Gustschin <agust@denx.de> 15807 15808commit f51e001143c58447eb50e7aefa2b09eb4cc1410c 15809Author: Mike Frysinger <vapier@gentoo.org> 15810Date: Thu Jul 23 16:26:58 2009 -0400 15811 15812 Blackfin: restore EVT1 handling in linker script 15813 15814 Sadly, the Blackfin linker script unification lost a small #ifdef logic 15815 needed on older parts. Restore that CONFIG_BFIN_BOOTROM_USES_EVT1 logic. 15816 15817 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 15818 15819commit f33b325af666b12eafa9ab235b2cd59832d6e51c 15820Author: Wolfgang Denk <wd@denx.de> 15821Date: Fri Jul 24 14:24:07 2009 +0200 15822 15823 Revert "zlib: updated to v.1.2.3" 15824 15825 This reverts commit b201171f2b4d509f3ad510b214bee70ff902e3d6. 15826 15827 The commit caused problems for example when unpacking kernel images: 15828 15829 Uncompressing Kernel Image ... Error: inflate() returned -2 15830 GUNZIP: uncompress, out-of-mem or overwrite error - must 15831 RESET board to recover 15832 15833 Conflicts: 15834 15835 include/u-boot/zlib.h 15836 lib_generic/zlib.c 15837 15838 Signed-off-by: Wolfgang Denk <wd@denx.de> 15839 15840commit 4b1389e0ceb19e9b50b96fd3908483a6c2274fb0 15841Author: Stefan Roese <sr@denx.de> 15842Date: Tue Jul 21 14:06:29 2009 +0200 15843 15844 ppc4xx: Add chip_config command to AMCC Kilauea eval board 15845 15846 This patch removes the "alterpll" command and replaces it with the now 15847 ppc4xx standard "chip_config" command to configure the I2C bootstrap 15848 EEPROM. 15849 15850 Signed-off-by: Stefan Roese <sr@denx.de> 15851 15852commit f6af8ce0c80327cb6aaa347642026ad838335c23 15853Author: Stefan Roese <sr@denx.de> 15854Date: Tue Jul 21 14:33:52 2009 +0200 15855 15856 ppc4xx: Fix EEPROM configuration on Kilauea 15857 15858 Kilauea has an AT24C02 EEPROM which has an 8 byte page. Without defining 15859 CONFIG_SYS_EEPROM_PAGE_WRITE_BITS to 3 the "eeprom" command doesn't 15860 work correctly. 15861 15862 Additionally the page write delay (CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS) 15863 is set to a more defensive value of 10ms. 15864 15865 Signed-off-by: Stefan Roese <sr@denx.de> 15866 15867commit 99d8b23bc7e2be04fcbf49c5cec9f5ae76df290c 15868Author: Matthias Fuchs <matthias.fuchs@esd.eu> 15869Date: Wed Jul 22 13:56:21 2009 +0200 15870 15871 ppc4xx: Add 405EP based PMC405DE board 15872 15873 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 15874 Signed-off-by: Stefan Roese <sr@denx.de> 15875 15876commit da799f66ad1d4fc36dd20cc2d7e584493fda8546 15877Author: Matthias Fuchs <matthias.fuchs@esd.eu> 15878Date: Mon Jul 20 12:15:38 2009 +0200 15879 15880 ppc4xx: Add struct for 4xx GPIO controller registers 15881 15882 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 15883 Signed-off-by: Stefan Roese <sr@denx.de> 15884 15885commit 58ea142fb2e969f32306c8da1dabfaebd6fa141a 15886Author: Matthias Fuchs <matthias.fuchs@esd.eu> 15887Date: Wed Jul 22 17:27:56 2009 +0200 15888 15889 ppc4xx: Replace 4xx lowercase SPR references 15890 15891 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 15892 Signed-off-by: Stefan Roese <sr@denx.de> 15893 15894commit 87c0b72908e05662b8b415e26e1042f4779629da 15895Author: Stefan Roese <sr@denx.de> 15896Date: Mon Jul 20 06:57:27 2009 +0200 15897 15898 Add "chip_config" command for PPC4xx bootstrap configuration 15899 15900 This patch adds a generic command for programming I2C bootstrap 15901 eeproms on PPC4xx. An implementation for Canyonlands board is 15902 included. 15903 15904 The command name is intentionally chosen not to be PPC4xx specific. 15905 This way other CPU's/SoC's can implement a similar command under 15906 the same name, perhaps with a different syntax. 15907 15908 Usage on Canyonlands: 15909 15910 => chip_config 15911 Available configurations (I2C address 0x52): 15912 600-nor - NOR CPU: 600 PLB: 200 OPB: 100 EBC: 100 15913 600-nand - NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100 15914 800-nor - NOR CPU: 800 PLB: 200 OPB: 100 EBC: 100 15915 800-nand - NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100 15916 1000-nor - NOR CPU:1000 PLB: 200 OPB: 100 EBC: 100 15917 1000-nand - NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100 15918 1066-nor - NOR CPU:1066 PLB: 266 OPB: 88 EBC: 88 *** 15919 1066-nand - NAND CPU:1066 PLB: 266 OPB: 88 EBC: 88 15920 => chip_config 600-nor 15921 Using configuration: 15922 600-nor - NOR CPU: 600 PLB: 200 OPB: 100 EBC: 100 15923 done (dump via 'i2c md 52 0.1 10') 15924 Reset the board for the changes to take effect 15925 15926 Other 4xx boards will be migrated to use this command soon 15927 as well. 15928 15929 Signed-off-by: Stefan Roese <sr@denx.de> 15930 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 15931 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu> 15932 15933commit 10c1b218556ed9871f36bc0c407f4f2f6196353b 15934Author: Peter Tyser <ptyser@xes-inc.com> 15935Date: Fri Jul 17 19:01:16 2009 -0500 15936 15937 xpedite1k: Move to X-ES vendor directory 15938 15939 The XPedite1000 is an X-ES product thus it can be put in board/xes along 15940 with other X-ES boards. Along with the move, the board was renamed to 15941 XPedite1000 from XPedite1K to fit X-ES's standard naming convention. 15942 Maintainership was also transfered to Peter Tyser. 15943 15944 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 15945 Signed-off-by: Stefan Roese <sr@denx.de> 15946 15947commit 54381b79d268e1bead5d78ed8423df31a3cb0e2c 15948Author: Peter Tyser <ptyser@xes-inc.com> 15949Date: Fri Jul 17 19:01:15 2009 -0500 15950 15951 xpedite1k: Sync checkboard() with other X-ES boards 15952 15953 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 15954 Signed-off-by: Stefan Roese <sr@denx.de> 15955 15956commit 9b4ef1f5dc0daab64f46249a32e67279c4d44fd2 15957Author: Peter Tyser <ptyser@xes-inc.com> 15958Date: Fri Jul 17 19:01:14 2009 -0500 15959 15960 xpedite1k: Sync up board config options with other X-ES boards 15961 15962 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 15963 Signed-off-by: Stefan Roese <sr@denx.de> 15964 15965commit 4cdad5f43ae67e4ceeac69ef4af4392bd2f7381f 15966Author: Peter Tyser <ptyser@xes-inc.com> 15967Date: Fri Jul 17 19:01:13 2009 -0500 15968 15969 xpedite1k: Sync organization of board config with other X-ES boards 15970 15971 This change should have no functional effect 15972 15973 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 15974 Signed-off-by: Stefan Roese <sr@denx.de> 15975 15976commit c4ae1a0257a0f5008ee2686e8aa92fba3992f279 15977Author: Peter Tyser <ptyser@xes-inc.com> 15978Date: Fri Jul 17 19:01:12 2009 -0500 15979 15980 xpedite1k: Sync up commands and environment with other X-ES boards 15981 15982 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 15983 Signed-off-by: Stefan Roese <sr@denx.de> 15984 15985commit fbc7951ea84c2fe6da0f6007b672ed35bae91acb 15986Author: Peter Tyser <ptyser@xes-inc.com> 15987Date: Fri Jul 17 19:01:11 2009 -0500 15988 15989 xpedite1k: Disable unused ethernet port 1 15990 15991 The XPedite1000 only has 2 available ethernet ports: 15992 ppc_4xx_eth2 (EMAC2) and ppc_4xx_eth3 (EMAC3) 15993 15994 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 15995 Signed-off-by: Stefan Roese <sr@denx.de> 15996 15997commit 767e32ad369d83f55f950e6938e68b6dba7fa65f 15998Author: Peter Tyser <ptyser@xes-inc.com> 15999Date: Fri Jul 17 19:01:10 2009 -0500 16000
16001 xpedite1k: Store environment in flash 16002 16003 Previously an I2C EEPROM was used. The EEPROM had size, reliability, 16004 and access issues which are resolved by storing the environment in 16005 flash. 16006 16007 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16008 Signed-off-by: Stefan Roese <sr@denx.de> 16009 16010commit b88da157f9990cd2cb081e4faea4b9581b5d0e2f 16011Author: Peter Tyser <ptyser@xes-inc.com> 16012Date: Fri Jul 17 19:01:09 2009 -0500 16013 16014 xpedite1k: Add support for additional GPIO pins 16015 16016 Enable GPIO pins for an I2C EEPROM write protect, a system reset pin, 16017 and a PMC #MONARCH pin. These pins are not currently used in U-Boot, 16018 but are used in OSes and may be used in U-Boot in the future. 16019 16020 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16021 Signed-off-by: Stefan Roese <sr@denx.de> 16022 16023commit 42735815dd9ba39efe51203868aebce04053c8de 16024Author: Peter Tyser <ptyser@xes-inc.com> 16025Date: Fri Jul 17 19:01:08 2009 -0500 16026 16027 xpedite1k: Add support for optional flashes 16028 16029 The XPedite1000 can be built with 4 total flashes: 16030 - 512KB AMD socketed 16031 - 16MB Intel soldered 16032 - 2 x 32MB AMD MirrorBit flashes 16033 16034 Add support for the optional 2 32MB CFI-compliant AMD flashes 16035 16036 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16037 Signed-off-by: Stefan Roese <sr@denx.de> 16038 16039commit e02990764c7415c84668823a0fc8c5b4dd8d8cf0 16040Author: Peter Tyser <ptyser@xes-inc.com> 16041Date: Fri Jul 17 19:01:07 2009 -0500 16042 16043 xpedite1k: Cleanup coding style 16044 16045 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16046 Signed-off-by: Stefan Roese <sr@denx.de> 16047 16048commit 086ff34a3a7e5e595630d658c1c13778399452d1 16049Author: Peter Tyser <ptyser@xes-inc.com> 16050Date: Fri Jul 17 19:01:06 2009 -0500 16051 16052 xpedite1k: Remove support for reading MACs from EEPROM 16053 16054 By default, the XPedite1000 comes installed with xMon, a proprietary 16055 bootloader. xMon stores its MAC address in an onboard EEPROM. Rather 16056 than requiring a non-standard location in the EEPROM to be reserved for 16057 MAC addresses, store the MAC addresses in U-Boot's standard environment. 16058 A U-Boot application or OS application can be used to migrate xMon MAC 16059 addresses to U-Boot's environment if necessary. 16060 16061 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16062 Signed-off-by: Stefan Roese <sr@denx.de> 16063 16064commit 108d6d0099372f9f6532c3198fbaacabc121c9b3 16065Author: Peter Tyser <ptyser@xes-inc.com> 16066Date: Fri Jul 17 19:01:05 2009 -0500 16067 16068 xpedite1k: Remove support for fixed SDRAM configuration 16069 16070 All XPedite1000's have SPD EEPROMs present and no fixed configuration 16071 parameters are currently defined or used 16072 16073 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16074 Signed-off-by: Stefan Roese <sr@denx.de> 16075 16076commit c86d00a2ed923002f1ab0bfb0a925522628302e9 16077Author: Peter Tyser <ptyser@xes-inc.com> 16078Date: Fri Jul 17 19:01:04 2009 -0500 16079 16080 xpedite1k: Remove CONFIG_SYS_DRAM_TEST support 16081 16082 POST or command line tests provide similar functionality 16083 16084 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16085 Signed-off-by: Stefan Roese <sr@denx.de> 16086 16087commit 11ad309c183b176d8866944026a63c0f1c626f56 16088Author: Peter Tyser <ptyser@xes-inc.com> 16089Date: Fri Jul 17 19:01:03 2009 -0500 16090 16091 xpedite1k: Use standard CFI flash driver 16092 16093 Using the CFI flash driver will allow write access to the 16MB Intel 16094 StrataFlash present on the XPedite1000. The 512KB socketed (non 16095 CFI-compliant flash) will no longer be writable. 16096 16097 The mapping of the 16MB Strata flash was moved to 0xff000000 and the 16098 512KB AMD socketed flash was moved to 0xfe000000. 16099 16100 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16101 Signed-off-by: Stefan Roese <sr@denx.de> 16102 16103commit d4d2e79bb433fc7ec18c68cc49cc6b7433d1320c 16104Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 16105Date: Thu Jul 16 22:13:57 2009 +0200 16106 16107 ppc4xx: Cleanup PLU405 board code 16108 16109 Some Coding style cleanup (braces, whitespaces, long lines) 16110 16111 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 16112 Signed-off-by: Stefan Roese <sr@denx.de> 16113 16114commit b209a114829dc8a7a0e39a9335b6e4aebf9742cb 16115Author: Dirk Eibach <eibach@gdsys.de> 16116Date: Fri Jul 17 14:16:40 2009 +0200 16117 16118 ppc4xx: Add DL-Vision 405EP board support 16119 16120 Board support for the Guntermann & Drunck DL-Vision. 16121 16122 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 16123 Signed-off-by: Stefan Roese <sr@denx.de> 16124 16125commit 9b1b8c8a1bf52e9b65e1958e5205838576066cbc 16126Author: Dirk Eibach <eibach@gdsys.de> 16127Date: Fri Jul 10 14:47:32 2009 +0200 16128 16129 ppc4xx: Fix missing freqOPB for 405EP 16130 16131 In cpu/ppc4xx/speed.c initialization of sysInfo->freqOPB for 405EP was 16132 left out for no obvious reason. 16133 16134 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 16135 Signed-off-by: Stefan Roese <sr@denx.de> 16136 16137commit 0a371ca08908c9b2a58171223a79bffea1f7c6f5 16138Author: Stefan Roese <sr@denx.de> 16139Date: Tue Jul 14 15:53:08 2009 +0200 16140 16141 ppc4xx: Fix TLB reset problem with recent 44x images 16142 16143 Patch d873133f [ppc4xx: Add Sequoia RAM-booting target] broke "normal" 16144 booting on some 44x platforms. This breakage is only noticed in some 16145 cases while powercycling. As it seems, the code in question in start.S 16146 didn't invalidate TLB #0. This makes sense since this TLB is used for 16147 the bootrom mapping. With the patch mentioned above even TLB #0 got 16148 invalidated resulting in an error later on. 16149 16150 This patch now fixes this issue by only invalidating TLB #0 in the RAM- 16151 booting case. 16152 16153 Tested succesfully on Sequoia and Canyonlands. 16154 16155 Signed-off-by: Stefan Roese <sr@denx.de> 16156 Cc: Dirk Eibach <Eibach@gdsys.de> 16157 16158commit 44259bb9e696d22bf1773181111855a29f00cf33 16159Author: Prafulla Wadaskar <prafulla@marvell.com> 16160Date: Fri Jul 17 19:56:30 2009 +0530 16161 16162 usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root 16163 16164 This change is cheked in Linux source and fix found to be in sync. 16165 This patch is tested for USB host interface on Kirkwood based 16166 Sheevaplug platform (ARM little endian board) 16167 16168 Risk: the impact of this patch is not validated on big endian board. 16169 This need to be checked... 16170 16171 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 16172 Signed-off-by: Remy Bohmer <linux@bohmer.net> 16173 16174commit 28958b8bea4c66629c5a22fd3c8b0d49df90383d 16175Author: Wolfgang Denk <wd@denx.de> 16176Date: Thu Jul 23 22:23:23 2009 +0200 16177 16178 Coding Style cleanup; update CHANGELOG. 16179 16180 Signed-off-by: Wolfgang Denk <wd@denx.de> 16181 16182commit 2632c008e2c2cd61fefb622ed671ea3e6bd2e2a6 16183Author: Mike Frysinger <vapier@gentoo.org> 16184Date: Tue Jul 21 22:59:36 2009 -0400 16185 16186 autoconf.mk: include before config.mk for top level files 16187 16188 By including autoconf.mk before config.mk, all top level files can use any 16189 config options it sets up (like <arch>_config.mk) or the Makefile itself 16190 without being forced to use lazy evaluation. 16191 16192commit c01171eaecc963d2c1f56a0984a0cbcdd8a3ab3c 16193Author: Mark Jackson <mpfj-list@mimc.co.uk> 16194Date: Tue Jul 21 11:30:53 2009 +0100 16195 16196 Remove static declaration from gunzip_bmp() 16197 16198 This patch removes the static declaration from gunzip_bmp() 16199 16200 Without it, the gunzip_bmp() function is not visible to 16201 common/lcd.c and fails to compile with an error. 16202 16203 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 16204 16205commit 2d4a43e230a3c8bfd03b9beaa0eb2a95e779c03b 16206Author: Peter Tyser <ptyser@gmail.com> 16207Date: Mon Jul 20 21:51:38 2009 -0500 16208 16209 cmd_tsi148: General cleanup 16210 16211 - Fix command help message 16212 - Disable DEBUG by default 16213 - Fix whitespace issues 16214 - Fix lines > 80 characters 16215 16216 Signed-off-by: Peter Tyser <ptyser@gmail.com> 16217 Acked-by: Stefan Roese <sr@denx.de> 16218 16219commit 9aef73888509d10193615ee5cd9cf439ca44e937 16220Author: Mike Frysinger <vapier@gentoo.org> 16221Date: Sun Jul 19 15:17:03 2009 -0400 16222 16223 unify HOST_CFLAGS and HOSTCFLAGS 16224 16225 The top build system sets up HOSTCFLAGS a bit and exports it, but other 16226 places use HOST_CFLAGS instead. Unify the two as HOSTCFLAGS so that the 16227 values stay in sync. 16228 16229 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 16230 16231commit 2e9393f500065f940e5e4ac7fe375e4c0b77b936 16232Author: Wolfgang Denk <wd@denx.de> 16233Date: Thu Jul 23 21:16:59 2009 +0200 16234 16235 Update CHANGELOG 16236 16237 Signed-off-by: Wolfgang Denk <wd@denx.de> 16238 16239commit e3b39f84e974df70065fa248f0f63993b1708c9d 16240Author: André Schwarz <andre.schwarz@matrix-vision.de> 16241Date: Fri Jul 17 14:50:24 2009 +0200 16242 16243 update config for mvBC-P (MPC5200) 16244 16245 This patch adds I2C support for mvBC-P and defines flash layout 16246 matching the shipped product. 16247 16248 Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de> 16249 16250commit cb6d0b72c2c4f13c0075a7ae92e11682ec94a311 16251Author: Kumar Gala <galak@kernel.crashing.org> 16252Date: Mon Jul 13 09:24:00 2009 -0500 16253 16254 ahci: Fix gcc 4.4 compiler warning 16255 16256 ahci.c: In function 'ata_scsiop_read_capacity10': 16257 ahci.c:616: warning: dereferencing type-punned pointer will break strict-aliasing rules 16258 16259 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16260 16261commit 51d91e1a253c97713c7f3e5c0b910a4db4979283 16262Author: Kumar Gala <galak@kernel.crashing.org> 16263Date: Mon Jul 13 09:23:59 2009 -0500 16264 16265 drivers/bios_emulator: Fix gcc 4.4 compiler warning 16266 16267 biosemu.c: In function 'BE_setVGA': 16268 biosemu.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules 16269 16270 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16271 16272commit f97ec30bb3c5a4a456159eb2b75b3bc68772bf2a 16273Author: Detlev Zundel <dzu@denx.de> 16274Date: Mon Jul 13 16:01:19 2009 +0200 16275 16276 Re-add support for image type 'Standalone Program' 16277 16278 Support for this type was lost during the bootm refactoring. 16279 16280 Signed-off-by: Detlev Zundel <dzu@denx.de> 16281 16282commit ca95c9df0280f40e8e4befadbaae21fa67d92331 16283Author: Detlev Zundel <dzu@denx.de> 16284Date: Mon Jul 13 16:01:18 2009 +0200 16285 16286 Add error checking for unsupported OS types. 16287 16288 Signed-off-by: Detlev Zundel <dzu@denx.de> 16289 16290commit 982adfc610669482a32127282fe489857a92cfe3 16291Author: Peter Tyser <ptyser@xes-inc.com> 16292Date: Fri Jul 10 18:46:10 2009 -0500 16293 16294 ppc: Unlock cache-as-ram in a consistent manner 16295 16296 Previously, non-e500 architectures only unlocked their data cache which 16297 was used as early RAM when booting to Linux using the "bootm" command. 16298 This change causes all PPC boards with CONFIG_SYS_INIT_RAM_LOCK defined 16299 to unlock their data cache during U-Boot's initialization. This 16300 improves U-Boot performance and provides a common cache state when 16301 booting to different OSes. 16302 16303 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16304 16305commit b201171f2b4d509f3ad510b214bee70ff902e3d6 16306Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com> 16307Date: Thu Jul 23 04:54:45 2009 -0400 16308 16309 zlib: updated to v.1.2.3 16310 16311 This patch updates zlib to the latest stable version. 16312 16313 Only relevant zlib parts were ported to u-boot tree, as was done for 16314 the previously used version of zlib (0.95). New zlib gives faster 16315 inflate performance and other improvements, see www.zlib.net 16316 16317 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com> 16318 Reviewed-by: Angelo Castello <angelo.castello@st.com> 16319 16320 Edited commit message 16321 16322 Signed-off-by: Wolfgang Denk <wd@denx.de> 16323 16324commit 97cfe86163505ea18e7ff7b71e78df5bb03dad57 16325Author: Robin Getz <rgetz@blackfin.uclinux.org> 16326Date: Tue Jul 21 12:15:28 2009 -0400 16327 16328 Save server's MAC address in environment 16329 16330 Linux's netconsole works much better when you can pass it the MAC address of 16331 the server. (otherwise it just uses broadcast, which everyone else on my 16332 network complains about :) 16333 16334 This sets the env var "serveraddr" (to match ethaddr), so that you can pass 16335 it to linux with whatever bootargs you want to.... 16336 16337 addnetconsole=set bootargs $(bootargs) netconsole=@$(ipaddr)/eth0,@$(serverip)/$(serveraddr) 16338 16339 Signed-of-by: Robin Getz <rgetz@blackfin.uclinux.org> 16340 16341 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16342 16343commit 0b23fb368d08c9669fac647971ff249c3f9fee8f 16344Author: Ilya Yanok <yanok@emcraft.com> 16345Date: Tue Jul 21 19:32:21 2009 +0400 16346 16347 fec_mxc: driver for FEC ethernet controller on i.MX27 16348 16349 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 16350 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16351 16352commit 0544c63681d2ea3607faf374e9c56f101e365b42 16353Author: Alessio Centazzo <centazzo@gmail.com> 16354Date: Sat Jul 11 11:56:06 2009 -0700 16355 16356 ppc4xx: Fixed compilation warning in 4xx_enet.c 16357 16358 This patch fixes a compilation warning for some Ethernet PHY-less 16359 PPC4xx platforms (440SPE based ones) and a potential compilation 16360 error for 440SP platforms (use of undefined 'ethgroup' variable). 16361 In the original code and in case of 440SPE platforms, 'ethgroup' 16362 is initialized to -1 and never modified. Later in the function, 16363 within an #ifdef statement, an 'if statement' executes code only 16364 if 'ethgroup' is set to 4, therefore it is harmless to avoid 16365 executing the 'if statement' by removing the CONFIG_440SPE from 16366 the affected #ifdefs. In case of 440SP platforms with on-board 16367 Ethernet PHY, 'ethgroup' is undefined but used (there are not such 16368 platforms in the repository yet). All other architectures are not 16369 affected by this change. 16370 16371 Signed-off-by: Alessio Centazzo acpatin@yahoo.com 16372 Acked-by: Stefan Roese <sr@denx.de> 16373 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16374 16375commit 09133f8580f0106429ba3600f1855bd3577ae58b 16376Author: Michael Zaidman <michael.zaidman@gmail.com> 16377Date: Tue Jul 14 23:37:12 2009 +0300 16378 16379 DHCP regression on 2009-06 16380 16381 Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06 16382 by initializing our IP addr to 0 in order to accept any IP addr 16383 assigned to us by the DHCP/BOOTP/RARP server. 16384 16385 Ack-by: Robin Getz <rgetz@blackfin.uclinux.org> 16386 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com> 16387 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16388 16389commit 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523 16390Author: Prafulla Wadaskar <prafulla@marvell.com> 16391Date: Thu Jul 16 20:58:02 2009 +0530 16392 16393 net: phy: bugfixes: mv88E61xx multichip addressing support 16394 16395 With these fixes, this driver works properly for multi chip 16396 addressging mode 16397 16398 Bugfixes: 16399 1. Build error fixed for function mv88e61xx_busychk_multic-fixed 16400 2. PHY dev address error detection- fixed 16401 3. wrong busy bit was refered in function mv88e61xx_busychk -fixed 16402 4. invalid data read ptr was refered for RD_PHY in case of 16403 multichip addressing mode -fixed 16404 16405 The Multichip Address mode is tested with RD6281A board having 16406 MV88E6165 switch on it 16407 16408 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 16409 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16410 16411commit 16025ea45539219f2a7c750c6f0ae983ea5c2737 16412Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 16413Date: Wed Jul 8 13:05:11 2009 +0200 16414 16415 arm: Kirkwood: Check the error summary bit for error detection 16416 16417 The Marvell documentation for the 88f6281 states that the error coding 16418 is only valid if the error summary and last frame bits in the transmit 16419 descriptor status field are set. This patch adds checks for these for 16420 transmit (I would get transmit errors on bootp with the current check, 16421 which I believe are spurious). 16422 16423 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 16424 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16425 16426commit 7b05f5e027b81cd3a9a41c6c6d3fe09c72fa93f6 16427Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 16428Date: Wed Jul 8 13:03:18 2009 +0200 16429 16430 arm: Kirkwood: Fix compiler optimization bug for kwgbe_send 16431 16432 kwgbe_send/recv both have loops waiting for the hardware to set a bit. 16433 GCC 4.3.3 cleverly optimizes the send case to ... a while(1); loop. This 16434 patch uses readl to force a read from device memory. Other volatile 16435 accesses have also been replaced with readl/writel where appropriate 16436 (as per suggestions on the U-boot mailing list). 16437 16438 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 16439 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16440 16441commit 3f6b18ffd94621625de961bc566022b0266790f5 16442Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 16443Date: Thu Jul 2 13:21:22 2009 -0400 16444 16445 MIIPHYBB: Return 0xFFFF if the PHY is not asserting TA. 16446 16447 This patch sets the returned value to 0xFFFF if the PHY does not exist 16448 and does not assert Transfer Acknowledge. A NULL check for the value 16449 pointer is also added for buffer overflow protection. 16450 16451 Without this patch 'mii info' will show 'phantom' devices because the 16452 value will be not be initialized and return with some random value. 16453 16454 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 16455 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16456 16457commit 736fead8fdbf8a8407048bebc373cd551d01ec98 16458Author: Ben Warren <biggerbadderben@gmail.com> 16459Date: Mon Jul 20 22:01:11 2009 -0700 16460 16461 Convert SMC911X Ethernet driver to CONFIG_NET_MULTI API 16462 16463 All in-tree boards that use this controller have CONFIG_NET_MULTI added 16464 Also: 16465 - changed CONFIG_DRIVER_SMC911X* to CONFIG_SMC911X* 16466 - cleaned up line lengths 16467 - modified all boards that override weak function in this driver 16468 - added 16469 16470 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16471 Tested-by: Mike Frysinger <vapier@gentoo.org> 16472 16473commit 3bd0a877b74b9c005ae7cb892480ccedfa308c20 16474Author: Ben Warren <biggerbadderben@gmail.com> 16475Date: Fri Jul 17 00:50:15 2009 -0700 16476 16477 Add warning about upcoming removal of old Ethernet API 16478 16479 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16480 16481commit b7fe25d2a8d1cede401d09e1f9c84f8fe47bdbb1 16482Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 16483Date: Thu Jul 2 16:15:13 2009 +0530 16484 16485 P2020RDB Added support of Vitesse PHYs VSC8641(RGMII) and VSC8221(SGMII) 16486 16487 These PHYs are on P2020RDB platform. 16488 16489 Also revamped Freescale copyright message in drivers/net/tsec.c. 16490 16491 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 16492 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16493 16494commit 1a32bf41881b5dbe3119cb77a33572b4d462cabf 16495Author: Robin Getz <rgetz@blackfin.uclinux.org> 16496Date: Mon Jul 20 14:53:54 2009 -0400 16497 16498 Add DNS support 16499 16500 On 04 Oct 2008 Pieter posted a dns implementation for U-Boot. 16501 16502 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg10216.html 16503 > 16504 > DNS can be enabled by setting CFG_CMD_DNS. After performing a query, 16505 > the serverip environment var is updated. 16506 > 16507 > Probably there are some cosmetic issues with the patch. Unfortunatly I 16508 > do not have the time to correct these. So if anybody else likes DNS 16509 > support in U-Boot and has the time, feel free to patch it in the main tree. 16510 16511 Here it is again - slightly modified & smaller: 16512 - update to 2009-06 (Pieter's patch was for U-Boot 1.2.0) 16513 - README.dns is added 16514 - syntax is changed (now takes a third option, the env var to store 16515 the result in) 16516 - add a random port() function in net.c 16517 - sort Makefile in ./net/Makefile 16518 - dns just returns unless a env var is given 16519 - run through checkpatch, and clean up style issues 16520 - remove packet from stack 16521 - cleaned up some comments 16522 - failure returns much faster (if server responds, don't wait for 16523 timeout) 16524 - use built in functions (memcpy) rather than byte copy. 16525 16526 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org> 16527 Signed-off-by: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl> 16528 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16529 16530commit 88ad3fd91c83a4343b25385fd78fd8e29ebb723f 16531Author: Kim Phillips <kim.phillips@freescale.com> 16532Date: Fri Jul 17 12:17:00 2009 -0500 16533 16534 net: tsec - fix dereferencing type-punned pointer will break strict-aliasing rules warning 16535 16536 fix this gcc 4.4 warning: 16537 16538 tsec.c: In function 'tsec_init': 16539 tsec.c:200: warning: dereferencing type-punned pointer will break strict-aliasing rules 16540 16541 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 16542 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16543 16544commit d9bec9f42ab34383737c8a94429aa02fe76d7946 16545Author: Mike Frysinger <vapier@gentoo.org> 16546Date: Sat Jul 18 21:04:08 2009 -0400 16547 16548 net: rename NetRxPkt to NetRxPacket 16549 16550 The net code is mostly consistent in using 'Packet' rather than 'Pkt', so 16551 rename the minor detractor to follow suite. 16552 16553 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 16554 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16555 16556commit 88a4c2e77cd5674db745d0c2ebbad68c9baf760c 16557Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 16558Date: Thu Jun 25 16:33:04 2009 +0900 16559 16560 sh: sh_eth: Remove garbage from printf 16561 16562 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 16563 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 16564 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16565 16566commit 2ea20efa47da9d98ff38223ff51dea5439ad8708 16567Author: Andreas Pretzsch <apr@cn-eng.de> 16568Date: Thu Jul 9 21:50:05 2009 +0200 16569 16570 smc911x: add support for LAN9221 16571 16572 Signed-off-by: Andreas Pretzsch <apr@cn-eng.de> 16573 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16574 16575commit 7168eba729b9e6d730db7cd1028767f7b1a6128b 16576Author: David Brownell <david-b@pacbell.net> 16577Date: Tue Jun 9 11:14:24 2009 -0700 16578 16579 rm9200 ethernet driver: board-specific quirk (csb337) 16580 16581 CSB337 boards originally shipped with MicroMonitor, not U-Boot; 16582 and with a version using a different convention for recording 16583 Ethernet addresses than anyone else. To avoid breaking Linux 16584 when it uses U-Boot, have it use the same convention on that 16585 hardware. 16586 16587 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 16588 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 16589 16590commit 57215cd2e59fd403248df8f2f195e382900d5fc2 16591Author: Heiko Schocher <hs@denx.de> 16592Date: Thu Jul 16 09:58:31 2009 +0200 16593 16594 arm, kirkwood: added kw_gpio_set_valid() in gpio.h 16595 16596 Signed-off-by: Heiko Schocher <hs@denx.de> 16597 16598commit ec16441085f471c03a8c0909579463e31e5b947a 16599Author: Dieter Kiermaier <dk-arm-linux@gmx.de> 16600Date: Mon Jun 29 14:45:08 2009 +0200 16601 16602 Kirkwood: add Marvell Kirkwood gpio driver 16603 16604 Signed-off-by: Dieter Kiermaier <dk-arm-linux@gmx.de> 16605 Acked-by: Prafulla Wadaskar <prafulla@marvell.com> 16606 Tested-by: Heiko Schocher <hs@denx.de> 16607 16608commit 688b6a0ff2dcbb0c7e63ef63cbbcc291f14f321f 16609Author: Heiko Schocher <hs@denx.de> 16610Date: Thu Jul 16 09:59:10 2009 +0200 16611 16612 arm, kirkwood: added KW_TWSI_BASE in kirkwood.h 16613 16614 Signed-off-by: Heiko Schocher <hs@denx.de> 16615 16616commit fbc8365ad7ab0afd4143bdbffab2fd0b24df004f 16617Author: Prafulla Wadaskar <prafulla@marvell.com> 16618Date: Thu Jul 16 21:02:24 2009 +0530 16619 16620 Marvell RD6281A Board support 16621 16622 This is Marvell's 88F6281_A0 based reference design board 16623 16624 This patch is tested for- 16625 1. Boot from DRAM/NAND flash/NFS 16626 2. File transfer using tftp and loadb 16627 3. NAND flash read/write/erase 16628 16629 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 16630 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 16631 16632commit 2906e6d654fcc7f2451fde225e4e8b3f20c9555f 16633Author: Piotr Ziecik <kosmo@semihalf.com> 16634Date: Fri Jul 17 16:35:19 2009 +0200 16635 16636 api: Fix broken build on ARM. 16637 16638 This patch fixes broken build introduced by commit 16639 84bf7ca522e94ec402a1264b01971b924b7e268f (api: remove un-needed 16640 ifdef CONFIG_API already handle by the Makefile). 16641 16642 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com> 16643 16644commit 48677a1ef5f82adca49145a7baf11ece77f51945 16645Author: Wolfgang Denk <wd@denx.de> 16646Date: Wed Jul 22 23:53:23 2009 +0200 16647 16648 Fix "ld: cannot find -lstubs" build error 16649 16650 Commit 1bc15386 moved the examples/ to examples/standalone but failed 16651 to adapt the Makefiles that need to link against libstubs.a 16652 16653 Signed-off-by: Wolfgang Denk <wd@denx.de> 16654 Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16655 16656commit ae71121a111ddf9dd057cacbbdd0f51054be428a 16657Author: Wolfgang Denk <wd@denx.de> 16658Date: Sat Jul 18 20:47:36 2009 +0200 16659 16660 at91cap9adk: fix #ifdef/#endif pairing 16661 16662 The #ifdef/#endif pairing in this file was obviously messed up. 16663 16664 Signed-off-by: Wolfgang Denk <wd@denx.de> 16665 16666commit 6b96a20d512b04a808438553874c00cf40812c44 16667Author: Minkyu Kang <mk7.kang@samsung.com> 16668Date: Mon Jul 20 11:40:01 2009 +0900 16669 16670 ARM Cortex A8: Move OMAP3 specific reset handler 16671 16672 Because of the reset_cpu is soc specific, should be move to soc 16673 16674 Cc: Dirk Behme <dirk.behme@googlemail.com> 16675 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 16676 16677commit 048e7efe91f66094f868281c12e488ce2bae8976 16678Author: Kumar Gala <galak@kernel.crashing.org> 16679Date: Wed Jul 22 10:12:39 2009 -0500 16680 16681 85xx/86xx: Replace in8/out8 with in_8/out_8 on FSL boards 16682 16683 The pixis code used in8/out8 all over the place. Replace it with 16684 in_8/out_8 macros. 16685 16686 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16687 16688commit 0a6d0c6320b77bd6572393a93e6b8ccdf39c7100 16689Author: Peter Tyser <ptyser@xes-inc.com> 16690Date: Tue Jul 21 13:51:08 2009 -0500 16691 16692 xpedite5370: Enable NAND command support 16693 16694 Use the MPC8572's eLBC to access 1 GB (or greater) onboard NAND flash 16695 via the 'nand' command. 16696 16697 Previously, the XPedite5370's NAND chip selects were properly 16698 configured, but NAND support was not enabled. 16699 16700 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16701 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16702 16703commit 39121c0896a6760bd436d88c17892f49a97902d0 16704Author: Peter Tyser <ptyser@xes-inc.com> 16705Date: Tue Jul 21 13:51:07 2009 -0500 16706 16707 xes: Increase CONFIG_SYS_BOOTM_LEN to 16MB 16708 16709 Increasing CONFIG_SYS_BOOTM_LEN from 8 MB to 16 MB is necessary to 16710 support uncompressing images larger than 8 MB when using the bootm 16711 command. 16712 16713 Note that recent Linux kernels for the 85xx and 86xx map greater than 16714 16MB of memory on bootup, but we use 16MB to maintain compatibility with 16715 older Linux kernels for now. 16716 16717 Signed-off-by: Nate Case <ncase@xes-inc.com> 16718 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16719 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16720 16721commit 58f31b602dfd52eb7836ab82caa587514e046f02 16722Author: Peter Tyser <ptyser@xes-inc.com> 16723Date: Sun Jul 19 19:17:41 2009 -0500 16724 16725 xpedite5370: Fix I2C GPIO initialization typo 16726 16727 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16728 Acked-by: Heiko Schocher<hs@denx.de> 16729 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16730 16731commit 5ff821006c6e7647d183ea95817044943bb22e7e 16732Author: Peter Tyser <ptyser@xes-inc.com> 16733Date: Sun Jul 19 19:17:40 2009 -0500 16734 16735 xpedite5200,5370: Use buffered NOR flash writes 16736 16737 Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly 16738 improve NOR flash write speeds 16739 16740 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16741 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16742 16743commit d9c147f371800a479a507a816b2fe572c97da197 16744Author: Peter Tyser <ptyser@xes-inc.com> 16745Date: Fri Jul 17 10:14:48 2009 -0500 16746 16747 85xx, 86xx: Add common board_add_ram_info() 16748 16749 Previously, 85xx and 86xx boards would display DRAM information on 16750 bootup such as: 16751 16752 ... 16753 I2C: ready 16754 DRAM: 16755 Memory controller interleaving enabled: Bank interleaving! 16756 2 GB 16757 FLASH: 256 MB 16758 ... 16759 16760 This patch moves the printing of the DRAM controller configuration to a 16761 common board_add_ram_info() function which prints out DDR type, width, 16762 CAS latency, and ECC mode. It also makes the DDR interleaving 16763 information print out in a more sane manner: 16764 16765 ... 16766 I2C: ready 16767 DRAM: 2 GB (DDR2, 64-bit, CL=4, ECC on) 16768 DDR Controller Interleaving Mode: bank 16769 FLASH: 256 MB 16770 ... 16771 16772 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16773 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16774 16775commit 12a440ae6d09445140f1a0c2023dba76a9f1a617 16776Author: Peter Tyser <ptyser@xes-inc.com> 16777Date: Fri Jul 17 10:14:47 2009 -0500 16778 16779 tqm85xx: Remove board_add_ram_info() 16780 16781 This is in preparation for adding one common 8xxx board_add_ram_info() 16782 function for all 8xxx boards 16783 16784 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16785 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16786 16787commit ed2c9488bbe389b7b25cada1e42bdae5d0976327 16788Author: Peter Tyser <ptyser@xes-inc.com> 16789Date: Fri Jul 17 10:14:46 2009 -0500 16790 16791 xes: Remove 8xxx board_add_ram_info() function 16792 16793 This is in preparation for adding one common 8xxx board_add_ram_info() 16794 fuction for all 8xxx boards 16795 16796 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16797 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16798 16799commit e7ee23ec1788d8cf269a4cf6b9cd3722cbc7d592 16800Author: Peter Tyser <ptyser@xes-inc.com> 16801Date: Fri Jul 17 10:14:45 2009 -0500 16802 16803 86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields 16804 16805 Rename sdram_mode_1 to sdram_mode and sdram_cfg_1 to sdram_cfg to match 16806 the 86xx user's manual and other Freescale architectures 16807 16808 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16809 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16810 16811commit f6155c6fbb1d85f517b7c160570f0995ef14c43f 16812Author: Roy Zang <tie-fei.zang@freescale.com> 16813Date: Thu Jul 9 10:05:48 2009 +0800 16814 16815 85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards 16816 16817 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 16818 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16819 16820commit 6bb5b412291177e6edd42f9a80e5c5afe57a6a0f 16821Author: Kumar Gala <galak@kernel.crashing.org> 16822Date: Tue Jul 14 22:42:01 2009 -0500 16823 16824 85xx: Report which "bank" of NOR flash we are booting from on FSL boards 16825 16826 The p2020DS, MPC8536DS, MPC8572DS, MPC8544DS boards are capable of 16827 swizzling the upper address bits of the NOR flash we boot out of which 16828 creates the concept of "virtual" banks. This is useful in that we can 16829 flash a test of image of u-boot and reset to one of the virtual banks 16830 while still maintaining a working image in "bank 0". 16831 16832 The PIXIS FPGA exposes registers on LBC which we can use to determine 16833 which "bank" we are booting out of (as well as setting which bank to 16834 boot out of). 16835 16836 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16837 16838commit 9af9c6bdc16da53772c56b1a79c2c91701fe94e6 16839Author: Kumar Gala <galak@kernel.crashing.org> 16840Date: Wed Jul 15 13:45:00 2009 -0500 16841 16842 86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN 16843 16844 The MPC8641HPCN board is capable of swizzling the upper address bit of 16845 the NOR flash we boot out of which creates the concept of "virtual" 16846 banks. This is useful in that we can flash a test of image of u-boot 16847 and reset to one of the virtual banks while still maintaining a 16848 working image in "bank 0". 16849 16850 The PIXIS FPGA exposes registers on LBC which we can use to determine 16851 which "bank" we are booting out of (as well as setting which bank to 16852 boot out of). 16853 16854 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16855 16856commit caf72ff329759b4da71352ab098537c7698c0e9f 16857Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 16858Date: Tue Jul 21 10:45:49 2009 +0200 16859 16860 Refresh LZMA-lib to v4.65 16861 16862 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 16863 16864commit 70ebf31633f372a24505e47846b2628e8435ea37 16865Author: Wolfgang Denk <wd@denx.de> 16866Date: Fri Jul 17 23:35:29 2009 +0200 16867 16868 AT91: factor out ROUND() macro 16869 16870 A large number of boards (all AT91 based) duplicated the ROUND() 16871 macro in their board specific config files. Add the definition to 16872 include/common.h and clean up the board config files. 16873 16874 Signed-off-by: Wolfgang Denk <wd@denx.de> 16875 16876commit 89188a62333c0841a7166783d2ebdd39d7044eb2 16877Author: Kumar Gala <galak@kernel.crashing.org> 16878Date: Wed Jul 15 08:54:50 2009 -0500 16879 16880 85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards 16881 16882 We have always mapped at least 16M in the kernel and we have seen cases 16883 with new kernel features that a kernel image needs more than 8M of 16884 memory. 16885 16886 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 16887 16888commit d4abc757c26c531293f5bbc4262ade44a317eec9 16889Author: Peter Tyser <ptyser@xes-inc.com> 16890Date: Mon Jul 20 19:02:21 2009 -0500 16891 16892 Move api_examples to examples/api 16893 16894 Also add a rule to remove demo.bin which was previously leftover 16895 after a "make clean" 16896 16897 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16898 16899commit af1d7d984a23a0faa1f436ebfeb55c876b1a99e1 16900Author: Heiko Schocher <hs@denx.de> 16901Date: Tue Jul 21 06:37:28 2009 +0200 16902 16903 83xx, kmeter: fix compile error 16904 16905 CONFIG_SYS_MALLOC_LEN is defined in the board config, and 16906 the keymile-common.h, which collects common options used 16907 by all keymile-boards. This results in a compile error 16908 when compiling the kmeter1 board. So remove this define 16909 in the board config file. 16910 16911 Signed-off-by: Heiko Schocher <hs@denx.de> 16912 16913commit 39df00d9aecfb465b9eec9af593f9b763fb5209a 16914Author: Heiko Schocher <hs@denx.de> 16915Date: Thu Jul 9 12:04:26 2009 +0200 16916 16917 i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c 16918 16919 This patch adds the possibility to call a board specific 16920 i2c bus reset routine for the fsl_i2c bus driver, and adds 16921 this option for the keymile kmeter1 board. 16922 16923 The deblock sequence for this board is implemented and 16924 tested in the following way: 16925 16926 CR = 0x20 (release SDA and SCL pin) 16927 CR = 0xa0 (start read) 16928 dummy read 16929 dummy read 16930 if 2. dummy read == 0x00 16931 3. dummy read 16932 16933 CR = 0x80 (SDA and SCL now 1 SR = 0x86) 16934 CR = 0x00 (Modul reset SR=0x81) 16935 CR = 0x80 (SDA and SCL = 1, SR = 0x81) 16936 16937 Signed-off-by: Heiko Schocher <hs@denx.de> 16938 16939commit 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0 16940Author: Peter Tyser <ptyser@xes-inc.com> 16941Date: Fri Jul 10 11:03:19 2009 -0500 16942 16943 Move examples/ to examples/standalone 16944 16945 The current files in examples are all standalone application examples, 16946 so put them in their own subdirectory for organizational purposes 16947 16948 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16949 16950commit b220c64d86f7c705a183302c3b50076d7e5d876c 16951Author: Peter Tyser <ptyser@xes-inc.com> 16952Date: Fri Jul 10 11:03:15 2009 -0500 16953 16954 Move architecture specific config.mk files into subdirs 16955 16956 This cleans up U-Boot's toplevel directory a bit and makes the 16957 architecture 'config.mk' file naming and location similar to board 16958 and cpu 'config.mk' files 16959 16960 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 16961 16962commit 082becd0d546399637fa94fdf9f1730a0f7bf348 16963Author: Po-Yu Chuang <ratbert@faraday-tech.com> 16964Date: Fri Jul 10 18:25:34 2009 +0800 16965 16966 Add "tags" to .gitignore file. 16967 16968 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com> 16969 Signed-off-by: Wolfgang Denk <wd@denx.de> 16970 16971commit dc71b248ef0d5e12b19f33c6efb873e31df91fa9 16972Author: Heiko Schocher <hs@denx.de> 16973Date: Thu Jul 9 12:04:18 2009 +0200 16974 16975 powerpc: updates for the keymile boards 16976 16977 - CONFIG_SYS_MAX_I2C_BUS changed to 1 16978 We use only one I2C hardwarecontroller on this boards, so 16979 change the CONFIG_SYS_MAX_I2C_BUS to 1. 16980 - common: dont print errormsg if second IVM Block lacks. 16981 - 82xx, mgcoge: fix double mtdpart entry in environment 16982 - 82xx, mgcoge: activate on second Flash the second bank. 16983 - common: CONFIG_ENV_SIZE 0x4000 for all keymile boards 16984 - common: Change malloc size to 1MByte for all Keymile boards 16985 We need a bigger malloc area for the environment support (128k) 16986 on some Keymile boards (kmeter1) and the upcoming UBI support. 16987 Change it to 1MB for all Keymile boards to be on the save side. 16988 Also define CONFIG_SYS_64BIT_VSPRINTF which is needed for 16989 UBI/UBIFS support. 16990 - Add UBI support to all Keymile boards 16991 - change manner of writing "/localbus/ranges" node 16992 instead of writting the complete "/localbus/ranges" node 16993 before booting Linux, only update the ranges entries 16994 which gets dynamical detected (size of flashes). 16995 This is needed, because keymile adds in the DTS 16996 "/localbus/ranges" node entries, which u-boot must 16997 not overwrite/delete. 16998 - kmeter, mgcoge: define 2 seperate regions needed for the Intel P30 chips 16999 The Intel P30 chip has 2 non-identical chips on 17000 one die, so we need to define 2 seperate regions
17001 that are scanned by physmap_of independantly. 17002 - kmeter1: Add MTD concat support to Keymile boards 17003 - 82xx, mgcoge: add "unlock=yes" to default environment 17004 - added CONFIG_MTD_DEVICE to get in sync with mainline code 17005 17006 Signed-off-by: Heiko Schocher <hs@denx.de> 17007 Signed-off-by: Stefan Roese <sr@denx.de> 17008 17009commit f14d81050a9e0fa57aedb1bc746c60a07c1ad67f 17010Author: galak <galak@ducky.am.freescale.net> 17011Date: Tue Jul 7 15:53:21 2009 -0500 17012 17013 fsl_sata: Fix compiler warnings shown by gcc-4.4 17014 17015 Update fsl_sata to use common structures instead of casting 17016 back and forth between the fsl specific ones and the common ones 17017 (which are identical). 17018 17019 fsl_sata.c: In function 'scan_sata': 17020 fsl_sata.c:550: warning: dereferencing pointer 'cfis' does break strict-aliasing rules 17021 fsl_sata.c:549: warning: dereferencing pointer 'cfis' does break strict-aliasing rules 17022 fsl_sata.c:548: warning: dereferencing pointer 'cfis' does break strict-aliasing rules 17023 fsl_sata.c:545: note: initialized from here 17024 fsl_sata.c:592: warning: dereferencing pointer 'cfis' does break strict-aliasing rules 17025 fsl_sata.c:590: warning: dereferencing pointer 'cfis' does break strict-aliasing rules 17026 fsl_sata.c:588: warning: dereferencing pointer 'cfis' does break strict-aliasing rules 17027 fsl_sata.c:586: warning: dereferencing pointer 'cfis' does break strict-aliasing rules 17028 fsl_sata.c:579: warning: dereferencing pointer 'cfis' does break strict-aliasing rules 17029 ... 17030 17031 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 17032 17033commit 20938e54a207472a090f04f20f30c9e32b14137e 17034Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 17035Date: Tue Jul 7 15:58:51 2009 +0200 17036 17037 Add unaligned.h for arm 17038 17039 This patch adds unaligned.h for ARM (needed to build with LZO 17040 compression). The file is taken from the linux kernel, but includes 17041 u-boot headers instead. 17042 17043 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 17044 Acked-by: Stefan Roese <sr@denx.de> 17045 17046commit 433ea8abd6adfae3138dd4ce238237a037e1e537 17047Author: Peter Tyser <ptyser@xes-inc.com> 17048Date: Sun Jul 19 19:17:42 2009 -0500 17049 17050 Remove last remanants of unused CONFIG_I2C_CMD_TREE 17051 17052 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 17053 17054commit f6ca3b70949790ab5438d6c9a592216cc3616110 17055Author: Andrzej Wolski <awolski@poczta.fm> 17056Date: Fri Jul 17 22:26:54 2009 +0200 17057 17058 ubi: help message correction 17059 17060 Fix incorrect information about size units and correct typo. 17061 17062 Signed-off-by: Andrzej Wolski <awolski@poczta.fm> 17063 Signed-off-by: Stefan Roese <sr@denx.de> 17064 17065commit 22f2017c31bc682e9b15612a5c2580ab5b84418e 17066Author: Peter Tyser <ptyser@xes-inc.com> 17067Date: Sun Jul 19 19:17:42 2009 -0500 17068 17069 Remove last remanants of unused CONFIG_I2C_CMD_TREE 17070 17071 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 17072 17073commit f99a292aa6083057f5db8283d2ce4a2be22b8856 17074Author: Andrzej Wolski <awolski@poczta.fm> 17075Date: Fri Jul 17 22:26:54 2009 +0200 17076 17077 ubi: help message correction 17078 17079 Fix incorrect information about size units and correct typo. 17080 17081 Signed-off-by: Andrzej Wolski <awolski@poczta.fm> 17082 Signed-off-by: Stefan Roese <sr@denx.de> 17083 17084commit b86b85e2611d57d834795a92453431a1a340c3c9 17085Author: Ilya Yanok <yanok@emcraft.com> 17086Date: Mon Jun 29 17:53:16 2009 +0400 17087 17088 mmc: set bus width to 1 and clock to minimum early during initialization 17089 17090 We need to switch back to 1-bit before initialization or SD 2.0 cards 17091 will fail to send SCR if we've switched to 4-bit already. 17092 17093 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 17094 17095commit cff80f2cd12bf9767509b5334ecfc90cd7de5502 17096Author: Shinya Kuribayashi <skuribay@pobox.com> 17097Date: Sat Jun 20 19:14:33 2009 +0900 17098 17099 config.mk: Remove unused HPATH 17100 17101 This variable is not unused anywhere. 17102 17103 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com> 17104 17105commit a781de12700e2cb3d3011fc83b47f7dd8cc3c154 17106Author: Grzegorz Bernacki <gjb@semihalf.com> 17107Date: Wed Jun 17 16:20:14 2009 +0200 17108 17109 digsy mtc: Enable command line history. 17110 17111 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 17112 17113commit 37566090766d61beef70c62986b90749920255d8 17114Author: Mike Frysinger <vapier@gentoo.org> 17115Date: Thu Jul 2 19:23:25 2009 -0400 17116 17117 compiler.h: unify system ifdef cruft here 17118 17119 Shove a lot of the HOSTCC and related #ifdef checking crap into the new 17120 compiler.h header so that we can keep all other headers nice and clean. 17121 17122 Also introduce custom uswap functions so we don't have to rely on the non 17123 standard implementations that a host may (or may not in the case of OS X) 17124 provide. This allows mkimage to finally build cleanly on an OS X system. 17125 17126 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17127 17128commit 2a2ed845c085eb093b69fa6382fcf7534bb1f4b0 17129Author: Kim Phillips <kim.phillips@freescale.com> 17130Date: Mon Jun 15 11:50:40 2009 -0500 17131 17132 common: fix 'dummy' is used uninitialized in this function warning 17133 17134 fix this gcc 4.4 warning: 17135 17136 xyzModem.c: In function 'xyzModem_stream_open': 17137 xyzModem.c:564: warning: 'dummy' is used uninitialized in this function 17138 17139 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 17140 17141commit 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460 17142Author: Mike Frysinger <vapier@gentoo.org> 17143Date: Sun Jun 14 23:33:14 2009 -0400 17144 17145 push CROSS_COMPILE out to $(ARCH)_config.mk 17146 17147 Each arch should handle setting a proper default CROSS_COMPILE value in 17148 their own config.mk file rather than having to maintain a large ugly list 17149 in the Makefile. By using conditional assignment, we don't have to worry 17150 about the variable already being set (env/cmdline/etc...). 17151 17152 The common config.mk file takes care of exporting CROSS_COMPILE already, 17153 and while a few variables (toolchain ones) utilize CROSS_COMPILE before 17154 including the arch config.mk, they do so with deferred assignment. 17155 17156 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17157 17158commit 60a3f404acbf8238a3138fe1f80a6bac75da4582 17159Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17160Date: Sat Jun 13 12:55:37 2009 +0200 17161 17162 malloc.h: protect it against multiple include 17163 17164 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17165 17166commit 7640f41988a456a0b1f05263d2e2dc5cd7d93984 17167Author: Wolfgang Denk <wd@denx.de> 17168Date: Sun Jul 19 19:37:24 2009 +0200 17169 17170 Fix boards broken after removal of legacy NAND and DoC support 17171 17172 Commit 2419169f removed support for legacy NAND and disk on chip but 17173 missed to update the code for a few boards. This patch fixes the 17174 resulting build issues. 17175 17176 Signed-off-by: Wolfgang Denk <wd@denx.de> 17177 17178commit 1a4664b53aaf23687b52d64b94be06a9aa260b86 17179Author: Wolfgang Denk <wd@denx.de> 17180Date: Sun Jul 19 19:32:37 2009 +0200 17181 17182 cmd_flash.c: fix fix compile error for boards with DataFlash 17183 17184 Commit 5669ed45 ("cmd_flash.c: fix warning: unused variable 17185 'addr_first'/'addr_last'") changed the #ifdef logic areound the 17186 declaration of these variables and missed a combination of settings 17187 of HAS_DATAFLASH with SYS_NO_FLASH; this patch fixes this. 17188 17189 Also spotted by Alessandro Rubini <rubini@gnudd.com> 17190 17191 Signed-off-by: Wolfgang Denk <wd@denx.de> 17192 17193commit 341245a28830d3261c41b09d958eeea7bb93587a 17194Author: Wolfgang Denk <wd@denx.de> 17195Date: Sun Jul 19 12:05:15 2009 +0200 17196 17197 pcm030: fix out-of-tree building 17198 17199 Commit 0a87dd90 that was supposed to fix out-of-tree building for the 17200 pcm030 board was unfortunately incomplete. 17201 17202 Signed-off-by: Wolfgang Denk <wd@denx.de> 17203 17204commit 8bf29b59fce8cc381114929082202d800e313ad5 17205Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 17206Date: Tue Jul 7 13:58:51 2009 +0200 17207 17208 Add unaligned.h for arm 17209 17210 This patch adds unaligned.h for ARM (needed to build with LZO 17211 compression). The file is taken from the linux kernel, but includes 17212 u-boot headers instead. 17213 17214 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 17215 Acked-by: Stefan Roese <sr@denx.de> 17216 17217commit e405afab1dda66c9df3733f6b779d72fc36a0162 17218Author: Kazuaki Ichinohe <kazuichi@fsi.co.jp> 17219Date: Fri Jun 12 18:10:12 2009 +0900 17220 17221 Canyonlands SATA harddisk driver 17222 17223 This patch adds a SATA harddisk driver for the canyonlands. 17224 This patch is kernel driver's porting. 17225 This patch corresponded to not cmd_scsi but cmd_sata. 17226 This patch divided an unused member with ifndef __U_BOOT__ in the structure. 17227 17228 [environment variable, boot script] 17229 setenv bootargs root=/dev/sda7 rw 17230 setenv bootargs ${bootargs} console=ttyS0,115200 17231 ext2load sata 0:2 0x400000 /canyonlands/uImage 17232 ext2load sata 0:2 0x800000 /canyonlands/canyonlands.dtb 17233 fdt addr 0x800000 0x4000 17234 bootm 0x400000 - 0x800000 17235 17236 If you drive SATA-2 disk on Canyonlands, you must change parts from 17237 PI2PCIE212 to PI2PCIE2212 on U25. We confirmed to boot by using 17238 following disks: 17239 17240 1.Vendor: Fujitsu Type: MHW2040BS 17241 2.Vendor: Fujitsu Type: MHW2060BK 17242 3.Vendor: HAGIWARA SYS-COM:HFD25S-032GT 17243 4.Vendor: WesternDigital Type: WD3200BJKT (CONFIG_LBA48 required) 17244 5.Vendor: WesternDigital Type: WD3200BEVT (CONFIG_LBA48 required) 17245 6.Vendor: Hitachi Type: HTS543232L9A300 (CONFIG_LBA48 required) 17246 7.Vendor: Seagate Type: ST31000333AS (CONFIG_LBA48 required) 17247 8.Vendor: Transcend Type: TS32GSSD25S-M 17248 9.Vendor: MTRON Type: MSD-SATA1525-016 17249 17250 Signed-off-by: Kazuaki Ichinohe <kazuichi at fsi.co.jp> 17251 17252commit 52a0e2dee90c17e39634de814b16b96061cfb472 17253Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 17254Date: Wed Jun 10 19:09:40 2009 +0200 17255 17256 Add support for the Tundra TSI148 VME-bridge 17257 17258 From: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 17259 17260 This patch adds support for the Tundra TSI148 VME-bridge. It's used on 17261 the upcoming esd VME8349 board. 17262 17263 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 17264 Signed-off-by: Stefan Roese <sr@denx.de> 17265 17266commit 8d1fea2c4041e665c96944e3f6fcffbde55db34b 17267Author: Mike Frysinger <vapier@gentoo.org> 17268Date: Thu Jul 16 19:05:30 2009 -0400 17269 17270 Blackfin: bf537-{minotaur,srv1}: do not hardcode CONFIG_ETHADDR 17271 17272 MAC addresses should not be hardcoded in boards to avoid random link level 17273 conflicts. 17274 17275 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17276 17277commit baf357050353aee30c04f3f4b868426cb54468ca 17278Author: Mike Frysinger <vapier@gentoo.org> 17279Date: Fri Jul 10 10:42:06 2009 -0400 17280 17281 Blackfin: bf533-stamp: back down SCLK a bit 17282 17283 While the 1.0 and 1.2 spin of the bf533-stamp boards can handle the higher 17284 SCLK speeds just fine, the 1.1 spin cannot due to the bugs introduced with 17285 the shortened SDRAM traces. So lower the SCLK speed down to a value that 17286 all three can handle. 17287 17288 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17289 17290commit 490fe7349102012c48730f6fc14ef36c8d155068 17291Author: Mike Frysinger <vapier@gentoo.org> 17292Date: Thu Jul 9 20:56:56 2009 -0400 17293 17294 Blackfin: split cpu COBJS into multilines 17295 17296 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17297 17298commit 909878fd3fda056d19b8b51a5cc51cb1c0b563d1 17299Author: Mike Frysinger <vapier@gentoo.org> 17300Date: Thu Jul 9 01:15:05 2009 -0400 17301 17302 Blackfin: add os log functions 17303 17304 Part of the mini Blackfin ABI with operating systems is that they can use 17305 0x4f0-0x4f8 to pass log buffers to/from bootloaders. So add support to 17306 U-Boot for reading the log buffer. 17307 17308 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17309 17310commit 9993e196da707a0a1cd4584f1fcef12382c1c144 17311Author: Kim Phillips <kim.phillips@freescale.com> 17312Date: Sat Jul 18 18:42:13 2009 -0500 17313 17314 mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI 17315 17316 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 17317 17318commit d39041fcadb1231430201d298c31f6be03d654f7 17319Author: Wolfgang Denk <wd@denx.de> 17320Date: Sun Jul 19 01:15:52 2009 +0200 17321 17322 PATI board: fix compiler warnings 17323 17324 Fix these: 17325 pati.c: In function 'checkboard': 17326 pati.c:358: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness 17327 ../common/flash.c: In function 'write_word': 17328 ../common/flash.c:824: warning: dereferencing type-punned pointer will break strict-aliasing rules 17329 cmd_pati.c: In function 'do_pati': 17330 cmd_pati.c:279: warning: 'value' may be used uninitialized in this function 17331 17332 Signed-off-by: Wolfgang Denk <wd@denx.de> 17333 17334commit 28c345042eafc550a34b9f52431bd4a22af6ac25 17335Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17336Date: Sat May 16 12:14:56 2009 +0200 17337 17338 mpl: printing current stdio devices cleanup 17339 17340 Currently the mpl boards duplicate the code to print the current 17341 devices from common/console.c; use stdio_print_current_devices() 17342 instead 17343 17344 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17345 17346 Edited commit message. 17347 17348 Signed-off-by: Wolfgang Denk <wd@denx.de> 17349 17350commit 7e3be7cf3bb344f717b6ec3d47a081269ea67ead 17351Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17352Date: Sat May 16 12:14:55 2009 +0200 17353 17354 console: unify printing current devices 17355 17356 Create stdio_print_current_devices() for this purpose 17357 17358 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17359 17360commit 5669ed4557edf2714203aa8625c9fcd5a753b338 17361Author: Wolfgang Denk <wd@denx.de> 17362Date: Sat Jul 18 23:18:14 2009 +0200 17363 17364 cmd_flash.c: fix warning: unused variable 'addr_first'/'addr_last' 17365 17366 Signed-off-by: Wolfgang Denk <wd@denx.de> 17367 17368commit 6bb6e6c75ec4ef496f00f7f530e549d3e073c5de 17369Author: Tom Rix <Tom.Rix@windriver.com> 17370Date: Tue Jun 30 15:04:13 2009 -0500 17371 17372 OMAP3 Fix compiler warning for v7_flush_dcache_all 17373 17374 On build of omap3 targets in MAKEALL, the *.ERR files have 17375 17376 cpu.c: In function 'cleanup_before_linux': 17377 cpu.c:64: warning: implicit declaration of function 'v7_flush_dcache_all' 17378 cpu.c:64: warning: implicit declaration of function 'get_device_type 17379 17380 The functions v7_flush_dcache_all and get_device_type are declared 17381 in include/asm-arm/arch-omap3/sys_proto.h, so use this file to 17382 declare the functions. 17383 17384 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 17385 17386commit dba107b967332fc8a35867f4d58038626c968800 17387Author: Wolfgang Denk <wd@denx.de> 17388Date: Sat Jul 18 22:09:38 2009 +0200 17389 17390 ARM: make split_by_variant.sh output more useful 17391 17392 The board/armltd/integrator/split_by_variant.sh script used to print 17393 "Configuring for integrator*p board..." no matter which board name 17394 was being compiled. This made it difficult to match MAKEALL output to 17395 board names. This patch fixes this. 17396 17397 Signed-off-by: Wolfgang Denk <wd@denx.de> 17398 17399commit 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd 17400Author: Wolfgang Denk <wd@denx.de> 17401Date: Sat Jul 18 21:52:24 2009 +0200 17402 17403 NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF... 17404 17405 Commit 8d2effea added a warning for configurations that use NAND 17406 without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but 17407 failed to fix the affected boards. 17408 17409 This patch covers the non-PPC boards that were missed in the previous 17410 patch (commit 170c1972). 17411 17412 Signed-off-by: Wolfgang Denk <wd@denx.de> 17413 17414commit 7024aa14df2981b4e65c6189909da9aadb1c22da 17415Author: Wolfgang Denk <wd@denx.de> 17416Date: Sat Jul 18 20:46:38 2009 +0200 17417 17418 at91cap9adk: fix #ifdef/#endif pairing 17419 17420 The #ifdef/#endif pairing in this file was obviously messed up. 17421 17422 Signed-off-by: Wolfgang Denk <wd@denx.de> 17423 17424commit 4abc5bffea244589fa1097e4c899a63efc609c8e 17425Author: Prafulla Wadaskar <prafulla@marvell.com> 17426Date: Thu Jul 16 20:58:01 2009 +0530 17427 17428 Marvell MV88F6281GTW_GE Board support 17429 17430 This is Marvell's 88F6281_A0 based custom board developed 17431 for wireless access point product 17432 17433 This patch is tested for- 17434 1. Boot from DRAM/SPI flash/NFS 17435 2. File transfer using tftp and loadb 17436 3. SPI flash read/write/erase 17437 4. Booting Linux kernel and RFS from SPI flash 17438 5. Boot from USB supported 17439 17440 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com> 17441 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 17442 17443commit 55dd4ba5413b14e8ee24058c89ac5c05376c331c 17444Author: Prafulla Wadaskar <prafulla@marvell.com> 17445Date: Thu Jul 16 20:58:00 2009 +0530 17446 17447 Marvell Sheevaplug Board support 17448 17449 Reference: 17450 http://plugcomputer.org/ 17451 http://openplug.org/plugwiki/index.php/Das_U-boot_plug_support 17452 17453 This patch is tested for- 17454 1. Boot from DRAM/NAND flash 17455 2. File transfer using tftp 17456 3. NAND flash read/write/erase 17457 4. Linux kernel and RFS Boot from NAND 17458 5. Enabled USB PHY init for kernel need 17459 6. Boot from USB supported 17460 17461 Note: to boot Kirkwood kernel with USB support, 17462 you should add "usb start" in the boot sequence 17463 17464 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 17465 17466commit 0a87dd90a75d034301496285026fbd8106c7c6d5 17467Author: Wolfgang Denk <wd@denx.de> 17468Date: Sat Jul 18 18:00:25 2009 +0200 17469 17470 pcm030: fix out-of-tree building 17471 17472 Commit c9969947, which added support for the pcm030 board 17473 (aka phyCORE-MPC5200B-tiny), broke out-of-tree building. 17474 17475 Signed-off-by: Wolfgang Denk <wd@denx.de> 17476 17477commit 9ff59601c71e800b9d0dfde22fa70d12c71c12b4 17478Author: Wolfgang Denk <wd@denx.de> 17479Date: Sat Jul 18 16:36:11 2009 +0200 17480 17481 MPC837XERDB: fix warning: "CONFIG_SYS_MONITOR_LEN" redefined 17482 17483 Signed-off-by: Wolfgang Denk <wd@denx.de> 17484 17485commit 2b5243fc24a724e83409c0b70caa1a3180e997ae 17486Author: Wolfgang Denk <wd@denx.de> 17487Date: Sat Jul 18 16:13:18 2009 +0200 17488 17489 8xxx: fix warning: implicit declaration of function 'uec_standard_init' 17490 17491 Commit 8e55258f created function uec_standard_init() to initialize 17492 all UEC interfaces for 83xx and 85xx but failed to provide a 17493 prototype for it. 17494 17495 Signed-off-by: Wolfgang Denk <wd@denx.de> 17496 17497commit 5b54df2674fdad5e7d316484c67efc68e79f3f0d 17498Author: Wolfgang Denk <wd@denx.de> 17499Date: Sat Jul 18 15:46:02 2009 +0200 17500 17501 MIP405T: fix compile problem 17502 17503 The "stdio/device: rework function naming convention" patch 17504 (commit 52cb4d4f) broke the MIP405T board; this patch fixes it. 17505 17506 Signed-off-by: Wolfgang Denk <wd@denx.de> 17507 17508commit 170c19725ecd3a0e2e517dfd49979ca8822edec0 17509Author: Wolfgang Denk <wd@denx.de> 17510Date: Sat Jul 18 15:32:10 2009 +0200 17511 17512 NAND: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF... 17513 17514 Commit 8d2effea added a warning for configurations that use NAND 17515 without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but 17516 failed to fix the affected boards. 17517 17518 Signed-off-by: Wolfgang Denk <wd@denx.de> 17519 17520commit 6e897a661fb9968ce354165a12cce82e4b889e04 17521Author: Wolfgang Denk <wd@denx.de> 17522Date: Sat Jul 18 15:05:44 2009 +0200 17523 17524 CPCI750: fix compile problem 17525 17526 Commit bc0d3296 removed ppc_error_no.h from Marvell boards 17527 but forgot to update board/esd/cpci750/mv_eth.h 17528 17529 Signed-off-by: Wolfgang Denk <wd@denx.de> 17530 17531commit 6aee3048348f1b19ab89156da98bfa4f7babf24b 17532Author: Alessandro Rubini <rubini-list@gnudd.com> 17533Date: Fri Jul 17 14:42:11 2009 +0200 17534 17535 cmd_i2c: bugfix: add missing brace 17536 17537 The sub-command parser missed a brace, so "return 0;" is always 17538 taken and no error message is diplayed if you say "i2c scan" 17539 instead of "i2c probe", for example. 17540 17541 Proper brace is added. Also, a misleading and unneeded else 17542 is removed. 17543 17544 Signed-off-by: Alessandro Rubini <rubini@gnudd.com.it> 17545 17546commit 52cb4d4fb3487313f5a72ea740f527a4aefaa365 17547Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17548Date: Sat May 16 12:14:54 2009 +0200 17549 17550 stdio/device: rework function naming convention 17551 17552 So far the console API uses the following naming convention: 17553 17554 ======Extract====== 17555 typedef struct device_t; 17556 17557 int device_register (device_t * dev); 17558 int devices_init (void); 17559 int device_deregister(char *devname); 17560 struct list_head* device_get_list(void); 17561 device_t* device_get_by_name(char* name); 17562 device_t* device_clone(device_t *dev); 17563 ======= 17564 17565 which is too generic and confusing. 17566 17567 Instead of using device_XX and device_t we change this 17568 into stdio_XX and stdio_dev 17569 17570 This will also allow to add later a generic device mechanism in order 17571 to have support for multiple devices and driver instances. 17572 17573 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17574 17575 Edited commit message. 17576 17577 Signed-off-by: Wolfgang Denk <wd@denx.de> 17578 17579commit f732a7598fa36d48241df20b1a1f4cdbf09f75ee 17580Author: Peter Tyser <ptyser@xes-inc.com> 17581Date: Wed Jul 15 00:01:08 2009 -0500 17582 17583 ppc: Fix compile error for boards with CONFIG_DDR_ECC 17584 17585 A bug was introduced by commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae 17586 which affected non-MPC83xx/85xx/86xx ppc boards which had CONFIG_DDR_ECC 17587 defined and resulted in errors such as: 17588 17589 Configuring for canyonlands board... 17590 fsl_dma.c:50:2: error: #error "Freescale DMA engine not supported on your 17591 processor" 17592 make[1]: *** No rule to make target `.depend', needed by `libdma.a'. Stop. 17593 17594 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 17595 17596commit 18e067de9b6ed087fa60496e64887f0b7458dbaa 17597Author: Prafulla Wadaskar <prafulla@marvell.com> 17598Date: Thu Jul 16 20:57:59 2009 +0530 17599 17600 include/config_cmd_default.h cleanup 17601 17602 arranged configurations in alphabetical order 17603 CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH 17604 17605 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 17606 17607commit 569460ebf14b87bd8fdb2352bde95d35ee96e13b 17608Author: Mike Frysinger <vapier@gentoo.org> 17609Date: Sun Jun 14 21:35:22 2009 -0400 17610 17611 sata: namespace curr_device variable 17612 17613 The curr_device variable really should be namespaced with a "sata_" prefix 17614 since it is only used by the sata code. It also avoids random conflicts 17615 with other pieces of code (like cmd_mmc): 17616 common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0): 17617 multiple definition of `curr_device' 17618 common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here 17619 17620 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17621 17622commit 02e22c2de1ce2312f2636fa473a60c8d8f18d8aa 17623Author: Mike Frysinger <vapier@gentoo.org> 17624Date: Sun Jun 14 21:35:21 2009 -0400 17625 17626 cmd_mmc: make curr_device static 17627 17628 The curr_device variable isn't used outside of cmd_mmc, so mark it static 17629 to avoid conflicts with other pieces of code (like sata which also exports 17630 a curr_device). Otherwise we end up with stuff like: 17631 common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0): 17632 multiple definition of `curr_device' 17633 common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here 17634 17635 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17636 17637commit 2d8d2adde3fce1152e4ad9f47238f07e70793c53 17638Author: Mike Frysinger <vapier@gentoo.org> 17639Date: Sun Jun 14 21:35:16 2009 -0400 17640 17641 envcrc: add missing dependencies on env storage 17642 17643 When the envcrc building was made conditional, it missed a bunch of env 17644 storage types, so add all currently supported types. 17645 17646 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17647 17648commit 2419169f5749d7af501b3b77a5336d1d535320de 17649Author: Scott Wood <scottwood@freescale.com> 17650Date: Thu Jul 16 19:08:04 2009 -0500 17651 17652 Remove legacy NAND and disk on chip references from boards. 17653 17654 Signed-off-by: Scott Wood <scottwood@freescale.com> 17655 17656commit 12e9043c7ed961b60df865f45d9a3c74d6a38199 17657Author: Shinya Kuribayashi <skuribay@pobox.com> 17658Date: Sat Jun 20 19:10:14 2009 +0900 17659 17660 config.mk: Remove $(PCI_CLOCK) reference 17661 17662 The following commit introduced $(PCI_CLOCK) reference so that 17663 we could tweak `PCI_66M' definition via an environment variable. 17664 17665 > commit f046ccd15c8bc9613bfd72916b761a127d36e5c6 17666 > Author: Eran Liberty <liberty@freescale.com> 17667 > Date: Thu Jul 28 10:08:46 2005 -0500 17668 > 17669 > * Patch by Eran Liberty 17670 > Add support for the Freescale MPC8349ADS board. 17671 17672 But I suggest a removal of it for the following reasons: 17673 17674 * In 2006, MPC8349ADS was merged into MPC8349EMDS port, 17675 and it seems that MPC8349EMDS port is PCI_66M free. 17676 17677 * OTOH, PCI_66M is used by MPC832XEMDS an MPC8360EMDS ports, 17678 but they don't need $(PCI_CLOCK) environment variable at all. 17679 PCI_66M is automatically configured via $(BOARD)_config names 17680 with the help of $(findstring _66_,$@). 17681 17682 * Unfortunately $(PCI_CLOCK) has been undocumented anywhere, 17683 so only a few people know the existence of it these days. 17684 17685 * Keep config.mk independent from $(BOARD) as much as possible. 17686 17687 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com> 17688 Acked-by: Kim Phillips <kim.phillips@freescale.com> 17689 17690commit 3db75d9c11d37cc1d28bebd91b19f4e548b68155 17691Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17692Date: Sat May 23 21:42:36 2009 +0200 17693 17694 fix: missing autoconfig.mk from general Makefile 17695 17696 At the first run of make we generate the autoconf.mk and 17697 autoconf.mk.dep if not already the case and we currently include only 17698 to .dep 17699 17700 In order to use these autogenerated values we need to include it also 17701 even if it's included in config.mk but it's done before their 17702 generation 17703 17704 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 17705 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 17706 17707commit 1ca298ced07327749b54321815f76fcddb2f9479 17708Author: Matthias Weisser <matthias.weisser@graf-syteco.de> 17709Date: Thu Jul 9 16:07:30 2009 +0200 17710 17711 Added support for splash screen positioning 17712 17713 This patch adds support splash image positioning by adding an 17714 additional variable "splashpos" to the environment. Please see 17715 README for details. 17716 17717 Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de> 17718 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu> 17719 Signed-off-by: Anatolij Gustschin <agust@denx.de> 17720 17721commit 9d173e0233493113c9b1aa81bd2208d0057ab9db 17722Author: Anatolij Gustschin <agust@denx.de> 17723Date: Tue Jul 7 13:11:36 2009 +0200 17724 17725 video: mb862xx: replace printf with puts 17726 17727 Signed-off-by: Anatolij Gustschin <agust@denx.de> 17728 17729commit cce99b2a7dd80683d61360aee56a6ece344950b2 17730Author: Anatolij Gustschin <agust@denx.de> 17731Date: Tue Jul 7 13:27:07 2009 +0200 17732 17733 video: mb862xx: use macros instead of magic numbers 17734 17735 Signed-off-by: Anatolij Gustschin <agust@denx.de> 17736 17737commit e86528671ece6d5c1162656a37fc68a8e0bf67f8 17738Author: Anatolij Gustschin <agust@denx.de> 17739Date: Tue Jul 7 13:24:08 2009 +0200 17740 17741 video: mb862xx: fix coding style and remove dead code 17742 17743 Signed-off-by: Anatolij Gustschin <agust@denx.de> 17744 17745commit 292ed489dba8cc97b458579003a8001cd4703cd8 17746Author: Michal Simek <monstr@monstr.eu> 17747Date: Tue Jun 30 12:03:50 2009 +0200 17748 17749 microblaze: Remove ignored return type for __arch__swab16 function 17750 17751 This change remove compilation warnings. 17752 17753 Signed-off-by: Michal Simek <monstr@monstr.eu> 17754 17755commit e2776587c0eac131954ae100fda89cc3e7ed8b57 17756Author: Michal Simek <monstr@monstr.eu> 17757Date: Tue Jun 30 12:02:45 2009 +0200 17758 17759 microblaze: Removed unused variables 17760 17761 Signed-off-by: Michal Simek <monstr@monstr.eu> 17762 17763commit be33b046b549ad88c204c209508cd7657232ffbd 17764Author: Scott Wood <scottwood@freescale.com> 17765Date: Wed Apr 1 15:02:13 2009 -0500 17766 17767 Remove legacy NAND and disk on chip code. 17768 17769 Legacy NAND had been scheduled for removal. Any boards that use this 17770 were already not building in the previous release due to an #error. 17771 17772 The disk on chip code in common/cmd_doc.c relies on legacy NAND, 17773 and it has also been removed. There is newer disk on chip code 17774 in drivers/mtd/nand; someone with access to hardware and sufficient 17775 time and motivation can try to get that working, but for now disk 17776 on chip is not supported. 17777 17778 Signed-off-by: Scott Wood <scottwood@freescale.com> 17779 17780commit fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3 17781Author: Stefan Roese <sr@denx.de> 17782Date: Thu Jun 4 16:40:36 2009 +0200 17783 17784 nand: Change NAND_MAX_OOBSIZE to 218 as needed for some 4k page devices 17785 17786 This is needed for the MPC512x NAND driver (fsl_nfc_nand.c) which already 17787 defines such a 4k plus 218 bytes ECC layout. 17788 17789 Signed-off-by: Stefan Roese <sr@denx.de> 17790 Cc: Scott Wood <scottwood@freescale.com> 17791 Signed-off-by: Scott Wood <scottwood@freescale.com> 17792 17793commit f2f376ab956c17d4a0c42a993133ca25cdc87278 17794Author: Stefan Roese <sr@denx.de> 17795Date: Thu Jul 16 15:13:04 2009 +0200 17796 17797 nand: ndfc: Remove unnecessary #ifdef's 17798 17799 Now that the 4xx NAND driver ndfc is moved to the common NAND driver 17800 directory we don't need this #ifdef's anymore. 17801 17802 Signed-off-by: Stefan Roese <sr@denx.de> 17803 Cc: Scott Wood <scottwood@freescale.com> 17804 Signed-off-by: Scott Wood <scottwood@freescale.com> 17805 17806commit 12582ac771b0bf3852817c3bfa4be326522a0665 17807Author: Stefan Roese <sr@denx.de> 17808Date: Thu Jul 16 15:12:48 2009 +0200 17809 17810 nand/ppc4xx: Move PPC4xx NAND driver to common NAND driver directory 17811 17812 Signed-off-by: Stefan Roese <sr@denx.de> 17813 Cc: Scott Wood <scottwood@freescale.com> 17814 Signed-off-by: Scott Wood <scottwood@freescale.com> 17815 17816commit 3ebf70db5452d3d47c316ddef09f40e76553bcba 17817Author: Valeriy Glushkov <gvv@lstec.com> 17818Date: Tue Jul 14 13:51:10 2009 +0300 17819 17820 nand: fixed failed reads on corrected ECC errors in nand_util.c 17821 17822 Signed-off-by: Valeriy Glushkov <gvv@lstec.com> 17823 Signed-off-by: Paulraj, Sandeep <s-paulraj@ti.com> 17824 Signed-off-by: Scott Wood <scottwood@freescale.com> 17825 17826commit ed727d394c5ab139033719772dc95dc25cfa14f7 17827Author: David Brownell <david-b@pacbell.net> 17828Date: Mon Jul 13 16:29:04 2009 -0700 17829 17830 Typo fix: use CONFIG_SOC_DM644X, not CONFIG_SOC_DM646. 17831 17832 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 17833 Signed-off-by: Scott Wood <scottwood@freescale.com> 17834 17835commit 937076f84c5064f0a79105fce352ac7cf7b33643 17836Author: Kyungmin Park <kmpark@infradead.org> 17837Date: Sat Jul 11 16:49:55 2009 +0900 17838 17839 MTD: OneNAND: Increase the environment size to 4KiB 17840 17841 Also use mtd operation instead of onenand functions 17842 17843 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 17844 Signed-off-by: Scott Wood <scottwood@freescale.com> 17845 17846commit bfadb17f69c256196620c32164775f063a59c34f 17847Author: Anton Vorontsov <avorontsov@ru.mvista.com> 17848Date: Wed Jun 10 00:25:38 2009 +0400 17849 17850 mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable 17851 17852 Since we have simple hwconfig interface now, we don't need 17853 pci_external_arbiter variable any longer. 17854 17855 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 17856 Acked-by: Kim Phillips <kim.phillips@freescale.com> 17857 17858commit b8b71ffbc35fde6905e65ffdbf4e4b87efc26b7e 17859Author: Anton Vorontsov <avorontsov@ru.mvista.com> 17860Date: Wed Jun 10 00:25:36 2009 +0400 17861 17862 mpc83xx: MPC8315ERDB: Use hwconfig for board type selection 17863 17864 This patch simply converts the board to the hwconfig infrastructure. 17865 17866 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 17867 Acked-by: Kim Phillips <kim.phillips@freescale.com> 17868 17869commit c78c678354c8321737aa07e86831ff14176f4ed5 17870Author: Anton Vorontsov <avorontsov@ru.mvista.com> 17871Date: Wed Jun 10 00:25:31 2009 +0400 17872 17873 mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree 17874 17875 fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and 17876 also will fixup clock-frequency property. 17877 17878 Plus, since DR USB and eSDHC are mutually exclusive, we should 17879 only configure the eSDHC if asked through hwconfig. 17880 17881 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 17882 Acked-by: Kim Phillips <kim.phillips@freescale.com> 17883 17884commit c9646ed758804fa1fa6c1425369a4eee5d618b1d 17885Author: Anton Vorontsov <avorontsov@ru.mvista.com> 17886Date: Wed Jun 10 00:25:30 2009 +0400 17887 17888 mpc83xx: MPC837XERDB: Add support for FSL eSDHC 17889 17890 This patch adds support for eSDHC on MPC837XERDB boards. The WP 17891 switch doesn't seem to work on RDB boards though, the WP pin is 17892 always asserted (can see the pin state when it's in GPIO mode). 17893 17894 FSL DR USB and FSL eSDHC are mutually exclusive because of pins 17895 multiplexing, so user should specify 'esdhc' or 'dr_usb' options 17896 in the hwconfig environment variable to choose between the 17897 devices. 17898 17899 p.s. 17900 Now we're very close to a monitor len limit (196 bytes left using 17901 gcc-4.2.0), so also increase the monitor len by one sector (64 KB). 17902 17903 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 17904 Acked-by: Kim Phillips <kim.phillips@freescale.com> 17905 17906commit b33433a63fe08c9e723ea15a7c7c7143bf527c6d 17907Author: Anton Vorontsov <avorontsov@ru.mvista.com> 17908Date: Wed Jun 10 00:25:29 2009 +0400 17909 17910 fsl_esdhc: Add device tree fixups 17911 17912 This patch implements fdt_fixup_esdhc() function that is used to fixup 17913 the device tree. 17914 17915 The function adds status = "disabled" propery if esdhc pins muxed away, 17916 otherwise it fixups clock-frequency for esdhc nodes. 17917 17918 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 17919 Acked-by: Kim Phillips <kim.phillips@freescale.com> 17920 17921commit 93f9dcf9e8b8182e97aeb7965c687176cbd0b933 17922Author: Anton Vorontsov <avorontsov@ru.mvista.com> 17923Date: Wed Jun 10 00:25:27 2009 +0400 17924 17925 Add simple hwconfig infrastructure 17926 17927 This patch implements simple hwconfig infrastructure: an 17928 interface for software knobs to control a hardware. 17929 17930 This is very simple implementation, i.e. it is implemented 17931 via `hwconfig' environment variable. Later we could write 17932 some "hwconfig <enable|disable|list>" commands, ncurses 17933 interface for Award BIOS-like interface, and frame-buffer 17934 interface for AMI GUI[1] BIOS-like interface with mouse 17935 support[2]. 17936 17937 Current implementation details/limitations: 17938 17939 1. Doesn't support options dependencies and mutual exclusion. 17940 We can implement this by integrating apt-get[3] into the 17941 u-boot. But I didn't bother yet. 17942 17943 2. Since we don't implement hwconfig command, i.e. we're working 17944 with the environement directly, there is no way to tell that 17945 toggling a particular option will need a reboot to take 17946 an effect. So, for now it's advised to always reboot the 17947 target after modifying hwconfig variable. 17948 17949 3. We support hwconfig options with arguments. For example, 17950 17951 set hwconfig dr_usb:mode=peripheral,phy_type=ulpi 17952 17953 That means: 17954 - dr_usb - enable Dual-Role USB controller; 17955 - dr_usb:mode=peripheral - USB in Function mode; 17956 - dr_usb:phy_type=ulpi - USB should work with ULPI PHYs; 17957 17958 The purpose of this simple implementation is to define some 17959 internal API and then we can continue improving user experience 17960 by adding more mature interface, like hwconfig command with 17961 bells and whistles. Or not adding, if we feel that current 17962 interface fits its needs. 17963 17964 [1] http://en.wikipedia.org/wiki/American_Megatrends 17965 [2] Regarding ncurses and GUI with mouse support -- I'm just 17966 kidding. 17967 [3] The comment regarding apt-get is also a joke, meaning that 17968 dependency tracking could be non-trivial. For example, for 17969 enabling HW feature X we may need to disable Y, and turn Z 17970 into reduced mode (like RMII-only interface for ethernet, 17971 no MII). 17972 17973 It's quite trivial to implement simple cases though. 17974 17975 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 17976 Acked-by: Kim Phillips <kim.phillips@freescale.com> 17977 17978commit 6c3fef28b9fff0d7f3fa4c51c3ee0ae8c2a3b043 17979Author: Jerry Van Baren <gvb.uboot@gmail.com> 17980Date: Wed Jul 15 20:42:59 2009 -0400 17981 17982 Improve U-Boot Porting Guide in the README 17983 17984 Update for... 17985 * BDI2000 -> BDI3000 (BDI2000 is obsolete). 17986 * Add a line to read the doc/README.* files 17987 * Fix coding standard violations 17988 17989 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 17990 17991commit 9578718c1b085cac73017d834001bc5cb0b2f73f 17992Author: Kim Phillips <kim.phillips@freescale.com> 17993Date: Tue Jul 14 16:00:24 2009 -0500 17994 17995 mtd: cfi - if defined, use MAX_FLASH_BANKS_DETECT for static declarations 17996 17997 a.k.a cfi_mtd.c does as cfi_flash.c does. This also prevents 17998 the TQM834x build from doing a: 17999 18000 cfi_mtd.c:36: error: variably modified 'cfi_mtd_info' at file scope
18001 cfi_mtd.c:37: error: variably modified 'cfi_mtd_names' at file scope 18002 18003 using gcc 4.4. 18004 18005 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 18006 Signed-off-by: Stefan Roese <sr@denx.de> 18007 18008commit 4a9932a4364b548773bc131bf85e24a2ec15f2b0 18009Author: Kim Phillips <kim.phillips@freescale.com> 18010Date: Tue Jul 7 18:04:21 2009 -0500 18011 18012 mpc83xx: increase MONITOR_LEN to offset growing pains 18013 18014 Saving the environment leads to overwriting u-boot itself, 18015 bricking boards. Increase u-boot's image size so the environment 18016 base address doesn't end up overlapping u-boot text. 18017 18018 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 18019 18020commit c31e13260bcd048a94412a47b004386ea6112acf 18021Author: Valeriy Glushkov <gvv@lstec.com> 18022Date: Tue Jun 30 15:48:41 2009 +0300 18023 18024 usb: mpx8349itx: added support of loading images from USB storage (MPH/DR) 18025 18026 Signed-off-by: Valeriy Glushkov <gvv@lstec.com> 18027 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 18028 18029commit d89e1c36891de793a20a929282acc0fc7b98feac 18030Author: Valeriy Glushkov <gvv@lstec.com> 18031Date: Tue Jun 30 15:48:40 2009 +0300 18032 18033 usb: mpc834x: added support of the MPH USB controller in addition to the DR one 18034 18035 Signed-off-by: Valeriy Glushkov <gvv@lstec.com> 18036 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 18037 18038commit d9ac3d5a17ecef0beb70073018925e011b11684e 18039Author: Kim Phillips <kim.phillips@freescale.com> 18040Date: Mon Jun 15 11:51:47 2009 -0500 18041 18042 mpc83xx: set 64BIT_VSPRINTF for boards using nand_util 18043 18044 When enabling NAND support for a board, one must also define 18045 CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c 18046 for correct output. 18047 18048 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 18049 Cc: Dave Liu <daveliu@freescale.com> 18050 Cc: Ron Madrid <ron_madrid@sbcglobal.net> 18051 Cc: Anton Vorontsov <avorontsov@ru.mvista.com> 18052 18053commit 052c08916532d1d9c2f69eb9229709c7b2fc1f02 18054Author: TsiChung Liew <tsicliew@gmail.com> 18055Date: Wed Jul 8 07:41:24 2009 +0000 18056 18057 ColdFire: Update bootargs 18058 18059 Add a bootargs for M53017EVB and update bootargs 18060 for M54451EVB 18061 18062 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 18063 18064commit 6e8d58d36691520f8da74cd948661d28d5a5dc66 18065Author: TsiChung Liew <tsicliew@gmail.com> 18066Date: Tue Jun 30 14:30:19 2009 +0000 18067 18068 Command for accessing serial flash update 18069 18070 Change strtoul number base of argv 3 from 0 to 16 18071 18072 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 18073 18074commit ee0a8462466dd284968536eb57c6eef4be0d6aad 18075Author: TsiChung Liew <tsicliew@gmail.com> 18076Date: Tue Jun 30 14:18:29 2009 +0000 18077 18078 ColdFire: Add DSPI support for MCF5227x and MCF5445x 18079 18080 Remove individual CPU specific DSPI driver. 18081 Add required feature for the common DSPI driver in cpu_init and 18082 in platform configuration file. 18083 18084 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 18085 18086commit dec61c7851baa72151ef1d3657e7bb3b68907d48 18087Author: TsiChung Liew <tsicliew@gmail.com> 18088Date: Tue Jun 30 14:09:47 2009 +0000 18089 18090 Coldfire: Consolidate DSPI driver 18091 18092 Unify both MCF5227x and MCF5445x DSPI driver in CPU to 18093 driver/spi folder for common use. 18094 18095 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 18096 18097commit 11d88b26a68bd4bf98b1c962fde6257a50978231 18098Author: TsiChung Liew <tsicliew@gmail.com> 18099Date: Fri Jun 12 13:03:34 2009 +0000 18100 18101 ColdFire: Remove compiler warning messages 18102 18103 Remove unused variables and printf type mismatch in 18104 lib_m68k/board.c 18105 18106 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 18107 18108commit 4567c7bff2503fb1a7c738ff9b9f0bd00d274d9a 18109Author: TsiChung Liew <tsicliew@gmail.com> 18110Date: Fri Jun 12 11:31:31 2009 +0000 18111 18112 ColdFire: Fix M53017EVB flash size 18113 18114 Increase the flash size from 8MB to 16MB 18115 18116 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 18117 18118commit bf9a521529e484b15e8fdb583a607cf7945d2f6b 18119Author: TsiChung Liew <tsicliew@gmail.com> 18120Date: Fri Jun 12 11:29:00 2009 +0000 18121 18122 ColdFire: Add M5208EVB and MCF520x CPU support 18123 18124 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 18125 18126commit 709b384b6493d9726dce20663ebe31bf7cab2925 18127Author: TsiChung Liew <tsicliew@gmail.com> 18128Date: Thu Jun 11 15:39:57 2009 +0000 18129 18130 ColdFire: Update for M54451EVB 18131 18132 Update serial boot DRAM's Internal RAM, vector table and DRAM in 18133 start.S, serial flash's read status command over SPI and NOR 18134 flash. 18135 18136 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 18137 18138commit bbf6bbffcaf694c03504c661e58fbd1aefe5bf64 18139Author: TsiChung Liew <tsicliew@gmail.com> 18140Date: Thu Jun 11 12:50:05 2009 +0000 18141 18142 ColdFire: Update configuration file to use flash buffer write 18143 18144 Update M52277EVB, M53017EVB and M54455EVB platform configuration 18145 file to use flash buffer write 18146 18147 Signed-off-by: TsiChung Liew <tsicliew@gmail.com> 18148 18149commit 7d4450a9773673052fcd7fdf0a4a88c089126ac1 18150Author: Wolfgang Denk <wd@denx.de> 18151Date: Sun Jun 14 20:58:53 2009 +0200 18152 18153 mpc5121ads: add JFFS2 and MTDPARTS support; adjust flash map 18154 18155 Signed-off-by: Wolfgang Denk <wd@denx.de> 18156 18157commit 1f1f82f3de1660f398bf42bfd709b9859582ce5e 18158Author: Wolfgang Denk <wd@denx.de> 18159Date: Sun Jun 14 20:58:52 2009 +0200 18160 18161 aria: add JFFS2 and MTDPARTS support; adjust flash map 18162 18163 Signed-off-by: Wolfgang Denk <wd@denx.de> 18164 18165commit a6d6d46a4fef876455e11b45ed699c0fb3bd1ca1 18166Author: Wolfgang Denk <wd@denx.de> 18167Date: Sun Jun 14 20:58:51 2009 +0200 18168 18169 aria: enable NAND flash support 18170 18171 Signed-off-by: Wolfgang Denk <wd@denx.de> 18172 18173commit 13946925e850db5351982acb691d51716fc754e2 18174Author: Wolfgang Denk <wd@denx.de> 18175Date: Sun Jun 14 20:58:50 2009 +0200 18176 18177 MPC512x: fix typo in comment listing the NAND driver name 18178 18179 Signed-off-by: Wolfgang Denk <wd@denx.de> 18180 Cc: Stefan Roese <sr@denx.de> 18181 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 18182 18183commit 2ca6f74d09653f8041b52cafd0d650fdc2a56c51 18184Author: Wolfgang Denk <wd@denx.de> 18185Date: Sun Jun 14 20:58:49 2009 +0200 18186 18187 mecp5123: cleanup - remove dead code 18188 18189 Remove dead code that was obviously a left-over from copy & paste. 18190 18191 Signed-off-by: Wolfgang Denk <wd@denx.de> 18192 Cc: Stefan Roese <sr@denx.de> 18193 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 18194 18195commit 25671c8672f2d7b39555416a6b7a6b7b39b810bf 18196Author: Wolfgang Denk <wd@denx.de> 18197Date: Sun Jun 14 20:58:48 2009 +0200 18198 18199 aria: adjust memory controller initialization 18200 18201 Needed for Rev. 2 silicon at 400 MHz 18202 18203 Signed-off-by: Wolfgang Denk <wd@denx.de> 18204 18205commit 7629f1c06b6dea36bbc7bf70820b824e9b6d2227 18206Author: Wolfgang Denk <wd@denx.de> 18207Date: Sun Jun 14 20:58:47 2009 +0200 18208 18209 MPC512x: factor out common code 18210 18211 Now that we have 3 boards for the MPC512x it turns out that they all 18212 use the very same fixed_sdram() code. 18213 18214 This patch factors out this common code into cpu/mpc512x/fixed_sdram.c 18215 and adds a new header file, include/asm-ppc/mpc512x.h, with some 18216 macros, inline functions and prototype definitions specific to MPC512x 18217 systems. 18218 18219 Signed-off-by: Wolfgang Denk <wd@denx.de> 18220 Cc: Stefan Roese <sr@denx.de> 18221 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 18222 18223commit 0549353a6ba5aa03420c0962b9072e9cf1fa49d9 18224Author: Wolfgang Denk <wd@denx.de> 18225Date: Sun Jun 14 20:58:46 2009 +0200 18226 18227 mecp5123: fix build error 18228 18229 The mecp5123 board did not compile because the MSCAN Clock Control 18230 Registers were missing; these got added, but as an array instead 18231 of 4 individual registers. Adapt the code so it builds. 18232 18233 Signed-off-by: Wolfgang Denk <wd@denx.de> 18234 Cc: Stefan Roese <sr@denx.de> 18235 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 18236 18237commit a9905db5d29a56aedd7db5bcb56b0385873aa6a3 18238Author: Wolfgang Denk <wd@denx.de> 18239Date: Sun Jun 14 20:58:45 2009 +0200 18240 18241 MPC512x: Add MSCAN1...4 Clock Control Registers 18242 18243 Signed-off-by: Wolfgang Denk <wd@denx.de> 18244 Cc: Stefan Roese <sr@denx.de> 18245 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 18246 18247commit f5489c4200b37c9a1d6dbde116f5adc0539610de 18248Author: Wolfgang Denk <wd@denx.de> 18249Date: Sun Jun 14 20:58:44 2009 +0200 18250 18251 MPC512x: enabling NAND support requires CONFIG_SYS_64BIT_VSPRINTF 18252 18253 When enabling NAND support for a board, one must also define 18254 CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c 18255 for correct output. 18256 18257 Signed-off-by: Wolfgang Denk <wd@denx.de> 18258 Cc: Stefan Roese <sr@denx.de> 18259 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 18260 18261commit b4db4a7638ef90cf0aacf7b954d9bf3043dda780 18262Author: Po-Yu Chuang <ratbert@faraday-tech.com> 18263Date: Fri Jul 10 18:03:57 2009 +0800 18264 18265 issue write command to base for JEDEC flash 18266 18267 For JEDEC flash, we should issue word programming command relative to 18268 base address rather than sector base address. Original source makes 18269 SST Flash fails to program sectors which are not on the 0x10000 boundaries. 18270 18271 e.g. 18272 SST39LF040 uses addr1=0x5555 and addr2=0x2AAA, however, each sector 18273 is 0x1000 bytes. 18274 18275 Thus, if we issue command to "sector base (0x41000) + offset(0x5555)", 18276 it sends to 0x46555 and the chip fails to recognize that address. 18277 18278 This patch is tested with SST39LF040. 18279 18280 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com> 18281 Signed-off-by: Stefan Roese <sr@denx.de> 18282 18283commit 986922714ffd21ad39f48522d285fffc7aed56b1 18284Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18285Date: Sat May 2 11:53:50 2009 +0200 18286 18287 versatile: update config and merge to cfi flash driver 18288 18289 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18290 Signed-off-by: Peter Pearse <peter.pearse@arm.com> 18291 Cc: Catalin Marinas <catalin.marinas@arm.com> 18292 18293commit d6e8ed832b25d5db4fdd3fb91e73028e494dcd6e 18294Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18295Date: Sat May 2 11:53:49 2009 +0200 18296 18297 versatile: specify the board type on the prompt 18298 18299 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18300 Signed-off-by: Peter Pearse <peter.pearse@arm.com> 18301 Cc: Catalin Marinas <catalin.marinas@arm.com> 18302 18303commit 5ccc2d99d61c81805348b0cd9f79731b271f7daf 18304Author: Sedji Gaouaou <sedji.gaouaou@atmel.com> 18305Date: Thu Jun 25 17:04:15 2009 +0200 18306 18307 at91: Introduction of at91sam9g10 SOC. 18308 18309 AT91sam9g10 is an ARM 926ej-s SOC. It is an evolution of the at91sam9261 with a 18310 faster clock speed: 266/133MHz. 18311 18312 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com> 18313 18314commit 22ee647380c42f44528f99b7c1b423725e542102 18315Author: Sedji Gaouaou <sedji.gaouaou@atmel.com> 18316Date: Thu Jul 9 10:16:29 2009 +0200 18317 18318 at91: Introduction of at91sam9g45 SOC. 18319 18320 AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz. 18321 It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of 18322 peripherals. 18323 18324 The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES. 18325 On the board you can find 2 USART, USB high speed, 18326 a 480*272 LG lcd, ethernet, gpio/joystick/buttons. 18327 18328 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com> 18329 18330commit c33c5990cec7ced9ef1ef148debbca34adafa12b 18331Author: Daniel Mack <daniel@caiaq.de> 18332Date: Tue Jun 23 17:30:05 2009 +0200 18333 18334 pxa: fix CKEN_B register bits 18335 18336 The current defition for CKEN_B register bits is nonsense. Adding 32 to 18337 the shifted value is equal to '| (1 << 5)', and this bit is marked 18338 'reserved' in the PXA docs. 18339 18340 Signed-off-by: Daniel Mack <daniel@caiaq.de> 18341 18342commit bd876be46f28b5fc2896537f6d01353f332789f7 18343Author: Daniel Mack <daniel@caiaq.de> 18344Date: Tue Jun 23 17:30:04 2009 +0200 18345 18346 pxa: add clock for system bus 2 arbiter 18347 18348 This clock is needed for systems using the USB2 device unit or the 2d 18349 graphics accelerator. 18350 18351 Signed-off-by: Daniel Mack <daniel@caiaq.de> 18352 18353commit b016000a95514c08cab50e1cba00b019c0801bc4 18354Author: Grazvydas Ignotas <notasas@gmail.com> 18355Date: Wed Jul 8 00:30:01 2009 +0300 18356 18357 OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh 18358 18359 Pandora is using both SDRC CSes. The MUX setting is needed 18360 for the second CS clock signal to allow the 2 RAM parts to 18361 be put in self-refresh correctly. 18362 18363 Based on similar patch for beagle and overo by 18364 Jean Pihet and Steve Sakoman. 18365 18366commit 8672c288703f3c51c829851c8fe6608c7869faaa 18367Author: Grazvydas Ignotas <notasas@gmail.com> 18368Date: Wed Jul 8 00:30:00 2009 +0300 18369 18370 OMAP3 pandora: setup pulls for various GPIOs 18371 18372 Set pullups or pulldowns for GPIOs which need them. 18373 Disable them for others, which have external pulls. 18374 Also make disabled pull setting consistent (some pins had 18375 type set to "up" even if pull type selection was disabled). 18376 18377commit 5ff78122f229946862a3f67a2f50a329e8e1bcf5 18378Author: Grazvydas Ignotas <notasas@gmail.com> 18379Date: Wed Jul 8 00:29:59 2009 +0300 18380 18381 OMAP3 pandora: setup pin mux for pins used on rev3 boards 18382 18383 Setup pin mux for GPIO pins connected on rev3 or later 18384 boards. Also change NUB2 IRQ pin. This should not affect 18385 older boards because they don't have any nubs (analog 18386 controllers) attached to them. 18387 18388commit 67c97c346b27c586a7263564f7afff6d1f8d8d0a 18389Author: Grazvydas Ignotas <notasas@gmail.com> 18390Date: Wed Jul 8 00:29:58 2009 +0300 18391 18392 OMAP3 pandora: pin mux cleanup 18393 18394 Remove configuration of not unused pins, effectively 18395 leaving them in safe mode. 18396 18397commit b996165f5a1623a055c03b22d64d6d5da81835d0 18398Author: Prafulla Wadaskar <prafulla@marvell.com> 18399Date: Mon Jul 6 15:50:47 2009 +0530 18400 18401 arm: Kirkwood: bugfix: UART1 bar correction 18402 18403 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 18404 18405commit 50243e3e7a96a96c5418ce6c90b7252d26fdd5b0 18406Author: Kumar Gala <galak@kernel.crashing.org> 18407Date: Tue Jul 7 15:48:58 2009 -0500 18408 18409 usb: Fix compiler warning with gcc4.4 18410 18411 ehci-hcd.c: In function 'ehci_submit_root': 18412 ehci-hcd.c:719: warning: value computed is not used 18413 ehci-hcd.c:748: warning: value computed is not used 18414 18415 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 18416 Signed-off-by: Remy Bohmer <linux@bohmer.net> 18417 18418commit 04366d070a1a3f7affddf15aaaea87bcf44cdbb0 18419Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18420Date: Wed Jul 8 11:42:19 2009 +0900 18421 18422 sh: Update pci config for Renesas r7780mp board 18423 18424 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18425 18426commit 74d9c16a681aa24bb4125191fe39dc7c75cde56a 18427Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 18428Date: Thu Jun 25 16:31:26 2009 +0900 18429 18430 sh: Add support ESPT-GIGA borad 18431 18432 ESPT-Giga is SH7763-based reference board. 18433 Board support is relatively sparse, presently supporting serial, 18434 gigabit ethernet, USB host, and MTD. 18435 18436 More information (in Japanese) available at: 18437 http://www.cente.jp/product/cente_hard/ESPT-Giga.html 18438 18439 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 18440 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18441 18442commit dae4e0148a1146a5610025ae4b445e841410b659 18443Author: Matthias Fuchs <matthias.fuchs@esd.eu> 18444Date: Fri Jul 3 16:06:37 2009 +0200 18445 18446 Add ESD PCI vendor ID 18447 18448 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 18449 18450commit 876b3cef537aab2cba8c19505db2876f6057f818 18451Author: Peter Tyser <ptyser@xes-inc.com> 18452Date: Mon Jun 22 18:01:41 2009 -0500 18453 18454 api_examples/Makefile: General cleanup 18455 18456 * Remove symlinking of files located outside api_examples/ 18457 18458 * Auto generate dependencies for files located outside api_examples/ 18459 18460 * Update names of variables to be similar to those in tools/Makefile 18461 18462 * Fix out of tree build error 18463 Dependencies are calculated for all files in the SRCS variable. 18464 Previously, the SRCS variable contained files which were symlinked 18465 into the api_examples/ directory. These symlinked files did not exist 18466 when dependencies were calculated when building out of tree. This 18467 resulted in errors such as: 18468 make[1]: *** No rule to make target `/work/wd/tmp-ppc/api_examples/.depend', needed by `_depend'. Stop. 18469 make[1]: Leaving directory `/home/wd/git/u-boot/work/api_examples' 18470 make: *** [depend] Error 2 18471 18472 Since symlinked source files are no longer used, this bug no longer 18473 exists. 18474 18475 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 18476 Acked-by: Rafal Jaworowski <raj@semihalf.com> 18477 18478commit 522f6f02adb93194e337016fe2e4e53c58d5d5ea 18479Author: Peter Tyser <ptyser@xes-inc.com> 18480Date: Mon Jun 22 18:01:40 2009 -0500 18481 18482 api_examples/Makefile: Get rid of unnecessary intermediate LIB target 18483 18484 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 18485 Acked-by: Rafal Jaworowski <raj@semihalf.com> 18486 18487commit 117d0ab5e6f3b3dd48fc346df4919555a78afd39 18488Author: Peter Tyser <ptyser@xes-inc.com> 18489Date: Mon Jun 22 18:01:39 2009 -0500 18490 18491 api_examples/Makefile: Combine ELF and BIN targets 18492 18493 Combining the two rules cleans up the Makefile a bit 18494 18495 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 18496 Acked-by: Rafal Jaworowski <raj@semihalf.com> 18497 18498commit 644cb38108b8dc22e0ef3cf5f404fe310d1995f8 18499Author: Peter Tyser <ptyser@xes-inc.com> 18500Date: Mon Jun 22 18:01:38 2009 -0500 18501 18502 api_examples/Makefile: Split up variable declarations 18503 18504 This cleans up the Makefile a bit and simplifies future changes 18505 18506 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 18507 Acked-by: Rafal Jaworowski <raj@semihalf.com> 18508 18509commit 890d242facc4079ed21e979ced2e8c6d6974f6d3 18510Author: Timur Tabi <timur@freescale.com> 18511Date: Fri Jun 19 14:10:52 2009 -0500 18512 18513 remove _IO_BASE and KSEG1ADDR from board configuration files 18514 18515 The KSEG1ADDR macro used to be necessary for the RTL8139 Ethernet 18516 driver, but the code that used that macro was removed over a year 18517 ago, so board configuration files no longer need to define it. 18518 18519 The _IO_BASE macro is also automatically defined to 0 if it isn't 18520 already set, so there's no need to define that macro either in the 18521 board configuration files. 18522 18523 Signed-off-by: Timur Tabi <timur@freescale.com> 18524 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18525 Acked-by: Andy Fleming <afleming@freescale.com> 18526 Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 18527 Acked-by: Kim Phillips <kim.phillips@freescale.com> 18528 18529commit c9969947a4687de90e2bb58e76842b491aa0e0b9 18530Author: Jon Smirl <jonsmirl@gmail.com> 18531Date: Sun Jun 14 18:21:28 2009 -0400 18532 18533 board support patch for phyCORE-MPC5200B-tiny 18534 18535 Add support for the Phytec phyCORE-MPC5200B-tiny. 18536 Code originally from Pengutronix.de. 18537 Created CONFIG_SYS_ATA_CS_ON_TIMER01 define for when IDE CS is on 18538 Timer 0/1 18539 18540 Signed-off-by: Jon Smirl <jonsmirl@gmail.com> 18541 Acked-by: Grant Likely <grant.likely@secretlab.ca> 18542 18543commit 7bd49ad12cc36a4de6995ddabbc65ffa1aa1933d 18544Author: Mike Frysinger <vapier@gentoo.org> 18545Date: Mon Jun 15 13:37:20 2009 -0400 18546 18547 kallsyms: fix escaping of NUL char in strings 18548 18549 The current kallsyms code is using \\0 to escape the backslash in the awk 18550 code, but the shell too needs escaping. This way we make sure gcc is 18551 passed the \0. Then gcc itself will consume this as an octal, so we have 18552 to use 000 so gcc will create the final NUL. 18553 18554 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 18555 18556commit ed540f07b8ad86909704e9806c1762462cb4995a 18557Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 18558Date: Fri Jun 26 10:18:49 2009 -0400 18559 18560 Blackfin: cm-bf561: add example settings for EXT-BF5xx-USB-ETH2 add-on 18561 18562 The cm-bf561 module can easily hook up to the EXT-BF5xx-USB-ETH2 extender 18563 board, so add a simple example of how to do that in the board config. 18564 18565 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at> 18566 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 18567 18568commit f8bf54b4081c3c3d518830df0017a23ec672a841 18569Author: Mike Frysinger <vapier@gentoo.org> 18570Date: Thu Jun 25 19:40:28 2009 -0400 18571 18572 Blackfin: blackstamp: update spi flash settings 18573 18574 The latest blackstamp boards can only run the SPI flash at 15MHz before 18575 they start to crap out, so lower the max speeds accordingly. The new SPI 18576 flash also has different sector requirements, so update the environment 18577 sizes as well. 18578 18579 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 18580 18581commit 286070ddc8339666c09bd7912e960b850a8a0318 18582Author: Mike Frysinger <vapier@gentoo.org> 18583Date: Mon Oct 6 03:31:52 2008 -0400 18584 18585 Blackfin: add cache_dump commands 18586 18587 A few debug-type commands used to dump the raw icache/dcache data. Useful 18588 when trying to track down cache-related bugs. 18589 18590 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 18591 18592commit 632e9b671efb0a6c900499f7a49fe5b63292b5fc 18593Author: Matthias Fuchs <matthias.fuchs@esd.eu> 18594Date: Wed Jul 8 15:31:57 2009 +0200 18595 18596 ppc4xx: Set default PCI device ID for 405EP boards 18597 18598 Current code only sets the PCI vendor id to 0x1014 and 18599 leaved device id to 0x0000. 18600 18601 Ths patch .... 18602 a) uses the correct PCI_VENDOR_ID_IBM macro for this 18603 b) sets the default device ID as stated in the UM to 0x0156 18604 by using PCI_DEVICE_ID_IBM_405GP for this. 18605 18606 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 18607 Signed-off-by: Stefan Roese <sr@denx.de> 18608 18609commit 123f102ec093fba6967066acdf9beb637df2e2d1 18610Author: Matthias Fuchs <matthias.fuchs@esd.eu> 18611Date: Wed Jul 8 13:43:55 2009 +0200 18612 18613 ppc4xx: Move 405EP pci code from cpu_init_f() to __pci_pre_init() 18614 18615 This patch moves some basic PCI initialisation from the 4xx cpu_init_f() 18616 to cpu/ppc4xx/4xx_pci.c. 18617 18618 The original cpu_init_f() function enabled the 405EP's internal arbiter 18619 in all situations. Also the HCE bit in cpc0_pci is always set. 18620 The first is not really wanted for PCI adapter designs and the latter 18621 is a general bug for PCI adapter U-Boots. Because it enables 18622 PCI configuration by the system CPU even when the PCI configuration has 18623 not been setup by the 405EP. The one and only correct place is 18624 in pci_405gp_init() (see "Set HCE bit" comment). 18625 18626 So for compatibility reasons the arbiter is still enabled in any case, 18627 but from weak pci_pre_init() so that it can be replaced by board specific 18628 code. 18629 18630 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 18631 Signed-off-by: Stefan Roese <sr@denx.de> 18632 18633commit c71103f9dc66dfcce8ad6df942364043bf27ade8 18634Author: Matthias Fuchs <matthias.fuchs@esd.eu> 18635Date: Wed Jul 8 13:43:23 2009 +0200 18636 18637 ppc4xx: Make is_pci_host() available for all 440 and 405 CPUs 18638 18639 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 18640 Signed-off-by: Stefan Roese <sr@denx.de> 18641 18642commit 1d8937a469bfeb55ca1f6d89a4e7cd2dfee3cf17 18643Author: Prafulla Wadaskar <prafulla@marvell.com> 18644Date: Mon Jun 29 20:56:43 2009 +0530 18645 18646 usb: add Marvell Kirkwood ehci host controller driver 18647 18648 This driver is tested on Sheevaplug platform 18649 18650 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 18651 Signed-off-by: Remy Bohmer <linux@bohmer.net> 18652 18653commit db7b43e4681f6f93c336132708157a8a0cca1f8b 18654Author: Vivek Mahajan <vivek.mahajan@freescale.com> 18655Date: Wed Jun 24 10:08:40 2009 +0530 18656 18657 mpc83xx: USB: fix: access of ehci struct elements 18658 18659 It fixes the access to the 'ehci' struct elements for mpc83xx which 18660 should have been taken care of in 4ef01010aa4799c759d75e67007fdd3a38c88c8a 18661 Sorry about that. 18662 18663 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 18664 Signed-off-by: Remy Bohmer <linux@bohmer.net> 18665 18666commit 08066152735417fc55a5c9de2cec0714c529e4f3 18667Author: Vivek Mahajan <vivek.mahajan@freescale.com> 18668Date: Fri Jun 19 17:56:00 2009 +0530 18669 18670 mpc8xxx: USB: fix: access of ehci struct elements 18671 18672 This patch fixes the access to the 'ehci' struct elements which should 18673 have been taken care off in 4ef01010aa4799c759d75e67007fdd3a38c88c8a 18674 Sorry about that. 18675 18676 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 18677 Signed-off-by: Remy Bohmer <linux@bohmer.net> 18678 18679commit c3a012ce65818beb274195cd47f31ed80d0fbaa5 18680Author: Bryan Wu <bryan.wu@analog.com> 18681Date: Tue Jun 16 05:26:27 2009 -0400 18682 18683 usb: musb: add timeout via CONFIG_MUSB_TIMEOUT 18684 18685 Signed-off-by: Bryan Wu <bryan.wu@analog.com> 18686 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 18687 Signed-off-by: Remy Bohmer <linux@bohmer.net> 18688 18689commit 7984967a9405672db1581402d2c2cfae268d1a67 18690Author: Mike Frysinger <vapier@gentoo.org> 18691Date: Tue Jun 16 05:26:25 2009 -0400 18692 18693 usb: musb: drop old musb read/write prototypes 18694 18695 These functions are no longer defined, so remove their prototypes. 18696 18697 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 18698 Signed-off-by: Remy Bohmer <linux@bohmer.net> 18699 18700commit 4e04f16020115ab5ccf53158e100de58bcaf29bd 18701Author: Kim Phillips <kim.phillips@freescale.com> 18702Date: Mon Jun 15 11:50:07 2009 -0500 18703 18704 usb: fix CONFIG_SYS_MPC83xx_USB_ADDR not defined error 18705 18706 fix a stray CONFIG_MPC83XX that escaped commit 18707 0f898604945af4543c1525fc33b6bae621a3b805. 18708 18709 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 18710 Signed-off-by: Remy Bohmer <linux@bohmer.net> 18711 18712commit bc0d3296f1780b50e6b9630aee5eb368f2afb6cb 18713Author: Michal Simek <monstr@monstr.eu> 18714Date: Tue Jun 30 23:47:30 2009 +1000 18715 18716 asm-generic: Consolidate errno.h to asm-generic/errno.h 18717 18718 This patch use blackfin errno.h implementation which 18719 correspond Linux kernel one. 18720 18721 MIPS implemetation is different that's why I keep it. 18722 18723 I removed ppc_error_no.h from Marvell boards which 18724 was the same too. 18725 18726 I have got ack from ppc40x, blackfin, arm, coldfire and avr custodians. 18727 18728 Acked-by: Stefan Roese <sr@denx.de> 18729 Signed-off-by: Michal Simek <monstr@monstr.eu> 18730 18731commit 2896b5851f0430bf16529376a4193630e966c788 18732Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 18733Date: Tue Jul 7 16:01:02 2009 +0200 18734 18735 Command improvements for ubifs 18736 18737 Check that an argument is passed to ubifsmount and that addresses and 18738 sizes are actually numbers for ubifsload. Also improve the instructions 18739 a bit. 18740 18741 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 18742 Signed-off-by: Stefan Roese <sr@denx.de> 18743 18744commit 25c8f4005979ab2d190713ba341d96a5fa905cdb 18745Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 18746Date: Tue Jul 7 16:59:46 2009 +0200 18747 18748 Handle VID header offset in ubi part command 18749 18750 The VID header offset is sometimes needed to initialize the UBI 18751 partition. This patch adds it (optionally) to the command line 18752 for the ubi part command. 18753 18754 (Lines have been properly wrapped since last version) 18755 18756 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 18757 Acked-by: Stefan Roese <sr@denx.de> 18758 Signed-off-by: Stefan Roese <sr@denx.de> 18759 18760commit 3672cd5c3b53d219d33345eebad4e25ad5bf6d52 18761Author: Wolfgang Denk <wd@denx.de> 18762Date: Thu Jul 9 09:56:16 2009 +0200 18763 18764 MAINTAINERS: fix sorting, remove duplicates. 18765 18766 Signed-off-by: Wolfgang Denk <wd@denx.de> 18767 18768commit efbf14e9a2394a154b12643d4a011994b5096b5a 18769Author: Heiko Schocher <heiko.schocher@invitel.hu> 18770Date: Wed Dec 10 08:27:01 2008 +0100 18771 18772 all platforms: make show_boot_progress() work again 18773 18774 Signed-off-by: Heiko Schocher <hs@denx.de> 18775 18776commit 205a0988d8fd778c60746c34c2f17dbd2b7cd0d2 18777Author: Prafulla Wadaskar <prafulla@marvell.com> 18778Date: Mon Jun 29 15:25:18 2009 +0530 18779 18780 nand: Add Marvell Kirkwood NAND driver 18781 18782 This patch adds a NAND driver for the Marvell Kirkwood SoC's 18783 18784 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 18785 Acked-by: Scott Wood <scottwood@freescale.com> 18786 18787commit 0580e48f53f972783e56fcedadb9ce6e5b0b6f32 18788Author: Matthias Fuchs <matthias.fuchs@esd.eu> 18789Date: Mon Jul 6 16:27:33 2009 +0200 18790 18791 ppc4xx: Make pll_write global 18792 18793 This patch makes pll_write on PPC405EP boards 18794 global and callable from C code. 18795 18796 pll_write can be used to dynamically modify the PLB:PCI divider 18797 as it is required for 33/66 MHz pci adapters based on the 405EP. 18798 18799 board_early_init_f() is a good place to do that (check M66EN signal 18800 and call pll_write() when it is required). 18801 18802 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 18803 Signed-off-by: Stefan Roese <sr@denx.de> 18804 18805commit 20b3c4b528606d51799aed5e4c71783720cd2b72 18806Author: Stefan Roese <sr@denx.de> 18807Date: Mon Jul 6 11:44:33 2009 +0200 18808 18809 ppc4xx: Remove compilation warning "pci_async_enabled defined but not used" 18810 18811 Signed-off-by: Stefan Roese <sr@denx.de> 18812 18813commit d0a1364f91c80d29daff6b27a7904a50cdc00b35 18814Author: Matthias Fuchs <matthias.fuchs@esd.eu> 18815Date: Fri Jul 3 16:06:06 2009 +0200 18816 18817 ppc4xx: Implement is_pci_host() for 405 CPUs 18818 18819 This patch implements the is_pci_host() function in a similiar way 18820 as it is used on 440 targets. 18821 18822 The former path with CONFIG_PCI_HOST == PCI_HOST_AUTO does not 18823 build on 405EP targets because checking the PCI arbiter is different. 18824 So putting the fixed code into a separate function makes the code 18825 more readable. 18826 18827 Also using is_pci_host() on 405 brings 405 and 440 PCI code 18828 a little bit closer. 18829 18830 In preparation for an upcoming 405EP based PMC module I made this 18831 function weak so that it can be overwritten from board specific code. 18832 18833 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 18834 Signed-off-by: Stefan Roese <sr@denx.de> 18835 18836commit 04ddae915f295dee301f15c32100533a48e3b433 18837Author: Alessio Centazzo <centazzo@gmail.com> 18838Date: Wed Jul 1 22:20:51 2009 -0700 18839 18840 ppc4xx: Fixed PPC4xx debug compilation error in uic.c 18841 18842 This patch fixes a debug compilation error for PPC4xx platforms, all 18843 other architectures are not affected by this change. The 'handler' 18844 pointer was undefined. The fix is exercised and has effect only if 18845 DEBUG is defined. 18846 18847 Signed-off-by: Alessio Centazzo acpatin@yahoo.com 18848 Signed-off-by: Stefan Roese <sr@denx.de> 18849 18850commit 48e2b535a0dd3a7b77b674130934a24f9de6f48d 18851Author: Felix Radensky <felix@embedded-sol.com> 18852Date: Wed Jul 1 11:37:46 2009 +0300 18853 18854 4xx: Fix compilation warnings and MQ registers dump in SPD DDR2 code 18855 18856 This patch fixes printf format string compilation warnings in several 18857 debug statements. It also fixes the dump of DDR controller MQ registers 18858 found on some 44x and 46x platforms. The current register dump code 18859 uses incorrect DCRs to access these registers. 18860 18861 Signed-off-by: Felix Radensky <felix@embedded-sol.com> 18862 Signed-off-by: Stefan Roese <sr@denx.de> 18863 18864commit 26d37f0061ad05e5c383c910f00e6006f3c89a3a 18865Author: Felix Radensky <felix@embedded-sol.com> 18866Date: Mon Jun 22 15:30:42 2009 +0300 18867 18868 ppc4xx: Fix FDT EBC mappings on Canyonlands 18869 18870 This patch fixes 2 problems with FDT EBC mappings on Canyonlands. 18871 First, NAND EBC mapping was missing, making Linux NAND driver 18872 unusable on this board. Second, NOR remapping code assumed that 18873 NOR is always on CS0, however when booting from NAND NOR is on CS3. 18874 18875 Signed-off-by: Felix Radensky <felix@embedded-sol.com> 18876 Signed-off-by: Stefan Roese <sr@denx.de> 18877 18878commit baa9f9ba4345ed6dc5c403871c32e6295316ea52 18879Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18880Date: Tue Jun 16 22:29:15 2009 +0900 18881 18882 sh: Revised the build with newest compiler 18883 18884 The check of data became severe from newest gcc. 18885 This patch checked in gcc-4.2 and 4.3 . 18886 18887 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18888 18889commit be45c632568ba76343c1453b3951ad793f482fd5 18890Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18891Date: Thu Jun 4 12:06:48 2009 +0200 18892 18893 sh3/sh4: rename config option TMU_CLK_DIVIDER to CONFIG_SYS_TMU_CLK_DIV 18894 18895 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18896 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 18897 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18898 18899commit 8dd29c87ba370072a8464b8cc19e0a1e6e0497b4 18900Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18901Date: Thu Jun 4 12:06:47 2009 +0200 18902 18903 sh3/sh4: fix CONFIG_SYS_HZ to 1000 18904 18905 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18906 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 18907 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18908 18909commit add380f51f34ed1e2678c2abac8d53c91d652f26 18910Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18911Date: Thu Jun 4 12:06:46 2009 +0200 18912 18913 sh: introduce clock framework 18914 18915 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18916 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 18917 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18918 18919commit 3931a375de2c381d9ff5ec2767b2da9f62a41aef 18920Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18921Date: Thu Jun 4 12:06:45 2009 +0200 18922 18923 sh: unify linker script 18924 18925 all sh boards use the same cpu linker script so move it to cpu/$(CPU) 18926 18927 that could be overwrite in following order 18928 SOC 18929 BOARD 18930 via the corresponding config.mk 18931 18932 tested on r2dplus 18933 18934 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18935 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 18936 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18937 18938commit 236aad875817771eb1f25ed32784b3cd7760b2e6 18939Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18940Date: Thu Jun 4 12:06:44 2009 +0200 18941 18942 sh: make the linker scripts more generic 18943 18944 currently we need to sync the linker script enty and TEXT_BASE manualy 18945 and the reloc_dst is based on it 18946 18947 instead provide it now from the ldflags 18948 18949 tested on r2dplus 18950 18951 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18952 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 18953 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18954 18955commit ce29817212792113cd2d67a9767049a2e262c406 18956Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18957Date: Thu Jun 4 12:06:43 2009 +0200 18958 18959 sh7785lcr: fix out of tree build 18960 18961 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 18962 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 18963 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 18964 18965commit 2e8a6f551cba550e9220dca4d8504066203b1f74 18966Author: HeungJun Kim <riverful.kim@gmail.com> 18967Date: Tue Jun 30 14:42:22 2009 +0900 18968 18969 env_onenand: change env_address type from unsigned long to loff_t 18970 18971 If use the onenand boot, the env_relocate_spec() calls mtd->read(), 18972 and the type of the argument #2 of mtd->read() was changed to loff_t. 18973 But, the "env_addr" type is still unsigned long, thus this patch change 18974 the type from unsigned long to loff_t. 18975 18976 Acked-by: Kyungmin Park <kyungmin.park@samsung.com> 18977 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com> 18978 Signed-off-by: Scott Wood <scottwood@freescale.com> 18979 18980commit 66372fe2ab11cdeb0e841ad9eb6ba79769db4909 18981Author: Mingkai Hu <Mingkai.hu@freescale.com> 18982Date: Thu Jun 18 18:23:27 2009 +0800 18983 18984 fsl_elbc_nand: redirect the pointer of bbt pattern to RAM 18985 18986 The bbt descriptors contains the pointer to the bbt pattern which 18987 are statically initialized memory struct. When relocated to RAM, 18988 these pointers will continue point to NOR flash(or L2 SRAM, or 18989 other boot device). If the contents of NOR flash changed or L2 18990 SRAM disabled, it'll hang the system. 18991 18992 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 18993 Signed-off-by: Scott Wood <scottwood@freescale.com> 18994 18995commit 1dac3a51875967f32641bbc0d26dc382ef02330a 18996Author: Scott Wood <scottwood@freescale.com> 18997Date: Wed Jun 24 17:23:49 2009 -0500 18998 18999 nand_spl: Fix cmd_ctrl usage in nand_boot.c. 19000
19001 When adding large page NAND support to this file, I had a misunderstanding 19002 about the exact semantics of NAND_CTRL_CHANGE (which isn't documented 19003 anywhere I can find) -- it is apparently just a hint to drivers, 19004 which aren't required to preserve the old value for subsequent 19005 non-"change" invocations. 19006 19007 This change makes nand_boot.c no longer assume this. Note that this 19008 happened to work by chance with some NAND drivers, which don't preserve 19009 the value, but treat 0 equivalently to NAND_CTRL_ALE. 19010 19011 I don't have hardware to test this, so any testing is appreciated. 19012 19013 Signed-off-by: Scott Wood <scottwood@freescale.com> 19014 19015commit 98713d2663d5d30dde74f48f547114a2bfd9d463 19016Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk> 19017Date: Thu Jun 18 18:41:03 2009 +0100 19018 19019 Bug-fix in drivers mtd nand Makefile 19020 19021 The S3C2410 NAND driver source file is included in the makefile instead of 19022 the object file. 19023 19024 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk> 19025 Signed-off-by: Scott Wood <scottwood@freescale.com> 19026 19027commit b74ab737369bbbe66c15cbe6c0d0b6a351b00c96 19028Author: Guennadi Liakhovetski <lg@denx.de> 19029Date: Mon May 18 16:07:22 2009 +0200 19030 19031 nand_spl: read environment early, when booting from NAND using nand_spl 19032 19033 Currently, when booting from NAND using nand_spl, in the beginning the default 19034 environment is used until later in boot process the dynamic environment is read 19035 out. This way environment variables that must be interpreted early, like the 19036 baudrate or "silent", cannot be modified dynamically and remain at their 19037 default values. Fix this problem by reading out main and redundand (if used) 19038 copies of the environment in the nand_spl code. 19039 19040 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 19041 Signed-off-by: Scott Wood <scottwood@freescale.com> 19042 19043commit 378adfcdf4bbd77ee4cbc3276d4733e218308a21 19044Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19045Date: Sat May 16 14:27:40 2009 +0200 19046 19047 mtd: nand: use loff_t for offset 19048 19049 nand_util currently uses size_t which is arch dependent and not always a 19050 unsigned long. Now use loff_t, as does the linux mtd layer. 19051 19052 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19053 Signed-off-by: Scott Wood <scottwood@freescale.com> 19054 19055commit 8360b66bac9567701027a0087274d0c9b2fe8d6b 19056Author: Wolfgang Denk <wd@denx.de> 19057Date: Sun May 24 17:34:33 2009 +0200 19058 19059 nand/onenand: Fix missing argument checking for "markbad" command 19060 19061 The "nand markbad" and "onenand markbad" commands did not check if an 19062 argument was passed; if this was forgotten, no error was raised but 19063 block 0 was marked as bad. 19064 19065 While fixing this bug, clean up the code a bit and allow to pass more 19066 than one block address, thus allowing to mark several blocks as bad 19067 in a single command invocation. 19068 19069 Signed-off-by: Wolfgang Denk <wd@denx.de> 19070 Signed-off-by: Scott Wood <scottwood@freescale.com> 19071 19072commit cd84423a09f3a08029fe41c1db96168debd0b51f 19073Author: Mike Frysinger <vapier@gentoo.org> 19074Date: Mon May 25 22:42:28 2009 -0400 19075 19076 mtd: nand: new base driver for memory mapped nand devices 19077 19078 The BF537-STAMP Blackfin board had a driver for working with NAND devices 19079 that are simply memory mapped. Since there is nothing Blackfin specific 19080 about this, generalize the driver a bit so that everyone can leverage it. 19081 19082 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 19083 Signed-off-by: Scott Wood <scottwood@freescale.com> 19084 19085commit d27bc728cf35e7d7996fbd77154335e66615b213 19086Author: Guennadi Liakhovetski <lg@denx.de> 19087Date: Mon May 18 16:06:45 2009 +0200 19088 19089 env_nand: remove unused variable. 19090 19091 Remove an unused "total" variable in multiple functions. 19092 19093 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 19094 Signed-off-by: Scott Wood <scottwood@freescale.com> 19095 19096commit 154b5484ac7dcbcd0fb5ba388d930b02f87fa302 19097Author: David Brownell <dbrownell@users.sourceforge.net> 19098Date: Sun May 10 15:43:01 2009 -0700 19099 19100 davinci_nand chipselect/init cleanup 19101 19102 Update chipselect handling in davinci_nand.c so that it can 19103 handle 2 GByte chips the same way Linux does: as one device, 19104 even though it has two halves with independent chip selects. 19105 For such chips the "nand info" command reports: 19106 19107 Device 0: 2x nand0, sector size 128 KiB 19108 19109 Switch to use the default chipselect function unless the board 19110 really needs its own. The logic for the Sonata board moves out 19111 of the driver into board-specific code. (Which doesn't affect 19112 current build breakage if its NAND support is enabled...) 19113 19114 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 19115 Signed-off-by: Scott Wood <scottwood@freescale.com> 19116 19117commit 496863b2440dd7cd69a1ad2443a9badd5f8968d1 19118Author: Sandeep Paulraj <s-paulraj@ti.com> 19119Date: Sat May 9 12:35:20 2009 -0400 19120 19121 NAND DaVinci: Update to ALE/CLE Mask values 19122 19123 All DaVinci SOC's use a CLE mask of 0x10 and an ALE mask of 0x8 19124 except the DM646x. This was decided by the design team driving the design. 19125 This patch updates the CLE and ALE values for DM646x. 19126 Updated patches for DM646x will be sent shortly. 19127 This applies to u-boot-nand-flash git 19128 19129 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 19130 Signed-off-by: Scott Wood <scottwood@freescale.com> 19131 19132commit 0c1684437ef810c503df29e8d73f63191aa63862 19133Author: Sandeep Paulraj <s-paulraj@ti.com> 19134Date: Wed Apr 29 09:47:09 2009 -0400 19135 19136 ARM DaVinci: Changing ALE Mask Value 19137 19138 The ALE mask used by DaVinci SOCs is wrong. The patch changes the mask value 19139 from '0xa' to '0x8'. This is the mask we use for all TI releases. 19140 19141 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 19142 Signed-off-by: Scott Wood <scottwood@freescale.com> 19143 19144commit 6e29ed8e576a6900c5d8dcde36b423ac576894dc 19145Author: David Brownell <dbrownell@users.sourceforge.net> 19146Date: Tue Apr 28 13:19:53 2009 -0700 19147 19148 davinci_nand: cleanup II (CONFIG_SYS_DAVINCI_BROKEN_ECC) 19149 19150 Remove CONFIG_SYS_DAVINCI_BROKEN_ECC option. It's not just nasty; 19151 it's also unused by any current boards, and doesn't even match the 19152 main U-Boot distributions from TI (which use soft ECC, or 4-bit ECC 19153 on newer chips that support it). 19154 19155 DaVinci GIT kernels since 2.6.24, and mainline Linux since 2.6.30, 19156 match non-BROKEN code paths for 1-bit HW ECC. The BROKEN code paths 19157 do seem to partially match what MontaVista/TI kernels (4.0/2.6.10, 19158 and 5.0/2.6.18) do ... but only for small pages. Large page support 19159 is really broken (and it's unclear just what software it was trying 19160 to match!), and the ECC layout was making three more bytes available 19161 for use by filesystem (or whatever) code. 19162 19163 Since this option itself seems broken, remove it. Add a comment 19164 about the MV/TI compat issue, and the most straightforward way to 19165 address it (should someone really need to solve it). 19166 19167 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 19168 Signed-off-by: Scott Wood <scottwood@freescale.com> 19169 19170commit fcb774777562bb7bcdc53c608d0e6bae906ce0f6 19171Author: David Brownell <dbrownell@users.sourceforge.net> 19172Date: Tue Apr 28 13:19:50 2009 -0700 19173 19174 davinci_nand: cleanup I (minor) 19175 19176 Minor cleanup for DaVinci NAND code: 19177 19178 - Use I/O addresses from nand_chip; CONFIG_SYS_NAND_BASE won't 19179 be defined when there are multiple chipselect lines in use 19180 (as with common 2 GByte chips). 19181 19182 - Cleanup handling of EMIF control registers 19183 * Only need one pointer pointing to them 19184 * Remove incorrect and unused struct supersetting them 19185 19186 - Use the standard waitfunc; we don't need a custom version 19187 19188 - Partial legacy cleanup: 19189 * Don't initialize every board like it's a DM6446 EVM 19190 * #ifdef a bit more code for BROKEN_ECC 19191 19192 Sanity checked with small page NAND on dm355 and dm6446 EVMs; 19193 and large page on dm355 EVM (packaged as two devices, not one). 19194 19195 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 19196 Signed-off-by: Scott Wood <scottwood@freescale.com> 19197 19198commit 8e5e9b940cdede0debe528cdd7edccccbb3ebf2a 19199Author: Wolfgang Denk <wd@denx.de> 19200Date: Tue Jul 7 22:35:02 2009 +0200 19201 19202 Coding style cleanup; update CHANGELOG 19203 19204 Signed-off-by: Wolfgang Denk <wd@denx.de> 19205 19206commit d318d0c44d8e91e937c4dad0c5b1d2f6bb9d9fd8 19207Author: Stefan Roese <sr@denx.de> 19208Date: Mon Jun 29 13:30:50 2009 +0200 19209 19210 UBI: Fix build problem noticed on Apollon (arm/testing repo) 19211 19212 This patch fixes a build problem noticed on Apollon by using 19213 mtd_dev_by_eb() instead of "/" as done in the Linux UBI version. 19214 So this brings the U-Boot UBI version more in sync with the Linux 19215 version again. 19216 19217 Signed-off-by: Stefan Roese <sr@denx.de> 19218 19219commit 2efee52b09657e9353655b9dae9e1d1a67a2abe4 19220Author: Prafulla Wadaskar <prafulla@marvell.com> 19221Date: Mon Jul 6 20:29:15 2009 +0530 19222 19223 sf: Macronix additional chips supported 19224 19225 new chips supported:- 19226 MX25L1605D, MX25L3205D, MX25L6405D, MX25L12855E 19227 out of which MX25L6405D and MX25L12855E tested on Kirkwood platforms 19228 19229 Modified the Macronix flash support to use 2 bytes of device id instead of 1 19230 This was required to support MX25L12855E 19231 19232 Signed-off-by: Piyush Shah <spiyush@marvell.com> 19233 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 19234 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 19235 19236commit dd54126715b89ed0c43322aa78b0dad306f043b6 19237Author: Mike Frysinger <vapier@gentoo.org> 19238Date: Fri Jun 19 03:27:28 2009 -0400 19239 19240 sf: sst: add sst25vf###b ids 19241 19242 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 19243 19244commit 7d907f0ea993b179a197d8db2a36f122bc673c2d 19245Author: Mike Frysinger <vapier@gentoo.org> 19246Date: Fri Jun 19 03:20:06 2009 -0400 19247 19248 sf: sst: fix sector size 19249 19250 Looks like when I was encoding the sector sizes, I forgot to divide by 8 19251 (due to the stupid marketing driven process that declares all sizes in 19252 useless megabits and not megabytes). 19253 19254 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 19255 19256commit ceb70b466e75ceb1a621b6163f7e31116bfc8094 19257Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19258Date: Sun Jul 5 01:06:06 2009 +0200 19259 19260 nhk8815: fix MAKEALL 19261 19262 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19263 19264commit d08e5ca301b69ab77ecdd34e2b06aee30d6057d1 19265Author: Magnus Lilja <lilja.magnus@gmail.com> 19266Date: Sat Jul 4 10:31:24 2009 +0200 19267 19268 MX31: Add NAND SPL boot support to i.MX31 PDK board. 19269 19270 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 19271 19272commit 78eabb90b793fafe875a7469526d1715fa56cbb4 19273Author: Prafulla Wadaskar <prafulla@marvell.com> 19274Date: Mon Jun 29 20:55:54 2009 +0530 19275 19276 arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support 19277 19278 This patch abstracts Kirkwood arch specific changes to support ehci-kirkwood driver 19279 19280 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 19281 19282commit 095a460b49022e64df76134300643606e3acb4e9 19283Author: Alessandro Rubini <rubini@unipv.it> 19284Date: Mon Jun 29 10:52:37 2009 +0200 19285 19286 arm nomadik: use 1000 as HZ value and rewrite timer code 19287 19288 This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites 19289 timer code, which is now both correct and much smaller. Unused 19290 functions like udelay_masked() have been removed as no driver uses 19291 them, even the ones that are not currently active for this board. 19292 mtu.h is copied literally from the kernel sources. 19293 19294 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 19295 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 19296 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19297 19298commit f7aa59b29a451cc502078a9e4ba32345a4250c05 19299Author: Alessandro Rubini <rubini@unipv.it> 19300Date: Mon Jun 22 09:18:57 2009 +0200 19301 19302 arm nomadik: allow Nand and OneNand to coexists 19303 19304 The evaluation kit has both Nand and OneNand, both drivers are there 19305 and the two configurations only select a different default for the 19306 jffs partition. This adds the OneNand driver and cleans up storage. 19307 19308 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 19309 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 19310 19311commit fd14c41a861cd38ee2fe3abd61d59b57b4eb23c9 19312Author: Alessandro Rubini <rubini@unipv.it> 19313Date: Mon Jun 22 09:18:47 2009 +0200 19314 19315 arm nomadik: cleanup reset 19316 19317 There is only one public release of the Nomadik chip, so the ifdef 19318 in reset code as well as a define in the config file are not needed 19319 19320 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 19321 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 19322 19323commit ee1363f2da3996bafdecdd8f4e48862ebff3f271 19324Author: Alessandro Rubini <rubini@unipv.it> 19325Date: Mon Jun 22 09:18:37 2009 +0200 19326 19327 arm nomadik: rename board to nhk8815 19328 19329 This is an error in my side in the initial submission: nobody 19330 calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead. 19331 19332 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 19333 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> 19334 19335commit 040f8f63e922bbfb8ba0958bf637f11a917f5c38 19336Author: Stefano Babic <sbabic@denx.de> 19337Date: Wed Jul 1 20:40:41 2009 +0200 19338 19339 xscale: add support for the polaris board 19340 19341 The Polaris board is based on the TrizepsIV module of 19342 Keith & Koep (http://www.keith-koep.com). 19343 19344 Signed-off-by: Stefano Babic <sbabic@denx.de> 19345 19346commit 88bd97501314683b87f3f1edcf55b347c041b722 19347Author: Stefano Babic <sbabic@denx.de> 19348Date: Wed Jul 1 04:33:56 2009 +0200 19349 19350 xscale: fix USB initialization for Trizepsiv module 19351 19352 Due to change in the usb_board_init() prototype, the USB for 19353 the TrizepsIV was not correctly initialized. 19354 Removed dummy print from usb_board_stop(). 19355 19356 Signed-off-by: Stefano Babic <sbabic@denx.de> 19357 19358commit 0b785ddd60120cfb74d18e58c56054238219f6db 19359Author: Prafulla Wadaskar <prafulla@marvell.com> 19360Date: Wed Jul 1 20:34:51 2009 +0200 19361 19362 net: merge bugfix: Marvell Kirkwood gigabit ethernet driver 19363 19364 This patch looks okay on u-boot-net.git/next branch 19365 but when it was merged to u-boot.git/master the last line is missing 19366 19367 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 19368 Acked-by: Ben Warren <biggerbadderben@gmail.com> 19369 19370commit 33b1d3f43a16fbb79004075ce89ae4e618b288a2 19371Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 19372Date: Tue Jun 30 21:03:37 2009 +0200 19373 19374 at91: Add esd gmbh MEESC board support 19375 19376 This patch adds support for esd gmbh MEESC board. 19377 The MEESC is based on an Atmel AT91SAM9263 SoC. 19378 19379 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 19380 19381commit 21761540b43c7086c75ee9afb412da1e5ddde2e9 19382Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19383Date: Tue Jun 30 21:03:35 2009 +0200 19384 19385 ARM: Update mach-types 19386 19387 update against linux v2.6.30 19388 19389 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19390 19391commit 45627fce18139a74e0755124d27376b520db156c 19392Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 19393Date: Tue Jun 30 23:03:33 2009 +0200 19394 19395 at91: Add CAN init function 19396 19397 To enable CAN init, CONFIG_CAN has to be defined in the board config file 19398 and at91_can_hw_init() has to be called in the board specific code. 19399 19400 CAN is available on AT91SAM9263 and AT91CAP9 SoC. 19401 19402 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 19403 19404commit 2e23008e5dbde7fe4c4758bee5a393e1db796cdf 19405Author: Simon Kagstrom <simon.kagstrom@netinsight.net> 19406Date: Tue Jun 30 23:03:31 2009 +0200 19407 19408 arm: Kirkwood: Correct header define 19409 19410 Correct define typo (. -> ,) 19411 19412 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net> 19413 19414commit 8449f287f5c53d59db13c3c512e6bd1750b692d1 19415Author: Magnus Lilja <lilja.magnus@gmail.com> 19416Date: Wed Jul 1 01:07:55 2009 +0200 19417 19418 MX31: Add basic support for Freescale i.MX31 PDK board. 19419 19420 Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board). 19421 19422 This patch assumes that some other program performs the actual 19423 NAND boot. 19424 19425 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 19426 Acked-by: Fabio Estevam <fabioestevam@yahoo.com> 19427 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19428 19429commit 8d460a573e2a2ac4834636903865a0428ad0e629 19430Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19431Date: Tue Jun 23 00:12:01 2009 +0200 19432 19433 S3C24x0: extract interrupts from timer 19434 19435 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19436 19437commit c8badbe500a752f42049e51042767ee62ea714e0 19438Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19439Date: Sun Jun 28 14:14:21 2009 +0200 19440 19441 dm355/pm9261: add missing CONFIG_NET_MULTI 19442 19443 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19444 19445commit 798bf9a9ade1cfbe85a16d180cad720927d8e10a 19446Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19447Date: Tue Jun 23 00:12:01 2009 +0200 19448 19449 arm920t/interrupts: Move conditional compilation to Makefile 19450 19451 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19452 19453commit 06e758e75c79ce8761866bf8165c443584a20893 19454Author: Kim, Heung Jun <riverful@gmail.com> 19455Date: Sat Jun 20 11:02:17 2009 +0200 19456 19457 move L2 cache enable/disable function to cache.c in the omap3 SoC directory 19458 19459 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com> 19460 CC: Dirk Behme <dirk.behme@googlemail.com> 19461 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19462 19463commit d583ef5147066d3609de21f3beebbab99a19bad4 19464Author: Thomas Lange <thomas@corelatus.se> 19465Date: Sat Jun 20 11:02:17 2009 +0200 19466 19467 ARM DaVinci: EMIF settings 19468 19469 NAND module should not modify EMIF registers unrelated to CS2 19470 that is used for NAND, i.e. do not modify EWAIT config register 19471 or registers for other Chip Selects. 19472 19473 Without this patch, EMIF configurations made in board_init() 19474 will be invalidated. 19475 19476 Signed-off-by: Thomas Lange <thomas@corelatus.se> 19477 19478commit 2600b8571a26c10c1c43401d7af38e2333cc5381 19479Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19480Date: Sat Jun 20 11:02:17 2009 +0200 19481 19482 versatile: config coding style cleanup 19483 19484 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19485 Cc: Peter Pearse <peter.pearse@arm.com> 19486 19487commit 4efb77d41f9c5d93f0f92dda60e742023fa03c72 19488Author: Prafulla Wadaskar <prafulla@marvell.com> 19489Date: Sat Jun 20 11:01:53 2009 +0200 19490 19491 arm: Kirkwood: Basic SOCs support 19492 19493 Kirkwood family controllers are highly integrated SOCs 19494 based on Feroceon-88FR131/Sheeva-88SV131/arm926ejs cpu core. 19495 19496 SOC versions supported:- 19497 1) 88F6281-A0 define CONFIG_KW88F6281_A0 19498 2) 88F6192-A0 define CONFIG_KW88F6192_A0 19499 19500 Other supported features:- 19501 1) get_random_hex() fucntion 19502 2) PCI Express port initialization 19503 3) NS16550 driver support 19504 19505 Contributors: 19506 Yotam Admon <yotam@marvell.com> 19507 Michael Blostein <michaelbl@marvell.com 19508 19509 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com> 19510 Acked-by: Stefan Rose <sr@denx.de> 19511 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 19512 19513commit 5c3d5817e5e68b828c165c501c215e793dc63aac 19514Author: Prafulla Wadaskar <prafulla@marvell.com> 19515Date: Sat Jun 20 11:01:52 2009 +0200 19516 19517 arm: generic cache.h for ARM architectures 19518 19519 This patch is required for Kirkwood SoC support 19520 may be used by other ARM architectures 19521 19522 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 19523 19524commit 9c8c706c92e53433a871a563946c38075d76504d 19525Author: Matthias Ludwig <mludwig@ultratronik.de> 19526Date: Sat Jun 20 11:01:50 2009 +0200 19527 19528 OMAP3EVM: fix typo. replace CS6 by CS5, no functionality change 19529 19530 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de> 19531 19532commit 0aafde1dc76d6d65d6be10bf499ec86d9ffee8b9 19533Author: Sedji Gaouaou <sedji.gaouaou@atmel.com> 19534Date: Wed Jun 24 08:32:09 2009 +0200 19535 19536 at91sam9260/9263: add back up for the rst(reset controller). 19537 19538 On the boards at91sam9260ek, at91sam9263ek and afed9260, the rstc register was 19539 set to 0 after being set to 500 ms for the PHY reset. 19540 Do backup the old reset length and restore it after the MACB initialisation. 19541 19542 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com> 19543 Signed-off-by: Stelian Pop <stelian@popies.net> 19544 19545commit afb0b1315c048ce2b1f35f0183b8b118ad0c14e1 19546Author: Kumar Gala <galak@kernel.crashing.org> 19547Date: Fri Jul 3 12:45:44 2009 -0500 19548 19549 fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code 19550 19551 sys_eeprom.c: In function 'do_mac': 19552 sys_eeprom.c:323: warning: dereferencing type-punned pointer will break strict-aliasing rules 19553 sys_eeprom.c: In function 'mac_read_from_eeprom': 19554 sys_eeprom.c:395: warning: dereferencing type-punned pointer will break strict-aliasing rules 19555 19556 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19557 19558commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae 19559Author: Peter Tyser <ptyser@xes-inc.com> 19560Date: Tue Jun 30 17:15:51 2009 -0500 19561 19562 83xx: Add support for fsl_dma driver 19563 19564 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19565 Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu> 19566 Tested-by: Ira W. Snyder <iws@ovro.caltech.edu> 19567 Acked-by: Kim Phillips <kim.phillips@freescale.com> 19568 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19569 19570commit 9adda5459ca62120c0c50b82b766fe1cf6925bbf 19571Author: Peter Tyser <ptyser@xes-inc.com> 19572Date: Tue Jun 30 17:15:50 2009 -0500 19573 19574 83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references 19575 19576 Update 83xx architecture's CONFIG_ECC_INIT_VIA_DDRC references to 19577 CONFIG_ECC_INIT_VIA_DDRCONTROLLER, which other Freescale architectures 19578 use 19579 19580 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19581 Acked-by: Kim Phillips <kim.phillips@freescale.com> 19582 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19583 19584commit 039594a4301dadceb267db5e8b9c8c78b1bb86b5 19585Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 19586Date: Thu Jul 2 16:15:01 2009 +0530 19587 19588 8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors 19589 19590 Defining the next two configs allows to switch the serial port from the 19591 console using the setenv stdin and stdout 19592 1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */ 19593 2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */ 19594 19595 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 19596 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 19597 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19598 19599commit 546b1032907df70f2dd0f98f3ad09885a88411e5 19600Author: Poonam Aggrwal <poonam.aggrwal@freescale.com> 19601Date: Thu Jul 2 16:14:40 2009 +0530 19602 19603 85xx: Adds GPIO registers to MPC85xx Memory Map. 19604 19605 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> 19606 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19607 19608commit 5da6f806b400372b8a0664f3282c9e83a402eb66 19609Author: Peter Tyser <ptyser@xes-inc.com> 19610Date: Tue Jun 30 17:26:01 2009 -0500 19611 19612 86xx: XPedite5170 board support 19613 19614 Initial support for Extreme Engineering Solutions XPedite5170 - 19615 a MPC8640-based 3U VPX single board computer with a PMC/XMC 19616 site. 19617 19618 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19619 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19620 19621commit e66f38da8434425aca8df08d06d9ef41b3478d3b 19622Author: Timur Tabi <timur@freescale.com> 19623Date: Wed Jul 1 16:51:59 2009 -0500 19624 19625 fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more 19626 19627 The calculate for rank density in compute_ranksize() for DDR3 used all 19628 integers for the expression, so the result was also a 32-bit integer, even 19629 though the 'bsize' variable is a u64. Fix the expression to calculate a 19630 true 64-bit value. 19631 19632 Signed-off-by: Timur Tabi <timur@freescale.com> 19633 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19634 19635commit 6af015b86b86d94de7ca1b23a3890bc93a50c2ab 19636Author: Peter Tyser <ptyser@xes-inc.com> 19637Date: Tue Jun 30 17:15:49 2009 -0500 19638 19639 fsl_dma: Make DMA transactions snoopable 19640 19641 Make DMA transactions snoopable so that CPUs can keep caches up-to-date. 19642 This allows dma transactions to be used for operations such as memory 19643 copies without any additional cache control operations. 19644 19645 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19646 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19647 19648commit 0d595f76bc9c7c8dff5bd31dffed87a840a03c56 19649Author: Peter Tyser <ptyser@xes-inc.com> 19650Date: Tue Jun 30 17:15:48 2009 -0500 19651 19652 fsl_dma: Break out common memory initialization function 19653 19654 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19655 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19656 19657commit 79f4333ceb059049b3ee560167d6cbaec493695f 19658Author: Peter Tyser <ptyser@xes-inc.com> 19659Date: Tue Jun 30 17:15:47 2009 -0500 19660 19661 8xxx: Move dma_init() call to common code 19662 19663 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19664 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19665 19666commit 191c7118592cd182f2dc7f46b4f72d9bed0e2c76 19667Author: Peter Tyser <ptyser@xes-inc.com> 19668Date: Tue Jun 30 17:15:46 2009 -0500 19669 19670 fsl_dma: Move dma function prototypes to common header file 19671 19672 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19673 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19674 19675commit 7892f619d40f4196e41e7114c5dfee9fad0f572f 19676Author: Peter Tyser <ptyser@xes-inc.com> 19677Date: Tue Jun 30 17:15:45 2009 -0500 19678 19679 8xxx: Rename dma_xfer() to dmacpy() 19680 19681 Also update dmacpy()'s argument order to match memcpy's and use 19682 phys_addr_t/phy_size_t for address/size arguments 19683 19684 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19685 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19686 19687commit 484919cf3351212ebf748b9b13ece1ddaf7e7d1c 19688Author: Peter Tyser <ptyser@xes-inc.com> 19689Date: Tue Jun 30 17:15:44 2009 -0500 19690 19691 fsl_dma: Fix Channel Start bug in dma_check() 19692 19693 The Channel Start (CS) bit in the Mode Register (MR) should actually be 19694 cleared as the comment in the code suggests. Previously, CS was being 19695 set, not cleared. 19696 19697 Assuming normal operation of the DMA engine, this change shouldn't have 19698 any real affect. 19699 19700 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19701 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19702 19703commit 51402ac12be9a0025f16db51fbde7c050a54e5fe 19704Author: Peter Tyser <ptyser@xes-inc.com> 19705Date: Tue Jun 30 17:15:43 2009 -0500 19706 19707 fsl_dma: Add support for arbitrarily large transfers 19708 19709 Support DMA transfers larger than the DMA controller's limit of 19710 (2 ^ 26 - 1) bytes 19711 19712 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19713 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19714 19715commit a730393a362741c318b21771b8d7b2647e546c3e 19716Author: Peter Tyser <ptyser@xes-inc.com> 19717Date: Tue Jun 30 17:15:42 2009 -0500 19718 19719 fsl_dma: Use proper I/O access functions 19720 19721 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19722 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19723 19724commit 9c06071a6077ba95e9d43226156e39567d5d064a 19725Author: Peter Tyser <ptyser@xes-inc.com> 19726Date: Tue Jun 30 17:15:41 2009 -0500 19727 19728 fsl_dma: Add bitfield definitions for common registers 19729 19730 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19731 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19732 19733commit 017f11f68ef543e866be033bcb7b8058a8a380d8 19734Author: Peter Tyser <ptyser@xes-inc.com> 19735Date: Tue Jun 30 17:15:40 2009 -0500 19736 19737 8xxx: Break out DMA code to a common file 19738 19739 DMA support is now enabled via the CONFIG_FSL_DMA define instead of the 19740 previous CONFIG_DDR_ECC 19741 19742 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 19743 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19744 19745commit 6bbced671719518d0e28ff422623cd7ce396cbda 19746Author: Mark Jackson <mpfj-list@mimc.co.uk> 19747Date: Mon Jun 29 15:59:10 2009 +0100 19748 19749 Atmel LCD driver GUARDTIME fix 19750 19751 This patch allows the guard time parameter to be set in 19752 the Atmel LCDC driver. 19753 19754 By default, the previous value of 1 is used, unless the 19755 setting is defined elsewhere. 19756 19757 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 19758 19759commit 29c35182462feea09f322e51913759a53359a3e0 19760Author: Roy Zang <tie-fei.zang@freescale.com> 19761Date: Tue Jun 30 13:56:23 2009 +0800 19762 19763 85xx: Add pci e1000 Ethernet support for P2020 board 19764 19765 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 19766 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19767 19768commit 156984a3611c28093919d3e3c042f722b5548253 19769Author: Kumar Gala <galak@kernel.crashing.org> 19770Date: Thu Jun 18 08:39:42 2009 -0500 19771 19772 8xxx: Fix PCI bus address setup for 36-bit configs 19773 19774 We want the outbound PCI memory map to end at the 4G boundary so we 19775 can maximize the amount of space available for inbound mappings if 19776 we have large amounts of memory. 19777 19778 This matches the device tree setup in the kernel for the 36-bit physical 19779 configs for the platforms that have one (MPC8641 HPCN & MPC8572 DS). 19780 19781 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19782 19783commit 480f61790565d77432b70b4016b73f2ae27d530f 19784Author: Kumar Gala <galak@kernel.crashing.org> 19785Date: Thu Jun 18 08:23:01 2009 -0500 19786 19787 86xx: Add CPU_TYPE_ENTRY support 19788 19789 Unify with 83xx and 85xx and use CPU_TYPE_ENTRY. We are going to use 19790 this to convey the # of cores and DDR width in the near future so its 19791 good to keep in sync. 19792 19793 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 19794 19795commit 98ab14e858bf60306d0aa3f0df5a7a5f88264aff 19796Author: Peter Meerwald <pmeerw@pmeerw.net> 19797Date: Mon Jun 29 15:48:33 2009 -0400 19798 19799 Blackfin: TWI/I2C: fix pure writes 19800 19801 If doing a pure write with register address and data (not a read/write 19802 combo transfer), we don't set the initial transfer length properly which 19803 ends up causing only the register address to be transferred. 19804 19805 While we're here, fix the i2c_write() parameter description of the buffer. 19806 19807 Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net> 19808 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 19809 19810commit 5710de45808eb8f1cc34b51dc3e67e2422113249 19811Author: Prafulla Wadaskar <prafulla@marvell.com> 19812Date: Sat May 30 01:13:33 2009 +0530 19813 19814 spi: Add Marvell Kirkwood SPI driver 19815 19816 This patch adds a SPI driver for the Marvell Kirkwood SoC's. 19817 19818 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 19819 19820commit 6bde171a4c4116cee179167cb65335a28f99932d 19821Author: Minkyu Kang <mk7.kang@samsung.com> 19822Date: Thu Jun 25 19:21:33 2009 +0900 19823 19824 s3c64xx: move the reset_cpu function 19825 19826 Because of the reset_cpu is soc specific, should be move to soc 19827 And read reset value from SYS_ID register instead of hard code 19828 this patch also supports s3c6410 19829 19830 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 19831 19832commit 576afd4faeba1519bcb8c0083c3e4d45e5643a48 19833Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19834Date: Sun May 17 00:58:37 2009 +0200 19835 19836 integrator: merge integratorap and integratorcp 19837 19838 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19839 Acked-by: Peter Pearse <peter.pearse@arm.com> 19840 19841commit 46937b27427688a56bf7f5944a92d962dc43c3fa 19842Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19843Date: Sun May 17 00:58:36 2009 +0200 19844 19845 integratorap/cp: use cfi driver 19846 19847 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19848 Acked-by: Peter Pearse <peter.pearse@arm.com> 19849 19850commit de7a01abd8aeb167946f391327e1e0d1e01f90c9 19851Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19852Date: Sun May 17 00:58:36 2009 +0200 19853 19854 integratorap/cp/versatile: remove non used functions 19855 19856 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19857 Acked-by: Peter Pearse <peter.pearse@arm.com> 19858 19859commit f54851a6e3844b7e01581b5a9681f294118b7529 19860Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19861Date: Sun May 17 00:58:36 2009 +0200 19862 19863 integratorcp: split timer support 19864 19865 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19866 Acked-by: Peter Pearse <peter.pearse@arm.com> 19867 19868commit 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1 19869Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19870Date: Sun May 17 00:58:36 2009 +0200 19871 19872 integratorap: split timer support 19873 19874 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19875 Acked-by: Peter Pearse <peter.pearse@arm.com> 19876 19877commit 86baa085c52a7f3377a88074679c5aca9b9e4d38 19878Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19879Date: Sun May 17 00:58:36 2009 +0200 19880 19881 integratorap: split pci support 19882 19883 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19884 Acked-by: Peter Pearse <peter.pearse@arm.com> 19885 19886commit 379e9fc0a319b8f6ae16d763590bf023f3afb87c 19887Author: Ilya Yanok <yanok@emcraft.com> 19888Date: Mon Jun 8 04:12:50 2009 +0400 19889 19890 arm: add support for CONFIG_GENERIC_MMC 19891 19892 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 19893 19894commit 47d19da4d3f9ac4787abe9dee32406478424be52 19895Author: Ilya Yanok <yanok@emcraft.com> 19896Date: Mon Jun 8 04:12:46 2009 +0400 19897 19898 serial_mx31: allow it to work with mx27 too and rename to serial_mxc 19899 19900 UART hardware on i.MX27 is the same as on the i.MX31 so we just 19901 need to provide the driver with correct address of the registers. 19902 19903 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 19904 19905commit 1dc4da749dbde27ec862f5b65703e8e4541fbba3 19906Author: Ilya Yanok <yanok@emcraft.com> 19907Date: Mon Jun 8 04:12:45 2009 +0400 19908 19909 mx27: basic cpu support 19910 19911 This patch adds generic code to support Freescale's i.MX27 SoCs. 19912 19913 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 19914 19915commit dd2f6965a6c71f6f711ec98827880152e022c236 19916Author: Magnus Lilja <lilja.magnus@gmail.com> 19917Date: Sat Jun 13 20:50:03 2009 +0200 19918 19919 i.MX31: Create a common device file. 19920 19921 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 19922 19923commit 958f7da7887fea4a2091ae60944d62c1708c2c55 19924Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19925Date: Sat Jun 13 20:50:02 2009 +0200 19926 19927 ARM: Add macros.h to be used in assembler file. 19928 19929 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19930 19931commit 40c642bc19b9fa2906e3172487a522fee456340b 19932Author: Magnus Lilja <lilja.magnus@gmail.com> 19933Date: Sat Jun 13 20:50:01 2009 +0200 19934 19935 MX31: Add NAND SPL for i.MX31. 19936 19937 This patch adds the NAND SPL framework needed to boot i.MX31 boards 19938 from NAND. 19939 19940 It has been tested on a i.MX31 PDK board with large page NAND. Small 19941 page NANDs should work as well, but this has not been tested. 19942 19943 Note: The i.MX31 NFC uses a non-standard layout for large page NANDs, 19944 whether this is compatible with a particular setup depends on how 19945 the NAND device is programmed by the flash programmer (e.g. JTAG 19946 debugger). 19947 19948 The patch is based on the work by Maxim Artamonov. 19949 19950 Signed-off-by: Maxim Artamonov <scn1874@yandex.ru> 19951 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 19952 19953commit df81238b3e27a791da996a9208402ac8f40b9862 19954Author: Magnus Lilja <lilja.magnus@gmail.com> 19955Date: Sat Jun 13 20:50:00 2009 +0200 19956 19957 ARM1136: Introduce CONFIG_PRELOADER macro. 19958 19959 Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's 19960 in start.S. In preparation for adding support for NAND SPL 19961 the macro CONFIG_PRELOADER is introducted and replaces the 19962 CONFIG_ONENAND_IPL in start.S. 19963 19964 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 19965 19966commit 8096c51fd4e611ed666dbe77767e81af5d94fc7b 19967Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19968Date: Sat Jun 13 12:50:04 2009 +0200 19969 19970 at91: unify nor boot support 19971 19972 the lowlevel init sequence is the same so unify it 19973 19974 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19975 19976commit 1b3b7c640d04df2ba9a9d947117d112a75fee7f4 19977Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19978Date: Sat Jun 13 12:48:36 2009 +0200 19979 19980 at91sam9263ek: add nor flash support 19981 19982 this will allow you to store use it for the env and to boot directly U-Boot from 19983 19984 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19985 19986commit 329492329700812c6df275aa0fda09d609cd0fd4 19987Author: Ilko Iliev <iliev@ronetix.at> 19988Date: Fri Jun 12 21:20:39 2009 +0200 19989 19990 at91: add support for the PM9261 board of Ronetix GmbH 19991 19992 The PM9261 board is based on the AT91SAM9261-EK board. 19993 19994 Here is the page on Ronetix website: 19995 http://www.ronetix.at/starter_kit_9261.html 19996 19997 Signed-off-by: Ilko Iliev <iliev@ronetix.at> 19998 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 19999 20000commit 01550a2b650fbabc03334f9eadcc6083601a2414
20001Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 20002Date: Fri Jun 12 21:20:38 2009 +0200 20003 20004 pm9263: use macro instead of hardcode value for the lowlevel_init 20005 20006 optimize a few the RAM init 20007 20008 Signed-off-by: Ilko Iliev <iliev@ronetix.at> 20009 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 20010 20011commit 7a11c7f9747240dc770954d320569596c0fbcb50 20012Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 20013Date: Fri Jun 12 21:20:37 2009 +0200 20014 20015 pm9263: lowlevel init update 20016 20017 move PSRAM init to pm9263.c 20018 this will allow us after to make the nor lowlevel_init generic 20019 20020 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 20021 20022commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0 20023Author: Mike Frysinger <vapier@gentoo.org> 20024Date: Mon Jun 15 00:25:19 2009 -0400 20025 20026 Blackfin: move ALL += u-boot.ldr to blackfin_config.mk 20027 20028 The way the ALL variable is used allows for config.mk's to add more 20029 targets themselves without having to clutter up the top level Makefile. 20030 20031 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20032 20033commit afac8b07172d7e4a65f86ce1ec4c783a6165ba1f 20034Author: Mike Frysinger <vapier@gentoo.org> 20035Date: Sun Jun 14 22:29:35 2009 -0400 20036 20037 Blackfin: fix SPI flash speed define name 20038 20039 The SPI flash define is named CONFIG_SF_DEFAULT_SPEED, not 20040 CONFIG_SF_DEFAULT_HZ, so fix the typos in the Blackfin boards. 20041 20042 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20043 20044commit 9ae55ccf601de7a5b75eb418f3fc3d5eca92c106 20045Author: Mike Frysinger <vapier@gentoo.org> 20046Date: Sun Jun 14 22:26:31 2009 -0400 20047 20048 Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards 20049 20050 Building the compression code in lib_generic/ with -O2 rather than -Os 20051 gives a nice speed boost without too much code size increase. 20052 20053 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20054 20055commit fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4 20056Author: Mike Frysinger <vapier@gentoo.org> 20057Date: Sun Jun 14 21:23:27 2009 -0400 20058 20059 Blackfin: bf548-ezkit: bump up monitor size 20060 20061 The latest version of U-Boot got a bit fatter in the BSS section which 20062 caused overflows in the RAM region, so increase the monitor size. 20063 20064 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20065 20066commit bc43a8d8994c2f0be29e09b13b15da7f79e2c081 20067Author: Vivi Li <vivi.li@analog.com> 20068Date: Fri Jun 12 10:53:22 2009 +0000 20069 20070 Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash 20071 20072 The SPI flash layer is much stricter about sector usage than the eeprom 20073 layer we used to use, so update the env settings to better match the 20074 sector alignment of the flashes we use. 20075 20076 Signed-off-by: Vivi Li <vivi.li@analog.com> 20077 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20078 20079commit 63cb0f4eb2d3cf15e7a1add19d1289f4ae75816c 20080Author: Vivi Li <vivi.li@analog.com> 20081Date: Fri Jun 12 10:33:23 2009 +0000 20082 20083 Blackfin: bump up default JTAG console timeout 20084 20085 The debug tools that interface with the other side of the JTAG console 20086 got much slower when generalizing things, so bump up the default timeout 20087 value on the U-Boot side to cope. Hopefully at some point we can improve 20088 the debug tools to speed things back up. 20089 20090 Signed-off-by: Vivi Li <vivi.li@analog.com> 20091 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20092 20093commit c11ff779f4e0e0c7edc322e84dd229ad28709595 20094Author: Mike Frysinger <vapier@gentoo.org> 20095Date: Mon Jun 1 19:08:33 2009 -0400 20096 20097 Blackfin: add jtagconsole helper script 20098 20099 This script is similar to the netconsole script, but instead works with 20100 the JTAG console device driver that exists on Blackfin parts. 20101 20102 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20103 20104commit 60f61e6d7655400bb785a2ef637581679941f6d1 20105Author: Remy Bohmer <linux@bohmer.net> 20106Date: Sat May 2 21:49:18 2009 +0200 20107 20108 Convert DM9000 driver for CONFIG_NET_MULTI 20109 20110 All drivers need to be converted to CONFIG_NET_MULTI. 20111 This patch converts the dm9000 driver. 20112 20113 Signed-off-by: Thomas Smits <ts.smits@gmail.com> 20114 Signed-off-by: Remy Bohmer <linux@bohmer.net> 20115 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20116 20117commit 9131589ada4dda0718604d0a425ca46e52775f6e 20118Author: Prafulla Wadaskar <prafulla@marvell.com> 20119Date: Sun Jun 14 22:33:46 2009 +0530 20120 20121 net: Add Marvell Kirkwood gigabit ethernet driver 20122 20123 This patch adds a egiga driver for the Marvell Kirkwood SoC's. 20124 20125 Contributors: 20126 Yotam Admon <yotam@marvell.com> 20127 Michael Blostein <michaelbl@marvell.com 20128 20129 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com> 20130 Acked-by: Stefan Rose <sr@denx.de> 20131 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 20132 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20133 20134commit 7835f4b94927ecb5affd99aad62592108db606ad 20135Author: s-paulraj@ti.com <s-paulraj@ti.com> 20136Date: Tue May 12 11:45:34 2009 -0400 20137 20138 DaVinci Network Driver Updates 20139 20140 Different flavours of DaVinci SOC's have differences in their EMAC IP 20141 This patch does the following 20142 1) Updates base addresses for DM365 20143 2) Updates MDIO frequencies for DM365 and DM646x 20144 3) Update EMAC wrapper registers for DM365 and DM646x 20145 20146 Patch applies to u-boot-net git. the EMAC driver itself 20147 will be updated shortly to add support for DM365 and DM646x 20148 20149 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 20150 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20151 20152commit 44578bea14e49035331a8f0e000e935e0d830ff4 20153Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 20154Date: Tue May 26 08:29:29 2009 -0400 20155 20156 Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter. 20157 20158 From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001 20159 From: Richard Retanubun <RichardRetanubun@RuggedCom.com> 20160 Date: Wed, 20 May 2009 18:26:01 -0400 20161 Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter. 20162 20163 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 20164 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20165 20166commit c9a2aab1512fb2d132670fff9c27656d2eb949cd 20167Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl> 20168Date: Thu Jun 4 09:39:48 2009 +0200 20169 20170 A VLAN tagged DHCP request/discover is 4 bytes short 20171 20172 The problem is that BOOTP_SIZE uses ETHER_HDR_SIZE which is 14 bytes. 20173 If sending a VLAN tagged frame (when env variable vlan is set) this 20174 should be VLAN_ETHER_HDR_SIZE=18 which is what NetSetEther returns. 20175 20176 Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl> 20177 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20178 20179commit 6e0d2fc7fe0dcfa2f51ab8931d706940ee364193 20180Author: Ben Warren <biggerbadderben@gmail.com> 20181Date: Tue Apr 28 16:39:19 2009 -0700 20182 20183 Remove support for non-CONFIG_NET_MULTI on PPC4xx EMAC 20184 20185 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20186 20187commit 8453587ef9137daf98b7c9cf4f3b865f4039cea0 20188Author: Ben Warren <biggerbadderben@gmail.com> 20189Date: Tue May 26 00:34:07 2009 -0700 20190 20191 Switched davinci_emac Ethernet driver to use newer API 20192 20193 Added CONFIG_NET_MULTI to all Davinci boards 20194 Removed all calls to Davinci network driver from board code 20195 Added cpu_eth_init() to cpu/arm926ejs/cpu.c 20196 20197 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20198 20199commit 8cc13c13f1d154c8fa8fff56cea357ed38af76bf 20200Author: Ben Warren <biggerbadderben@gmail.com> 20201Date: Mon Apr 27 23:19:10 2009 -0700 20202 20203 Initial cleanup of Davinci Ethernet driver 20204 20205 Removed pointless #ifdefs 20206 Moved functions around in file in preparation for switch to newer API 20207 20208 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20209 20210commit 09cdd1b9b01450e91786d26ff3c866dc9c8d8d6b 20211Author: Ben Warren <biggerbadderben@gmail.com> 20212Date: Tue May 26 00:17:59 2009 -0700 20213 20214 Moved Davinci Ethernet driver to drivers/net 20215 20216 This driver has been renamed davinci_emac.c 20217 20218 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20219 20220commit 6f51deb7f298413cfcb0a36d24c97ef7dd69d48f 20221Author: Prafulla Wadaskar <prafulla@marvell.com> 20222Date: Tue May 19 01:40:16 2009 +0530 20223 20224 Marvell MV88E61XX Switch Driver support 20225 20226 Chips supported:- 20227 1. 88E6161 6 port gbe swtich with 5 integrated PHYs 20228 2. 88E6165 6 port gbe swtich with 5 integrated PHYs 20229 2. 88E6132 3 port gbe swtich with 2 integrated PHYs 20230 Platform specific configuration supported for:- 20231 default or router port vlan configuration 20232 led_init configuration 20233 mdip/n polarity reversal configuration 20234 20235 Note: This driver is supported and tested against 20236 kirkwood egiga interface 20237 20238 Contributors: 20239 Yotam Admon <yotam@marvell.com> 20240 Michael Blostein <michaelbl@marvell.com 20241 20242 Reviewed by: Ronen Shitrit <rshitrit@marvell.com> 20243 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 20244 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20245 20246commit 091dc9f6adaf572b067ae91af92c4e7db33d7903 20247Author: Zach LeRoy <zleroy@xes-inc.com> 20248Date: Fri May 22 10:26:33 2009 -0500 20249 20250 tsec: Add support for BCM5482S PHY 20251 20252 Signed-off-by: Zach LeRoy <zleroy@xes-inc.com> 20253 Acked-by: Kumar Gala <galak@kernel.crashing.org> 20254 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 20255 20256commit 9ff67e5e4c719556d57f136a6453f8e4798d85c0 20257Author: Mike Frysinger <vapier@gentoo.org> 20258Date: Sun Jun 14 06:29:07 2009 -0400 20259 20260 Blackfin: unify u-boot linker scripts 20261 20262 All the Blackfin linker scripts were duplicated across the board dirs with 20263 no difference save from the semi-often used ENV_IS_EMBEDDED option. So 20264 unify all of them in the lib_blackfin/ dir and for the few boards that 20265 need to embedded the environment directly, add a LDS_BOARD_TEXT define for 20266 them to customize via their board config file. This is much simpler than 20267 forcing them to duplicate the rest of the linker script. 20268 20269 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20270 20271commit f52efcae98cbb8a39f1d0535df8d9646a776af9e 20272Author: Mike Frysinger <vapier@gentoo.org> 20273Date: Fri May 29 17:02:37 2009 -0400 20274 20275 Blackfin: bf518f-ezbrd: enable SST SPI flash driver 20276 20277 The BF51xF parts have an internal SST SPI flash, so make sure the driver is 20278 enabled by default so we can access it. 20279 20280 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20281 20282commit f348ab85f741dc98b2d202c04b5f430eace94925 20283Author: Mike Frysinger <vapier@gentoo.org> 20284Date: Fri Apr 24 17:22:40 2009 -0400 20285 20286 Blackfin: convert specific pre/post config headers to common method 20287 20288 The Blackfin port was using asm/blackfin-config-{pre,post}.h to setup 20289 common Blackfin board defines. The common method now is to use config.h, 20290 so convert blackfin-config-post.h to that. Rename the still Blackfin 20291 specific blackfin-config-pre.h to config-pre.h so the naming conventions 20292 at least line up. 20293 20294 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20295 20296commit 7c7503ee6cd03c0f3b16e98d33d5aa23b30d65b1 20297Author: Mike Frysinger <vapier@gentoo.org> 20298Date: Fri Apr 24 17:11:47 2009 -0400 20299 20300 Blackfin: enable LZMA for all ADI boards 20301 20302 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20303 20304commit 0e63dc0679451d48f8b727c543ce48b488f7a33f 20305Author: Mike Frysinger <vapier@gentoo.org> 20306Date: Mon Apr 13 05:52:45 2009 -0400 20307 20308 Blackfin: make default ADI env more flexible 20309 20310 Allow boards to easily override the root= and default bootcmd, allow 20311 people to tweak the file used in default bootcmds at runtime via one env 20312 var, and add a stock nandboot command. 20313 20314 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20315 20316commit 0f52b560f19623ec651f9b9b40405d138ec251d3 20317Author: Hoan Hoang <hnhoan@i-syst.com> 20318Date: Sun Jan 18 22:44:17 2009 -0500 20319 20320 Blackfin: ibf-dsp561: new board port 20321 20322 Signed-off-by: Hoan Hoang <hnhoan@i-syst.com> 20323 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20324 20325commit 3088189a15d219c48fd7e71623ca4daa08b80b59 20326Author: Mike Frysinger <vapier@gentoo.org> 20327Date: Sun Oct 12 23:28:33 2008 -0400 20328 20329 Blackfin: blackstamp: new board port 20330 20331 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20332 20333commit 59ac9729700db1d4446c1a6db3ffe38398b7abb2 20334Author: Mike Frysinger <vapier@gentoo.org> 20335Date: Sun Oct 12 23:22:25 2008 -0400 20336 20337 Blackfin: bf537-srv1: new board port 20338 20339 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20340 20341commit d7fdc1410b5fa5ef623b35a283733b6bcee3753b 20342Author: Mike Frysinger <vapier@gentoo.org> 20343Date: Sun Oct 12 23:16:52 2008 -0400 20344 20345 Blackfin: bf537-minotaur: new board port 20346 20347 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20348 20349commit cb4b5e874f3c9b882a6f4394bbebbbd91fd01bbf 20350Author: Mike Frysinger <vapier@gentoo.org> 20351Date: Sun Oct 12 23:08:03 2008 -0400 20352 20353 Blackfin: bf537-pnav: new board port 20354 20355 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20356 20357commit 59e4be945b6469e31eee721e0bcdccf4940d75ac 20358Author: Mike Frysinger <vapier@gentoo.org> 20359Date: Sun Oct 12 21:55:45 2008 -0400 20360 20361 Blackfin: cm-bf527: new board port 20362 20363 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20364 20365commit 8b219cf07c186cc9d97354cf4b14f24a53d193c5 20366Author: Mike Frysinger <vapier@gentoo.org> 20367Date: Sun Oct 12 21:54:07 2008 -0400 20368 20369 Blackfin: cm-bf548: new board port 20370 20371 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20372 20373commit 9417d9a21384279308abe5b4dd8dfd418742484c 20374Author: Mike Frysinger <vapier@gentoo.org> 20375Date: Sun Oct 12 21:49:28 2008 -0400 20376 20377 Blackfin: tcm-bf537: new board port 20378 20379 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20380 20381commit e548321af00e869af7194896576beb9b68457ff7 20382Author: Mike Frysinger <vapier@gentoo.org> 20383Date: Sun Oct 12 21:45:05 2008 -0400 20384 20385 Blackfin: cm-bf561: new board port 20386 20387 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20388 20389commit 8a9bab08a6fe93e5f3bf57b90438f1d2a67fad3c 20390Author: Mike Frysinger <vapier@gentoo.org> 20391Date: Sun Oct 12 21:41:06 2008 -0400 20392 20393 Blackfin: cm-bf537e: new board port 20394 20395 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20396 20397commit e82d8a1f028bedb12c4ab88a35a935010d92898c 20398Author: Mike Frysinger <vapier@gentoo.org> 20399Date: Sun Oct 12 21:36:22 2008 -0400 20400 20401 Blackfin: cm-bf533: new board port 20402 20403 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20404 20405commit dd14af7640f7d48d8e9768eeeb09592e6f94ed38 20406Author: Mike Frysinger <vapier@gentoo.org> 20407Date: Thu Nov 27 16:50:32 2008 -0500 20408 20409 Blackfin: new spibootldr command 20410 20411 Newer Blackfin parts can an on-chip ROM that can boot LDRs over SPI flashes, 20412 so add a new 'spibootldr' command to take advantage of it. 20413 20414 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20415 20416commit 67c2829b646bb5b859088b36fbc89e971b9c1960 20417Author: Mike Frysinger <vapier@gentoo.org> 20418Date: Mon Oct 6 04:42:33 2008 -0400 20419 20420 Blackfin: support embedding the environment into loader files (LDRs) 20421 20422 For the most part, the Blackfin processor boots files in the LDR format 20423 rather than binary/ELF files. So we want to export the environment as a 20424 raw blob to the LDR utility so it can embed it at the right location. 20425 20426 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20427 20428commit 31f30c9eb60d9ab0bd702e31f66345f99b34bdc6 20429Author: Mike Frysinger <vapier@gentoo.org> 20430Date: Sun Jun 14 11:03:48 2009 -0400 20431 20432 add %.c->%.i and %.c->%.s rules 20433 20434 The Linux kernel has some helper rules which allow you to quickly produce 20435 some of the intermediary files from C source. Specifically, you can 20436 create .i files which is the preprocessed output and you can create .s 20437 files which is the assembler output. This is useful when you are trying 20438 to track down header/macro expansion errors or inline assembly errors. 20439 20440 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20441 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 20442 20443commit 6d1ce387874c1060f27656f70151a52c511cd0e3 20444Author: Mike Frysinger <vapier@gentoo.org> 20445Date: Sat May 30 01:02:03 2009 -0400 20446 20447 make sure toplevel $(SUBDIRS) is always declared 20448 20449 The $(SUBDIRS) variable is only declared when U-Boot has been configured, 20450 but it gets used all the time. In the non-configured case, it is used to 20451 generate a helpful error message, but it needs to be set properly for that 20452 to occur. 20453 20454 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20455 20456commit 1260233982f7dfbdfd1adee12daa95a0c0e84a43 20457Author: Grzegorz Bernacki <gjb@semihalf.com> 20458Date: Fri Jun 12 11:33:55 2009 +0200 20459 20460 digsy mtc: Add description to GPIO initial configuration. 20461 20462 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 20463 20464commit 12304871bc7839145f2b4238923e9023616d7399 20465Author: Grzegorz Bernacki <gjb@semihalf.com> 20466Date: Fri Jun 12 11:33:54 2009 +0200 20467 20468 digsy MTC: Add 'mtc' command. 20469 20470 New command allows to: 20471 o check FW version 20472 o set LED status 20473 o set digital output status 20474 o get digital input status 20475 20476 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 20477 20478commit f1f66edfc76f4a9f5b9f63972d90309784a8cae5 20479Author: Grzegorz Bernacki <gjb@semihalf.com> 20480Date: Fri Jun 12 11:33:53 2009 +0200 20481 20482 digsy MTC: Add SPI support. 20483 20484 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 20485 20486commit 6325b7780dad8be26ba6fc25ef88ba338c50205b 20487Author: Grzegorz Bernacki <gjb@semihalf.com> 20488Date: Fri Jun 12 11:33:52 2009 +0200 20489 20490 mpc52xx: Add SPI driver. 20491 20492 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 20493 20494commit 5ec5529b82f314ca2cf9c262cdfc985d5fc468a0 20495Author: Mike Frysinger <vapier@gentoo.org> 20496Date: Sun Jun 14 09:33:00 2009 -0400 20497 20498 allow boards to customize compiler options on a per-file/dir basis 20499 20500 With our Blackfin boards, we like to build the compression routines with 20501 -O2 as our tests show a pretty good size/speed tradeoff. For the rest of 20502 U-Boot though, we want to stick with the default -Os as that is mostly 20503 control code. So in our case, we would add a line like so to the board 20504 specific config.mk file: 20505 CFLAGS_lib_generic += -O2 20506 20507 Now all files under lib_generic/ will have -O2 appended to their build. 20508 20509 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20510 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 20511 20512commit 6b1f78ae6ad037382ad430b07064105c88f7ac02 20513Author: Wolfgang Denk <wd@denx.de> 20514Date: Sun Jun 14 21:30:39 2009 +0200 20515 20516 Prepare v2009.06 20517 20518 Update CHANGELOG, fix minor coding stylke issue. Update Makefile. 20519 20520 Signed-off-by: Wolfgang Denk <wd@denx.de> 20521 20522commit c3147c1762f8caf99649051116a2411bdf887c10 20523Author: Wolfgang Denk <wd@denx.de> 20524Date: Sun Jun 14 20:31:36 2009 +0200 20525 20526 Revert "SMC911x driver fixed for NFS boot" 20527 20528 This reverts commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43, 20529 which causes compile warnings ("large integer implicitly truncated 20530 to unsigned type") on all systems that use this driver. The warning 20531 results from passing long constants (TX_CFG, RX_CFG) into 20532 smc911x_set_mac_csr() which is declared to accept "unsigned 20533 character" arguments only. 20534 20535 Being close to a release, with nobody available to actually test the 20536 code or the suggested fixes, it seems better to revert the patch. 20537 20538commit 388517e4b745b00256c2fa201ce7bccb67b4f245 20539Author: Peter Tyser <ptyser@xes-inc.com> 20540Date: Fri May 22 10:26:37 2009 -0500 20541 20542 xes: Update Freescale clock code to work with 86xx processors 20543 20544 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 20545 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20546 20547commit 25623937bb81cae788d767e6c59a11c96fc82866 20548Author: Peter Tyser <ptyser@xes-inc.com> 20549Date: Fri May 22 10:26:36 2009 -0500 20550 20551 xes: Update Freescale DDR code to work with 86xx processors 20552 20553 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 20554 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20555 20556commit bef3013908bbc68f24084174a3ca86cc2a3eb986 20557Author: Peter Tyser <ptyser@xes-inc.com> 20558Date: Fri May 22 10:26:35 2009 -0500 20559 20560 xes: Update Freescale PCI code to work with 86xx processors 20561 20562 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 20563 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20564 20565commit 6442b71b522face775c1c31bd43121db3b4bf7d6 20566Author: Peter Tyser <ptyser@xes-inc.com> 20567Date: Fri May 22 10:26:32 2009 -0500 20568 20569 85xx: Add PORBMSR and PORDEVSR shift defines 20570 20571 Add defines similar to those already used for the the 86xx architecture. 20572 This will ease sharing of PCI code between the 85xx and 86xx 20573 architectures. 20574 20575 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 20576 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20577 20578commit 2f21ce4d546d31289ac49a680f78bcc9a792c6ec 20579Author: Peter Tyser <ptyser@xes-inc.com> 20580Date: Thu May 21 12:10:00 2009 -0500 20581 20582 fsl/85xx, 86xx: Sync up DMA code 20583 20584 The following changes were made to sync up the DMA code between the 85xx 20585 and 86xx architectures which will make it easier to break out common 20586 8xxx DMA code: 20587 20588 85xx: 20589 - Don't set STRANSINT and SPCIORDER fields in SATR register. These bits 20590 only have an affect when the SBPATMU bit is set. 20591 - Write 0xffffffff instead of 0xfffffff to clear errors in the DMA 20592 status register. We may as well clear all 32 bits of the register... 20593 20594 86xx: 20595 - Add CONFIG_SYS_MPC86xx_DMA_ADDR define to address DMA registers 20596 - Add clearing of errors in the DMA status register when initializing 20597 the controller 20598 - Clear the channel start bit in the DMA mode register after a transfer 20599 20600 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 20601 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20602 20603commit b1f12650d332eadac1306a772cab6096abee6ddd 20604Author: Peter Tyser <ptyser@xes-inc.com> 20605Date: Thu May 21 12:09:59 2009 -0500 20606 20607 fsl: Create common fsl_dma.h for 85xx and 86xx cpus 20608 20609 Break out DMA structures for the Freescale MPC85xx and MPC86xx cpus to 20610 reduce a large amount of code duplication 20611 20612 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 20613 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20614 20615commit 3bd8e532b5de20647aeaff94a1cbf33fb8b897b9 20616Author: Haiying Wang <Haiying.Wang@freescale.com> 20617Date: Wed May 20 12:30:41 2009 -0400 20618 20619 85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS 20620 20621 On MPC8569MDS board, UCC6 and UCC8 can be configured to work at SGMII mode via 20622 UEM on PB board. Since MPC8569 supports up to 4 Gigabit Ethernet ports, we 20623 disable UEC6 and UEC8 by default. 20624 20625 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20626 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20627 20628commit e8efef7c1b457442583a8b9d38d8a5b667661616 20629Author: Haiying Wang <Haiying.Wang@freescale.com> 20630Date: Thu Jun 4 16:12:42 2009 -0400 20631 20632 drivers/qe: add sgmii support in for UEC driver 20633 20634 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20635 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20636 20637commit 8e55258f144764de8902e9f078a7ad4c6c022c2f 20638Author: Haiying Wang <Haiying.Wang@freescale.com> 20639Date: Thu Jun 4 16:12:41 2009 -0400 20640 20641 qe: Pass in uec_info struct through uec_initialize 20642 20643 The uec driver contains code to hard code configuration information for the uec 20644 ethernet controllers. This patch creates an array of uec_info structures, which 20645 are then parsed by the corresponding driver instance to determine configuration. 20646 It also creates function uec_standard_init() to initialize all UEC interfaces 20647 for 83xx and 85xx. 20648 20649 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20650 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20651 20652commit 9a6110897fc9282ade598bbba70ad72b940436e3 20653Author: Haiying Wang <Haiying.Wang@freescale.com> 20654Date: Thu Jun 4 16:12:40 2009 -0400 20655 20656 fsl: Update the number of ethxaddr in reading system eeprom 20657 20658 We support up to 8 mac addresses in system eeprom, so we define the macro 20659 MAX_NUM_PORTS to limit the mac_count to 8, and update the number of ethxaddr 20660 according to mac_count. 20661 20662 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20663 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20664 20665commit f82107f637f167a77803c0933f9b24741a91c711 20666Author: Haiying Wang <Haiying.Wang@freescale.com> 20667Date: Wed May 20 12:30:37 2009 -0400 20668 20669 85xx: Add RMII support for MPC8569MDS 20670 20671 This patch supports UCC working at RMII mode on PIB board, fixup fdt blob to 20672 support rmii in kernel. It also changes the name of enable_mpc8569mds_qe_mdio to 20673 enalbe_mpc8569mds_qe_uec which is more accurate. 20674 20675 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20676 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20677 20678commit 750098d33bc362ac4263863e92da158cf011063f 20679Author: Haiying Wang <Haiying.Wang@freescale.com> 20680Date: Wed May 20 12:30:36 2009 -0400 20681 20682 85xx: Add UEC3 and UEC4 support for MPC8569MDS 20683 20684 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20685 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20686 20687commit 4e7b25e4fe777f525e426cbd58c3a3976c564f2e 20688Author: Haiying Wang <Haiying.Wang@freescale.com> 20689Date: Wed May 20 12:30:35 2009 -0400 20690 20691 drivers/qe: Add more SNUM number for QE 20692 20693 Some QE chips like 8569 need more SNUM numbers for supporting 4 UECs in RGMII- 20694 1000 mode. 20695 20696 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20697 Acked-by: Timur Tabi <timur@freescale.com> 20698 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20699 20700commit 7211fbfa18f3061858696150ee6e9e093d9eceae 20701Author: Haiying Wang <Haiying.Wang@freescale.com> 20702Date: Thu May 21 15:34:14 2009 -0400 20703 20704 drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs 20705 20706 Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and 20707 define MAX_QE_RISC for QE based silicons. 20708 20709 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20710 Acked-by: Timur Tabi <timur@freescale.com> 20711 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20712 20713commit b3d7f20f43a0f8d11c65e2f92153b5512b11580c 20714Author: Haiying Wang <Haiying.Wang@freescale.com> 20715Date: Wed May 20 12:30:29 2009 -0400 20716 20717 85xx: Add QE clk support 20718 20719 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20720 Acked-by: Timur Tabi <Timur@freescale.com> 20721 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20722 20723commit 71b358cc26792889bbac35054d8e89d59b3fabc4 20724Author: Kumar Gala <galak@kernel.crashing.org> 20725Date: Wed May 20 01:11:33 2009 -0500 20726 20727 85xx: Added MPC8535/E identifiers 20728 20729 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20730 20731commit 22419d77976bbd0df9fcf45513f1b96bd73e50d1 20732Author: Kumar Gala <galak@kernel.crashing.org> 20733Date: Thu May 21 08:36:43 2009 -0500 20734 20735 85xx: Always attempt ethernet device tree fixup 20736 20737 Its reasonable that we may have ethernet devices but dont have drivers 20738 or support enabled for them in u-boot and want the device tree fixed up. 20739 Unconditionally calling the ethernet fixup is fine since if we dont have 20740 ethernet nodes that match (or aliases) we will not attempt to do 20741 anything. 20742 20743 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20744 Acked-by: Timur Tabi <timur@freescale.com> 20745 20746commit 52d6ad5ecfb22938441c8e3e62935fbd7b0f0920 20747Author: Haiying Wang <Haiying.Wang@freescale.com> 20748Date: Thu May 21 15:32:13 2009 -0400 20749 20750 drivers/qe: Rename the camel-case identifiers in uec 20751 20752 Rename riscRx/riscTx to risc_rx/risc_tx to comply with Codingstyle. 20753 20754 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 20755 20756commit feb7838f979ec2b581df3c791b9ae3284c36bb47 20757Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com> 20758Date: Fri Apr 3 15:36:13 2009 -0500 20759 20760 85xx: Add P2020DS support 20761 20762 The patch adds support for P2020DS reference platform. 20763 DDR3 interface uses hard-coded initialization rather than SPD 20764 for now and was tested at 667Mhz. Some PIXIS register 20765 definitions and associated code sections need to be fixed. 20766 TSEC1/2/3, NOR flash, MAC/SYS ID EEPROM, PCIE1/2/3 are all 20767 tested under u-boot. 20768 20769 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com> 20770 Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com> 20771 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 20772 20773commit 229549a56d9ae413c00f64fd7c728c6879a1b54b 20774Author: Stefan Roese <sr@denx.de> 20775Date: Tue Jun 9 16:57:47 2009 +0200 20776 20777 mpc512x: MPC5121ADS: Add NAND support 20778 20779 This patch adds NAND support to the MPC5121ADS board. Please 20780 note that the image size increased since NAND support didn't 20781 fit in the current image size (256k). 20782 20783 Signed-off-by: Stefan Roese <sr@denx.de> 20784 Signed-off-by: Wolfgang Denk <wd@denx.de> 20785 Cc: Wolfgang Denk <wd@denx.de> 20786 20787commit 35f2edbb6cad043ccd5ea6e78fe9b7aa21d8395f 20788Author: Stefan Roese <sr@denx.de> 20789Date: Tue Jun 9 16:57:03 2009 +0200 20790 20791 nand/mpc512x: Add MPC512x NAND support (NFC) 20792 20793 This patch adds NAND Flash Controller driver for MPC5121 revision 2. 20794 All device features, except hardware ECC and power management, are 20795 supported. 20796 20797 This NFC driver replaces the one orignally posted by John Rigby: 20798 20799 "[PATCH] Freescale NFC NAND driver" 20800 20801 It's a port of the Linux driver version posted by Piotr Ziecik a few 20802 weeks ago. Using this driver has the following advantages (from my 20803 point of view): 20804 20805 - Compatibility with the Linux NAND driver (e.g. ECC usage) 20806 - Better code quality in general 20807 - Resulting U-Boot image is a bit smaller (approx. 3k) 20808 - Better to sync with newer Linux driver versions 20809 20810 The only disadvantage I can see, is that HW-ECC is not supported right 20811 now. But this could be added later (e.g. port from Linux driver after 20812 it's supported there). Using HW-ECC on the MCP5121 NFC has a general 20813 problem because of the ECC usage in the spare area. This collides with 20814 JFFS2 for example. 20815 20816 Signed-off-by: Stefan Roese <sr@denx.de> 20817 Cc: Piotr Ziecik <kosmo@semihalf.com> 20818 Cc: Wolfgang Denk <wd@denx.de> 20819 Cc: John Rigby <jcrigby@gmail.com> 20820 Cc: Scott Wood <scottwood@freescale.com> 20821 20822commit e53b507cee5d976953134a565c72fd32c967d7dd 20823Author: Stefan Roese <sr@denx.de> 20824Date: Tue Jun 9 11:50:40 2009 +0200 20825 20826 mpc512x: Add esd gmbh mecp5123 board support 20827 20828 MECP5123 is a MPC5121E based module by esd gmbh. 20829 20830 Signed-off-by: Stefan Roese <sr@denx.de> 20831 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 20832 20833commit 6bd55cc65d0c3aa84d719518254fb3c650239ed9 20834Author: Stefan Roese <sr@denx.de> 20835Date: Tue Jun 9 11:50:05 2009 +0200 20836 20837 mcp512x: Add macros for SCFR LPC divisor access 20838 20839 Thos macros will be used by the esd mecp5123 board. 20840 20841 Signed-off-by: Stefan Roese <sr@denx.de> 20842 20843commit c60dc8527dbb2a1318c03bc18bdebcfbd0164551 20844Author: Stefan Roese <sr@denx.de> 20845Date: Mon Jun 8 09:38:07 2009 +0200 20846 20847 mpc512x: Fix problem with I2C access before relocation 20848 20849 This is needed for the upcoming esd MECP5123 board port which uses 20850 I2C EEPROM for environment storage. 20851 20852 Signed-off-by: Stefan Roese <sr@denx.de> 20853 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 20854 Acked-by: Heiko Schocher<hs@denx.de> 20855 20856commit 58f10460b05e0928d986b15edd4f2e1e99403f7e 20857Author: Stefan Roese <sr@denx.de> 20858Date: Thu Jun 4 13:35:39 2009 +0200 20859 20860 74xx_7xx: CPCI750: Add CPCI adapter/target support 20861 20862 The CPCI750 can be built as CPCI host or adapter/target board. This patch 20863 adds support for runtime detection of those variants. 20864 20865 Signed-off-by: Stefan Roese <sr@denx.de> 20866 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 20867 20868commit ae7a2739d7a0704437376e229bb21940952c55be 20869Author: Stefan Roese <sr@denx.de> 20870Date: Fri Jun 5 05:45:41 2009 +0200 20871 20872 74xx_7xx: CPCI750: Enable access to PCI function > 0 20873 20874 The Marvell bridge 64360 supports serveral PCI functions, not only 0. This 20875 patch enables access to those functions. 20876 20877 Signed-off-by: Stefan Roese <sr@denx.de> 20878 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 20879 20880commit e5b563e9ec54c3f6d702c8fa2b711b4a6150243a 20881Author: Stefan Roese <sr@denx.de> 20882Date: Thu Jun 4 13:35:37 2009 +0200 20883 20884 74xx_7xx: CPCI750: Minor coding style cleanup of cpci750.c 20885 20886 Signed-off-by: Stefan Roese <sr@denx.de> 20887 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 20888 20889commit 0e5ef07d0d91bd3d87ebea0534f538561aa974d5 20890Author: Stefan Roese <sr@denx.de> 20891Date: Thu Jun 4 13:35:36 2009 +0200 20892 20893 74xx_7xx: CPCI750: Add loadpci command 20894 20895 This command is used to load/boot an OS-image which is transferred from 20896 the CPCI host to the CPCI target/adapter. 20897 20898 Signed-off-by: Stefan Roese <sr@denx.de> 20899 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 20900 20901commit 0a14d6b8f4d21ff59a9b7686a49a77069a9fcd2a 20902Author: Stefan Roese <sr@denx.de> 20903Date: Thu Jun 4 13:35:35 2009 +0200 20904 20905 74xx_7xx: CPCI750: Add commandline editing/history 20906 20907 Signed-off-by: Stefan Roese <sr@denx.de> 20908 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 20909 20910commit 60cfe87bd39e6f07f2b92eb4bff82bfd105f4724 20911Author: Stefan Roese <sr@denx.de> 20912Date: Thu Jun 4 16:55:34 2009 +0200 20913 20914 UBI: Add compile-time check for correct malloc area configuration 20915 20916 UBI is quite memory greedy and requires at least approx. 512k of malloc 20917 area. This patch adds a compile-time check, so that boards will not 20918 build with less memory reserved for this area (CONFIG_SYS_MALLOC_LEN). 20919 20920 Signed-off-by: Stefan Roese <sr@denx.de> 20921 20922commit 7ce6031afc8671c8b47c6135b3678d43fcd02852 20923Author: Prafulla Wadaskar <prafulla@marvell.com> 20924Date: Mon Apr 6 21:24:43 2009 +0530 20925 20926 sf: new Macronix MX25xx SPI flash driver 20927 20928 Added macronix SF driver for MTD framework 20929 MX25L12805D is supported and tested 20930 TBD: sector erase implementation, other deivces support 20931 20932 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 20933 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20934 20935commit 2a6cc58869305f346e389eefdfa96dea5146cb0c 20936Author: Todor I Mollov <tmollov@ucsd.edu> 20937Date: Sat Apr 4 07:14:44 2009 -0400 20938 20939 sf: atmel: implement power-of-two write/erase funcs 20940 20941 Signed-off-by: Todor I Mollov <tmollov@ucsd.edu> 20942 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 20943 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 20944 20945commit 4bc6eb79be2a7317425575184324b94e3b43fbc2 20946Author: Vivek Mahajan <vivek.mahajan@freescale.com> 20947Date: Mon May 25 17:23:18 2009 +0530 20948 20949 mpc85xx: 8536ds: Add USB related CONFIGs 20950 20951 This patch adds CONFIGs for enabling USB in mpc8536ds and also 20952 adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its 20953 Copyright. 20954 20955 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 20956 Signed-off-by: Remy Bohmer <linux@bohmer.net> 20957 20958commit 6823e9b01290977c4d9c90381459c01f66e12e79 20959Author: Vivek Mahajan <vivek.mahajan@freescale.com> 20960Date: Mon May 25 17:23:17 2009 +0530 20961 20962 mpc83xx: 8315erdb: Add USB related CONFIGs 20963 20964 This patch adds CONFIGs for enabling USB in mpc8315erdb and also 20965 adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its 20966 Copyright. 20967 20968 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 20969 Signed-off-by: Remy Bohmer <linux@bohmer.net> 20970 20971commit a07bf180efc3c0de4a89a3bd49a7c7584dfb95a8 20972Author: Vivek Mahajan <vivek.mahajan@freescale.com> 20973Date: Thu May 21 17:32:48 2009 +0530 20974 20975 mpc85xx: USB: Add support 20976 20977 The following patch adds 85xx-specific USB support and also 20978 revamps Copyright in immap_85xx.h 20979 20980 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 20981 Signed-off-by: Remy Bohmer <linux@bohmer.net> 20982 20983commit 4ef01010aa4799c759d75e67007fdd3a38c88c8a 20984Author: Vivek Mahajan <vivek.mahajan@freescale.com> 20985Date: Mon May 25 17:23:16 2009 +0530 20986 20987 mpc83xx: USB: Reorganized its support 20988 20989 The following patch reorganizes/reworks the USB support for mpc83xx 20990 as under:- 20991 20992 * Moves the 83xx USB clock init from drivers/usb/host/ehci-fsl.c to 20993 cpu/mpx83xx/cpu_init.c 20994 20995 * Board specific usb_phy_type is read from the environment 20996 20997 * Adds USB EHCI specific structure in include/usb/ehci-fsl.h 20998 20999 * Copyrights revamped in most of the following files 21000
21001 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 21002 Signed-off-by: Remy Bohmer <linux@bohmer.net> 21003 21004commit ed90d2c87158e5114b6009fa95bb6417e4b27b3e 21005Author: Vivek Mahajan <vivek.mahajan@freescale.com> 21006Date: Thu May 21 17:32:27 2009 +0530 21007 21008 mpc8xxx: USB: Relocates ehci-fsl.h to include/usb 21009 21010 The following patch moves 8xxx-specifc USB #defines from 21011 drivers/usb/host/ehci-fsl.h to include/usb. 21012 21013 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 21014 Signed-off-by: Remy Bohmer <linux@bohmer.net> 21015 21016commit cfd39cdf9422d3d25e9b3c058865f4c1f66f34da 21017Author: Vivek Mahajan <vivek.mahajan@freescale.com> 21018Date: Thu May 21 17:32:15 2009 +0530 21019 21020 mpc8xxx: USB: Removed reenablement of its interface 21021 21022 To prepare for the 85xx USB support, which requires interface enablement 21023 only once in (specified) order, no different than instructions for 21024 enabling the interface under 83xx. It is unknown why the original author 21025 enabled the interface twice (checked for references in errata, etc). 21026 21027 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> 21028 Signed-off-by: Remy Bohmer <linux@bohmer.net> 21029 21030commit 2c7920afaf96d9779304202cd8a355b4f7576a83 21031Author: Peter Tyser <ptyser@xes-inc.com> 21032Date: Fri May 22 17:23:25 2009 -0500 21033 21034 83xx: Replace CONFIG_MPC83[0-9]X with MPC83[0-9]x 21035 21036 Use the standard lowercase "x" capitalization that other Freescale 21037 architectures use for CPU defines to prevent confusion and errors 21038 21039 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 21040 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 21041 21042commit 0f898604945af4543c1525fc33b6bae621a3b805 21043Author: Peter Tyser <ptyser@xes-inc.com> 21044Date: Fri May 22 17:23:24 2009 -0500 21045 21046 83xx: Replace CONFIG_MPC83XX with CONFIG_MPC83xx 21047 21048 Use the standard lowercase "xx" capitalization that other Freescale 21049 architectures use for CPU defines to prevent confusion and errors 21050 21051 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 21052 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 21053 21054commit ba4feae90ca71de1681d5808f17e73224d8f03c4 21055Author: Stefan Roese <sr@denx.de> 21056Date: Tue Jun 2 16:53:16 2009 +0200 21057 21058 mpc512x: Use serial_setbrg() in serial_init() to not duplicate the code 21059 21060 This patch removes the duplicated code for baudrate generator configuration 21061 in the PSC serial_init() implementation by calling serial_setbrg() instead 21062 of duplicating the code. 21063 21064 Signed-off-by: Stefan Roese <sr@denx.de> 21065 21066commit b8c1d6a54ff8195488b68e163de8ec31f1603496 21067Author: Stefan Roese <sr@denx.de> 21068Date: Tue Jun 2 16:53:15 2009 +0200 21069 21070 mpc512x: Fix PSC divisor calculation for baudrate setting 21071 21072 The wrong input frequency was used in serial_setbrg(). This patch fixes 21073 this by using ips_clk as input frequency for the PSC baudrate generator. 21074 21075 Signed-off-by: Stefan Roese <sr@denx.de> 21076 21077commit 52568c3654b2b257016d52167805ae132faac14e 21078Author: Wolfgang Denk <wd@denx.de> 21079Date: Sat May 16 10:47:46 2009 +0200 21080 21081 MPC512x: add support for ARIA board 21082 21083 ARIA is a MPC5121E based COM Express module by Dave/DENX. 21084 21085 Signed-off-by: Wolfgang Denk <wd@denx.de> 21086 Cc: John Rigby <jcrigby@gmail.com> 21087 21088commit 3b74e7ec58e2cc352b0a396a614065cfeb8d138f 21089Author: Wolfgang Denk <wd@denx.de> 21090Date: Sat May 16 10:47:45 2009 +0200 21091 21092 MPC512x: remove include/mpc512x.h 21093 21094 Move needed definitions (register descriptions etc.) from 21095 include/mpc512x.h into include/asm-ppc/immap_512x.h. 21096 21097 Instead of using a #define'd register offset, use a function that 21098 provides the PATA controller's base address. 21099 21100 All the rest of include/mpc512x.h are register offset definitions 21101 which can be eliminated by proper use of C structures. 21102 21103 There are only a few register offsets remaining that are needed in 21104 cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h 21105 which is intended as a temporary workaround only. In a later patch 21106 this file will be removed, too, and then auto-generated from the 21107 respective C structs. 21108 21109 Signed-off-by: Wolfgang Denk <wd@denx.de> 21110 Cc: John Rigby <jcrigby@gmail.com> 21111 21112commit a927e491b2a326c1e9c4313e3ce4042988422697 21113Author: Wolfgang Denk <wd@denx.de> 21114Date: Sat May 16 10:47:44 2009 +0200 21115 21116 MPC512x FEC: get rid of duplicated struct ethernet_regs 21117 21118 Use existing struct fec512x instead. 21119 21120 Signed-off-by: Wolfgang Denk <wd@denx.de> 21121 Cc: John Rigby <jcrigby@gmail.com> 21122 Acked-by: Ben Warren <biggerbadderben@gmail.com> 21123 21124commit 843efb1192cc8fd4f904a23dbab4e0fe3e1c5bc2 21125Author: Wolfgang Denk <wd@denx.de> 21126Date: Sat May 16 10:47:43 2009 +0200 21127 21128 MPC512x: use I/O accessors instead of pointer accesses 21129 21130 This commit changes the MPC512x code to use I/O accessor calls (i.e. 21131 out_*() and in_*()) instead of using deprecated pointer accesses. 21132 21133 Signed-off-by: Wolfgang Denk <wd@denx.de> 21134 Cc: John Rigby <jcrigby@gmail.com> 21135 21136commit 19dc7e179268be148e550c36203208c662610d76 21137Author: Wolfgang Denk <wd@denx.de> 21138Date: Sat May 16 10:47:42 2009 +0200 21139 21140 MPC512x: add more hardware description to immap_512x.h 21141 21142 - add GPIO module description 21143 - add Address Latch Timing Register description 21144 - add IO Control Memory Map 21145 - add FEC Memory Map 21146 21147 Also change board/freescale/mpc5121ads/mpc5121ads.c and 21148 cpu/mpc512x/iopin.c as needed. 21149 21150 Signed-off-by: Wolfgang Denk <wd@denx.de> 21151 Cc: John Rigby <jcrigby@gmail.com> 21152 21153commit 72601d04fdfdd4c7597afcf1f6aab654bd99366c 21154Author: Wolfgang Denk <wd@denx.de> 21155Date: Sat May 16 10:47:41 2009 +0200 21156 21157 Rename ads5121 board into mpc5121ads 21158 21159 We rename the board so we use a consistent name in U-Boot and in 21160 Linux. Also, we use this opportunity to move the board into the 21161 Freecale vendor directory. 21162 21163 Signed-off-by: Wolfgang Denk <wd@denx.de> 21164 Cc: John Rigby <jcrigby@gmail.com> 21165 21166commit debf87415579c0f50aab9e0832976d4506babe0f 21167Author: Wolfgang Denk <wd@denx.de> 21168Date: Sat May 16 10:47:40 2009 +0200 21169 21170 cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type 21171 21172 Signed-off-by: Wolfgang Denk <wd@denx.de> 21173 Cc: John Rigby <jcrigby@gmail.com> 21174 21175commit 8b251263191ec554967dd1add6237c1ba7f7eb25 21176Author: Wolfgang Denk <wd@denx.de> 21177Date: Sat May 16 10:47:39 2009 +0200 21178 21179 cpu/mpc512x/pci.c: minor coding style cleanup 21180 21181 Get rid of variable declaration in the middle of the code. 21182 21183 Signed-off-by: Wolfgang Denk <wd@denx.de> 21184 Cc: John Rigby <jcrigby@gmail.com> 21185 21186commit de26ef99bddbce4ed225f93afcf0bee99c3b6f87 21187Author: Wolfgang Denk <wd@denx.de> 21188Date: Sat May 16 10:47:38 2009 +0200 21189 21190 mpc512x: Move common files to share them by several boards 21191 21192 We will soon see several new MPC521x based boards added. This patch 21193 moves files that are not board specific to a common directory so they 21194 can be shared by all such ports. It also splits off common IDE code 21195 into a new file, cpu/mpc512x/ide.c . 21196 21197 Signed-off-by: Wolfgang Denk <wd@denx.de> 21198 Cc: John Rigby <jcrigby@gmail.com> 21199 21200commit 03e069dc0a765d506f78a68319acf33d432e035b 21201Author: Wolfgang Denk <wd@denx.de> 21202Date: Sat May 16 10:47:37 2009 +0200 21203 21204 mpc512x: change cpu/mpc512x/Makefile to use Kconfig style 21205 21206 Signed-off-by: Wolfgang Denk <wd@denx.de> 21207 Cc: John Rigby <jcrigby@gmail.com> 21208 21209commit a89c33db96a1e55319a286dd4c3c05ca64ac6bfd 21210Author: Wolfgang Denk <wd@denx.de> 21211Date: Sun May 24 17:06:54 2009 +0200 21212 21213 General help message cleanup 21214 21215 Many of the help messages were not really helpful; for example, many 21216 commands that take no arguments would not print a correct synopsis 21217 line, but "No additional help available." which is not exactly wrong, 21218 but not helpful either. 21219 21220 Commit ``Make "usage" messages more helpful.'' changed this 21221 partially. But it also became clear that lots of "Usage" and "Help" 21222 messages (fields "usage" and "help" in struct cmd_tbl_s respective) 21223 were actually redundant. 21224 21225 This patch cleans this up - for example: 21226 21227 Before: 21228 => help dtt 21229 dtt - Digital Thermometer and Thermostat 21230 21231 Usage: 21232 dtt - Read temperature from digital thermometer and thermostat. 21233 21234 After: 21235 => help dtt 21236 dtt - Read temperature from Digital Thermometer and Thermostat 21237 21238 Usage: 21239 dtt 21240 21241 Signed-off-by: Wolfgang Denk <wd@denx.de> 21242 21243commit 94796d8544d4248028141bad11c6a74b840e9d6e 21244Author: Wolfgang Denk <wd@denx.de> 21245Date: Sun May 24 19:17:29 2009 +0200 21246 21247 Make "usage" messages more helpful. 21248 21249 In case of incorrect command invocations U-Boot used to print pretty 21250 useless "usage" messages, for example: 21251 21252 => nand markbad 21253 Usage: 21254 nand - NAND sub-system 21255 21256 In the result, the user would have to run the "help" command to get 21257 the (available) information about correct command usage. Change this, 21258 so that this information gets always printed. 21259 21260 Note that this changes the user interface of all commands, but 21261 hopefully to the better. 21262 21263 Signed-off-by: Wolfgang Denk <wd@denx.de> 21264 21265commit 4c94f6c54bbc4dc5f418da01d8ec01e2adf636be 21266Author: Mike Frysinger <vapier@gentoo.org> 21267Date: Sun May 24 02:26:19 2009 -0400 21268 21269 nvedit: speed up printing of environment 21270 21271 The printing code would check the same environment byte multiple times and 21272 write to the console one byte at a time. For some devices (such as the 21273 Blackfin JTAG console which operates in 8 bytes at a time), this is pretty 21274 damned slow. So create a small 16 byte buffer to fill up and send to puts 21275 as needed. In the process, unify the different print functions, shrink 21276 the resulting code (source and compiled), and avoid excess env reads as 21277 those too can be somewhat expensive depending on the board. 21278 21279 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 21280 21281commit 3112030a430553768de5d30c05bedf8710784452 21282Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21283Date: Fri May 22 19:28:52 2009 +0200 21284 21285 config.mk: remove un-needed REMOTE_BUILD check 21286 21287 as $(obj) is empty when in tree build 21288 21289 %.s: %.S 21290 $(CPP) $(AFLAGS) -o $@ $< 21291 21292 and 21293 21294 $(obj)%.s: %.S 21295 $(CPP) $(AFLAGS) -o $@ $< 21296 21297 are the same 21298 21299 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21300 Acked-by: Mike Frysinger <vapier@gentoo.org> 21301 21302commit 651351fe980b20217b014b9a888398f18d77951c 21303Author: Tom Rix <Tom.Rix@windriver.com> 21304Date: Wed May 20 07:55:41 2009 -0500 21305 21306 FAT replace compare_sign with strncmp. 21307 21308 The static function compare_sign is only used to compare the fs_type string 21309 and does not do anything more than what strncmp does. 21310 21311 The addition of the trailing '\0' to fs_type, while legal, is not needed 21312 because the it is never printed out and strncmp does not depend on NULL 21313 terminated strings. 21314 21315 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21316 21317commit ecb1dc892297d5d99876907328fed732feefeab2 21318Author: Mike Frysinger <vapier@gentoo.org> 21319Date: Wed May 20 04:35:14 2009 -0400 21320 21321 Add support for Linux-like kallsysms 21322 21323 The kernel stores address<->symbol names in it so things can be decoded at 21324 runtime. Do it in U-Boot, and we get nice symbol decoding when crashing. 21325 21326 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 21327 21328commit 36c9169aa6f79ddf604a3bca64e145654f94888b 21329Author: Wolfgang Denk <wd@denx.de> 21330Date: Sun May 17 16:01:54 2009 +0200 21331 21332 cmd_mtdparts.c: allow to omit definitions for default settings 21333 21334 There is actually no good reason to enforce that all board 21335 configuations must define default settings for "mtdids" and 21336 "mtdparts". Actually this may be difficult to handle, especially on 21337 boards where different sizes of flash chips can be fit, so there is no 21338 real "default" partition map for all boards. 21339 21340 Lift this arbitrary limitation. 21341 21342 Signed-off-by: Wolfgang Denk <wd@denx.de> 21343 21344commit 864aa034f3a0e10ce710e8bbda171df3cab59414 21345Author: Stefan Roese <sr@denx.de> 21346Date: Tue May 12 14:31:56 2009 +0200 21347 21348 cmd_mtdparts: Move to common handling of FLASH devices via MTD layer 21349 21350 This patch removes all references to the direct CFI FLASH interface 21351 (via flash_info[]). Now that all FLASH types currently handled in 21352 mtdparts are available (if selected, see below) via the MTD infrastructure. 21353 This is NOR, NAND and OneNAND right now. This can be achieved by defining 21354 the following options: 21355 21356 CONFIG_MTD_DEVICE (for all FLASH types) 21357 21358 plus 21359 21360 CONFIG_FLASH_CFI_MTD (for NOR FLASH) 21361 21362 So we need to add those defines to the board config headers currently 21363 using the mtdparts commands. This is done via another patch, so 21364 we shouldn't break mtdparts compatibility. 21365 21366 One big advantage from this solution is that the cmd_mtdparts.c is 21367 *much* cleaner now. Lot's of #ifdef's are removed and the code itself 21368 is smaller. Additionally the newly added MDT concatenation feature 21369 can new be used via the mtdparts infrastructure and therefor via 21370 UBI etc. 21371 21372 Signed-off-by: Stefan Roese <sr@denx.de> 21373 Cc: Ladislav Michl <ladis@linux-mips.org> 21374 Cc: Scott Wood <scottwood@freescale.com> 21375 21376commit d558107c18708050f05b6639b2192efb67c905dc 21377Author: Stefan Roese <sr@denx.de> 21378Date: Tue May 12 14:31:18 2009 +0200 21379 21380 mtd: Introduce CONFIG_MTD_DEVICE to select compilation of mtdcore.o 21381 21382 This new define enables mtdcore.c compilation and with this we can 21383 select the MTD device infrastructure needed for the reworked mtdparts 21384 command. 21385 21386 We now have the 2 MTD infrastructure defines, CONFIG_MTD_DEVICE and 21387 CONFIG_MTD_PARTITIONS. CONFIG_MTD_DEVICE is needed (as explained above) 21388 for the "mtdparts" command and CONFIG_MTD_PARTITIONS is needed for UBI. 21389 21390 Signed-off-by: Stefan Roese <sr@denx.de> 21391 Cc: Scott Wood <scottwood@freescale.com> 21392 21393commit 942556a92a8c1eb1bd76584a5143f6f57dcb25ad 21394Author: Stefan Roese <sr@denx.de> 21395Date: Tue May 12 14:32:58 2009 +0200 21396 21397 mtd: MTD related config header changes (mtdparts command) 21398 21399 By changing the cmd_mtdparts to only use the MTD infrastructure and 21400 not the direct interface to the CFI NOR FLASH driver we now need 21401 to add the MTD infrastructure to all boards using those mtdparts 21402 commands. This patch adds those components: 21403 21404 CONFIG_MTD_DEVICE (for all FLASH types) 21405 21406 plus 21407 21408 CONFIG_FLASH_CFI_MTD (for NOR FLASH) 21409 21410 To all board maintainers: Please test this on your platforms and 21411 report any problems/issues found. Thanks. 21412 21413 Signed-off-by: Stefan Roese <sr@denx.de> 21414 Cc: Wolfgang Denk <wd@denx.de> 21415 Cc: Ron Madrid <info@sheldoninst.com> 21416 Cc: Georg Schardt <schardt@team-ctech.de> 21417 Cc: Michal Simek <monstr@monstr.eu> 21418 Cc: Ladislav Michl <ladis@linux-mips.org> 21419 Cc: Martin Krause <martin.krause@tqs.de> 21420 Cc: Gary Jennejohn <garyj@denx.de> 21421 Cc: Ricardo Ribalda <ricardo.ribalda@uam.es> 21422 21423commit 8d2effea23e938631126a7888008a0637e13b389 21424Author: Stefan Roese <sr@denx.de> 21425Date: Mon May 11 16:03:55 2009 +0200 21426 21427 mtd: Update MTD infrastructure to support 64bit device size 21428 21429 This patch brings the U-Boot MTD infrastructure in sync with the current 21430 Linux MTD version (2.6.30-rc3). Biggest change is the 64bit device size 21431 support and a resync of the mtdpart.c file which has seen multiple fixes 21432 meanwhile. 21433 21434 Signed-off-by: Stefan Roese <sr@denx.de> 21435 Cc: Scott Wood <scottwood@freescale.com> 21436 Cc: Kyungmin Park <kmpark@infradead.org> 21437 21438commit 0a57265533c412adf6024f4b4955141f4346b2b9 21439Author: Stefan Roese <sr@denx.de> 21440Date: Tue May 12 14:29:39 2009 +0200 21441 21442 mtd: Add MTD concat support to concatenate multiple MTD NOR devices 21443 21444 This patch adds concatenation support to the U-Boot MTD infrastructure. 21445 By enabling CONFIG_MTD_CONCAT this MTD CFI wrapper will concatenate 21446 all found NOR devices into one single MTD device. This can be used by 21447 e.g by UBI to access a partition that spans over multiple NOR chips. 21448 21449 Signed-off-by: Stefan Roese <sr@denx.de> 21450 21451commit 55e0ed6078b10b0d425b6a0677f38a015c277df6 21452Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21453Date: Sat Apr 25 14:57:52 2009 +0200 21454 21455 make MODEM SUPPORT generic instead of duplicate it 21456 21457 and fix comment 21458 21459 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21460 21461 Adjusted Copyright message. 21462 21463 Signed-off-by: Wolfgang Denk <wd@denx.de> 21464 21465commit a30f519bd0cde78ba46b424314de94fdab863726 21466Author: Tom Rix <Tom.Rix@windriver.com> 21467Date: Tue Jun 2 20:53:56 2009 -0500 21468 21469 ZOOM2 detect the version of the zoom2 board at runtime. 21470 21471 There are currently 3 versions of the zoom2 board. 21472 The production board, that is currently being released. 21473 The beta board, similar in form to the production board but not released. 21474 The alpha board, a set of PCBs with a very limited circulation. 21475 21476 GPIO 94 is used to determine the version of the board. If GPIO 94 is clear, 21477 the board is a production board, otherwise it is a beta board. 21478 21479 The alpha board will likely be mistaken for a beta board. An alpha board 21480 was unavailible for testing. 21481 21482 This has been tested on the beta and production boards. 21483 21484 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21485 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21486 21487commit 718763c4745fd3d987a5576d2a67325e9444f9d4 21488Author: Tom Rix <Tom.Rix@windriver.com> 21489Date: Wed Jun 3 01:53:57 2009 -0500 21490 21491 Beagle Convert the board version detection to use the OMAP3 GPIO interface. 21492 21493 There is no new functionality in the change. 21494 21495 This change is a conversion from the using raw register access to using 21496 the OMAP3 GPIO API described in doc/README.omap3. 21497 21498 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21499 Acked-by: Dirk Behme <dirk.behme@googlemail.com> 21500 21501commit 7caa13fdd2d3dc957b4e0a228810a3a4a8ba499b 21502Author: Tom Rix <Tom.Rix@windriver.com> 21503Date: Wed Jun 3 01:53:55 2009 -0500 21504 21505 Fix a typo in the instructions on using omap3's gpio interface. 21506 21507 Using the example for reading a gpio, shows the problem. 21508 NULL should be the gpio number. 21509 21510 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21511 Acked-by: Dirk Behme <dirk.behme@googlemail.com> 21512 21513commit 0c9520efd651ce13451654a35307ec87d4a13a69 21514Author: Tom Rix <Tom.Rix@windriver.com> 21515Date: Fri May 29 18:57:32 2009 -0500 21516 21517 ZOOM2 Define GPIO banks used. 21518 21519 Enable the function and interface clocks for banks 2,3,5 and 6. 21520 21521 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21522 Acked-by: Dirk Behme <dirk.behme@googlemail.com> 21523 21524commit 708cfb74b7c6df9c37d3c48988a154be79daefeb 21525Author: Tom Rix <Tom.Rix@windriver.com> 21526Date: Fri May 29 18:57:31 2009 -0500 21527 21528 OMAP3 Turn on the GPIO bank clocks 21529 21530 The function and interface clocks for each GPIO bank, except the first, must 21531 be explicitly turned on. These are controlled by the config level defines 21532 CONFIG_OMAP3_GPIO_n where n is from 2 to 6. 21533 21534 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21535 Acked-by: Dirk Behme <dirk.behme@googlemail.com> 21536 21537commit 59272620c24549b5bcd03c94ba12ec302c1476a2 21538Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 21539Date: Thu Mar 26 15:26:01 2009 -0400 21540 21541 Coldfire M5271: Activate u-boot system timer interrupt. 21542 21543 This patch assigns the u-boot system timer interrupt to 21544 interrupt level 3, priority 6. Without this patch the interrupt 21545 will be a level 0, priority 0, which disables it and cause 21546 u-boot functions that relies on the timer (e.g. sleep command) 21547 to never return. 21548 21549 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 21550 21551commit dc26965ad3acdfb18780361d77a276b2843a90af 21552Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 21553Date: Mon Mar 23 13:35:48 2009 -0400 21554 21555 Compier warning cleanup 21556 21557 Follow up to git commit: 19b5b533ccd522abeb501d510750693c35e20456 21558 21559 Cleanup on compiler warnings on unused variables now that 21560 bd->bi_enetaddr is no longer used. 21561 21562 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 21563 21564commit 42a83765d54f042b4079e05a3438789542429981 21565Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 21566Date: Fri Mar 20 15:30:10 2009 -0400 21567 21568 Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt. 21569 21570 Ported from lib_ppc/interrupts.c, this adds the ability for 21571 the coldfire system timer to auto-reset the watchdog when 21572 dtimer_interrupts is called. 21573 21574 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 21575 21576commit a24d96e40e1ca66dde6e6c158e7ecffafc5a2199 21577Author: Prafulla Wadaskar <prafulla@marvell.com> 21578Date: Sun May 31 14:53:20 2009 +0200 21579 21580 arch_misc_init support for ARM architectures 21581 21582 This patch is required for Kirkwood support 21583 may be used by other ARM architectures 21584 21585 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com> 21586 21587commit b2403589b4d9996394bafc73eca3623f43ac2c31 21588Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21589Date: Sun May 31 14:53:18 2009 +0200 21590 21591 at91: move cpu info print to cpu 21592 21593 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21594 21595commit b32e189079fa16e1b647ac6b949fd4e0a9435343 21596Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21597Date: Sun May 31 12:44:46 2009 +0200 21598 21599 at91: move cpu name define to arm/arch/ cpu header 21600 21601 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21602 21603commit 5bb59b3c906ee01adfaac9565443e5236a793079 21604Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21605Date: Sun May 31 12:44:45 2009 +0200 21606 21607 at91: extract reset from timer 21608 21609 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21610 21611commit 61cf851b09cf8b67009ec11fc47c16add6b142a5 21612Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21613Date: Sun May 31 12:44:43 2009 +0200 21614 21615 omap24xx: rename reset file 21616 21617 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21618 21619commit 9d4fc99dbdbfda1260aad478e83fca7cdf0e1a32 21620Author: Dirk Behme <dirk.behme@googlemail.com> 21621Date: Sun May 31 12:44:42 2009 +0200 21622 21623 OMAP3: Fix CKE1 MUX setting to allow self-refresh 21624 21625 The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX 21626 setting is needed for the second CS clock signal to allow the 2 RAM 21627 parts to be put in self-refresh correctly. This also works on rev B 21628 Beagle boards with 128M of RAM. 21629 21630 From: Steve Sakoman <steve@sakoman.com> 21631 From: Jean Pihet <jpihet@mvista.com> 21632 Signed-off-by: Jean Pihet <jpihet@mvista.com> 21633 Signed-off-by: Steve Sakoman <steve@sakoman.com> 21634 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 21635 21636commit 3962c4f9fc4482a6547f3c3d3d5e986e625abb8a 21637Author: Dirk Behme <dirk.behme@googlemail.com> 21638Date: Sun May 31 12:44:41 2009 +0200 21639 21640 OMAP3: Zoom2: Enable Board and CPU info 21641 21642 With other OMAP3 boards we recently switched to CPU and Board 21643 info API. From parallel merge, this is missing for Zoom2. 21644 Enable it for Zoom2, too. 21645 21646 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 21647 Acked-by: Tom Rix <Tom.Rix@windriver.com> 21648 21649commit 83ae698ff26b81b569ca32f7f2b008ad0da15e66 21650Author: Tom Rix <Tom.Rix@windriver.com> 21651Date: Sun May 31 12:44:39 2009 +0200 21652 21653 ZOOM2 Add led support. 21654 21655 This patch controls the large LED on the top left of the zoom2. 21656 21657 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21658 21659commit 660888b7fb8840ce169dcd2589e49ab44c46b87b 21660Author: Tom Rix <Tom.Rix@windriver.com> 21661Date: Sun May 31 12:44:37 2009 +0200 21662 21663 ZOOM2 Add serial support. 21664 21665 Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board. 21666 The default serial is from the USB connector on left side of the debug board. 21667 The USB connector will produce 2 of the 4 UARTS. On your host pick the first 21668 enumeration. 21669 21670 The details of the setting of the serial gpmc setup are not available. 21671 The values were provided by another party. 21672 21673 The serial port set up is the same with Zoom1. 21674 Baud rate 115200, 8 bit data, no parity, 1 stop bit, no flow. 21675 21676 The kernel bootargs are 21677 console=ttyS3,115200n8 21678 21679 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21680 21681commit 3ea201b016ab259a5ac8824af767569522768c47 21682Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21683Date: Sun May 31 12:44:27 2009 +0200 21684 21685 lh7a40x: move serial driver to drivers/serial 21686 21687 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21688 21689commit 379be585eb2343d8814a5cee5fb3da930d846bee 21690Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21691Date: Sat May 16 22:48:46 2009 +0200 21692 21693 pxa: move serial driver to drivers/serial 21694 21695 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21696 21697commit ad7e8aac6920f8b8a85b3cc2e93bca7458e99aa1 21698Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21699Date: Sat May 9 13:21:19 2009 +0200 21700 21701 arm: remove cpu_init 21702 21703 move s3c44b0 to arch_cpu_init and as noone use cpu_init remove it 21704 21705 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21706 21707commit c358d9c3f16571e8f825e81b75eaf32e228cb669 21708Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21709Date: Sat May 9 13:21:18 2009 +0200 21710 21711 arm: unify interrupt init 21712 21713 all arm init the IRQ stack the same way 21714 so unify it in lib_arm/interrupts.c and then call arch specific interrupt init 21715 21716 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21717 21718commit 10a451cd57cffbca875c97bbd8929059c5627ec6 21719Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21720Date: Fri May 8 20:24:12 2009 +0200 21721 21722 arm: unify linker script 21723 21724 all arm boards except a few use the same cpu linker script 21725 so move it to cpu/$(CPU) 21726 21727 that could be overwrite in following order 21728 SOC 21729 BOARD 21730 via the corresponding config.mk 21731 21732 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21733 21734commit 9475c63c7855edd863c93a9bb0f4b8e240d9d212 21735Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21736Date: Sat May 16 10:02:05 2009 +0200 21737 21738 afeb9260: fix macb device init 21739 21740 uses PA10, PA11 for ETX2 and ETX3. 21741 21742 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21743 21744commit 1bbae2b816d4ed38db2ebf42166a973b1ffc0df7 21745Author: Stefan Roese <sr@denx.de> 21746Date: Wed May 27 10:34:32 2009 +0200 21747 21748 ppc4xx: Remove PCI async bootup message if PCI is not used 21749 21750 Signed-off-by: Stefan Roese <sr@denx.de> 21751 21752commit a3455c00510c5abf1e91743c4a02d8393b6df18d 21753Author: Wolfgang Denk <wd@denx.de> 21754Date: Fri May 15 09:19:52 2009 +0200 21755 21756 TQM834x: use buffered writes to accelerate writing to flash 21757 21758 Also enable display of 'E'mpty sectors in "flinfo" output. 21759 21760 Signed-off-by: Wolfgang Denk <wd@denx.de> 21761 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 21762 21763commit 4681e673a51c48f4c096aa3c8fae5e6217ffd58d 21764Author: Wolfgang Denk <wd@denx.de> 21765Date: Thu May 14 23:18:34 2009 +0200 21766 21767 TQM834x: add FDT support 21768 21769 Signed-off-by: Wolfgang Denk <wd@denx.de> 21770 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 21771 21772commit 929b79a0b5e48303ab04aae9d0abceb0c707f111 21773Author: Wolfgang Denk <wd@denx.de> 21774Date: Thu May 14 23:18:33 2009 +0200 21775 21776 TQM834x: fix environment size; add redundant env. 21777 21778 Also reserve more space for U-Boot as it will probably grow soon. 21779 21780 Signed-off-by: Wolfgang Denk <wd@denx.de> 21781 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 21782 21783commit 2ae0f35fd60c7345446835b95a4daff356e1f031 21784Author: Thomas Lange <thomas@corelatus.se> 21785Date: Sun May 3 20:07:33 2009 +0200 21786 21787 ARM DaVinci: Reset with watchdog enabled 21788 21789 Once the Davinci watchdog has been enabled, the timeout 21790 value cannot be changed. If the timeout in use is long, 21791 it can take a long time for card to reset. By writing 21792 an invalid service key, we can trigger an immediate reset. 21793 21794 Signed-off-by: Thomas Lange <thomas@corelatus.se> 21795 21796commit 6cc7ba9ed43106946aa9aa868302aa2faf1d17be 21797Author: Wolfgang Denk <wd@denx.de> 21798Date: Fri May 15 10:07:43 2009 +0200 21799 21800 video: Add an option to skip video initialization 21801 21802 This patch adds an option to skip the video initialization on for all 21803 video drivers. This is needed for the CPCI750 which can be built as 21804 CPCI host and adapter/target board. And the adapter board can't 21805 access the video cards located on the CompactPCI bus. 21806 21807 Signed-off-by: Stefan Roese <sr@denx.de> 21808 Cc: Anatolij Gustschin <agust@denx.de> 21809 21810 Rebased against simplifying patch. 21811 Signed-off-by: Wolfgang Denk <wd@denx.de> 21812 21813commit f62f64692ff7f6226ad221d5df6487ea5ef39bdd 21814Author: Wolfgang Denk <wd@denx.de> 21815Date: Fri May 15 10:07:42 2009 +0200 21816 21817 drv_video_init(): simplify logic 21818 21819 Simplify nesting of drv_video_init() and use a consistent way of 21820 indicating failure / success. Before, it took me some time to realize 21821 which of the returns was due to an error condition and which of them 21822 indicated success. 21823 21824 Signed-off-by: Wolfgang Denk <wd@denx.de> 21825 Cc: Anatolij Gustschin <agust@denx.de> 21826 21827commit 1699da6297b8c22da16cf85b3c79192f1a6d70ca 21828Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21829Date: Wed May 13 21:01:13 2009 +0200 21830 21831 at91: regroup IP hw init in one file per soc 21832 21833 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21834 21835commit 28b00324becf3552134ae1e086509dc9c3d6e932 21836Author: David Brownell <dbrownell@users.sourceforge.net> 21837Date: Fri May 15 23:48:37 2009 +0200 21838 21839 dm355 evm support 21840 21841 Initial U-Boot support for the DaVinci DM355 EVM. This is a board 21842 from Spectrum Digital. Board docs include schematic and firmware 21843 for its microcontroller: 21844 21845 http://c6000.spectrumdigital.com/evmdm355/revd/ 21846 21847 Most of the DM355 chip is fully documented by TI, the most notable 21848 exception being the MPEG/JPEG coprocessor (programmable using codecs 21849 available at no cost from TI), which is omitted from its DM335 sibling: 21850 21851 http://focus.ti.com/docs/prod/folders/print/tms320dm355.html 21852 21853 This version can boot from the on-board DM9000 Ethernet chip, after 21854 being loaded (from NAND, MMC/SD, or UART). In the near future, NAND 21855 and USB support could be added ... NAND support is being held back 21856 until the support for the 4-bit ECC hardware is ready. 21857 21858 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 21859 21860commit 136cf92dc9e84c9a1bf567f1fe741092bf765495 21861Author: Sanjeev Premi <premi@ti.com> 21862Date: Fri May 15 23:48:37 2009 +0200 21863 21864 OMAP3EVM: Set default bootfile 21865 21866 The current configuration doesn't define default 21867 bootfile; leading to this warning at execution: 21868 21869 OMAP3_EVM # dhcp 21870 ... 21871 ... 21872 DHCP client bound to address 192.168.1.11 21873 *** Warning: no boot file name; using 'AC18BE16.img' 21874 TFTP from server 0.0.0.0; our IP address is 192.168.1.11; 21875 sending through gateway 192.168.1.1 21876 Filename 'AC18BE16.img'. 21877 Load address: 0x82000000 21878 Loading: * 21879 TFTP error: 'File not found' (1) 21880 21881 Signed-off-by: Sanjeev Premi <premi@ti.com> 21882 21883commit 1a09d05abfc6d4d4f1fce9f6bd0275bd1c08d4f5 21884Author: s-paulraj@ti.com <s-paulraj@ti.com> 21885Date: Fri May 15 23:48:36 2009 +0200 21886 21887 ARM DaVinci: Minor Updates to base addresses 21888 21889 Patch adds base addresses for DaVinci DM365. Updated patches for DM365 21890 will be posted soon. 21891 21892 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 21893 21894commit de193e8e369f5f029ed3b6e2fc60341098eea766 21895Author: Tom Rix <Tom.Rix@windriver.com> 21896Date: Fri May 15 23:48:36 2009 +0200 21897 21898 ZOOM2 Add support for debug board detection. 21899 21900 The logicpd web site is a good source for general information on this board. 21901 Please start looking here if the below links are broken. 21902 http://www.logicpd.com 21903 21904 This is a pdf of the product 21905 http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf 21906 21907 This is a pdf of the product quick start guide. 21908 The debug board is described here. 21909 http://support.logicpd.com/downloads/1165/ 21910 21911 This is a wiki showing the debug board in use 21912 https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP 21913 21914 The zoom2 has an auxillary board that contains the serial, net, jtag and 21915 battery simulator. This change supports a runtime check if the debug board is 21916 connected. 21917 21918 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21919 21920commit 0c872ecd01d6782ae9d37b6eb721404a4a48f356 21921Author: Tom Rix <Tom.Rix@windriver.com> 21922Date: Fri May 15 23:48:36 2009 +0200 21923 21924 OMAP3 Port kernel omap gpio interface. 21925 21926 Port version 2.6.27 of the linux kernel's omap gpio interface to u-boot. 21927 The orignal source is in linux/arch/arm/plat-omap/gpio.c 21928 21929 See doc/README.omap3 for instructions on use. 21930 21931 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21932 21933commit 376aee78dd66ae0dc4ce496cbe93ecc80aaad48e 21934Author: Tom Rix <Tom.Rix@windriver.com> 21935Date: Fri May 15 23:48:36 2009 +0200 21936 21937 ZOOM2 Add initial support for Zoom2 21938 21939 Zoom2 is a new board from Texas Instruments and LogicPD 21940 21941 The logicpd web site is a good source for general information on this board. 21942 Please start looking here if the below links are broken. 21943 http://www.logicpd.com 21944 21945 This is a pdf of the product 21946 http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf 21947 This is the product description web page 21948 http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp 21949 21950 This patch provides a zoom2 base target by copying zoom1 and by making some 21951 obvious changes. 21952 21953 To configure, run 21954 make omap3_zoom2_config 21955 21956 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21957 21958commit 53925acf1b5c1a1e6230cda2697640cd05bd1104 21959Author: Sandeep Paulraj <s-paulraj@ti.com> 21960Date: Fri May 15 23:48:33 2009 +0200 21961 21962 ARM DaVinci:Consolidate common u-boot.lds 21963 21964 The u-boot.lds is common for all DaVinci boards. The patch removes 21965 multiple instances and moves the u-boot.lds to /cpu/arm926ejs/davinci 21966 folder. This addresses one of the comments i received while submitting 21967 patches for DM3xx 21968 21969 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 21970 21971commit 68a531fd465f5c0b3d373e0010afed32e88d37c4 21972Author: Tom Rix <Tom.Rix@windriver.com> 21973Date: Fri May 15 23:47:52 2009 +0200 21974 21975 OMAP Consolidate common u-boot.lds to cpu layer. 21976 21977 The u-boot.lds file is common for all omap boards. 21978 Move a cleaned up version to the cpu layer and add makefile logic to use it. 21979 21980 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 21981 21982commit 65a76d4f947a193e57bb8f8093c481f27e059f8f 21983Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21984Date: Fri May 15 23:47:14 2009 +0200 21985 21986 arm/dcc: add xscale support 21987 21988 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21989 21990commit 66e8f9da6879fe37f3159b3997bff874842dc51d 21991Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21992Date: Fri May 15 23:47:14 2009 +0200 21993 21994 arm/dcc: use static support to allow to use it at anytime 21995 21996 the dcc can be used at the start of the cpu 21997 21998 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 21999 22000commit 7893aa1eb6f52c3957efc301b436f1fa11e91a00
22001Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22002Date: Fri May 15 23:47:13 2009 +0200 22003 22004 ARM: Update mach-types 22005 22006 update against linux v2.6.29 22007 22008 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22009 22010commit 2907798926ee932f453ac8538e7a6c05c18428a5 22011Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22012Date: Fri May 15 23:47:13 2009 +0200 22013 22014 arm920/926/926: remove non needed header 22015 22016 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22017 22018commit 269dfea017b09c5a999d3053d00505c19789c350 22019Author: David Brownell <david-b@pacbell.net> 22020Date: Fri May 15 23:47:13 2009 +0200 22021 22022 davinci dm6446evm NAND update 22023 22024 This updates the optional (non-default!) NAND support for the 22025 DaVinci DM6446 EVM: 22026 22027 - include MTD partitioning, defaulting to what Linux uses 22028 22029 - use a flash-based BBT, which among other things speeds bootup 22030 22031 This matches code that's now queued for mainline Linux, and might 22032 even merge in an upcoming 2.6.30-rc; and the MTIDS are set up so 22033 that the U-Boot $mtdparts environment variable can be passed as-is 22034 on the kernel command line as a cmdlinepart override. 22035 22036 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 22037 22038commit 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc 22039Author: David Brownell <dbrownell@users.sourceforge.net> 22040Date: Fri May 15 23:47:12 2009 +0200 22041 22042 davinci: display correct clock info 22043 22044 Move the clock-rate dumping code into the cpu/.../davinci area 22045 where it should have been, enabled by CONFIG_DISPLAY_CPUINFO, 22046 updating the format and showing the DSP clock (where relevant). 22047 22048 Switch boards to use the cpuinfo() hook for this stuff. 22049 22050 Remove a few now-obsolete PLL #defines. 22051 22052 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 22053 22054commit daea928829098cae3c9ec6b801e52ba616725034 22055Author: Tom Rix <Tom.Rix@windriver.com> 22056Date: Fri May 15 23:47:12 2009 +0200 22057 22058 ZOOM1 Remove more legacy NAND defines. 22059 22060 These legacy NAND defines are no longer needed by this target. 22061 22062 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 22063 22064commit 65fd21c80fcaca2bbfe3ab06ab6ac68207408078 22065Author: Tom Rix <Tom.Rix@windriver.com> 22066Date: Fri May 15 23:47:12 2009 +0200 22067 22068 LED Add documentation describing the status_led and colour led API. 22069 22070 This document describes the u-boot status LED API. 22071 This allows common u-boot commands to use a board's leds to 22072 provide status for activities like booting and downloading files. 22073 22074 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 22075 22076commit 7cdf804f34378b910b4c4edd2dac7e3ca61c0825 22077Author: Tom Rix <Tom.Rix@windriver.com> 22078Date: Fri May 15 23:47:12 2009 +0200 22079 22080 ARM Add blue colour LED to status_led. 22081 22082 There is exiting support for red,yellow,green but no blue. 22083 The main LED on the zoom2 is a blue LED. 22084 22085 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 22086 22087commit b54384e3ba6b5535751f317fcd3940a53eed0d3a 22088Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22089Date: Fri May 15 23:47:02 2009 +0200 22090 22091 arm: timer and interrupt init rework 22092 22093 actually the timer init use the interrupt_init as init callback 22094 which make the interrupt and timer implementation difficult to follow 22095 22096 so now rename it as int timer_init(void) and use interrupt_init for interrupt 22097 22098 btw also remane the corresponding file to the functionnality implemented 22099 22100 as ixp arch implement two timer - one based on interrupt - so all the timer 22101 related code is moved to timer.c 22102 22103 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22104 22105commit 5b4bebe1d20c4f2b70d48b06aed1016785efcc25 22106Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22107Date: Fri May 15 23:45:22 2009 +0200 22108 22109 OMAP3: Reorganize Makefile style 22110 22111 Reformat COBJS handling. 22112 22113 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22114 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 22115 22116commit b1966982718347f67317b3fb356439743ca68a37 22117Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22118Date: Fri May 15 23:45:22 2009 +0200 22119 22120 OMAP3: Remove dublicated interrupt code 22121 22122 Remove duplicated interrupt code. Original, identical code can be found 22123 in lib_arm/interrupts.c 22124 22125 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22126 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 22127 22128commit ac7260a4190315eba4a6e526c764f6cad0bbf8c5 22129Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22130Date: Fri May 15 23:45:22 2009 +0200 22131 22132 at91rm9200: move reset code to reset.c 22133 22134 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22135 22136commit 2c75c78d94574ee996db2aa9b511258519471dd6 22137Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22138Date: Fri May 15 23:45:22 2009 +0200 22139 22140 ixp/interrupts: Move conditional compilation to Makefile 22141 22142 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22143 22144commit 8fc3bb4b0603516ad641e2de252a400b85fd869b 22145Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22146Date: Fri May 15 23:45:20 2009 +0200 22147 22148 arm: cleanup remaining CONFIG_INIT_CRITICAL 22149 22150 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22151 22152commit c20e28f49aaf38c7dede46d8f8fe8234fe90822c 22153Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22154Date: Fri May 15 23:45:12 2009 +0200 22155 22156 arm946es: remove non used timer 22157 22158 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22159 22160commit f1d944e30eb8ff89080fa03fb98d8fb5c82388d2 22161Author: David Brownell <dbrownell@users.sourceforge.net> 22162Date: Fri May 15 23:44:09 2009 +0200 22163 22164 davinci: add basic dm355/dm350/dm335 support 22165 22166 Add some basic declarations for DaVinci DM355/DM350/DM335 support, 22167 keyed on CONFIG_SOC_DM355. (DM35X isn't quite right because the 22168 DM357 is very different; while the DM355 is like a DM355 without 22169 the MPEG/JPEG coprocessor). 22170 22171 These have different peripherals than the DM6446, and some of 22172 the peripherals are at different addresses. Notably for U-Boot, 22173 there's no EMAC, and the NAND controller address is different 22174 22175 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 22176 22177commit bd36fdc146654f9de4e2ad346126e6bd2990fb19 22178Author: David Brownell <dbrownell@users.sourceforge.net> 22179Date: Fri May 15 23:44:09 2009 +0200 22180 22181 davinci: fix dm644x buglets 22182 22183 Fix two buglets in the dm644x support: don't set two must-be-zero 22184 bits in the UART management register; and only include the I2C hooks 22185 if the I2C driver is being included. 22186 22187 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 22188 22189commit f79043681ff44bae435c06f830e51e1546db7e19 22190Author: David Brownell <dbrownell@users.sourceforge.net> 22191Date: Fri May 15 23:44:08 2009 +0200 22192 22193 davinci: split out some dm644x-specific bits from psc 22194 22195 Split out DaVinci DM6446-specific bits from more generic bits: 22196 22197 - Add a CONFIG_SOC_DM644X. All current boards use DM6446 chips; 22198 DM6443 and DM6441 chips differ in available peripherals. 22199 22200 - Move most DM644X-specific bits from psc.c to a new dm644x.c file, 22201 which is conditionally built. It provides device-specific setup. 22202 22203 Plus minor coding style and comment updates with respect to the PSC. 22204 22205 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 22206 22207commit 48ef5729555f41f51618b6a3016ac5c53c7c75dc 22208Author: David Brownell <dbrownell@users.sourceforge.net> 22209Date: Fri May 15 23:44:08 2009 +0200 22210 22211 davinci: cpu-specific build uses conditional make syntax 22212 22213 Update cpu/arm926ejs/davinci/Makefile to use COBJ-y type syntax. 22214 Add the first conditional: for EMAC driver support. Not all 22215 chips have an EMAC; and boards might not use it, anyway. 22216 22217 This doesn't touch PHY configuration; that should eventually 22218 become conditional too. 22219 22220 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 22221 22222commit 7b7808ae6dace59287f565e9323cda7b098a5612 22223Author: David Brownell <dbrownell@users.sourceforge.net> 22224Date: Fri May 15 23:44:06 2009 +0200 22225 22226 davinci: move psc support board-->cpu 22227 22228 Move DaVinci PSC support from board/* to cpu/* where it belongs. 22229 The PSC module manages clocks and resets for all DaVinci-family 22230 SoCs, and isn't at all board-specific. 22231 22232 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 22233 22234commit 84f7411cb901b8df2391cf7e967ad0737f6194aa 22235Author: David Brownell <david-b@pacbell.net> 22236Date: Tue Apr 14 08:52:58 2009 -0700 22237 22238 DaVinci now respects SKIP_LOWLEVEL_INIT 22239 22240 Don't needlessly include lowlevel init code; that's only really 22241 needed with boot-from NOR (not boot-from-NAND). The 2nd stage 22242 loader (UBL) handles that before it loads U-Boot. 22243 22244 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 22245 22246commit 641e0925e4bf7adf8e2e04e3ad81b840fd71cadd 22247Author: David Brownell <dbrownell@users.sourceforge.net> 22248Date: Sun Apr 12 22:49:26 2009 -0700 22249 22250 DaVinci Ethernet cleanup 22251 22252 Chips without the EMAC controller won't need the utilities 22253 it uses to read an Ethernet address from EEPROM; so don't 22254 include them needlessly. 22255 22256 Use is_valid_ether() to validate the address from EEPROM. 22257 All-zero addresses aren't the only invalid addresses. 22258 A fully erased EEPROM returns all-ones, also invalid... 22259 22260 Switch those Ethernet utilities to use "%pM" for printing 22261 MAC addresses; and not say ROM when they mean EEPROM. 22262 22263 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 22264 Acked-by: Ben Warren <biggerbadderben@gmail.com> 22265 22266commit c790b04d230363d03939dc008bcc80f3ba4de1ae 22267Author: Stefan Roese <sr@denx.de> 22268Date: Mon May 11 15:50:12 2009 +0200 22269 22270 lib_arch/board.c: Move malloc initialization before flash_init() 22271 22272 This patch moves the malloc initialization before calling flash_init(). 22273 Upcoming changes to the NOR FLASH common CFI driver with optional 22274 MTD infrastructure and MTD concatenation support will call malloc(). 22275 And nothing really speaks against enabling malloc just a little earlier 22276 in the boot stage. Some architectures already enable malloc before 22277 calling flash_init() so they don't need any changes here. 22278 22279 Signed-off-by: Stefan Roese <sr@denx.de> 22280 Cc: Wolfgang Denk <wd@denx.de> 22281 Cc: Mike Frysinger <vapier@gentoo.org> 22282 Cc: Scott McNutt <smcnutt@psyent.com> 22283 Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 22284 Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 22285 Cc: Daniel Hellstrom <daniel@gaisler.com> 22286 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22287 Cc: John Rigby <jcrigby@gmail.com> 22288 22289commit d873133f2ba9bd613d5f6552c31cc70fb13f15d3 22290Author: Stefan Roese <sr@denx.de> 22291Date: Mon May 11 13:46:14 2009 +0200 22292 22293 ppc4xx: Add Sequoia RAM-booting target 22294 22295 This patch adds another build target for the AMCC Sequoia PPC440EPx 22296 eval board. This RAM-booting version is targeted for boards without 22297 NOR FLASH (NAND booting) which need a possibility to initially 22298 program their NAND FLASH. Using a JTAG debugger (e.g. BDI2000/3000) 22299 configured to setup the SDRAM, this debugger can load this RAM- 22300 booting image to the target address in SDRAM (in this case 0x1000000) 22301 and start it there. Then U-Boot's standard NAND commands can be 22302 used to program the NAND FLASH (e.g. "nand write ..."). 22303 22304 Here the commands to load and start this image from the BDI2000: 22305 22306 440EPX>reset halt 22307 440EPX>load 0x1000000 /tftpboot/sequoia/u-boot.bin 22308 440EPX>go 0x1000000 22309 22310 Please note that this image automatically scans for an already 22311 initialized SDRAM TLB (detected by EPN=0). This TLB will not be 22312 cleared. This TLB doesn't need to be TLB #0, this RAM-booting 22313 version will detect it and preserve it. So booting via BDI2000 22314 will work and booting with a complete different TLB init via 22315 U-Boot works as well. 22316 22317 Signed-off-by: Stefan Roese <sr@denx.de> 22318 22319commit 837db3d87f4bfe9261629fb4a1bb433506a3056a 22320Author: Mike Frysinger <vapier@gentoo.org> 22321Date: Wed May 6 08:41:45 2009 -0400 22322 22323 tools/envcrc: add --binary option to export embedded env 22324 22325 The --binary option to envcrc can be used to export the embedded env as a 22326 binary blob so that it can be manipulated/examined/whatever externally. 22327 22328 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 22329 22330commit 18cc7afd9a153a66854af862d14ba01c5496cf07 22331Author: Ben Warren <biggerbadderben@gmail.com> 22332Date: Tue Apr 28 16:50:53 2009 -0700 22333 22334 Enable CONFIG_NET_MULTI on all remaining PPC4xx boards 22335 22336 All in-tree PPC4xx boards now use CONFIG_NET_MULTI 22337 22338 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 22339 Signed-off-by: Stefan Roese <sr@denx.de> 22340 22341commit 70be6c2d40076f14062b892152649f9a62832fc9 22342Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 22343Date: Wed Apr 29 09:51:01 2009 +0200 22344 22345 4xx: Add support for DP405 hardware variants 22346 22347 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 22348 Signed-off-by: Stefan Roese <sr@denx.de> 22349 22350commit de47a34d4de1d007a8951efd072283516d580ffa 22351Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 22352Date: Wed Apr 29 09:51:00 2009 +0200 22353 22354 4xx: Remove binary cpld bitstream from DP405 board 22355 22356 This patch removes the cpld binary bitstream that is 22357 used by esd's cpld command on DP405 boards. 22358 22359 Because u-boot with an external cpld bitstream may not 22360 take more space in flash than before the u-boot binary is 22361 shrinked a little bit. Some unused featues have been 22362 removed therefore. 22363 22364 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 22365 Signed-off-by: Stefan Roese <sr@denx.de> 22366 22367commit 700d553fd3afe804086de8f73d95153315eb0c32 22368Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 22369Date: Wed Apr 29 09:50:59 2009 +0200 22370 22371 4xx: Remove binary cpld bitstream from VOM405 board 22372 22373 This patch removes the cpld binary bitstream that is 22374 used by esd's cpld command on VOM405 boards. 22375 22376 Because u-boot with an external cpld bitstream may not 22377 take more space in flash than before the u-boot binary is 22378 shrinked a little bit. 22379 22380 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 22381 Signed-off-by: Stefan Roese <sr@denx.de> 22382 22383commit 0bb10630364c48d9857cbf5353da609fc4dd6751 22384Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 22385Date: Wed Apr 29 09:50:58 2009 +0200 22386 22387 4xx: Remove binary cpld bitstream from PMC405 board 22388 22389 This patch removes the cpld binary bitstream that is 22390 used by esd's cpld command on PMC405 boards. 22391 22392 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 22393 Signed-off-by: Stefan Roese <sr@denx.de> 22394 22395commit 7cc635fb35f5b94e304fa2243d56758f57f6416b 22396Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 22397Date: Wed Apr 29 09:50:57 2009 +0200 22398 22399 4xx: Remove binary cpld bitstream from CMS700 board 22400 22401 This patch removes the cpld binary bitstream that is 22402 used by esd's cpld command on CMS700 boards. 22403 22404 Because u-boot with an external cpld bitstream may not 22405 take more space in flash than before the u-boot binary is 22406 shrinked a little bit. Some unused featues have been 22407 removed therefore. 22408 22409 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 22410 Signed-off-by: Stefan Roese <sr@denx.de> 22411 22412commit c1b2f79788deec75773b1d944d8aaf4a6d5baf9e 22413Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 22414Date: Wed Apr 29 09:50:56 2009 +0200 22415 22416 esd/common: extend cpld command with address parameter 22417 22418 This patch adds support for an address parameter to esd's 22419 cpld command. This is in preparation to remove compiled-in 22420 binary cpld (xsvf) bitstreams. 22421 22422 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 22423 Signed-off-by: Stefan Roese <sr@denx.de> 22424 22425commit 9166b776350d16460c7330bfb0a50154ea0a1903 22426Author: Peter Tyser <ptyser@xes-inc.com> 22427Date: Sat Apr 18 22:34:06 2009 -0500 22428 22429 cmd_i2c: Fix i2c help command output when CONFIG_I2C_MUX 22430 22431 When CONFIG_I2C_MUX was defined the output of 'help i2c' was not 22432 correct, eg: 22433 22434 => help i2c 22435 i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes. 22436 speed [speed] - show or set I2C bus speed 22437 i2c dev [dev] - show or set current I2C bus 22438 ... 22439 22440 It has been changed to: 22441 i2c speed [speed] - show or set I2C bus speed 22442 i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes 22443 i2c dev [dev] - show or set current I2C bus 22444 ... 22445 22446 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22447 22448commit 0a45a6357b02e5ce5bf899a60db09def6a129fee 22449Author: Peter Tyser <ptyser@xes-inc.com> 22450Date: Sat Apr 18 22:34:05 2009 -0500 22451 22452 cmd_i2c: Clean up trivial helper functions 22453 22454 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22455 22456commit e96ad5d3aba42f8ffe99f7cc5ec1bb9f21810035 22457Author: Peter Tyser <ptyser@xes-inc.com> 22458Date: Sat Apr 18 22:34:04 2009 -0500 22459 22460 cmd_i2c: Clean up i2c command argument parsing 22461 22462 argc and argv should only be modified once instead of once for 22463 every i2c sub-command 22464 22465 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22466 22467commit 0f89c54be92773b23d66ac401ba6acb6144100c3 22468Author: Peter Tyser <ptyser@xes-inc.com> 22469Date: Sat Apr 18 22:34:03 2009 -0500 22470 22471 i2c: Update references to individual i2c commands 22472 22473 The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop, 22474 and isdram are no longer available so all references to them have been 22475 updated to the new form of "i2c <cmd>". 22476 22477 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22478 22479commit d48eb5131d287f52bb85b4c58c8680a2e8e3b641 22480Author: Peter Tyser <ptyser@xes-inc.com> 22481Date: Sat Apr 18 22:34:02 2009 -0500 22482 22483 i2c: Remove deprecated individual i2c commands 22484 22485 The following individual I2C commands have been removed: imd, imm, inm, 22486 imw, icrc32, iprobe, iloop, isdram. 22487 22488 The functionality of the individual commands is still available via 22489 the 'i2c' command. 22490 22491 This change only has an impact on those boards which did not have 22492 CONFIG_I2C_CMD_TREE defined. 22493 22494 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22495 22496commit 655b34a78adf60ef260981688837904208883ae9 22497Author: Peter Tyser <ptyser@xes-inc.com> 22498Date: Sat Apr 18 22:34:01 2009 -0500 22499 22500 i2c: Create common default i2c_[set|get]_bus_speed() functions 22501 22502 New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions 22503 replace a number of architecture-specific implementations. 22504 22505 Also, providing default functions will allow all boards to enable 22506 CONFIG_I2C_CMD_TREE. This was previously not possible since the 22507 tree-form of the i2c command provides the ability to display and modify 22508 the i2c bus speed which requires i2c_[set|get]_bus_speed() to be 22509 present. 22510 22511 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22512 22513commit 8229e9c04f7019ddd76aea05d4dca044cbc9a34a 22514Author: Peter Tyser <ptyser@xes-inc.com> 22515Date: Sat Apr 18 22:34:00 2009 -0500 22516 22517 cm5200: Make function test command names more unique 22518 22519 Add "_test" to cm5200's function test command names to prevent 22520 overlap with common, global function names. Originally, the 22521 "do_i2c" function test command interfered with 22522 common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined. 22523 22524 The functions were also made static as they are not globally accessed. 22525 22526 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22527 22528commit f0722ee762e8dada9d7f74ac2745e043f83aae85 22529Author: Peter Tyser <ptyser@xes-inc.com> 22530Date: Fri Apr 24 15:34:09 2009 -0500 22531 22532 tsi108_i2c: Add i2c_init() stub function 22533 22534 Add the i2c_init() function so that the tsi108_i2c.c driver fits 22535 U-Boot's standard I2C API which is utilized by cmd_i2c.c 22536 22537 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22538 22539commit 8d907e79bc9babb27396e34be54cfdc36ff62fb9 22540Author: Peter Tyser <ptyser@xes-inc.com> 22541Date: Fri Apr 24 15:34:08 2009 -0500 22542 22543 mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define 22544 22545 Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that 22546 it can use the common 'i2c speed' command. Note that the I2C controller 22547 utilized by the mpc7448hpc2 has a fixed speed and cannot be changed 22548 dynamically. 22549 22550 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22551 22552commit a056b1ce9e19b4d4ab3dd01c3f897dcd832cd37f 22553Author: Peter Tyser <ptyser@xes-inc.com> 22554Date: Fri Apr 24 15:34:07 2009 -0500 22555 22556 Marvell: i2c cleanup 22557 22558 The following changes were made, primarily to bring the Marvell i2c 22559 driver in line with U-Boot's current I2C API: 22560 - Made i2c_init() globally accessible 22561 - Made i2c_read() and i2c_write() return an integer 22562 - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the 22563 offhand chance someone adds slave support in the future 22564 22565 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22566 22567commit 54afc6ee10c8cd09598d814d49e601359b005e49 22568Author: Peter Tyser <ptyser@xes-inc.com> 22569Date: Fri Apr 24 15:34:06 2009 -0500 22570 22571 cpci750: i2c cleanup 22572 22573 The following changes were made, primarily to bring the cpci750 i2c 22574 driver in line with U-Boot's current I2C API: 22575 - Made i2c_init() globally accessible 22576 - Made i2c_read() and i2c_write() return an integer 22577 - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the 22578 offhand chance someone adds slave support in the future 22579 22580 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22581 22582commit 9c90a2c8e87414007a016b7cd099ac1e32fd301b 22583Author: Peter Tyser <ptyser@xes-inc.com> 22584Date: Fri Apr 24 15:34:05 2009 -0500 22585 22586 i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value 22587 22588 Many boards/controllers/drivers don't support an I2C slave interface, 22589 however CONFIG_SYS_I2C_SLAVE is used in common code so provide a 22590 default 22591 22592 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 22593 22594commit e7563aff174f77aa61dab1ef5d9b47bebaa43702 22595Author: Kumar Gala <galak@kernel.crashing.org> 22596Date: Thu Jun 11 23:42:35 2009 -0500 22597 22598 fsl-ddr: Fix handling of >4G of memory when !CONFIG_PHYS_64BIT 22599 22600 The ddr code computes most things as 64-bit quantities and had some places 22601 in the middle that it was using phy_addr_t and phys_size_t. 22602 22603 Instead we use unsigned long long through out and only at the last stage of 22604 setting the LAWs and reporting the amount of memory to the board code do we 22605 truncate down to what we can cover via phys_size_t. 22606 22607 This has the added benefit that the DDR controller itself is always setup 22608 the same way regardless of how much memory we have. Its only the LAW 22609 setup that limits what is visible to the system. 22610 22611 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 22612 22613commit d4b130dc80761b430dc5b410159cd158fca1a348 22614Author: Kumar Gala <galak@kernel.crashing.org> 22615Date: Thu Jun 11 23:40:34 2009 -0500 22616 22617 85xx: Use print_size to report amount of memory not mapped by TLBs 22618 22619 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 22620 22621commit 6e2aebc33fa740c068fe28d40eaf0319b7c7287e 22622Author: Haiying Wang <Haiying.Wang@freescale.com> 22623Date: Wed May 20 12:30:42 2009 -0400 22624 22625 85xx: Add README for MPC8569MDS 22626 22627 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 22628 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 22629 22630commit b2aab386e957ba684d4f2a466bfaa91770e5058a 22631Author: Haiying Wang <Haiying.Wang@freescale.com> 22632Date: Wed May 20 12:30:33 2009 -0400 22633 22634 85xx: Add UART1 support for MPC8569MDS 22635 22636 MPC8569 UART1 signals are muxed with PortF bit[9-12], we need to define 22637 those pins before using UART1. 22638 22639 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 22640 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 22641 22642commit 399b53cbab0b377ac4c5c16c19c6e41b68a9c719 22643Author: Haiying Wang <Haiying.Wang@freescale.com> 22644Date: Wed May 20 12:30:32 2009 -0400 22645 22646 85xx: Add PIB support at CS4/CS5 for MPC8569MDS 22647 22648 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 22649 Signed-off-by: Yu Liu <Yu.Liu@freescale.com> 22650 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 22651 22652commit fb27949059f1bc84381a6216a819090f0cdbaa70 22653Author: Haiying Wang <Haiying.Wang@freescale.com> 22654Date: Thu Jun 4 16:12:39 2009 -0400 22655 22656 85xx: Fix some settings for MPC8569MDS board 22657 22658 - Increase the size of malloc to 512KB because MPC8569MDS needs more memory for 22659 malloc to support up to eight Ethernet interfaces. 22660 - Move Environment address out of uboot thus the saved environment variables 22661 will not be erased after u-boot is re-programmed. 22662 22663 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 22664 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 22665 22666commit c7f60fd29f2d638d080cdf1a49ad985b85f9429d 22667Author: Haiying Wang <Haiying.Wang@freescale.com> 22668Date: Wed May 20 12:30:30 2009 -0400 22669 22670 85xx: Fix MURAM size for MPC8569 22671 22672 MPC8569 has 128K bytes MURAM. 22673 22674 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 22675 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 22676 22677commit a53c997dd7fc858f2a27f5a47b200567b9343ae5 22678Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22679Date: Fri May 22 20:23:51 2009 +0200 22680 22681 at91/cpu.c: add missing Copyright & GPL header 22682 22683 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22684 22685commit aa446a591aca46ef2b53cc6598ea8091feb45444 22686Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 22687Date: Sun Jun 7 21:45:16 2009 +0900 22688 22689 apollon: Fix a OBJCFLAGS typo 22690 22691 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com> 22692 22693commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002 22694Author: Wolfgang Denk <wd@denx.de> 22695Date: Wed Jun 10 00:19:28 2009 +0200 22696 22697 Prepare 2009.06-rc3 22698 22699 Update CHANGELOG 22700 22701 Signed-off-by: Wolfgang Denk <wd@denx.de> 22702 22703commit 3a76ab5c166d5956885f803ce975e7151cc0ca0e 22704Author: Wolfgang Denk <wd@denx.de> 22705Date: Wed Jun 10 00:15:11 2009 +0200 22706 22707 rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared 22708 22709 Signed-off-by: Wolfgang Denk <wd@denx.de> 22710 22711commit 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7 22712Author: Daniel Mack <daniel@caiaq.de> 22713Date: Thu Jun 4 19:44:12 2009 +0200 22714 22715 ubifs: fix small error path mismatch 22716 22717 In do_readpage(), don't free 'dn' if its allocation failed. 22718 22719 Signed-off-by: Daniel Mack <daniel@caiaq.de> 22720 22721commit de7cf709ebd3c01fbd094e8853dabb410c0370a1 22722Author: Wolfgang Denk <wd@denx.de> 22723Date: Thu Jun 4 00:31:07 2009 +0200 22724 22725 EP88x: fix broken linker script 22726 22727 Signed-off-by: Wolfgang Denk <wd@denx.de> 22728 Tested-by: Mikhail Zaturenskiy <mzaturenskiy@shoppertrak.com> 22729 22730commit 7a2063bd80d3b58b2dd5d5e58f4411f8d250576c 22731Author: Wolfgang Denk <wd@denx.de> 22732Date: Fri May 15 00:16:02 2009 +0200 22733 22734 TQM85xx: minor config file cleanup 22735 22736 Remove "saveenv" from "update" definition: the environment is outside 22737 the U-Boot image on TQM85xx and therefor not affected by updates. 22738 22739 Also "beautify" code a bit (vertical alignment). 22740 22741 Signed-off-by: Wolfgang Denk <wd@denx.de> 22742 22743commit c0296b1801fc9426d772fa75fe58458db605dfee 22744Author: Wolfgang Denk <wd@denx.de> 22745Date: Fri May 15 00:16:01 2009 +0200 22746 22747 TQM85xx: adapt for new flash types 22748 22749 Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM 22750 series while new boards have 'N' type Flashes from the S29GLxxxN 22751 series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB. 22752 22753 We now change the configuration to the new flash types for all 22754 boards; this also works on old boards - we just waste two flash 22755 sectors for the environment which could be smaller there. 22756 22757 Signed-off-by: Wolfgang Denk <wd@denx.de> 22758 22759commit 6735104924f06340071a6914a9ee3345607fc102 22760Author: Dave Liu <daveliu@freescale.com> 22761Date: Mon May 18 17:49:23 2009 +0800 22762 22763 85xx: Fix the wrong SYS_CLK_IN for 8569MDS 22764 22765 The SYS_CLK_IN of MPC8569MDS is 66.66MHz, 22766 The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor. 22767 so, change the SYS_CLK_IN from 66MHz to 66.66MHz. 22768 22769 Signed-off-by: Dave Liu <daveliu@freescale.com> 22770 22771commit 16e7559c08b6f29db4596d795b92914c01e6a1b3 22772Author: Dave Liu <daveliu@freescale.com> 22773Date: Fri May 15 10:27:44 2009 +0800 22774 22775 85xx: Fix the wrong BCSR address of 8569MDS 22776 22777 The BCSR17[7] = 1 will unlock the write protect of FLASH. 22778 The WP# pin only controls the write protect of top/bottom sector, 22779 That is why we can save env, but we can't write the first sector 22780 before the patch. 22781 22782 Signed-off-by: Dave Liu <daveliu@freescale.com> 22783 22784commit 90d13b8ac3d515349626d7c8a3dc34ef38c43fa6 22785Author: Fredrik Arnerup <fredrik.arnerup@edgeware.tv> 22786Date: Tue Jun 2 16:27:10 2009 -0500 22787 22788 85xx: bugfix for reading maximum TLB size on mpc85xx 22789 22790 The MAXSIZE field in the TLB1CFG register is 4 bits, not 8 bits. 22791 This made setup_ddr_tlbs() try to set up a TLB larger than the e500 maximum 22792 (256 MB) 22793 which made u-boot hang in board_init_f() when trying to create a new stack 22794 in RAM. 22795 I have an mpc8540 with one 1GB dimm. 22796 22797 Signed-off-by: Fredrik Arnerup <fredrik.arnerup@edgeware.tv> 22798 Signed-off-by: Andy Fleming <afleming@freescale.com> 22799 Acked-by: Kumar Gala <galak@kernel.crashing.org> 22800 22801commit 1b5291dddf5f16c7ae10e3cb165882fa96038b26 22802Author: Dave Liu <daveliu@freescale.com> 22803Date: Fri Mar 27 14:32:43 2009 +0800 22804 22805 85xx: Fix the clock adjust of mpc8569mds board 22806 22807 Currently the clk_adj is 6 (3/4 cycle), The settings will cause 22808 the DDR controller hang at the data init. Change the clk_adj 22809 from 6 to 4 (1/2 cycle), make the memory system stable. 22810 22811 Signed-off-by: Dave Liu <daveliu@freescale.com> 22812 22813commit faa14babd7466dfade358f9cac128ae246b9bf1b 22814Author: RONETIX - Ilko Iliev <iliev@ronetix.at> 22815Date: Fri Jun 5 16:54:31 2009 +0200 22816 22817 at91: fix a USB problem for AT91SAM9261 22818 22819 This patch corrects the missing PLLB initialization in usb_cpu_init() 22820 for AT91SAM9261. 22821 Because of the missing PLLB initialization, the USB support for all 22822 AT91SAM9261 based boards will work only if the PLLB is configured by a 22823 precedent bootloader. 22824 22825 Signed-off-by: Ilko Iliev <iliev@ronetix.at> 22826 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 22827 Signed-off-by: Remy Bohmer <linux@bohmer.net> 22828 22829commit 0c24dec550ddb7d86b8bfdd8645b18479f73e6e2 22830Author: Felix Radensky <felix@embedded-sol.com> 22831Date: Sun May 31 20:44:15 2009 +0300 22832 22833 ppc4xx/net: Fix MDIO clock setup 22834 22835 This patch fixes MDIO clock setup in case when OPB frequency is 100MHz. 22836 Current code assumes that the value of sysinfo.freqOPB is 100000000 22837 when OPB frequency is 100MHz. In reality it is 100000001. As a result 22838 MDIO clock is set to incorrect value, larger than 2.5MHz, thus violating 22839 the standard. This in not a problem on boards equipped with Marvell PHYs 22840 (e.g. Canyonlands), since those PHYs support MDIO clocks up to 8.3MHz, 22841 but can be a problem for other PHYs (e.g. Realtek ones). 22842 22843 Signed-off-by: Felix Radensky <felix@embedded-sol.com> 22844 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 22845 22846commit d65e34d12514de2bbe3b8f519761d641c081bad0 22847Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 22848Date: Wed Feb 25 14:27:29 2009 +0900 22849 22850 rtl8169: fix PCI system memory address 22851 22852 When PCI device use system memory, some PCI host controller should be 22853 set physical memory address. 22854 22855 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 22856 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 22857 22858commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43 22859Author: Manikandan Pillai <mani.pillai@ti.com> 22860Date: Wed Apr 8 09:14:35 2009 +0530 22861 22862 SMC911x driver fixed for NFS boot 22863 22864 eth_halt() function in the smc911x drivers used to call the 22865 smc911x_reset() function. eth_halt() used to be called after 22866 tftp transfers. This used to put the ethernet chip in reset 22867 while the linux boots up resulting in the ethernet driver 22868 not coming up. NFS boot used to fail as a result. 22869 22870 This patch calls smc911x_shutdown() instead of smc911x_reset(). 22871 Some comments received has also been fixed. 22872 22873 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com> 22874 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 22875 22876commit e5a3bc2401a23f1890611f020f57f94824a534db 22877Author: Remy Bohmer <linux@bohmer.net> 22878Date: Sun May 3 12:11:40 2009 +0200 22879 22880 Add config option for disabling DM9000-SROM support. 22881 22882 Some boards do not have SROM support for the DM9000 network adapter. 22883 Instead of listing these board names in the driver code, make this 22884 option configurable from the board config file. 22885 22886 It also removes a build warning for the at91sam9261ek board: 22887 'dm9000x.c:545: warning: 'read_srom_word' defined but not used' 22888 22889 And it repaires the trizepsiv board build which was broken around the 22890 same routines 22891 22892 Signed-off-by: Remy Bohmer <linux@bohmer.net> 22893 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 22894 22895commit 3c9b1ee17e19bd6d80344678d41a85e52b0be713 22896Author: Kim Phillips <kim.phillips@freescale.com> 22897Date: Fri Jun 5 14:11:33 2009 -0500 22898 22899 mpc83xx: don't set SICRH_TSOBI1 to RMII/RTBI operation 22900 22901 In GMII mode (which operates at 3.3V) both SICRH TSEC1/2 output buffer 22902 impedance bits should be clear, i.e., SICRH[TSIOB1] = 0 and SICRH[TSIOB2] = 0. 22903 SICRH[TSIOB1] was erroneously being set high. 22904 22905 U-Boot always operated this PHY interface in GMII mode. It is assumed this 22906 was missed in the clean up by the original board porters, and copied along 22907 to the TQM and sbc boards. 22908 22909 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 22910 Acked-by: Ira Snyder <iws@ovro.caltech.edu> 22911 Reviewed-by: David Hawkins <dwh@ovro.caltech.edu> 22912 Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com> 22913 CC: Dave Liu <DaveLiu@freescale.com> 22914 22915commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7 22916Author: Daniel Mack <daniel@caiaq.de> 22917Date: Wed Apr 8 13:23:37 2009 +0200 22918 22919 smc911x: write back the manually set MAC address 22920 22921 If the MAX address is given by the environment, write it back to the 22922 hardware. 22923 22924 Signed-off-by: Daniel Mack <daniel@caiaq.de> 22925 Cc: Sascha Hauer <s.hauer@pengutronix.de> 22926 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 22927 22928commit dfcd7f21607fd847236b04bb1a8d59a7c10ab99c 22929Author: Wolfgang Denk <wd@denx.de> 22930Date: Fri May 15 00:16:03 2009 +0200 22931 22932 Redundant Environment: protect full sector size 22933 22934 Several boards used different ways to specify the size of the 22935 protected area when enabling flash write protection for the sectors 22936 holding the environment variables: some used CONFIG_ENV_SIZE and 22937 CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even 22938 a mix of both for the "normal" and the "redundant" areas. 22939 22940 Normally, this makes no difference at all. However, things are 22941 different when you have to deal with boards that can come with 22942 different types of flash chips, which may have different sector 22943 sizes. 22944 22945 Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the 22946 biggest sector size, which may include several sectors on boards using 22947 the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE 22948 or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the 22949 case that only the first of these sectors get protected, while the 22950 following ones aren't. 22951 22952 This is no real problem, but it can be confusing for the user - 22953 especially on boards that use CONFIG_ENV_SECT_SIZE to protect the 22954 "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the 22955 "redundant" area. 22956 22957 To avoid such inconsistencies, I changed all sucn boards that I found 22958 to consistently use CONFIG_ENV_SECT_SIZE for protection. This should 22959 not cause any functional changes to the code. 22960 22961 Signed-off-by: Wolfgang Denk <wd@denx.de> 22962 Cc: Paul Ruhland 22963 Cc: Pantelis Antoniou <panto@intracom.gr> 22964 Cc: Stefan Roese <sr@denx.de> 22965 Cc: Gary Jennejohn <garyj@denx.de> 22966 Cc: Dave Ellis <DGE@sixnetio.com> 22967 Acked-by: Stefan Roese <sr@denx.de> 22968 22969commit b81830f6e3b3e6ed114d071eb107965e49fa9b5a 22970Author: Ilya Yanok <yanok@emcraft.com> 22971Date: Thu May 14 14:03:09 2009 +0400 22972 22973 mmc: it's safe to ignore mmc_send_if_cond() return value 22974 22975 Return value of mmc_send_if_cond() can be safely ignored (as it is 22976 done in Linux). This makes older cards work with MXC MCI controller. 22977 22978 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 22979 22980commit dba6fcf6517faa5dda7df8109febe03c9c72a6f5 22981Author: Stefan Roese <sr@denx.de> 22982Date: Mon May 11 15:54:13 2009 +0200 22983 22984 cfi_mtd: Fix bug in last sector detection 22985 22986 This patch now enabled this cfi-mtd wrapper to correctly detect and 22987 erase the last sector in an NOR FLASH device. 22988 22989 Signed-off-by: Stefan Roese <sr@denx.de> 22990 22991commit 4e3d89ba948eef801ffd46ef862cdede5b3f8320 22992Author: Yauhen Kharuzhy <jekhor@gmail.com> 22993Date: Thu May 7 00:43:30 2009 +0300 22994 22995 mmc: Fix decoding of SCR & function switch data on little-endian machines 22996 22997 SCR & switch data are read from card as big-endian words and should be 22998 converted to CPU byte order. 22999 23000 Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
23001 Signed-off-by: Andy Fleming <afleming@freescale.com> 23002 23003commit f33cb34b3971dabe3720d577b0e1b8601c09fe17 23004Author: Yauhen Kharuzhy <jekhor@gmail.com> 23005Date: Thu May 7 13:08:53 2009 +0300 23006 23007 mmc: Remove return from mmc_init for non SD 2.0 compatible cards. 23008 23009 Cards which are not compatible with SD 2.0 standard, may return response 23010 for CMD8 command, but it will be invalid in terms of SD 2.0. We should 23011 accept this case as admissible, just like Linux does. 23012 23013 Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com> 23014 Signed-off-by: Andy Fleming <afleming@freescale.com> 23015 23016commit 998be3dd59ed0af4bec38324047fecfa88ac45db 23017Author: Rabin Vincent <rabin@rab.in> 23018Date: Sun Apr 5 13:30:56 2009 +0530 23019 23020 mmc: drop unnecessary casts 23021 23022 Now that response is a uint, we can drop all the casts. 23023 23024 Signed-off-by: Rabin Vincent <rabin@rab.in> 23025 23026commit 0b453ffe28bb9227d86ddbe0893bd19c93f04ed7 23027Author: Rabin Vincent <rabin@rab.in> 23028Date: Sun Apr 5 13:30:55 2009 +0530 23029 23030 mmc: fix response decoding on little endian 23031 23032 The mmc code defines the response as an array of chars. However, it 23033 access the response bytes both as (i) an array of four uints (with 23034 casts) and (ii) as individual chars. The former case is used more 23035 often, including by the driver when it assigns the response. 23036 23037 The char-wise accesses are broken on little endian systems because they 23038 assume that the bytes in the uints are in big endian byte order. 23039 23040 This patch fixes this by changing the response to be an array of four 23041 uints and replacing the char-wise accesses with equivalent uint-wise 23042 accesses. 23043 23044 Signed-off-by: Rabin Vincent <rabin@rab.in> 23045 23046commit 9b1f942c09dd942e6de3185caa81c111b14de567 23047Author: Rabin Vincent <rabin@rab.in> 23048Date: Sun Apr 5 13:30:54 2009 +0530 23049 23050 mmc: use lldiv to fix arm eabi build 23051 23052 The generic MMC core uses direct long long divisions, which do not build 23053 with ARM EABI toolchains. Use lldiv() instead, which works everywhere. 23054 23055 Signed-off-by: Rabin Vincent <rabin@rab.in> 23056 23057commit e85649c7e683faea1ccfddc9fa9abc62f38e4201 23058Author: Rabin Vincent <rabin@rab.in> 23059Date: Sun Apr 5 13:30:53 2009 +0530 23060 23061 mmc: check find_mmc_device return value 23062 23063 find_mmc_device returns NULL if an invalid device number is specified. 23064 Check for this to avoid dereferencing NULL pointers. 23065 23066 Signed-off-by: Rabin Vincent <rabin@rab.in> 23067 23068commit ac0865ff33870cdf2cd480165045e1bc311e9fa2 23069Author: Rabin Vincent <rabin@rab.in> 23070Date: Sun Apr 5 13:30:52 2009 +0530 23071 23072 mmc: clean up help texts 23073 23074 Remove some repeated words and superfluous newlines in the mmc command 23075 help entries. 23076 23077 Signed-off-by: Rabin Vincent <rabin@rab.in> 23078 23079commit 7d6900ebe16d679c0e03f8d1584b64057a64ce39 23080Author: Mike Frysinger <vapier@gentoo.org> 23081Date: Fri May 29 17:01:48 2009 -0400 23082 23083 Blackfin: spi: fix pin handling of SPI0 SSEL4 23084 23085 CS4 on SPI0 has a dedicated PH8 pin which needs to be enabled as a 23086 peripheral in order to work. 23087 23088 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 23089 23090commit 2157359dad2533987f5eb0181ef543693fad6a33 23091Author: Mike Frysinger <vapier@gentoo.org> 23092Date: Tue May 26 02:51:57 2009 -0400 23093 23094 Blackfin: fix if() logic in bootrom evt1 check 23095 23096 A missing set of parenthesis caused the silicon revision to apply only to 23097 the BF533 and not the BF531/BF532 variants. 23098 23099 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 23100 23101commit 76b5883da2cf049cd410901c04ea450e5f5c27c3 23102Author: Stefan Roese <sr@denx.de> 23103Date: Sat May 16 12:04:22 2009 +0200 23104 23105 jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together 23106 23107 Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because 23108 mtdparts_init() is available in both files, cmd_mtdparts.c and 23109 cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before 23110 the jffs2/mtdparts command/file split those 2 different versions 23111 already existed. So this is nothing new. The main problem is that the 23112 variables "current_dev" and "current_partnum" are declared in both 23113 files now. This doesn't work. 23114 23115 This patch now changes the names of those variable to more specific 23116 names: "current_mtd_dev" and "current_mtd_partnum". This is because 23117 this patch also changes the declaration from static to global, so 23118 that they can be used from both files. 23119 23120 Please note that my first tests were not successful. The MTD devices 23121 selected via mtdparts are now accessed but I'm failing to see the 23122 directory listed via the "ls" command. Nothing is displayed. Perhaps 23123 I didn't generate the JFFS2 image correctly (I never used JFFS2 in 23124 U-Boot before). Not sure. Perhaps somebody else could take a look at 23125 this as well. I'll continue looking into this on Monday. 23126 23127 Signed-off-by: Stefan Roese <sr@denx.de> 23128 Cc: Wolfgang Denk <wd@denx.de> 23129 Cc: Detlev Zundel <dzu@denx.de> 23130 Cc: Ilya Yanok <yanok@emcraft.com> 23131 Cc: Renaud barbier <renaud.barbier@ge.com> 23132 23133commit ab687907980fa28940a1a992d3f1c5d17cdbbf5d 23134Author: Graf Yang <graf.yang@analog.com> 23135Date: Sun May 24 02:34:34 2009 -0400 23136 23137 Blackfin: bf518f-ezbrd: setup portmux for async flash 23138 23139 The pins for async memory where parallel flash lives are not enabled by 23140 default, so make sure we mux them as needed. 23141 23142 Signed-off-by: Graf Yang <graf.yang@analog.com> 23143 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 23144 23145commit f40f6db278f602b55820693634a7256b0b4e4b80 23146Author: Stefan Roese <sr@denx.de> 23147Date: Wed May 20 10:58:03 2009 +0200 23148 23149 nand: Fix problem with ECC ordering for PPC4xx NDFC platforms 23150 23151 This patch enables Smart Media (SMC) ECC byte ordering which is used 23152 on the PPC4xx NAND FLASH controller (NDFC). Without this patch we have 23153 incompatible ECC byte ordering to the Linux kernel NDFC driver. 23154 23155 Signed-off-by: Stefan Roese <sr@denx.de> 23156 Acked-by: Scott Wood <scottwood@freescale.com> 23157 23158commit 399aab7748bef053d59612211e1bd7a3fabfce18 23159Author: Stefan Roese <sr@denx.de> 23160Date: Wed May 20 10:58:02 2009 +0200 23161 23162 ppc4xx: Fix problem with ECC ordering for PPC4xx NDFC platforms 23163 23164 This patch now uses the correct ECC byte order (Smart Media - SMC) 23165 to be used on the 4xx NAND FLASH driver. Without this patch we have 23166 incompatible ECC byte ordering to the Linux kernel NDFC driver. 23167 23168 Please note that we also have to enable CONFIG_MTD_NAND_ECC_SMC in 23169 drivers/mtd/nand/nand_ecc.c for correct operation. This is done with 23170 a seperate patch. 23171 23172 Signed-off-by: Stefan Roese <sr@denx.de> 23173 Acked-by: Scott Wood <scottwood@freescale.com> 23174 23175commit 5d841fac8249a2b3f9a814da2140132be0a9f60d 23176Author: Stefan Roese <sr@denx.de> 23177Date: Wed May 20 10:58:01 2009 +0200 23178 23179 ppc4xx: Move definition for PPC4xx NAND FLASH controller to header 23180 23181 This patch moves the definition for the PPC4xx NAND FLASH controller 23182 (NDFC) CONFIG_NAND_NDFC into include/ppc4xx.h. This is needed for the 23183 upcoming fix for the ECC byte ordering of the NDFC driver. 23184 23185 Signed-off-by: Stefan Roese <sr@denx.de> 23186 Acked-by: Scott Wood <scottwood@freescale.com> 23187 23188commit 2df72b82bc9e17b88dc82735a067749220beb025 23189Author: Kim Phillips <kim.phillips@freescale.com> 23190Date: Tue May 19 12:53:36 2009 -0500 23191 23192 common: fix inline--weak error spotted by gcc 4.4 23193 23194 cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak 23195 23196 removing the inline attribute fixes it. 23197 23198 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 23199 23200commit 9fd9abedcc3c10cf89353265cbe05f58609d51f3 23201Author: Kim Phillips <kim.phillips@freescale.com> 23202Date: Tue May 19 12:53:32 2009 -0500 23203 23204 TQM834x: remove defines causing gcc4.4 warnings 23205 23206 Configuring for TQM834x board... 23207 cpu_init.c: In function 'cpu_init_f': 23208 cpu_init.c:262: warning: array subscript is above array bounds 23209 cpu_init.c:263: warning: array subscript is above array bounds 23210 cpu_init.c:270: warning: array subscript is above array bounds 23211 ... 23212 23213 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 23214 23215commit 0850301747228a3327f2815a85284d26ade3de95 23216Author: Andreas Huber <andreas.huber@keymile.com> 23217Date: Tue May 19 11:06:30 2009 +0200 23218 23219 UBI: fix return code in ubi_volume_read 23220 23221 Return -ENODEV instead of 0 when trying to read from a non existing volume. 23222 23223 Signed-off-by: Andreas Huber <andreas.huber@keymile.com> 23224 Signed-off-by: Stefan Roese <sr@denx.de> 23225 23226commit ec01481ddc4cf302c7f6d760b776ca94819ec21e 23227Author: Graf Yang <graf.yang@analog.com> 23228Date: Tue May 19 04:40:08 2009 -0400 23229 23230 Blackfin: fix timer_init()/timer_reset() 23231 23232 The timer_init() function was not using the right csync instruction, nor 23233 was it doing it right after disabling the core timer. 23234 23235 The timer_reset() function would reset the timestamp, but not the actual 23236 timer, so there was a common edge case where get_timer() return a jump of 23237 one timestamp (couple milliseconds) right after resetting. This caused 23238 many functions to improperly timeout right away. 23239 23240 Signed-off-by: Graf Yang <graf.yang@analog.com> 23241 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 23242 23243commit c06326c73bf90e48a8e1cf8893ad31c575423f50 23244Author: Shinya Kuribayashi <skuribay@pobox.com> 23245Date: Sat May 16 09:12:09 2009 +0900 23246 23247 MIPS: lib_mips/board.c: Remove unused variables 23248 23249 This fixes the following build warnings: 23250 23251 board.c: In function 'board_init_r': 23252 board.c:328: warning: unused variable 'i' 23253 board.c:326: warning: unused variable 'e' 23254 23255 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com> 23256 23257commit 47f6a36cc3f3427cc8e4f1d0f3e6678be6f33769 23258Author: Shinya Kuribayashi <skuribay@pobox.com> 23259Date: Sat May 16 09:12:09 2009 +0900 23260 23261 MIPS: Make all extern-ed functions in bitops.h static 23262 23263 All these functions are expected to be static inline-ed. 23264 This patch also fixes the following build warnings on MIPS targets: 23265 23266 include/asm/bitops.h: In function 'ext2_find_next_zero_bit': 23267 include/asm/bitops.h:862: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static 23268 include/asm/bitops.h:885: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static 23269 include/asm/bitops.h:887: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static 23270 23271 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com> 23272 23273commit 87423d740b91329b8d1d0b73cafd6930993b558a 23274Author: Thomas Lange <thomas@corelatus.se> 23275Date: Fri Apr 24 16:22:16 2009 +0200 23276 23277 MIPS: Implement ethernet halt for au1x00 23278 23279 Implement ethernet halt() by putting MAC0 in reset. 23280 If we do not do this, we will get memory corruption 23281 when ethernet frames are received during early OS boot. 23282 23283 Signed-off-by: Thomas Lange <thomas@corelatus.se> 23284 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com> 23285 23286commit a2e0ffcf2d9a22c582a93e84a4bef20fd3877f47 23287Author: Wolfgang Denk <wd@denx.de> 23288Date: Fri May 15 23:29:23 2009 +0200 23289 23290 Prepare v2009.06-rc2 23291 23292 Update CHANGELOG. 23293 23294 Signed-off-by: Wolfgang Denk <wd@denx.de> 23295 23296commit f4317ea91942f44cc1c433277927b61618e9b0a5 23297Author: Daniel Mack <daniel@caiaq.de> 23298Date: Tue May 5 12:48:29 2009 +0200 23299 23300 ARM: fix PXA build by defining UP2OCR 23301 23302 U-Boot does not currently build for PXA platforms with USB support 23303 enabled: 23304 23305 usb.c:46: error: 'UP2OCR' undeclared (first use in this function) 23306 23307 Signed-off-by: Daniel Mack <daniel@caiaq.de> 23308 Cc: Markus Klotzbuecher <mk@denx.de> 23309 23310 Edited commit message. 23311 Signed-off-by: Wolfgang Denk <wd@denx.de> 23312 23313commit e26ad0eabd10a8cda51920fbcfe4da5b4ccf0c98 23314Author: Wolfgang Denk <wd@denx.de> 23315Date: Fri May 15 22:32:57 2009 +0200 23316 23317 Minor Coding Style fix; update CHANGELOG. 23318 23319 Signed-off-by: Wolfgang Denk <wd@denx.de> 23320 23321commit af75a45d23b72a59ac5cc0427696c7f634fdc94b 23322Author: Wolfgang Denk <wd@denx.de> 23323Date: Fri May 15 09:27:58 2009 +0200 23324 23325 IDE: bail out of dev_print() for unknown device types 23326 23327 Commit 574b319512 introduced a subtle bug by mixing a list of tests 23328 for "dev_desc->type" and "dev_desc->if_type" into one switch(), which 23329 then mostly did not work because "dev_desc->type" cannot take any 23330 "IF_*" type values. A later fix in commit 8ec6e332ea changed the 23331 switch() into testing "dev_desc->if_type", but at this point the 23332 initial test for unknown device types was completely lost, which 23333 resulted in output like that for IDE ports without device attached: 23334 23335 Device 1: Model: Firm: Ser#: 23336 Type: # 1F # 23337 Capacity: not available 23338 23339 This patch re-introduces the missing test for unknown device types. 23340 23341 Signed-off-by: Wolfgang Denk <wd@denx.de> 23342 Cc: Stefan Roese <sr@denx.de> 23343 Cc: Detlev Zundel <dzu@denx.de> 23344 Tested-by: Stefan Roese <sr@denx.de> 23345 23346commit c21f62d8483fbab44cd98d93ff2e9355a330d225 23347Author: Stefan Roese <sr@denx.de> 23348Date: Thu May 14 07:25:13 2009 +0200 23349 23350 74xx_7xx: Fix rounding problem in CPU frequency calculation 23351 23352 This patch fixes a problem in the CPU frequency calculation. Without it 23353 a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz. 23354 23355 Signed-off-by: Stefan Roese <sr@denx.de> 23356 23357commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb 23358Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 23359Date: Wed May 13 22:24:12 2009 +0200 23360 23361 console.h: remove unused prototype 'console_realloc' 23362 23363 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 23364 23365commit 84bf7ca522e94ec402a1264b01971b924b7e268f 23366Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 23367Date: Wed May 13 22:16:31 2009 +0200 23368 23369 api: remove un-needed ifdef CONFIG_API already handle by the Makefile 23370 23371 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 23372 23373commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80 23374Author: Detlev Zundel <dzu@denx.de> 23375Date: Wed May 13 10:54:10 2009 +0200 23376 23377 Fix e-mail address of Gary Jennejohn. 23378 23379 Signed-off-by: Detlev Zundel <dzu@denx.de> 23380 23381commit 5e2c08c3ac90808e9be64856916bfd6df984823c 23382Author: Emil Medve <Emilian.Medve@Freescale.com> 23383Date: Tue May 12 13:48:32 2009 -0500 23384 23385 Remove inline qualifier from show_boot_progress() 23386 23387 The 'inline' is conflicting with the semantic of 'weak' attribute and with the 23388 way the show_boot_progress() function is used. 23389 23390 Also gcc 4.4 is complaining about it: 23391 23392 main.c:51: error: inline function 'show_boot_progress' cannot be declared weak 23393 23394 Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com> 23395 23396commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36 23397Author: Wolfgang Denk <wd@denx.de> 23398Date: Tue May 12 15:17:35 2009 +0200 23399 23400 MPC8260: fixup device tree by property instead of path 23401 23402 cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the 23403 clock frequencies in the device tree, using a CPU path 23404 "/cpus/OF_CPU", with OF_CPU beind defined in the board config file. 23405 23406 However, this does not work when one board config file (here: 23407 MPC8260ADS.h) is intended to be used for several diffrent CPUs and 23408 therefor contains a generic definition like "cpu@0", as the device 23409 trees that will then be loaded will contain specific names like 23410 "PowerPC,8272@0". 23411 23412 We switch to using do_fixup_by_prop_u32() instead, so we can search 23413 for device_type="cpu", as it is done in other architectures, too. 23414 23415 Signed-off-by: Wolfgang Denk <wd@denx.de> 23416 Cc: Heiko Schocher <hs@denx.de> 23417 Acked-by: Heiko Schocher <hs@denx.de> 23418 Tested-by: Heiko Schocher <hs@denx.de> 23419 23420commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd 23421Author: Rohit Hagargundgi <h.rohit@samsung.com> 23422Date: Mon Mar 9 19:45:46 2009 +0530 23423 23424 Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN 23425 23426 Add CONFIG_SYS_MONITOR_LEN macro to apollon board config. 23427 CONFIG_SYS_MONITOR_LEN defines the U-Boot image size. 23428 and is used by OneNAND ipl when reading U-Boot image. 23429 23430 Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com> 23431 Acked-by: Kyungmin Park <kyungmin.park@samsung.com> 23432 23433commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a 23434Author: Ben Warren <biggerbadderben@gmail.com> 23435Date: Tue Apr 28 17:04:51 2009 -0700 23436 23437 Schedule removal of non-CONFIG_NET_MULTI net driver API 23438 23439 This will make CONFIG_NET_MULTI the only net driver configuration and 23440 we'll be able to remove this option. 23441 23442 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 23443 23444commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1 23445Author: Detlev Zundel <dzu@denx.de> 23446Date: Tue May 5 16:04:06 2009 +0200 23447 23448 powerpc/inka4x0: Remove left-over ide reset code. 23449 23450 The pin which was used in preliminary versions of the board for ide 23451 reset is really connected to the rtc clock. 23452 23453 Signed-off-by: Detlev Zundel <dzu@denx.de> 23454 23455commit f578a2da6770951239ad91ee9a1875fdc71dbe48 23456Author: Marco Stornelli <marco.stornelli@gmail.com> 23457Date: Tue Apr 28 19:04:02 2009 +0200 23458 23459 Add imls utility command 23460 23461 This patch adds, under tools folder, a new command called imls. Its 23462 goal is the same of UBoot's imls but it can be used as Linux shell 23463 command. It reads from raw mtd partition and prints the list of the 23464 stored images. 23465 23466 Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com> 23467 23468commit da95427ce431908714ae5e9f663ee6e2bc3bcc33 23469Author: Heiko Schocher <hs@denx.de> 23470Date: Tue Apr 28 08:36:11 2009 +0200 23471 23472 netloop: updates for NetLoop 23473 23474 Fix some issues introduced from commit: 23475 2f70c49e5b9813635ad73666aa30f304c7fdeda9 23476 suggested by Mike Frysinger. 23477 23478 - added some comment for the env_id variable in common_cmd_nvedit.c 23479 - moved some variables in fn scope instead of file scope 23480 - NetInitLoop now static void 23481 23482 Signed-off-by: Heiko Schocher <hs@denx.de> 23483 Acked-by: Ben Warren <biggerbadderben@gmail.com> 23484 23485commit 3c1d89545de11822f8b5afb5646a57757620bd95 23486Author: Heiko Schocher <hs@denx.de> 23487Date: Tue Apr 28 07:48:39 2009 +0200 23488 23489 82xx, ids8247: added ids8247 board to MAKEALL script 23490 23491 Signed-off-by: Heiko Schocher <hs@denx.de> 23492 23493commit 890a017a8a995c921d1e889d360e8d6538ceecfe 23494Author: Detlev Zundel <dzu@denx.de> 23495Date: Thu May 7 13:08:55 2009 +0200 23496 23497 arm/imx31_phycore: Fix bi_arch_number 23498 23499 Signed-off-by: Detlev Zundel <dzu@denx.de> 23500 Cc: Sascha Hauer <s.hauer@pengutronix.de> 23501 23502commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e 23503Author: Sascha Hauer <s.hauer@pengutronix.de> 23504Date: Fri May 15 10:21:33 2009 +0200 23505 23506 remove myself as phycore/litekit Maintainer 23507 23508 I never acked a patch that adds me as phycore i.MX31 maintainer nor was 23509 it me who pushed the patches, so remove myself from the maintainer list 23510 so that other people do not longer wait for my ack. 23511 23512 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 23513 23514commit c63254ef5628efe1c77cb2fdba20753f9666f55d 23515Author: Sergey Lapin <slapin@ossfans.org> 23516Date: Tue May 12 12:25:14 2009 +0400 23517 23518 AFEB9260 network fix 23519 23520 AFEB9260 uses PA10, PA11 for ETX2 and ETX3. 23521 Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence, 23522 not 0. 23523 23524 Signed-off-by: Sergey Lapin <slapin@ossfans.org> 23525 23526commit f8ddcd58221cab63dd25c2324dd2032487f748b1 23527Author: Graf Yang <graf.yang@analog.com> 23528Date: Tue May 5 02:26:27 2009 -0400 23529 23530 Blackfin: bf518f-ezbrd: reset ethernet PHY during init 23531 23532 We don't know what state the ethernet PHY is in when starting up, so make 23533 sure we set it to a sane state. This fixes troubles seen when Linux boots 23534 up, configures the PHY is a non-default state, and then the system reboots 23535 into U-Boot which previously expected a reset state only. 23536 23537 Signed-off-by: Graf Yang <graf.yang@analog.com> 23538 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 23539 23540commit 53310b88eaa27fb5cb83144d0b22389190ad87a1 23541Author: Mike Frysinger <vapier@gentoo.org> 23542Date: Tue May 5 01:35:41 2009 -0400 23543 23544 Blackfin: bf527-ezkit: fix SPI flash env params 23545 23546 The BF527-EZKIT settings for storing the environment in SPI flash wasn't 23547 using the correct sector settings for the SPI flash part that is actually 23548 on the board. 23549 23550 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 23551 23552commit f58bf804a14324c6c9186a7a664fa23281780e8b 23553Author: Mike Frysinger <vapier@gentoo.org> 23554Date: Fri Apr 24 23:54:19 2009 -0400 23555 23556 Blackfin: avoid get_sclk() with early serial debug 23557 23558 When the clock functions were changed to use cached values (and thereby 23559 avoiding expensive math functions), early serial debug broke because the 23560 baud programming is called before external memory is available. 23561 23562 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 23563 23564commit 02778f2f1b4b1a28b492367477db27c58d45ae35 23565Author: Mike Frysinger <vapier@gentoo.org> 23566Date: Fri Apr 24 23:39:41 2009 -0400 23567 23568 Blackfin: fix booting with older bootroms (no EVT1) 23569 23570 When dropping jump block support, the assumption was that all bootroms 23571 supported entry point redirection via the EVT1 register. Unfortunately, 23572 this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2 23573 and older and BF561). No one really noticed earlier because these parts 23574 usually are booted by bypassing the bootrom entirely, and older BF533 23575 parts are not supported at all (too many anomalies). 23576 23577 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 23578 23579commit af2c37378f203857d5e6c957e77a14c2da5b59d2 23580Author: Mike Frysinger <vapier@gentoo.org> 23581Date: Fri Apr 24 23:22:48 2009 -0400 23582 23583 Blackfin: recurse with early serial initcode 23584 23585 Make sure we recurse through serial_putc() rather than bang on the UART 23586 transmit register directly to avoid hardware overflows when using \n. 23587 23588 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 23589 23590commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78 23591Author: Wolfgang Denk <wd@denx.de> 23592Date: Fri May 1 21:59:12 2009 +0200 23593 23594 Prepare v2009.06-rc1 23595 23596 Update CHANGELOG. 23597 23598 Signed-off-by: Wolfgang Denk <wd@denx.de> 23599 23600commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb 23601Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 23602Date: Fri May 1 15:38:06 2009 +0200 23603 23604 at91: remove lowlevel_init.S 23605 23606 lowlevel_init.S is not used any more so remove it. 23607 As consequence, we also don't have to generate u-boot.lds 23608 but can use a static version as before. 23609 23610 This also fixes the out-of-tree build problem introduced 23611 with commit f0a2c7b4 "at91: add support for the PM9263 board" 23612 23613 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 23614 Signed-off-by: Wolfgang Denk <wd@denx.de> 23615 23616commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330 23617Author: Wolfgang Denk <wd@denx.de> 23618Date: Fri May 1 00:16:11 2009 +0200 23619 23620 Update CHANGELOG; minor coding style cleanup. 23621 23622 Signed-off-by: Wolfgang Denk <wd@denx.de> 23623 23624commit d3a513c23ba4100d6983161cdc1f747dfd087bbd 23625Author: Manikandan Pillai <mani.pillai@ti.com> 23626Date: Tue Apr 21 17:29:05 2009 +0200 23627 23628 OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000 23629 23630 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 23631 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com> 23632 23633commit ac9140037a84629c5583066ff1a177396c47d89d 23634Author: Dirk Behme <dirk.behme@googlemail.com> 23635Date: Fri Apr 17 14:27:56 2009 +0200 23636 23637 OMAP3: Beagle: Set pinmux conditionally for Rev C boards 23638 23639 The Beagle Rev C boards pull UART2 from an alternate set of balls. 23640 23641 Signed-off-by: Steve Sakoman <steve@sakoman.com> 23642 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 23643 23644commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a 23645Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 23646Date: Mon Apr 27 18:33:33 2009 +0200 23647 23648 ubifs: BUG: Blocks commpressed with zlib 23649 23650 Blocks compressed with zlib dont have the full gzip header. 23651 23652 Without this patch, block compressed with zlib cannot be readed! 23653 23654 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 23655 23656commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630 23657Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 23658Date: Mon Apr 27 18:33:32 2009 +0200 23659 23660 lib_generic: gunzip: New function zunzip 23661 23662 Separate gunzip in 23663 23664 gunzip: Find the end of the header and call zunzip. 23665 zunzip: Inflate gunzip block without header. 23666 23667 UBI fs blocks can be compresed in lzo, zlib or no-compression. The 23668 current implementation of u-boot supported all the compressions but 23669 there was a bug in the implementation of the zlib blocks. 23670 23671 UBIFS's Zlib blocks do not have header but they were compressed using 23672 gunzip, a function used to decompress gunzip files/sectors with a 23673 header. 23674 23675 This patch adds a new function zunzip that uncompress a zlib block with 23676 no header. 23677 23678 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 23679 23680commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c 23681Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 23682Date: Thu Apr 23 15:37:16 2009 +0200 23683 23684 at91: fixed plla calc when no USB support is active 23685 23686 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu> 23687 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 23688 23689commit 3791a1187c1401c33c9512595e6e89dbb46230c5 23690Author: Ladislav Michl <ladis@linux-mips.org> 23691Date: Wed Apr 22 01:12:04 2009 +0200 23692 23693 arm925t: Fix CONFIG_SYS_HZ to 1000 23694 23695 Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of 23696 get_timer. 23697 23698 Changes since original version: 23699 * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to 23700 improve timer resolution. 23701 23702 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 23703 23704commit 42bf4b2248146abdc592bde0009c6ea42067f437 23705Author: Dirk Behme <dirk.behme@googlemail.com> 23706Date: Tue Apr 14 20:15:17 2009 +0200 23707 23708 OMAP3: Remove legacy NAND defines 23709 23710 Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora. 23711 23712 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 23713 23714commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5 23715Author: Sanjeev Premi <premi@ti.com> 23716Date: Mon Apr 27 21:27:54 2009 +0530 23717 23718 OMAP3: Print correct silicon revision 23719 23720 The function display_board_info() displays incorrect 23721 silicon revision - based on the return value from 23722 function get_cpu_rev(). 23723 23724 This patch fixes the problem. 23725 23726 Signed-off-by: Sanjeev Premi <premi@ti.com> 23727 23728commit 90006e9b33bcdbf241b0295d186e3634137907a9 23729Author: Sanjeev Premi <premi@ti.com> 23730Date: Mon Apr 27 21:27:44 2009 +0530 23731 23732 OMAP3: Remove unused board-types 23733 23734 The board-types defined in struct omap3_sysinfo seem to be 23735 unused. The function display_board_info() is passed 23736 board type as an argument; which is ignored. 23737 23738 This patch removes all uses of board-type, related definitions 23739 and functions. 23740 23741 Signed-off-by: Sanjeev Premi <premi@ti.com> 23742 23743commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d 23744Author: Sanjeev Premi <premi@ti.com> 23745Date: Mon Apr 27 21:27:27 2009 +0530 23746 23747 OMAP3: Use functions print_cpuinfo() and checkboard() 23748 23749 Use the functions print_cpuinfo() and checkboard() to 23750 display the cpu and board specific information. 23751 23752 These functions reuse content from the existing function 23753 display_board_info() - which has been removed. 23754 23755 Also, updated the existig OMAP3 configurations to 23756 define: 23757 - CONFIG_DISPLAY_CPUINFO 23758 - CONFIG_DISPLAY_BOARDINFO 23759 23760 Signed-off-by: Sanjeev Premi <premi@ti.com> 23761 23762commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a 23763Author: Stefan Roese <sr@denx.de> 23764Date: Wed Mar 18 11:17:37 2009 +0100 23765 23766 MTD: Change cfi-mtd to accept non-uniform sector sizes 23767 23768 With this patch non-uniform NOR FLASH chips (chips with multiple erase 23769 regions) can be exported via the cfi-mtd layer and therefor used by UBI. 23770 We select the largest sector size as erasesize. The cfi driver will make 23771 sure that the smaller sectors are handled correctly. 23772 23773 Signed-off-by: Stefan Roese <sr@denx.de> 23774 23775commit 3dcbe628d66b648e954bc8147d4faff2983206d9 23776Author: Anatolij Gustschin <agust@denx.de> 23777Date: Thu Apr 23 12:35:22 2009 +0200 23778 23779 video: fix bug in cfb_console.c code 23780 23781 Fix bug in drawing long version/info strings: 23782 U-Boot version string like 23783 "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX" 23784 is long and doesn't wrap around correctly while drawing 23785 beside the logo. Such long strings partially overwrite 23786 the logo. This patch is an attempt to fix it. 23787 23788 Signed-off-by: Anatolij Gustschin <agust@denx.de> 23789 23790commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75 23791Author: Wolfgang Denk <wd@denx.de> 23792Date: Tue Apr 28 08:50:31 2009 +0200 23793 23794 cmd_ext2.c: fix compile warnings 23795 23796 Get rid of these warnings: 23797 23798 cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int' 23799 cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int' 23800 23801 Signed-off-by: Wolfgang Denk <wd@denx.de> 23802 23803commit 28afe0160f87ff74574150d703055a965f91422a 23804Author: Heiko Schocher <hs@denx.de> 23805Date: Mon Apr 27 10:48:20 2009 +0200 23806 23807 ids8247: Remove legacy NAND defines 23808 23809 because legacy NAND support is deprecated converting to current 23810 NAND interface. !This just compile, because I have no more the 23811 hardware to test it. 23812 23813 Signed-off-by: Heiko Schocher <hs@denx.de> 23814 23815commit dbd33614404b65aa441c5620c3dbd560c4460c09 23816Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 23817Date: Mon Apr 27 09:13:31 2009 +0200 23818 23819 ubifs: BUG realpath string must be ended with NULL 23820 23821 If the memory used to copy the link_make is "dirty" the string wont 23822 be ended with NULL, throwing out multiple memory bugs. 23823 23824 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 23825 Acked-by: Stefan Roese <sr@denx.de> 23826 23827commit 65351a8793c51f3787efbbcf3aa1df0ad543c127 23828Author: Peter Tyser <ptyser@xes-inc.com> 23829Date: Fri Apr 24 15:59:56 2009 -0500 23830 23831 bmp_logo: Check return value of fread() 23832 23833 Add basic error handling to fread() function calls. This prevents 23834 compililation warnings such as: 23835 23836 bmp_logo.c: In function ‘main’: 23837 bmp_logo.c:71: warning: ignoring return value of ‘fread’, declared with 23838 attribute warn_unused_result 23839 ... 23840 23841 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 23842 23843commit eea8be86d1c2b570660d1f6c553845e13164231a 23844Author: Peter Tyser <ptyser@xes-inc.com> 23845Date: Fri Apr 24 15:59:46 2009 -0500 23846 23847 ncb: Check return value of write() 23848 23849 This prevents the compilation warning: 23850 23851 ncb.c: In function 'main': 23852 ncb.c:32: warning: ignoring return value of ‘write’, declared with 23853 attribute warn_unused_result 23854 23855 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 23856 23857commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691 23858Author: Stefan Roese <sr@denx.de> 23859Date: Fri Apr 24 15:59:35 2009 +0200 23860 23861 mtd: nand/onenand: Register mtd device upon device scanning 23862 23863 With this patch the NAND and OneNAND devices are registered in the MTD 23864 subsystem and can then be referenced by the mtdcore code (e.g. 23865 get_mtd_device_nm()). This is needed for the new "ubi part" command 23866 syntax without the flash type parameter (nor|nand|onenand). 23867 23868 Signed-off-by: Stefan Roese <sr@denx.de> 23869 23870commit 10bb62d85a0850dbad1fdd34123378686373f166 23871Author: Stefan Roese <sr@denx.de> 23872Date: Fri Apr 24 15:58:33 2009 +0200 23873 23874 mtd: nand: Include linux/mtd/partitions.h in nand_base.h 23875 23876 This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is 23877 defined: 23878 23879 nand_base.c: In function 'nand_release': 23880 nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions' 23881 23882 Signed-off-by: Stefan Roese <sr@denx.de> 23883 23884commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9 23885Author: Stefan Roese <sr@denx.de> 23886Date: Fri Apr 24 20:24:19 2009 +0200 23887 23888 ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part" 23889 23890 This patch removes the now unnecessary flash type parameter from the 23891 "ubi part" command. Currently the user has to define the type of flash 23892 he will be using UBI on. Example: 23893 23894 => ubi part nor partition1 23895 23896 With this patch this type parameter is not needed anymore. The user can 23897 now select the partition directly without the flash type paramter. 23898 Example: 23899 23900 => ubi part partition1 23901 23902 This breaks backward compatibility right now because of the change in the 23903 command syntax. But UBI support is still quite fresh and the advantage of 23904 this new command is syntax big enough for this change. Additionally the 23905 code is much cleaner now. 23906 23907 Signed-off-by: Stefan Roese <sr@denx.de> 23908 CC: Kyungmin Park <kyungmin.park@samsung.com> 23909 23910commit 294f10ca9ea82a15e135dcb0fc658382ab206940 23911Author: Detlev Zundel <dzu@denx.de> 23912Date: Thu Apr 23 13:14:20 2009 +0200 23913 23914 mips/vcth: Use generic 16550 uart driver 23915 23916 As the common code also handles baudrate switching, which the board 23917 specific vct.c driver did not support, this is one of the rare 23918 occassions where deleting code actually adds a feature :) 23919 23920 Signed-off-by: Detlev Zundel <dzu@denx.de> 23921 Acked-by: Stefan Roese <sr@denx.de> 23922 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 23923 23924commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07 23925Author: Ladislav Michl <ladis@linux-mips.org> 23926Date: Tue Apr 21 02:26:31 2009 +0200 23927 23928 Separate mtdparts command from jffs2 23929 23930 On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote: 23931 > Currently the mtdparts commands are included in the jffs2 command support. 23932 > This doesn't make sense anymore since other commands (e.g. UBI) use this 23933 > infrastructure as well now. This patch separates the mtdparts commands from 23934 > the jffs2 commands making it possible to only select mtdparts when no JFFS2 23935 > support is needed. 23936 23937 One more leftover... Let nboot command know about partitions even if JFFS2 23938 support is not enabled. 23939 23940 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 23941 Acked-by: Stefan Roese <sr@denx.de> 23942 23943commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9 23944Author: Peter Tyser <ptyser@xes-inc.com> 23945Date: Mon Apr 20 11:22:13 2009 -0500 23946 23947 cmd_ide: Remove unused AmigaOneG3SE code 23948 23949 The output_data_short() and input_data_short() functions for the 23950 AmigaOneG3SE are unused and result in compiler warnings. 23951 23952 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 23953 23954commit c93c102ace00764a56dbdf78bac134a23906721e 23955Author: Peter Tyser <ptyser@xes-inc.com> 23956Date: Mon Apr 20 11:21:40 2009 -0500 23957 23958 AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition 23959 23960 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 23961 23962commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7 23963Author: Peter Tyser <ptyser@xes-inc.com> 23964Date: Mon Apr 20 11:09:05 2009 -0500 23965 23966 Replace __asm references with __asm__ 23967 23968 __asm__ follows gcc's documented syntax and is generally more common 23969 than __asm. This change is only asthetic and should not affect 23970 functionality. 23971 23972 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 23973 23974commit f9a109b3adc5e8647535357500e2a38f0558b5c2 23975Author: Peter Tyser <ptyser@xes-inc.com> 23976Date: Mon Apr 20 11:08:46 2009 -0500 23977 23978 Replace __attribute references with __attribute__ 23979 23980 __attribute__ follows gcc's documented syntax and is generally more 23981 common than __attribute. This change is only asthetic and should not 23982 affect functionality. 23983 23984 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 23985 23986commit 08f077da9298ff65cc6f85f90d2770000a1beee9 23987Author: David Brownell <dbrownell@users.sourceforge.net> 23988Date: Thu Apr 16 19:55:48 2009 -0700 23989 23990 mtdpart command: align output columns 23991 23992 Make the headers in the "mtdparts" command output line up 23993 with their columns ... strike the extra TAB character. 23994 23995 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 23996 23997commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02 23998Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 23999Date: Thu Apr 16 10:51:03 2009 +0900 24000
24001 Remove sa1100.h 24002 24003 sa1100.h is not used anywhere, then remove it. 24004 24005 $ find . -name '*.h' -empty -print 24006 ./include/sa1100.h 24007 $ git grep 'sa1100.h' . 24008 $ 24009 24010 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 24011 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24012 24013commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992 24014Author: Stefan Roese <sr@denx.de> 24015Date: Tue Apr 14 17:51:21 2009 +0200 24016 24017 UBIFS: Remove tnc_commit.c which is not used in the read-only version 24018 24019 I missed removing this file while implementing the UBIFS support. It's 24020 not referenced at all, so let's remove it. Thanks to Artem Bityutskiy 24021 for spotting. 24022 24023 Signed-off-by: Stefan Roese <sr@denx.de> 24024 24025commit 6356daff70867822bdb23cea49f98e65421a25b8 24026Author: Adrian Hunter <adrian.hunter@nokia.com> 24027Date: Tue Apr 14 17:50:38 2009 +0200 24028 24029 UBIFS: fix recovery bug 24030 24031 UBIFS did not recovery in a situation in which it could 24032 have. The relevant function assumed there could not be 24033 more nodes in an eraseblock after a corrupted node, but 24034 in fact the last (NAND) page written might contain anything. 24035 The correct approach is to check for empty space (0xFF bytes) 24036 from then on. 24037 24038 Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com> 24039 Signed-off-by: Stefan Roese <sr@denx.de> 24040 24041commit 351f40caf2f7806b2cefb93e077ea619b9f684e8 24042Author: Gao Guanhua <B22826@freescale.com> 24043Date: Tue Apr 14 14:37:35 2009 +0800 24044 24045 fs: Fix the wrong type of var 24046 24047 The filelen should be signed type, not unsigned type. 24048 otherwise, The condition as below never take. 24049 if (filelen < 0) 24050 24051 Signed-off-by: Gao Guanhua <B22826@freescale.com> 24052 Signed-off-by: Dave Liu <daveliu@freescale.com> 24053 24054commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62 24055Author: Wolfgang Denk <wd@denx.de> 24056Date: Tue Apr 28 00:29:34 2009 +0200 24057 24058 Update CHANGELOG 24059 24060 Signed-off-by: Wolfgang Denk <wd@denx.de> 24061 24062commit ad74cae9ff8790727bc81ee91c6bca7d50dca446 24063Author: David Brownell <dbrownell@users.sourceforge.net> 24064Date: Thu Apr 16 23:15:15 2009 -0700 24065 24066 dm9000 EEPROM reading bugfix 24067 24068 Make the U-Boot dm9000 driver read addresses from EEPROM just 24069 like Linux does ... read six bytes, instead of reading twelve 24070 bytes and then discarding every other one. 24071 24072 Using the right Ethernet address is a big win. 24073 24074 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 24075 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24076 Acked-by: Ben Warren <biggerbadderben@gmail.com> 24077 24078commit d4c02e6f5d49880123e7f584b88f857ffd874381 24079Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 24080Date: Wed Feb 25 14:27:24 2009 +0900 24081 24082 rtl8169: fix cache coherency problem 24083 24084 Fix the problem that cannot access actual data when CPU data cache enabled. 24085 24086 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 24087 Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 24088 Acked-by: Ben Warren <biggerbadderben@gmail.com> 24089 24090commit a85693b3bd4431b05b7df608b6f7733c0f80c53e 24091Author: Dirk Behme <dirk.behme@googlemail.com> 24092Date: Tue Apr 21 17:30:51 2009 +0200 24093 24094 OMAP3: Fix changed mmc init command 24095 24096 In recent U-Boot mmcinit changed to mmc init. 24097 24098 Signed-off-by: Steve Sakoman <steve@sakoman.com> 24099 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 24100 24101commit 34b76a14f676bc6501c27a96564e4dfb4793f033 24102Author: Wolfgang Denk <wd@denx.de> 24103Date: Sun Apr 26 20:39:26 2009 +0200 24104 24105 lib_arm/board.c: remove misleading "test-only" comment. 24106 24107 For a long time, the print_cpuinfo() declaration in lib_arm/board.c 24108 had been marked as "test-only", which is plain wrong considering 24109 current usage. Delete this misleading comment. 24110 24111 Signed-off-by: Wolfgang Denk <wd@denx.de> 24112 24113commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e 24114Author: David Brownell <dbrownell@users.sourceforge.net> 24115Date: Sun Apr 12 15:40:16 2009 -0700 24116 24117 minor DaVinci clock cleanup 24118 24119 Minor cleanup to clock-related defines for DaVinci DM6446 boards: 24120 24121 - CONFIG_SYS_CLK_FREQ is unused; remove it. 24122 24123 - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK 24124 24125 On DM6446 both of those peripheral clocks actually come from the 24126 same source, the primary oscillator. Having them use the same 24127 symbol avoids bugs in the clone'n'modify development cycle. 24128 24129 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 24130 24131commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3 24132Author: Minkyu Kang <mk7.kang@samsung.com> 24133Date: Mon Apr 6 19:59:29 2009 +0900 24134 24135 s3c64xx: remove unnecessary definition 24136 24137 CONFIG_S3C6400 is must defined at config header file 24138 That definition is unnecessary at this file 24139 24140 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 24141 24142commit 14b9308d511b53042ef478936e367a67282df66a 24143Author: Heiko Schocher <hs@denx.de> 24144Date: Fri Apr 24 06:50:45 2009 +0200 24145 24146 83xx: searching "muram-data" by compatible property 24147 24148 if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU 24149 in the muram-data node, the reg entry needs to be updated. 24150 This is done in fdt_fixup_muram(), but we should use 24151 the compatible "fsl,qe-muram-data" for searching the 24152 node instead of searching the muram-data node with 24153 an absolute path. 24154 24155 Signed-off-by: Heiko Schocher <hs@denx.de> 24156 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 24157 24158commit 8e15088794807944b221c11609d36789efc7f767 24159Author: Anatolij Gustschin <agust@denx.de> 24160Date: Thu Apr 23 21:29:34 2009 +0200 24161 24162 mpc83xx: MPC8360ERDK: fix environment offset configuration bug 24163 24164 The size of U-Boot binary for MPC8360ERDK increased 24165 (> 2 flash sectors now), so 'saveenv' will partially 24166 overwrite U-Boot in flash and will brick the board. 24167 This patch moves environment offset to fourth flash 24168 sector and also fixes CONFIG_SYS_MONITOR_LEN. 24169 24170 Signed-off-by: Anatolij Gustschin <agust@denx.de> 24171 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 24172 24173commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc 24174Author: Michael Zaidman <michael.zaidman@gmail.com> 24175Date: Sat Apr 4 01:43:00 2009 +0300 24176 24177 NetLoop initialization bug 24178 24179 The patch fixes the bug of partial initialization of global network 24180 parameters. 24181 24182 Upon u-boot's start up the first ping command causes a failure of the 24183 consequent TFTP command. It happens in the recently added mechanism of 24184 the NetLoop initialization where initialization of global network 24185 parameters is separated in the NetInitLoop routine which is called per 24186 env_id change. Thus, ping request will initialize the network parameters 24187 necessary for ping operation only, afterwards the env_changed_id will be 24188 set to the env_id that will prevent all following initialization requests 24189 from other protocols. 24190 The problem is that the initialized by ping subset of network parameters 24191 is not sufficient for other protocols and particularly for TFTP which 24192 requires the NetServerIp also. 24193 24194 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com> 24195 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 24196 24197commit b11f664f52c2855990107c18f242223377183575 24198Author: Timur Tabi <timur@freescale.com> 24199Date: Thu Apr 9 10:27:05 2009 -0500 24200 24201 net: fix ULI 526x macro usage in netdev.h 24202 24203 Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526. CONFIG_ULI526X 24204 is used everywhere else, so that's the correct macro name. Without this fix, 24205 Ethernet will not work on the Freescale MPC8610 HPCD. 24206 24207 Signed-off-by: Timur Tabi <timur@freescale.com> 24208 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 24209 24210commit 7ee38c044ca5041d3378d6507580ea4ec344af96 24211Author: David Brownell <dbrownell@users.sourceforge.net> 24212Date: Sun Apr 12 15:38:06 2009 -0700 24213 24214 fix DaVinci NS16550_REG_SIZE regression 24215 24216 Update the DaVinci DM6446 boards to use the new convention 24217 for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed 24218 from the original 4 bytes, but these chips are little-endian. 24219 24220 (Resolves a regression added recently by the include/ns16550.h 24221 patch to "Unify structure declaration for registers". The code 24222 previously worked just fine because the registers were accessed 24223 as host-endian words, not as bytes.) 24224 24225 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 24226 24227commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9 24228Author: Mike Frysinger <vapier@gentoo.org> 24229Date: Sun Apr 12 22:29:20 2009 -0400 24230 24231 cmd_nand: drop duplicate NULL ptr check 24232 24233 The first if statement checks for NULL ptrs, so there is no need to check 24234 it again in later else cases (such as .oob). 24235 24236 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24237 CC: Scott Wood <scottwood@freescale.com> 24238 24239commit 7732cef2eeb4e339cfcd8553fab773af73a20805 24240Author: David Brownell <dbrownell@users.sourceforge.net> 24241Date: Mon Apr 13 08:03:38 2009 -0700 24242 24243 CMD_UBI != MTD_PARTITIONS 24244 24245 Fix dependency goofage: it should certainly be possible to have the 24246 partition support without bringing in UBI commands. 24247 24248 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 24249 Acked-by: Stefan Roese <sr@denx.de> 24250 24251commit 6ebff365eb63093ca35b687316002535c6a18820 24252Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24253Date: Thu Apr 16 21:30:48 2009 +0200 24254 24255 at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000 24256 24257 The timer has been rewrote with a precision at ~0,18% 24258 24259 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24260 Tested-by: Sergey Lapin <slapin@ossfans.org> 24261 Tested-by: Eric BENARD <ebenard@free.fr> 24262 24263commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a 24264Author: Ilko Iliev <iliev@ronetix.at> 24265Date: Thu Apr 16 21:30:48 2009 +0200 24266 24267 at91: add support for the PM9263 board of Ronetix GmbH 24268 24269 The PM9263 board is based on the AT91SAM9263-EK board. 24270 24271 Here is the page on Ronetix website: 24272 http://www.ronetix.at/starter_kit_9263.html 24273 24274 Signed-off-by: Ilko Iliev <iliev@ronetix.at> 24275 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24276 24277commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb 24278Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24279Date: Thu Apr 16 21:30:44 2009 +0200 24280 24281 at91sam9/at91cap: improve clock framework 24282 24283 calculate dynamically the clock rate and pllb setting for usb 24284 24285 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24286 24287commit dd7c302099ef5590069bdbf292aaa8230cd59de7 24288Author: Stefan Roese <sr@denx.de> 24289Date: Wed Apr 15 14:08:48 2009 +0200 24290 24291 ppc4xx: Disable POST memory test on NAND-booting Kilauea 24292 24293 Don't run the memory POST on the NAND-booting version. It will 24294 overwrite part of the U-Boot image which is already loaded from NAND 24295 to SDRAM. We were just lucky that it booted at all with this SDRAM 24296 test enabled. 24297 24298 Signed-off-by: Stefan Roese <sr@denx.de> 24299 24300commit 9a929170be89b27bce677504da27e88600c06c49 24301Author: Stefan Roese <sr@denx.de> 24302Date: Wed Apr 15 14:06:26 2009 +0200 24303 24304 ppc4xx: Disable POST memory test on NAND-booting Sequoia 24305 24306 Don't run the memory POST on the NAND-booting version. It will 24307 overwrite part of the U-Boot image which is already loaded from NAND 24308 to SDRAM. We were just lucky that it booted at all with this SDRAM 24309 test enabled. 24310 24311 Signed-off-by: Stefan Roese <sr@denx.de> 24312 24313commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3 24314Author: Stefan Roese <sr@denx.de> 24315Date: Wed Apr 15 11:32:53 2009 +0200 24316 24317 ppc4xx: Remove unused code for Sequoia NAND booting version 24318 24319 The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not 24320 used at all. This patch changes it's define to the currently used value of 24321 133333333 and removes the unnecessary code. 24322 24323 Signed-off-by: Stefan Roese <sr@denx.de> 24324 24325commit cf9409885cbe01405bad76790e99f8adf3351f4d 24326Author: Stefan Roese <sr@denx.de> 24327Date: Wed Apr 15 10:50:48 2009 +0200 24328 24329 ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets 24330 24331 This additional text in the bootup log helps to see if the board is 24332 configured for NAND-booting. Especially helpful for boards that can 24333 boot from NOR and NAND (e.g. most of the AMCC eval boards). 24334 24335 Signed-off-by: Stefan Roese <sr@denx.de> 24336 24337commit 5132106a27b8fb302677852b26ffd319b40d17e2 24338Author: Stefan Roese <sr@denx.de> 24339Date: Wed Apr 8 10:36:22 2009 +0200 24340 24341 ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia 24342 24343 Currently the NOR & NAND support in Linux only works for the "standard" 24344 Sequoia, the version booting for NOR flash. The NAND-booting version 24345 has the chip-selects swapped. Here the chip-select mappings: 24346 24347 "Standard" NOR-booting version: 24348 CS0 NOR 24349 CS3 NAND 24350 24351 NAND-booting version: 24352 CS0 NAND 24353 CS3 NOR 24354 24355 With this path the dtb gets fixed-up, so that the correct chip-select 24356 numbers are patched in the dtb enabling correct NOR & NAND support 24357 in Linux on the NAND-booting Sequoia version. 24358 24359 Signed-off-by: Stefan Roese <sr@denx.de> 24360 24361commit aad4eca4ba8d597747199d8af723426681557dda 24362Author: Mike Frysinger <vapier@gentoo.org> 24363Date: Sat Apr 4 09:10:27 2009 -0400 24364 24365 Blackfin: audit UART for all known anomalies 24366 24367 There is no code change here, just new comments, but this keeps me from 24368 having to do another audit from scratch in the future. 24369 24370 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24371 24372commit 8ef929afa43c77c9573caa57c6e17a97a33775c0 24373Author: Mike Frysinger <vapier@gentoo.org> 24374Date: Sat Apr 4 08:40:13 2009 -0400 24375 24376 Blackfin: add check for anomaly 05000362 24377 24378 DESCRIPTION: 24379 The column address width settings for banks 2 and 3 are misconnected in 24380 the SDRAM controller. Accesses to bank 2 will result in an error if the 24381 Column Address Width for bank 3 (EB3CAW ) is not set to be the same as 24382 that of bank 2. 24383 24384 WORKAROUND: 24385 If using bank 2, make sure that banks 2 and 3 have the same column address 24386 width settings in the EBIU_SDBCTL register. This must be the case 24387 regardless of whether or not bank 3 is enabled. 24388 24389 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24390 24391commit c2e07449f546fb375289cdac1a608fdc20357873 24392Author: Mike Frysinger <vapier@gentoo.org> 24393Date: Sat Apr 4 08:29:55 2009 -0400 24394 24395 Blackfin: add comment about anomaly 05000430 avoidance 24396 24397 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24398 24399commit 48ab1509254a4c175e4f65c478a978928ffe09ec 24400Author: Mike Frysinger <vapier@gentoo.org> 24401Date: Sat Apr 4 08:10:22 2009 -0400 24402 24403 Blackfin: add workaround for anomaly 05000242 24404 24405 DESCRIPTION: 24406 If the DF bit is set prior to a hardware reset, the PLL will continue to 24407 divide CLKIN by 2 after the hardware reset, but the DF bit itself will be 24408 cleared in the PLL_CTL register. 24409 24410 WORKAROUND: 24411 Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by 24412 2 after reset. 24413 24414 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24415 24416commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916 24417Author: Mike Frysinger <vapier@gentoo.org> 24418Date: Sat Apr 4 08:09:24 2009 -0400 24419 24420 Blackfin: add workaround for anomaly 05000171 24421 24422 DESCRIPTION: 24423 The Boot ROM is executed at power up/reset and changes the value of the 24424 SICA_IWR registers from their default reset value of 0xFFFF, but does not 24425 restore them. 24426 24427 WORKAROUND: 24428 User code should not rely on the default value of these registers. Set 24429 the desired values explicitly. 24430 24431 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24432 24433commit 51ee6e057f7a920e2a125cd9f985d10f625e355f 24434Author: Mike Frysinger <vapier@gentoo.org> 24435Date: Sat Apr 4 08:22:36 2009 -0400 24436 24437 Blackfin: update anomaly sheets 24438 24439 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24440 24441commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df 24442Author: Graf Yang <graf.yang@analog.com> 24443Date: Sat Apr 4 07:45:57 2009 -0400 24444 24445 Blackfin: nand: flush peripheral before polling it 24446 24447 We need to make sure the data written to the nand flash controller makes 24448 it there before we start polling its status register. Otherwise, we may 24449 get stale data and return before the controller is actually ready. 24450 24451 Signed-off-by: Graf Yang <graf.yang@analog.com> 24452 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24453 Acked-by: Scott Wood <scottwood@freescale.com> 24454 24455commit 3ccbfb25f48af78e7092ac75f3115e924e76c748 24456Author: Remy Bohmer <linux@bohmer.net> 24457Date: Sun Apr 5 11:43:28 2009 +0200 24458 24459 Support for PXA27X UDC. 24460 24461 This Patch adds Support for PXA27X UDC. 24462 (Rebased to drivers/usb reorganisation) 24463 24464 Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com> 24465 Signed-off-by: Remy Bohmer <linux@bohmer.net> 24466 24467commit 2731b9a86685190d26b1883f27afda5ac8e1a313 24468Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24469Date: Fri Apr 3 12:46:58 2009 +0200 24470 24471 drivers/usb: regorganisation 24472 24473 move to linux usb driver organisation 24474 24475 as following 24476 24477 drivers/usb/gadget 24478 drivers/usb/host 24479 drivers/usb/musb 24480 24481 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24482 Signed-off-by: Remy Bohmer <linux@bohmer.net> 24483 24484commit d04371a116d102e587ba7aa4c329b441cdbea3f4 24485Author: Todor I Mollov <tmollov@ucsd.edu> 24486Date: Sat Apr 4 06:53:06 2009 -0400 24487 24488 Blackfin: spi: make cs deassert function deterministic 24489 24490 Blackfin SPI driver was not driving the SPI chip-select high before 24491 putting the chip-select signals into tri-state mode. This is probably 24492 something that slipped by unnoticed in most designs. If the signals are 24493 put directly into a tri-state mode, then the board is relying on the 24494 pull-up resistors to pull up the chip-select before the next transaction. 24495 Most of the time this is fine, except when you have two transactions that 24496 follow each other very closely, such as the flash erase and read status 24497 register commands. In this case I was seeing a 500ns separation between 24498 the transactions. In my setup, with a 10kOhm pull-up, it would meet 24499 timing spec about half the time and resulted in intermittent errors. (A 24500 stronger pull up would fix this, but our design is targeted for low power 24501 consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.) 24502 I modified the spi_cs_deactivate() function in bfin_spi.c to drive the 24503 chip-selects high before putting them into tri-state. For me, this 24504 resulted in a rise time of 5ns instead of the previous rise time of about 24505 1us, and fully satisfied the timing spec of the chip. 24506 24507 Signed-off-by: Todor I Mollov <tmollov@ucsd.edu> 24508 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24509 24510commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d 24511Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24512Date: Sat Dec 13 21:08:05 2008 +0100 24513 24514 integratorap: fix PCI support 24515 24516 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24517 24518commit 1c397508c836dfcb01fb2471c71de0727051f117 24519Author: Dirk Behme <dirk.behme@googlemail.com> 24520Date: Mon Mar 30 21:15:23 2009 +0200 24521 24522 OMAP3: Update Overo pin mux for new expansion board 24523 24524 A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and 24525 switches. This patch changes the pinmux configuration for those pins. 24526 They were previously set up for unused MMC3_DAT4-7. 24527 24528 Signed-off-by: Steve Sakoman <steve@sakoman.com> 24529 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 24530 24531commit ab298231518675b3784aea88ee9b978438f99e63 24532Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24533Date: Sun Apr 5 13:08:03 2009 +0200 24534 24535 arm: unify reset command 24536 24537 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24538 24539commit b3acb6cd4059dfb29a5e99095d802717f53ff784 24540Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24541Date: Sun Apr 5 13:06:31 2009 +0200 24542 24543 arm: clean cache management 24544 24545 unify arm cache management except for non standard cache as ARM7TDMI 24546 24547 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24548 24549commit 677e62f43235de9a1701204d7bcea0fb3d233fa1 24550Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24551Date: Sun Apr 5 13:02:43 2009 +0200 24552 24553 arm: update co-processor 15 access 24554 24555 import system.h from linux 24556 24557 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24558 24559commit 23e4af49e066a53cd3e3659b68ef90572d88de84 24560Author: Guennadi Liakhovetski <lg@denx.de> 24561Date: Sun Apr 5 00:42:02 2009 +0200 24562 24563 ARM: add the imx31_phycore_eet target to MAINTAINERS 24564 24565 imx31_phycore_eet is a variant of the imx31_phycore board with a few 24566 extensions, which justifies a separate entry in the MAINTAINERS list, 24567 whereas normally all entries sharing a single configuration file and a 24568 board/ directory have only one entry in MAINTAINERS. 24569 24570 Reported-by: Wolfgang Denk <wd@denx.de> 24571 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 24572 24573commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5 24574Author: Guennadi Liakhovetski <lg@denx.de> 24575Date: Sun Apr 5 00:37:07 2009 +0200 24576 24577 ARM: fix out-of-tree build of imx31_phycore_eet 24578 24579 Fix out-of-tree build of the imx31_phycore_eet target. 24580 24581 Reported-by: Wolfgang Denk <wd@denx.de> 24582 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 24583 24584commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237 24585Author: Jon Smirl <jonsmirl@gmail.com> 24586Date: Sat Apr 4 17:44:51 2009 -0400 24587 24588 mpc5200: reduce delays in i2c 24589 24590 The previous code waited 1000us before checking i2c 24591 status. Measurement shows i2c is usually ready in 24592 under 50us. Change the polling interval to 15us, 24593 loop 6,667 times to keep the polling timeout constant 24594 at 100ms. 24595 24596commit 36003268968949110ef145d9f2eaf8439c96d25b 24597Author: Sanjeev Premi <premi@ti.com> 24598Date: Fri Apr 3 14:00:07 2009 +0530 24599 24600 OMAP: Fix compile issue 24601 24602 Fixes this compile error: 24603 board.c: In function 'do_switch_ecc': 24604 board.c:339: error: 'cmd_tbl_t' has no member named 'help' 24605 make[1]: *** [board.o] Error 1 24606 make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3' 24607 make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2 24608 24609 This is due to the fact that current command uses long 24610 help for the usage print even if the CONFIG_SYS_LONGHELP 24611 is not enabled. (Thanks Jean-Christophe for explanation). 24612 24613 Signed-off-by: Sanjeev Premi <premi@ti.com> 24614 24615commit 342c1a5d9ab74febf3226a86216dc5aa05295d46 24616Author: Minkyu Kang <mk7.kang@samsung.com> 24617Date: Fri Apr 3 09:56:16 2009 +0900 24618 24619 s3c64xx: fix the wrong gpio offset 24620 24621 This patch fix the wrong gpio offset 24622 24623 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 24624 24625commit ab0689c316c9b2ee33f4de1c50263b64e539f12a 24626Author: Kyungmin Park <kmpark@infradead.org> 24627Date: Wed Nov 26 10:18:13 2008 +0900 24628 24629 Move machine specific code to board at s3c64xx (v2) 24630 24631 Move machine specific code to smdk6400. 24632 Some board use OneNAND instead of NAND. 24633 24634 Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w. 24635 So it's better to use macro instead of hard-coded value. 24636 24637 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 24638 24639commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8 24640Author: Tom Rix <Tom.Rix@windriver.com> 24641Date: Wed Apr 1 22:02:19 2009 -0500 24642 24643 ZOOM1 Remove legacy NAND defines 24644 24645 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 24646 24647commit 5891151707ee5902fe62d554c247f42865815757 24648Author: Tom Rix <Tom.Rix@windriver.com> 24649Date: Wed Apr 1 22:02:20 2009 -0500 24650 24651 OMAP3 Fix multiline formatting in board init files. 24652 24653 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 24654 24655commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d 24656Author: Wolfgang Denk <wd@denx.de> 24657Date: Sun Apr 5 00:27:57 2009 +0200 24658 24659 Update CHANGELOG, coding style cleanup. 24660 24661commit f63728c804ab7413a67d70f6774cd30c3f7b40fb 24662Author: Wolfgang Denk <wd@denx.de> 24663Date: Sun Apr 5 00:18:44 2009 +0200 24664 24665 One more fix for building env_embedded.o 24666 24667 In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in 24668 commit afcbce07, we also need to do the same for 24669 CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM. 24670 24671 Signed-off-by: Wolfgang Denk <wd@denx.de> 24672 24673commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5 24674Author: Scott Wood <scottwood@freescale.com> 24675Date: Thu Apr 2 16:15:10 2009 -0500 24676 24677 common/image.c: Relocate strings in tables. 24678 24679 Without this, u-boot can crash or print garbage if the original link 24680 address no longer points to a valid string. 24681 24682 Signed-off-by: Scott Wood <scottwood@freescale.com> 24683 24684commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e 24685Author: Scott Wood <scottwood@freescale.com> 24686Date: Thu Apr 2 16:10:36 2009 -0500 24687 24688 mpc8260: Fill in brg's clock-frequency in device tree. 24689 24690 Signed-off-by: Scott Wood <scottwood@freescale.com> 24691 24692commit c73ed274a211699739d83c2cef92853dc6716e15 24693Author: Scott Wood <scottwood@freescale.com> 24694Date: Thu Apr 2 18:20:43 2009 -0500 24695 24696 MPC8260ADS: Add nfsboot/ramboot to default environment. 24697 24698 This brings it in line with other Freescale boards. 24699 24700 Signed-off-by: Scott Wood <scottwood@freescale.com> 24701 24702commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84 24703Author: Andreas Huber <andreas.huber@keymile.com> 24704Date: Thu Apr 2 17:15:34 2009 +0200 24705 24706 UBI/cfi-mtd: Fix mtd name for multiple chips 24707 24708 On platforms with multiple NOR chips, currently only the first one 24709 can be selected using the "ubi part" command. This patch fixes this 24710 problem by using different names for the NOR "mtd devices". 24711 24712 It also changes the name of the NOR MTD device from "cfi-mtd" to 24713 "norX" (X indexing the device numer) to better match the mtdparts 24714 defaults. 24715 24716 Signed-off-by: Stefan Roese <sr@denx.de> 24717 Signed-off-by: Andreas Huber <andreas.huber@keymile.com> 24718 24719commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf 24720Author: Peter Korsgaard <jacmet@sunsite.dk> 24721Date: Tue Mar 31 17:52:16 2009 +0200 24722 24723 tools/setlocalversion: use git svn instead of git-svn 24724 24725 Use the new "git <subcmd>" syntax instead of the deprecated 24726 "git-<subcmd>". 24727 24728 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> 24729 24730commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff 24731Author: Mingkai Hu <Mingkai.hu@freescale.com> 24732Date: Tue Mar 31 14:09:40 2009 +0800 24733 24734 eSPI: add the eSPI register support 24735 24736 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 24737 24738commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b 24739Author: Minkyu Kang <mk7.kang@samsung.com> 24740Date: Mon Mar 30 14:55:51 2009 +0900 24741 24742 cmd_mmc: add support for device command for selecting mmc device 24743 24744 This patch improves device command for selecting mmc device 24745 24746 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 24747 24748commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc 24749Author: Alan Carvalho de Assis <acassis@gmail.com> 24750Date: Sat Mar 28 19:50:16 2009 -0300 24751 24752 Small fix to m5282evb 24753 24754 This is just a small fix to get u-boot on m5282evb. 24755 24756 Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com> 24757 24758commit febd7e4174e54579c9aa165c85c519fe5288f9d2 24759Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> 24760Date: Fri Mar 27 10:21:14 2009 +0100 24761 24762 UBIFS: add R/O compatibility 24763 24764 Now UBIFS is supported by u-boot. If we ever decide to change the 24765 media format, then people will have to upgrade their u-boots to 24766 mount new format images. However, very often it is possible to 24767 preserve R/O forward-compatibility, even though the write 24768 forward-compatibility is not preserved. 24769 24770 This patch introduces a new super-block field which stores the 24771 R/O compatibility version. 24772 24773 Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> 24774 Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com> 24775 Signed-off-by: Stefan Roese <sr@denx.de> 24776 24777commit 852dbfdd56f68eb67d138b306a64e4de58dabb91 24778Author: Mike Frysinger <vapier@gentoo.org> 24779Date: Mon Mar 23 22:27:34 2009 -0400 24780 24781 more command usage cleanup 24782 24783 Fix up a few dangling commands like in "Command usage cleanup" commit. 24784 24785 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24786 24787commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc 24788Author: Ladislav Michl <ladis@linux-mips.org> 24789Date: Mon Mar 23 12:06:07 2009 +0100 24790 24791 Separate mtdparts command from jffs2 24792 24793 On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote: 24794 > Currently the mtdparts commands are included in the jffs2 command support. 24795 > This doesn't make sense anymore since other commands (e.g. UBI) use this 24796 > infrastructure as well now. This patch separates the mtdparts commands from 24797 > the jffs2 commands making it possible to only select mtdparts when no JFFS2 24798 > support is needed. 24799 24800 ... and to make it useful for NAND chips as well, we should also remove now 24801 unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in 24802 jffs2/load_kernel.h which is a bit misleading filename for that purpose, 24803 but that can be fixed later (tm). 24804 24805 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 24806 24807commit b196ca75503ce307c535b87bf47d51f05e7530df 24808Author: Mike Frysinger <vapier@gentoo.org> 24809Date: Sun Mar 22 22:18:01 2009 -0400 24810 24811 smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT() 24812 24813 Rather than sticking Blackfin-specific stuff into the eeprom example, use 24814 an indirect macro so that any board can override it with their own magic 24815 sauce in their board config file. 24816 24817 Also fix some spurious semi-colons in defines while I'm at it ... 24818 24819 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 24820 CC: Ben Warren <biggerbadderben@gmail.com> 24821 24822commit f5cf2ef2ad2a8bf321712ab460ed846120163d74 24823Author: Sascha Hauer <s.hauer@pengutronix.de> 24824Date: Sat Mar 21 09:38:46 2009 -0400 24825 24826 mpc52xx phy: initialize only when needed 24827 24828 Do not initialize phy on startup, instead initialize it 24829 when we actually need it. 24830 24831 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 24832 24833commit 03bab0091948196b9558248684c04f60943ca4b5 24834Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24835Date: Mon Mar 30 16:51:40 2009 +0200 24836 24837 at91sam9263ek: enable hush and auto complete support 24838 24839 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24840 Acked-by: Stelian Pop <stelian@popies.net> 24841 24842commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915 24843Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24844Date: Fri Mar 27 23:26:44 2009 +0100 24845 24846 at91: move dataflash spi driver to drivers/spi 24847 24848 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24849 24850commit 2b7178afce59f71e95da657273f4132012098c1f 24851Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24852Date: Fri Mar 27 23:26:44 2009 +0100 24853 24854 at91: move usb driver to drivers/usb 24855 24856 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24857 24858commit f82518d7f443ebac5f8821103a3c521c963aa6ee 24859Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24860Date: Fri Mar 27 23:26:43 2009 +0100 24861 24862 at91rm9200: Reset update 24863 24864 Update the rm9200 reset sequence to try executing a board-specific reset 24865 function and move specific board reset to board. 24866 24867 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24868 24869commit 3524049cd053746298e4cfab2449882e75c146fc 24870Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24871Date: Fri Mar 27 23:26:43 2009 +0100 24872 24873 at91rm9200: move serial shutdown code to serial drivers 24874 24875 introduce serial_exit for this purpose. Use it only when the rm9200 24876 serial driver is active 24877 24878 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24879 24880commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0 24881Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24882Date: Fri Mar 27 23:26:43 2009 +0100 24883 24884 at91rm9200: move serial driver to drivers/serial 24885 24886 add CONFIG_AT91RM9200_USART to activate the driver 24887 24888 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24889 24890commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a 24891Author: Ulf Samuelsson <ulf@atmel.com> 24892Date: Fri Mar 27 23:26:43 2009 +0100 24893 24894 Add support for the AT91RM9200EK Board. 24895 24896 The AT91RM9200-EK Evaluation Board supports the AT91RM9200 24897 ARM9-based 32-bit RISC microcontroller and enables real-time code development 24898 and evaluation. 24899 24900 Here is the chip page on Atmel website: 24901 http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507 24902 24903 with 24904 - NOR (cfi driver) 24905 - DataFlash 24906 - USB OHCI 24907 - Net 24908 - I2C (hard) 24909 24910 Signed-off-by: Ulf Samuelsson <ulf@atmel.com> 24911 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24912 24913commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a 24914Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24915Date: Fri Mar 27 23:26:42 2009 +0100 24916 24917 add dataflash mmc mux missing support 24918 24919 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24920 24921commit 2a325ce3c705ab2d82760afc541c511328472df8 24922Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24923Date: Fri Mar 27 23:26:42 2009 +0100 24924 24925 at91rm9200dk: Move conditional compilation to Makefile 24926 24927 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24928 24929commit 90a92a708d5180a20d600ba0fc2352ec76dc3829 24930Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24931Date: Fri Mar 27 23:26:42 2009 +0100 24932 24933 at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT 24934 24935 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24936 24937commit 843a2654bce74192de2b5a43474fdc27a572ab40 24938Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24939Date: Fri Mar 27 23:26:42 2009 +0100 24940 24941 at91sam9: add watchdog support 24942 24943 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> 24944 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24945 24946commit a47492ac60657dd9d59c713aa049319ea6eabd52 24947Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24948Date: Fri Mar 27 13:14:52 2009 +0100 24949 24950 at91sam9/at91cap: spi init add hardware chip select support 24951 24952 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24953 24954commit 66932ac3929c7a145a6ef6574a96fd7535154951 24955Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24956Date: Sat Apr 4 19:15:40 2009 +0200 24957 24958 netstar: fix crc32.c dependancy location 24959 24960 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 24961 24962commit 42f9ebff2f758bef524780a00c712eb63a72d99b 24963Author: Scott Wood <scottwood@freescale.com> 24964Date: Fri Apr 3 15:24:40 2009 -0500 24965 24966 MPC8260ADS: Define CONFIG_HAS_ETH0. 24967 24968 This is required so that the MAC address will be updated in the device tree. 24969 24970 Signed-off-by: Scott Wood <scottwood@freescale.com> 24971 24972commit 8701eceffdf77e2908d0b58add0dabc16edf6087 24973Author: Scott Wood <scottwood@freescale.com> 24974Date: Fri Apr 3 15:26:45 2009 -0500 24975 24976 PQ2FADS: Enable PCI. 24977 24978 PCI on PQ2FADS is very similar to PCI on MPC8272ADS. 24979 24980 Signed-off-by: Scott Wood <scottwood@freescale.com> 24981 24982commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc 24983Author: Wolfgang Denk <wd@denx.de> 24984Date: Sat Apr 4 16:57:50 2009 +0200 24985 24986 Fix quoting bug introduced by commit 74de7aef 24987 24988 Signed-off-by: Wolfgang Denk <wd@denx.de> 24989 24990commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33 24991Author: Wolfgang Denk <wd@denx.de> 24992Date: Sat Apr 4 16:14:51 2009 +0200 24993 24994 Fix implicit declaration of function 'htons' 24995 24996 Include <netinet/in.h> instead of <linux/in.h> to get htons() 24997 prototpye. 24998 24999 Signed-off-by: Wolfgang Denk <wd@denx.de> 25000
25001commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306 25002Author: Kumar Gala <galak@kernel.crashing.org> 25003Date: Sat Apr 4 10:21:02 2009 -0500 25004 25005 fsl_law: Fix bug in calculation of LAW sizing 25006 25007 In set_ddr_laws() when we determined how much of the size requested 25008 to be mapped was covered by the the first LAW we needed to recalculate 25009 the size based on what was actually mapped. 25010 25011 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25012 25013commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2 25014Author: Kumar Gala <galak@kernel.crashing.org> 25015Date: Thu Apr 2 13:57:05 2009 -0500 25016 25017 fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs 25018 25019 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25020 25021commit c8514622e2713d9c47919acfe23fce386782afe7 25022Author: Kumar Gala <galak@kernel.crashing.org> 25023Date: Thu Apr 2 13:22:48 2009 -0500 25024 25025 fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h 25026 25027 Rename the pci header for FSL HW so we can move some prototypes 25028 in there and stop doing explicit externs 25029 25030 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25031 25032commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7 25033Author: Wolfgang Denk <wd@denx.de> 25034Date: Sat Apr 4 16:10:40 2009 +0200 25035 25036 Fix building of env_embedded.o 25037 25038 Since commit a706bfc7 common/env_embedded.o and tools/envcrc were 25039 only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks 25040 building for many boards. 25041 25042 We always have to build these files when CONFIG_ENV_IS_IN_FLASH is 25043 set. 25044 25045 Signed-off-by: Wolfgang Denk <wd@denx.de> 25046 25047commit a31e091ad70915278fb15b79d6ae53ea2d44b251 25048Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 25049Date: Sat Apr 4 12:49:11 2009 +0200 25050 25051 rename include/zlib.h to include/u-boot/zlib.h 25052 25053 Some systems have zlib.h installed in /usr/include/. This isn't the 25054 desired file for u-boot code - we want the one in include/zlib.h. 25055 This rename will avoid the conflict. 25056 25057 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 25058 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25059 25060commit ae644c178f097874a92a6d934f364985fc7e075a 25061Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 25062Date: Sat Apr 4 12:46:31 2009 +0200 25063 25064 tools/Makefile: fix image.c dependancy location 25065 25066 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 25067 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25068 25069commit b074a7081124d7f05fd1651a3bc0b5579fdfa473 25070Author: Mike Frysinger <vapier@gentoo.org> 25071Date: Sat Apr 4 07:42:25 2009 -0400 25072 25073 tools: add ncb to gitignore 25074 25075 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25076 25077commit 453c0d7558215cbc8636d94af172886d84e0dbba 25078Author: Detlev Zundel <dzu@denx.de> 25079Date: Fri Apr 3 16:45:46 2009 +0200 25080 25081 include/ns16550.h: Unify structure declaration for registers 25082 25083 Instead of special casing the different access patterns, use common 25084 code with light macros sprinkled in to accomodate for the different 25085 layouts of the register structure. 25086 25087 Note that this also changes the types of the registers for the 25088 "positively packed (>1)" cases. As the registers truly are unsigned 25089 chars, this is surely the Right Thing, but it is a semantic change. 25090 Note that for this case depending on the endianness on the bus, we may 25091 see a change of behaviour. 25092 25093 Signed-off-by: Detlev Zundel <dzu@denx.de> 25094 25095commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df 25096Author: Peter Tyser <ptyser@xes-inc.com> 25097Date: Fri Mar 13 18:54:52 2009 -0500 25098 25099 Delete now unused tools/Makefile.win32 25100 25101 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25102 25103commit 2f8d396b9302eddcd8d552648e101a46b7a80acd 25104Author: Peter Tyser <ptyser@xes-inc.com> 25105Date: Fri Mar 13 18:54:51 2009 -0500 25106 25107 Add support for building native win32 tools 25108 25109 Add support for compiling the host tools in the tools directory using 25110 the MinGW toolchain. This produces executables which can be used on 25111 standard Windows computers without requiring cygwin. 25112 25113 One must specify the MinGW compiler and strip utilities as if they 25114 were the host toolchain in order to build win32 executables, eg: 25115 25116 make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools 25117 25118 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25119 25120commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2 25121Author: Peter Tyser <ptyser@xes-inc.com> 25122Date: Fri Mar 13 18:54:50 2009 -0500 25123 25124 tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation 25125 25126 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25127 25128commit b0d4d7219a4806e46affc96bd1f65397194a6e72 25129Author: Peter Tyser <ptyser@xes-inc.com> 25130Date: Fri Mar 13 18:54:49 2009 -0500 25131 25132 tools/Makefile: Create generic build rules 25133 25134 Create a few generic build rules to replace the current method which has 25135 1 build target for each file 25136 25137 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25138 25139commit 273174ddbcce215c42f6c307470cd5580a3f72bf 25140Author: Peter Tyser <ptyser@xes-inc.com> 25141Date: Fri Mar 13 18:54:48 2009 -0500 25142 25143 tools/Makefile: Use auto-generated object file dependencies 25144 25145 Files in the SRCS variable have their dependencies automatically 25146 generated so remove duplicate explicit dependencies 25147 25148 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25149 25150commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589 25151Author: Peter Tyser <ptyser@xes-inc.com> 25152Date: Fri Mar 13 18:54:47 2009 -0500 25153 25154 tools/Makefile: Remove symlinks for remaining source files 25155 25156 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25157 25158commit eed073315b6447eceadf7468a4c2b757442c7c6f 25159Author: Peter Tyser <ptyser@xes-inc.com> 25160Date: Fri Mar 13 18:54:46 2009 -0500 25161 25162 tools/Makefile: Dynamically generate libfdt object dependencies 25163 25164 Add the libfdt files to the SRCS variable so that they have their 25165 dependencies automatically generated 25166 25167 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25168 25169commit c0170175393b94560fa7a5da6dd31377df5f4a72 25170Author: Peter Tyser <ptyser@xes-inc.com> 25171Date: Fri Mar 13 18:54:45 2009 -0500 25172 25173 tools/Makefile: Remove symlinks for fdt targets 25174 25175 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25176 25177commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51 25178Author: Peter Tyser <ptyser@xes-inc.com> 25179Date: Fri Mar 13 18:54:44 2009 -0500 25180 25181 tools/Makefile: Add libfdt/ to the include search path 25182 25183 This change makes the process of symlinking libfdt_internal.h 25184 unnecessary 25185 25186 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25187 25188commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b 25189Author: Peter Tyser <ptyser@xes-inc.com> 25190Date: Fri Mar 13 18:54:43 2009 -0500 25191 25192 tools: Remove unecessary symlinking of zlib.h 25193 25194 crc32.c uses the zlib.h header in include/u-boot/zlib.h. The symlink 25195 was previously necessary to give U-Boot's version of zlib.h precedence 25196 over the host computer's version of zlib.h. 25197 25198 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25199 25200commit 40b8d909ace06f6f494dee08ffa64a82493e72e9 25201Author: Peter Tyser <ptyser@xes-inc.com> 25202Date: Fri Mar 13 18:54:42 2009 -0500 25203 25204 tools/Makefile: Add tools/ to the include search path 25205 25206 This change makes the process of symlinking mkimage.h and fdt_host.h 25207 unnecessary 25208 25209 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25210 25211commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78 25212Author: Peter Tyser <ptyser@xes-inc.com> 25213Date: Fri Mar 13 18:54:41 2009 -0500 25214 25215 tools/Makefile: Compile ncb when CONFIG_NETCONSOLE 25216 25217 Also conditionally add ncb.o to OBJ_FILES list 25218 25219 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25220 25221commit 123c48a21ce08b4a33f36e96cc75f92324e761d7 25222Author: Peter Tyser <ptyser@xes-inc.com> 25223Date: Fri Mar 13 18:54:40 2009 -0500 25224 25225 tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET 25226 25227 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25228 25229commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120 25230Author: Peter Tyser <ptyser@xes-inc.com> 25231Date: Fri Mar 13 18:54:39 2009 -0500 25232 25233 tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED 25234 25235 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25236 25237commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20 25238Author: Peter Tyser <ptyser@xes-inc.com> 25239Date: Fri Mar 13 18:54:38 2009 -0500 25240 25241 tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP 25242 25243 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25244 25245commit 7cd5cbc34699ccc15d0277f48375cad928d04faf 25246Author: Peter Tyser <ptyser@xes-inc.com> 25247Date: Fri Mar 13 18:54:37 2009 -0500 25248 25249 tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG 25250 25251 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25252 25253commit eeba8617908e33f7e7db3b1588c04ca65b856793 25254Author: Peter Tyser <ptyser@xes-inc.com> 25255Date: Fri Mar 13 18:54:36 2009 -0500 25256 25257 tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS 25258 25259 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25260 25261commit 335ffe7e0e0a30e90ce409c3279016a582157d8e 25262Author: Peter Tyser <ptyser@xes-inc.com> 25263Date: Fri Mar 13 18:54:35 2009 -0500 25264 25265 tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled 25266 25267 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25268 25269commit ee3584a5970230ee96aae19505ad3226734ee4ff 25270Author: Peter Tyser <ptyser@xes-inc.com> 25271Date: Fri Mar 13 18:54:34 2009 -0500 25272 25273 tools/Makefile: Split variable declarations into multiple lines 25274 25275 Split variable declarations into multiple lines and use the standard 25276 VAR-y convention. Also move object and binary variable declarations to 25277 after config.mk has been included to allow for these lists to utilize 25278 the CONFIG_XXX variables. 25279 25280 These changes lay the groundwork for conditional compilation of files 25281 in the tools directory. 25282 25283 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25284 25285commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb 25286Author: Peter Tyser <ptyser@xes-inc.com> 25287Date: Fri Mar 13 18:54:33 2009 -0500 25288 25289 tools/Makefile: Remove inappropriate double-tabs 25290 25291 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25292 25293commit 652f4ba076689fd0acd447561a777b1c440a4b57 25294Author: Peter Tyser <ptyser@xes-inc.com> 25295Date: Fri Mar 13 18:54:32 2009 -0500 25296 25297 tools/Makefile: Remove HOSTARCH HOSTOS defines 25298 25299 The values of HOSTARCH and HOSTOS which are exported from the top-level 25300 Makefile should be used 25301 25302 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25303 25304commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b 25305Author: Peter Tyser <ptyser@xes-inc.com> 25306Date: Fri Mar 13 18:54:31 2009 -0500 25307 25308 gen_eth_addr: Use POSIX rand() and srand() 25309 25310 Replace random()/srandom() use with rand()/srand() to support 25311 compilation with the mingw toolchain. The rand()/srand() functions are 25312 generally more common and are functionally equivalent to the original 25313 random()/srandom() calls. 25314 25315 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25316 25317commit 24d2ae5e9debe4b75151a55251031a14477fa875 25318Author: Peter Tyser <ptyser@xes-inc.com> 25319Date: Fri Mar 13 18:54:28 2009 -0500 25320 25321 elf.h: Use stdint.h to provide standard typedefs for WIN32 25322 25323 The original code provided an incomplete set of typedefs for WIN32 25324 compiles and replicated the standard typedefs that are already 25325 provided by stdint.h 25326 25327 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25328 25329commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc 25330Author: Peter Tyser <ptyser@xes-inc.com> 25331Date: Fri Mar 13 18:54:27 2009 -0500 25332 25333 common/Makefile: Conditionally compile env_embedded.o 25334 25335 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25336 25337commit 2b48f7d5f62835f87278efb498397b6ae9e2d117 25338Author: Peter Tyser <ptyser@xes-inc.com> 25339Date: Fri Mar 13 18:54:26 2009 -0500 25340 25341 Makefile: Add removal of *.exe files to clean target 25342 25343 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25344 25345commit d0d6144e0e4a03a68311b781f3dde38dc9316b82 25346Author: Peter Tyser <ptyser@xes-inc.com> 25347Date: Fri Mar 13 18:54:25 2009 -0500 25348 25349 Makefile: Make autoconf.mk a dependency of the depend target 25350 25351 The original code did not generate autoconf.mk until after some targets 25352 dependencies had already been calculated, for example the directories in 25353 the SUBDIRS variable 25354 25355 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 25356 25357commit 75eb82ec7cacb18d059d701b35677b93d2bb7596 25358Author: unsik Kim <donari75@gmail.com> 25359Date: Wed Feb 25 11:31:24 2009 +0900 25360 25361 mflash: Initial mflash support 25362 25363 Mflash is fusion memory device mainly targeted consumer eletronic and 25364 mobile phone. 25365 Internally, it have nand flash and other hardware logics and supports 25366 some different operation (ATA, IO, XIP) modes. 25367 25368 IO mode is custom mode for the host that doesn't have IDE interface. 25369 (Many mobile targeted SoC doesn't have IDE bus) 25370 25371 This driver support mflash IO mode. 25372 25373 Followings are brief descriptions about IO mode. 25374 25375 1. IO mode based on ATA protocol and uses some custom command. (read 25376 confirm, write confirm) 25377 2. IO mode uses SRAM bus interface. 25378 25379 Signed-off-by: unsik Kim <donari75@gmail.com> 25380 25381commit 200779e3e2a9aeda7030b171a8c39d7797019917 25382Author: Detlev Zundel <dzu@denx.de> 25383Date: Fri Apr 3 11:53:01 2009 +0200 25384 25385 Rename common ns16550 constants with UART_ prefix to prevent conflicts 25386 25387 Fix problems introduced in commit 25388 7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware 25389 diagnosis functions for inka4x0] which redefined MSR_RI which is 25390 already used on PowerPC systems. 25391 25392 Also eliminate redundant definitions in ps2mult.h. More cleanup will 25393 be needed for other redundant occurrences though. 25394 25395 Signed-off-by: Detlev Zundel <dzu@denx.de> 25396 25397commit 99067b08f4a0ce20ff337a35211239f334d8f451 25398Author: Scott Wood <scottwood@freescale.com> 25399Date: Wed Apr 1 15:33:24 2009 -0500 25400 25401 Noisily disable the legacy NAND subsystem. 25402 25403 Legacy NAND is marked for feature removal after April 2009 (i.e. this 25404 upcoming release). There are still several boards that reference it 25405 (though many do so only for disk-on-chip support which has been silently 25406 disabled for a while now). These boards will now fail to build 25407 with #error, though the code is still there if the user removes #error. 25408 25409 The plan is to remove the code outright in the next release, along with 25410 any board code that refers to it (such as board/esd/common/auto_update.c). 25411 25412 Also, remove the legacy NAND API description from README.nand. 25413 25414 Signed-off-by: Scott Wood <scottwood@freescale.com> 25415 25416commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf 25417Author: apgmoorthy <moorthy.apg@samsung.com> 25418Date: Fri Mar 27 14:45:23 2009 +0530 25419 25420 Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN 25421 25422 Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB. 25423 However, u-boot image for apollon board is 195KB making the board 25424 unbootable with OneNAND. 25425 25426 Fix ipl to read CONFIG_SYS_MONITOR_LEN. 25427 CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size. 25428 25429 Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com> 25430 Signed-off-by: Gangheyamoorthy <moorthy.apg@samsung.com> 25431 Signed-off-by: Scott Wood <scottwood@freescale.com> 25432 25433commit 74de7aefd79690bae8cf5a5120f5962d444be089 25434Author: Wolfgang Denk <wd@denx.de> 25435Date: Wed Apr 1 23:34:12 2009 +0200 25436 25437 Add "source" command; prepare removal of "autoscr" command 25438 25439 According to the doc/feature-removal-schedule.txt, the "autoscr" 25440 command will be replaced by the "source" command in approximately 6 25441 months from now. 25442 25443 This patch prepares this change and starts a 6 month transition 25444 period as follows: 25445 25446 - The new "source" command has been added, which implements exactly 25447 the same functionlaity as the old "autoscr" command before 25448 - The old "autoscr" command name is kept as an alias for compatibility 25449 - Command sequences, script files atc. have been adapted to use the 25450 new "source" command 25451 - Related environment variables ("autoscript", "autoscript_uname") 25452 have *not* been adapted yet; these will be renamed resp. removed in 25453 a separate patch when the support for the "autoscr" command get's 25454 finally dropped. 25455 25456 Signed-off-by: Wolfgang Denk <wd@denx.de> 25457 25458commit 78237df55248034a2d7c2daea992b9dbe7ca8e96 25459Author: Wolfgang Denk <wd@denx.de> 25460Date: Thu Apr 2 17:31:09 2009 +0200 25461 25462 Add "GPL cleanup" task to feature-removal-schedule.txt 25463 25464 Announce removal of all non-GPL or GPL-incompatible files 25465 after August 2009. 25466 25467 Signed-off-by: Wolfgang Denk <wd@denx.de> 25468 25469commit d9596ffbdc79cea285010b67dd20a4618303f624 25470Author: Mike Frysinger <vapier@gentoo.org> 25471Date: Thu Apr 2 12:51:28 2009 -0400 25472 25473 sf: stmicro: dont send 4 bytes when reading status register 25474 25475 I can't find anywhere in the datasheet that says the status register needs 25476 3 dummy bytes sent to it before being able to read back the first real 25477 result. Tests on a Blackfin board show that after writing the opcode, the 25478 status register starts coming back immediately. So only write out the 25479 read status register opcode before polling the result. 25480 25481 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25482 CC: Jason McMullan <mcmullan@netapp.com> 25483 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 25484 25485commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd 25486Author: Mike Frysinger <vapier@gentoo.org> 25487Date: Thu Apr 2 08:11:31 2009 -0400 25488 25489 sf: set common timeouts in seconds, not milliseconds 25490 25491 Since timeouts are only hit when there is a problem in the system, we 25492 don't want to prematurely timeout on a functioning setup. Thus having 25493 low timeouts (in milliseconds) doesn't gain us anything in the production 25494 case, but rather increases likely hood of causing problems where none 25495 otherwise exist. 25496 25497 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25498 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 25499 25500commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1 25501Author: Mike Frysinger <vapier@gentoo.org> 25502Date: Thu Apr 2 06:51:49 2009 -0400 25503 25504 sf: stmicro: use common page timeout define 25505 25506 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25507 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 25508 25509commit 0dcdbb172c2fdf60c5c578980308b312fd56496f 25510Author: Mike Frysinger <vapier@gentoo.org> 25511Date: Sat Mar 28 06:41:09 2009 -0400 25512 25513 sf: always read 5 bytes for the idcode 25514 25515 Some SPI flash drivers like to have extended id information available 25516 (like the spansion flash), so rather than making it re-issue the ID cmd 25517 to get at the last 2 bytes, have the common code read 5 bytes rather than 25518 just 3. This also matches the Linux behavior where it always reads 5 id 25519 bytes from all flashes. 25520 25521 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25522 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 25523 CC: Mingkai Hu <Mingkai.hu@freescale.com> 25524 25525commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52 25526Author: Mike Frysinger <vapier@gentoo.org> 25527Date: Fri Mar 27 16:34:21 2009 -0400 25528 25529 sf: stmicro: drop redundant id read 25530 25531 The common SPI flash code reads the idcode and passes it down to the SPI 25532 flash driver, so there is no need to read it again ourselves. 25533 25534 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25535 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 25536 CC: Jason McMullan <mcmullan@netapp.com> 25537 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 25538 25539commit 1c5874374e091b4bb62917c519861f7682fe066e 25540Author: Mike Frysinger <vapier@gentoo.org> 25541Date: Fri Mar 27 19:27:58 2009 -0400 25542 25543 sf: add driver for SST flashes 25544 25545 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25546 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 25547 25548commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d 25549Author: Mike Frysinger <vapier@gentoo.org> 25550Date: Mon Mar 23 23:03:58 2009 -0400 25551 25552 sf: drop DEBUG defines 25553 25554 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25555 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 25556 25557commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af 25558Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 25559Date: Sun Jan 4 07:44:07 2009 +0100 25560 25561 mtd: add some at45 spi flash support 25562 25563 - AT45DB321D 25564 - AT45DB161D 25565 - AT45DB081D 25566 - AT45DB041D 25567 - AT45DB021D 25568 - AT45DB011D 25569 25570 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 25571 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25572 25573commit 6805e4bf83e6f444f7411101228766c8a7aec5f7 25574Author: Mingkai Hu <Mingkai.hu@freescale.com> 25575Date: Tue Mar 31 14:09:41 2009 +0800 25576 25577 mtd: SPI Flash: Support the Spansion Flash 25578 25579 Add MTD SPI Flash support for S25FL008A, S25FL016A, 25580 S25FL032A, S25FL064A, S25FL128P. 25581 25582 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com> 25583 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25584 25585commit 40587701924aa0afc86b3840421b4cc6de42c748 25586Author: Mike Frysinger <vapier@gentoo.org> 25587Date: Mon Mar 30 20:56:45 2009 -0400 25588 25589 Blackfin: force all boards to HZ of 1000 25590 25591 Since the Blackfin timer code requires HZ to be 1000, barf on any board 25592 that tries to use a different value. 25593 25594 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25595 25596commit f4032d2eec9d71a59c6c724671e577f67a76839b 25597Author: Mike Frysinger <vapier@gentoo.org> 25598Date: Fri Mar 27 21:07:45 2009 -0400 25599 25600 Blackfin: bf533-stamp: drop old spi flash driver 25601 25602 Now that the common SPI flash code supports all the flashes, we can stop 25603 using the old driver. 25604 25605 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25606 25607commit bc72f50a659d0d1b551817e1910b9b2be1c7e496 25608Author: Mike Frysinger <vapier@gentoo.org> 25609Date: Thu Mar 26 15:42:12 2009 -0400 25610 25611 Blackfin: add BF538/BF539 SPI portmux handling 25612 25613 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25614 25615commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3 25616Author: Mike Frysinger <vapier@gentoo.org> 25617Date: Mon Mar 23 22:36:10 2009 -0400 25618 25619 Blackfin: do not delay on output bytes 25620 25621 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25622 25623commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382 25624Author: Mike Frysinger <vapier@gentoo.org> 25625Date: Mon Mar 23 22:17:27 2009 -0400 25626 25627 Blackfin: drop newline from OTP help 25628 25629 Looks like I accidentally added a newline to the OTP help when merging and 25630 older change. 25631 25632 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25633 25634commit d3c38d96b991d641a33f7748130dae008563cdc9 25635Author: Mike Frysinger <vapier@gentoo.org> 25636Date: Sun Mar 22 23:43:31 2009 -0400 25637 25638 Blackfin: convert bfin_sdh to legacy mmc 25639 25640 The Blackfin SDH controller is still using the legacy framework, so update 25641 the driver to use the renamed functions. 25642 25643 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25644 25645commit d248cfb2d940b742f6bfdba9b832a3df96da3101 25646Author: Mike Frysinger <vapier@gentoo.org> 25647Date: Sun Feb 22 16:30:38 2009 -0500 25648 25649 Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c 25650 25651 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25652 25653commit ad9073211ca9e62162a39851e082b8d07a662fb6 25654Author: Mike Frysinger <vapier@gentoo.org> 25655Date: Fri Feb 13 17:10:58 2009 -0500 25656 25657 Blackfin: fix crash when booting from external memory 25658 25659 When testing a u-boot binary that hasn't been booted from the bootrom, we 25660 have to make sure the bootstruct structure has sane storage space. If we 25661 don't, the initcode will crash when it tries to dereference an invalid 25662 pointer. 25663 25664 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25665 25666commit 84a9dda324c3faa56be14449d7519b993d9397a9 25667Author: Mike Frysinger <vapier@gentoo.org> 25668Date: Sun Oct 12 21:32:52 2008 -0400 25669 25670 Blackfin: bf518f-ezbrd: new board port 25671 25672 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25673 25674commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa 25675Author: Mike Frysinger <vapier@gentoo.org> 25676Date: Sun Oct 12 21:30:48 2008 -0400 25677 25678 Blackfin: bf526-ezbrd: new board port 25679 25680 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25681 25682commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e 25683Author: Mike Frysinger <vapier@gentoo.org> 25684Date: Sun Oct 12 21:25:33 2008 -0400 25685 25686 Blackfin: bf538f-ezkit: new board port 25687 25688 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25689 25690commit d9a5d113b93583c984711127ab8503e136ed1e4a 25691Author: Mike Frysinger <vapier@gentoo.org> 25692Date: Sun Oct 12 20:59:12 2008 -0400 25693 25694 Blackfin: bf527-ezkit: new board port 25695 25696 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25697 25698commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46 25699Author: Mike Frysinger <vapier@gentoo.org> 25700Date: Sun Oct 12 05:05:42 2008 -0400 25701 25702 Blackfin: bf548-ezkit: new board port 25703 25704 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 25705 25706commit 67b89c79e72fe86b0ea0199425d880630beb95d8 25707Author: Laurent Gregoire <laurent.gregoire@tomtom.com> 25708Date: Tue Mar 3 14:23:59 2009 +0100 25709 25710 libfdt: Fix C++ compile-time cast error on gnu 4.2.1 25711 25712 Allow the inclusion of libfdt.h in C++ source. 25713 25714 Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com> 25715 Acked-by: David Gibson <david@gibson.dropbear.id.au> 25716 25717commit 13d93f38e86818739317b0206d597265cf9e675e 25718Author: Emil Medve <Emilian.Medve@Freescale.com> 25719Date: Mon Feb 23 10:43:36 2009 -0600 25720 25721 Fix a possible overflow case detected by gcc 4.3.2 25722 25723 .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node': 25724 .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false 25725 25726 Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com> 25727 25728commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383 25729Author: David Gibson <david@gibson.dropbear.id.au> 25730Date: Fri Feb 6 14:03:24 2009 +1100 25731 25732 libfdt: Rework/cleanup fdt_next_tag() 25733 25734 Currently, callers of fdt_next_tag() must usually follow the call with 25735 some sort of call to fdt_offset_ptr() to verify that the blob isn't 25736 truncated in the middle of the tag data they're going to process. 25737 This is a bit silly, since fdt_next_tag() generally has to call 25738 fdt_offset_ptr() on at least some of the data following the tag for 25739 its own operation. 25740 25741 This patch alters fdt_next_tag() to always use fdt_offset_ptr() to 25742 verify the data between its starting offset and the offset it returns 25743 in nextoffset. This simplifies fdt_get_property() which no longer has 25744 to verify itself that the property data is all present. 25745 25746 At the same time, I neaten and clarify the error handling for 25747 fdt_next_tag(). Previously, fdt_next_tag() could return -1 instead of 25748 a tag value in some circumstances - which almost none of the callers 25749 checked for. Also, fdt_next_tag() could return FDT_END either because 25750 it encountered an FDT_END tag, or because it reached the end of the 25751 structure block - no way was provided to tell between these cases. 25752 25753 With this patch, fdt_next_tag() always returns FDT_END with a negative 25754 value in nextoffset for an error. This means the several places which 25755 loop looking for FDT_END will still work correctly - they only need to 25756 check for errors at the end. The errors which fdt_next_tag() can 25757 report are: 25758 - -FDT_ERR_TRUNCATED if it reached the end of the structure 25759 block instead of finding a tag. 25760 25761 - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the 25762 tag data couldn't be verified with fdt_offset_ptr(). 25763 25764 This patch also updates the callers of fdt_next_tag(), where 25765 appropriate, to make use of the new error reporting. 25766 25767 Finally, the prototype for the long gone _fdt_next_tag() is removed 25768 from libfdt_internal.h. 25769 25770 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 25771 25772commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da 25773Author: David Gibson <david@gibson.dropbear.id.au> 25774Date: Fri Feb 6 14:01:56 2009 +1100 25775 25776 libfdt: Rework fdt_next_node() 25777 25778 Currently fdt_next_node() will find the next node in the blob 25779 regardless of whether it is above, below or at the same level in the 25780 tree as the starting node - the depth parameter is updated to indicate 25781 which is the case. When a depth parameter is supplied, this patch 25782 makes it instead terminate immediately when it finds the END_NODE tag 25783 for a node at depth 0. In this case it returns the offset immediately 25784 past the END_NODE tag. 25785 25786 This has a couple of advantages. First, this slightly simplifies 25787 fdt_subnode_offset(), which no longer needs to explicitly check that 25788 fdt_next_node()'s iteration hasn't left the starting node. Second, 25789 this allows fdt_next_node() to be used to implement 25790 _fdt_node_end_offset() considerably simplifying the latter function. 25791 25792 The other users of fdt_next_node() either don't need to iterate out of 25793 the starting node, or don't pass a depth parameter at all. Any 25794 callers that really need to iterate out of the starting node, but keep 25795 tracking depth can do so by biasing the initial depth value. 25796 25797 This is a semantic change, but I think it's very unlikely to break any 25798 existing library users. 25799 25800 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 25801 25802commit c123098035be8bae3859bbfbd06861f197c07631 25803Author: Scott Wood <scottwood@freescale.com> 25804Date: Tue Mar 31 17:49:36 2009 -0500 25805 25806 mpc83xx: Set guarded bit on BAT that covers the end of the address space 25807 25808 The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of 25809 address space; however, not all of this space is covered by a device. In 25810 particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped 25811 at the far end of the address space. 25812 25813 In zlib, there is a loop that references p[-1] if p is non-NULL. Under 25814 some circumstances, this leads to the CPU speculatively loading from 25815 0xfffffff8 if p is NULL. This leads to a machine check. 25816 25817 Signed-off-by: Scott Wood <scottwood@freescale.com> 25818 25819 continuation to the remaining mpc83xx boards that suffer from the same problem. 25820 25821 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 25822 25823commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa 25824Author: Kim Phillips <kim.phillips@freescale.com> 25825Date: Mon Mar 30 14:28:05 2009 -0500 25826 25827 rtc: remove broken rtc_read and rtc_write declarations 25828 25829 commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g. 25830 EPSON)" introduces the following build error on boards configuring e.g, 25831 the ds1374 rtc: 25832 25833 Configuring for MPC837XEMDS board... 25834 ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration 25835 /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here 25836 ds1374.c:104: error: conflicting types for 'rtc_write' 25837 /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here 25838 25839 this reverts the erroneous chunk. 25840 25841 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 25842 Acked-by: Detlev Zundel <dzu@denx.de> 25843 CC: Detlev Zundel <dzu@denx.de> 25844 CC: Andreas Pfefferle <ap@denx.de> 25845 25846commit fc39c2fd51e64707de4d61ed49479ebea2847e1b 25847Author: Kumar Gala <galak@kernel.crashing.org> 25848Date: Tue Mar 31 17:58:13 2009 -0500 25849 25850 85xx/86xx: Ensure MP boot page is not used 25851 25852 We had a bug on 86xx in which the boot page used to bring up secondary 25853 cores was being overwritten and used for the malloc region in u-boot. 25854 25855 We need to reserve the region of memory that the boot page is going to 25856 be put at so nothing uses it. 25857 25858 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25859 Acked-by: Becky Bruce <beckyb@kernel.crashing.org> 25860 25861commit c840d26c752141b94bbc24ac748ddd45752a955a 25862Author: Kumar Gala <galak@kernel.crashing.org> 25863Date: Tue Mar 31 23:11:05 2009 -0500 25864 25865 85xx: Introduce determine_mp_bootpg() helper. 25866 25867 Match determine_mp_bootpg() that was added for 86xx. We need this to 25868 address a bug introduced in v2009.03 with 86xx MP booting. We have to 25869 make sure to reserve the region of memory used for the MP bootpg() so 25870 other u-boot code doesn't use it. 25871 25872 Also added a comment about how cpu_reset() is dealing w/an errata on 25873 early 85xx MP HW. 25874 25875 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25876 25877commit 7649a590b53ee548f41428bf20780f74ce9fc099 25878Author: Kumar Gala <galak@kernel.crashing.org> 25879Date: Tue Mar 31 23:02:38 2009 -0500 25880 25881 86xx: Cleanup MP support 25882 25883 * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx 25884 * Introduce determine_mp_bootpg() helper. We'll need this to address a 25885 bug introduced in v2009.03 with 86xx MP booting. We have to make sure 25886 to reserve the region of memory used for the MP bootpg() so other 25887 u-boot code doesn't use it. 25888 * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to 25889 allow cmd_mp.c to build and work. In the future we should look at 25890 implementing all these functions. This could be common w/85xx if we 25891 use spin tables on 86xx. 25892 25893 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25894 25895commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2 25896Author: Becky Bruce <beckyb@kernel.crashing.org> 25897Date: Tue Mar 31 18:38:37 2009 -0500 25898 25899 mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves 25900 25901 We're missing the board_lmb_reserve definitions that allow 25902 cpu_mp_lmb_reserve to be called; this means that Linux 25903 is free to reallocate reserved pages. Linux currently boots 25904 because we're getting lucky - the page we've reserved is 25905 high enough in memory that it isn't allocated by Linux 25906 while we still need it to be in existence. 25907 25908 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 25909 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25910 25911commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed 25912Author: Ladislav Michl <ladis@linux-mips.org> 25913Date: Tue Mar 31 13:43:10 2009 +0200 25914 25915 NetStar: fix NAND 25916 25917 Fix NAND support broken during new NAND code merge. Move those few lines of 25918 code to board/netstar/netstar.c 25919 25920 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 25921 25922commit d144f94d590b5190a9963bd0f2026b2a7ce67eda 25923Author: Jens Scharsig <esw@bus-elektronik.de> 25924Date: Tue Mar 31 08:18:29 2009 +0200 25925 25926 soft_i2c.c compiler/linker error 25927 25928 This patch fix the compiler/linker errors 25929 25930 common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed' 25931 common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed' 25932 25933 if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not 25934 uesd/undef (wrong define order) 25935 25936 and 25937 25938 removes additional empty lines 25939 25940 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de> 25941 25942commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352 25943Author: Haiying Wang <Haiying.Wang@freescale.com> 25944Date: Fri Mar 27 17:02:45 2009 -0400 25945 25946 MPC85xx: Add MPC8569MDS board support 25947 25948 This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD 25949 EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch. 25950 25951 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 25952 Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com> 25953 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25954 25955commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4 25956Author: Haiying Wang <Haiying.Wang@freescale.com> 25957Date: Fri Mar 27 17:02:44 2009 -0400 25958 25959 MPC85xx: Add MPC8569 CPU support 25960 25961 There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of 25962 LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage, 25963 then invalidate it after LBCR bit 13 is set. 25964 25965 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 25966 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25967 25968commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f 25969Author: Haiying Wang <Haiying.Wang@freescale.com> 25970Date: Thu Mar 26 17:01:49 2009 -0400 25971 25972 MPC85xx: Load and enable QE microcode patch in IRAM 25973 25974 For the silicon which doesn't have ROM support in QE, it always needs to load 25975 a pre-built ucode binary to IRAM so that QE can work. 25976 25977 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 25978 Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com> 25979 25980commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b 25981Author: Kumar Gala <galak@kernel.crashing.org> 25982Date: Thu Mar 19 09:16:10 2009 -0500 25983 25984 85xx: Add support for additional e500mc features 25985 25986 * Enable backside L2 25987 * e500mc no longer has timebase enable in HID (moved to CCSR register) 25988 25989 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 25990 25991commit c360ceac0286159f94d9d1a9496fc9858c8d9bec 25992Author: Dave Liu <daveliu@freescale.com> 25993Date: Sat Mar 14 12:48:30 2009 +0800 25994 25995 fsl-ddr: add the DDR3 SPD infrastructure 25996 25997 - support mirrored DIMMs, not support register DIMMs 25998 - test passed on P2020DS board with MT9JSF12872AY-1G1D1 25999 - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1 26000
26001 Signed-off-by: Dave Liu <daveliu@freescale.com> 26002 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com> 26003 26004commit 6a8197836702991468cead5ead073f589e2623ad 26005Author: Dave Liu <daveliu@freescale.com> 26006Date: Sat Mar 14 12:48:19 2009 +0800 26007 26008 fsl-ddr: Fix two bugs in the ddr infrastructure 26009 26010 1. wr_lat 26011 UM said the total write latency for DDR2 is equal to 26012 WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1. 26013 so, the WR_LAT = CL - 1; 26014 2. rd_to_pre 26015 we missed to add the ADD_LAT for DDR2 case. 26016 26017 Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 26018 Signed-off-by: Dave Liu <daveliu@freescale.com> 26019 26020commit 540dcf1cb86961e11aa92c47671f27762c581d8c 26021Author: Kumar Gala <galak@kernel.crashing.org> 26022Date: Thu Mar 26 01:34:39 2009 -0500 26023 26024 83xx: Use common LSDMR defines from asm/fsl_lbc.h 26025 26026 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 26027 Acked-by: Kim Phillips <kim.phillips@freescale.com> 26028 26029commit b0fe93eda69721aef1fdef576164b668fad83bbd 26030Author: Kumar Gala <galak@kernel.crashing.org> 26031Date: Thu Mar 26 01:34:38 2009 -0500 26032 26033 85xx: Use common LSDMR defines from asm/fsl_lbc.h 26034 26035 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 26036 26037commit 0088c298f0eeb90ec001f744e9959dea83dd563a 26038Author: Kumar Gala <galak@kernel.crashing.org> 26039Date: Thu Mar 26 01:34:37 2009 -0500 26040 26041 Add LSDMR (SDRAM Mode Register) definition on localbus 26042 26043 The masks for various bit defines of LSDMR are common and thus we can 26044 define them in one place rather than replicating them in each config.h 26045 26046 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 26047 26048commit 89c00fb15859213788f0ad089934c376fb356099 26049Author: Ladislav Michl <ladis@linux-mips.org> 26050Date: Mon Mar 30 18:58:41 2009 +0200 26051 26052 OMAP: use {read,write}l to access timer registers 26053 26054 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 26055 26056commit 81472d893fa565c9d300928a40e504a689bde131 26057Author: Ladislav Michl <ladis@linux-mips.org> 26058Date: Mon Mar 30 18:58:41 2009 +0200 26059 26060 OMAP: rename timer divisor 26061 26062 Divisor field is called PTV not PVT. 26063 26064 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 26065 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26066 26067commit fe672d60b2a8c9e803596ba4533fa1776015551d 26068Author: Ladislav Michl <ladis@linux-mips.org> 26069Date: Mon Mar 30 18:58:40 2009 +0200 26070 26071 OMAP: reindent timer code 26072 26073 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 26074 26075commit b3f66b0ba09949e0796ce7fad6367f75f15ed890 26076Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26077Date: Mon Mar 30 18:58:40 2009 +0200 26078 26079 s3c2410: move nand driver to drivers/mtd/nand 26080 26081 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26082 26083commit d3b635774194404bcd424f6b376419bce22076ad 26084Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26085Date: Mon Mar 30 18:58:40 2009 +0200 26086 26087 s3c24x0: move i2c driver to drivers/i2c 26088 26089 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26090 26091commit 300f99f4539dd5caf7e19af5e4ea5eb259445913 26092Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26093Date: Mon Mar 30 18:58:39 2009 +0200 26094 26095 s3c24x0: move serial driver to drivers/serial 26096 26097 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26098 26099commit 942ba9969b9efa25f816c238861ecb339c54ed73 26100Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26101Date: Mon Mar 30 18:58:39 2009 +0200 26102 26103 davinci: move i2c driver to drivers/i2c 26104 26105 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26106 26107commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8 26108Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26109Date: Mon Mar 30 18:58:39 2009 +0200 26110 26111 davinci: move nand driver to drivers/mtd/nand 26112 26113 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26114 26115commit d3e55d0774a180c1837bd7ddec464015e883bd86 26116Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26117Date: Mon Mar 30 18:58:38 2009 +0200 26118 26119 imx: move serial driver to drivers/serial 26120 26121 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26122 26123commit 2344bb8de2354101a8264c2123303c9d8d2aed3c 26124Author: Detlev Zundel <dzu@denx.de> 26125Date: Mon Mar 30 00:31:36 2009 +0200 26126 26127 inka4x0: Use proper accessor macros for memory mapped registers. 26128 26129 Signed-off-by: Detlev Zundel <dzu@denx.de> 26130 26131commit e979e85fd39b06436922bb4d6bb5fafcbc775182 26132Author: Detlev Zundel <dzu@denx.de> 26133Date: Mon Mar 30 00:31:35 2009 +0200 26134 26135 inka4x0: Add hardware diagnosis and RTC in configuration. 26136 26137 This patch adds the board specific communication routines needed by 26138 the external 4543 RTC. 26139 26140 Signed-off-by: Detlev Zundel <dzu@denx.de> 26141 Signed-off-by: Andreas Pfefferle <ap@denx.de> 26142 26143commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124 26144Author: Detlev Zundel <dzu@denx.de> 26145Date: Mon Mar 30 00:31:34 2009 +0200 26146 26147 inka4x0: Add hardware diagnosis functions for inka4x0 26148 26149 This patch adds advanced diagnosis functions for the inka4x0 board. 26150 26151 Signed-off-by: Andreas Pfefferle <ap@denx.de> 26152 Signed-off-by: Detlev Zundel <dzu@denx.de> 26153 26154commit 04e11cf383ff6231535fd981023bb1306b2133d4 26155Author: Detlev Zundel <dzu@denx.de> 26156Date: Mon Mar 30 00:31:33 2009 +0200 26157 26158 rtc: add support for 4543 RTC (manufactured by e.g. EPSON) 26159 26160 Signed-off-by: Detlev Zundel <dzu@denx.de> 26161 Signed-off-by: Andreas Pfefferle <ap@denx.de> 26162 26163commit 572e6179adb5447ff42ec2aa5cf3a26decf97583 26164Author: Detlev Zundel <dzu@denx.de> 26165Date: Mon Mar 30 00:31:32 2009 +0200 26166 26167 drivers/twserial: Add protocol driver for "three wire serial" interface. 26168 26169 This pretty unintelligent interface is used on some RTC chips. 26170 26171 Signed-off-by: Detlev Zundel <dzu@denx.de> 26172 26173commit a6ef3ddeafbe8007af3662cc4509b897c53ab395 26174Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26175Date: Sun Mar 29 23:01:42 2009 +0200 26176 26177 arm720t/clps7111: move serial driver to drivers/serial 26178 26179 add CONFIG_CLPS7111_SERIAL to activate the driver 26180 26181 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26182 26183commit 6790c55704531eb98f76b51d50e0f73d19fa2988 26184Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26185Date: Sun Mar 29 23:01:42 2009 +0200 26186 26187 lpc2292: move serial driver to drivers/serial 26188 26189 add CONFIG_LPC2292_SERIAL to activate the driver 26190 26191 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26192 26193commit 176a600d0ecdaccbac483d2ba992d0119f853119 26194Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26195Date: Sun Mar 29 23:01:42 2009 +0200 26196 26197 ks8695: move serial driver to drivers/serial 26198 26199 add CONFIG_KS8695_SERIAL to activate the driver 26200 26201 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26202 26203commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea 26204Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26205Date: Sun Mar 29 23:01:42 2009 +0200 26206 26207 s3c64xx: move usb driver to drivers/usb 26208 26209 add CONFIG_USB_S3C64XX to activate the driver 26210 26211 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26212 26213commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9 26214Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26215Date: Sun Mar 29 23:01:41 2009 +0200 26216 26217 imx31: move serial driver to drivers/serial 26218 26219 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26220 26221commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc 26222Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26223Date: Sun Mar 29 23:01:41 2009 +0200 26224 26225 netarm: move serial driver to drivers/serial 26226 26227 add CONFIG_NETARM_SERIAL to activate the driver 26228 26229 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26230 26231commit 412ab705888742add435dd6ffc2e8bda14962235 26232Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26233Date: Sun Mar 29 23:01:41 2009 +0200 26234 26235 sa1100: move serial driver to drivers/serial 26236 26237 add CONFIG_SA1100_SERIAL to activate the driver 26238 26239 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26240 26241commit b2368754a9202225fd072e159fb78da7d2cdb623 26242Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26243Date: Sun Mar 29 23:01:41 2009 +0200 26244 26245 s3c44b0: extract cache from cpu.c 26246 26247 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26248 26249commit 40fd626223eae5363719bcb9a6896f08ceeee90a 26250Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26251Date: Sun Mar 29 23:01:41 2009 +0200 26252 26253 s3c44b0: move serial driver to drivers/serial 26254 26255 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26256 26257commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f 26258Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26259Date: Sun Mar 29 23:01:40 2009 +0200 26260 26261 s3c44b0: move rtc driver to drivers/rtc 26262 26263 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26264 26265commit 50f601cca8985615f9e3de4c34887448ade8a64b 26266Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26267Date: Sun Mar 29 23:01:40 2009 +0200 26268 26269 s3c44b0: move i2c driver to drivers/i2c 26270 26271 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26272 26273commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6 26274Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26275Date: Sun Mar 29 23:01:36 2009 +0200 26276 26277 s3c4510b: move specific code to soc directory 26278 26279 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26280 26281commit 04531f3c11c693dc54924f82c41979d960309c9d 26282Author: Ladislav Michl <ladis@linux-mips.org> 26283Date: Wed Mar 25 23:43:58 2009 +0100 26284 26285 NetStar: add RTC support 26286 26287 Add RTC support. 26288 26289 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 26290 26291commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11 26292Author: Ladislav Michl <ladis@linux-mips.org> 26293Date: Wed Mar 25 23:43:50 2009 +0100 26294 26295 NetStar: use generic flash driver 26296 26297 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 26298 26299commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c 26300Author: Ladislav Michl <ladis@linux-mips.org> 26301Date: Mon Mar 16 23:31:20 2009 +0100 26302 26303 NetStar: update crcit utility 26304 26305 Make crc32 function to match its prototype. Use more meaningful identifiers. 26306 26307 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 26308 26309commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17 26310Author: Ladislav Michl <ladis@linux-mips.org> 26311Date: Mon Mar 23 17:46:27 2009 +0100 26312 26313 Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ 26314 26315 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 26316 26317commit 88685b5f62274167ad2ba8a58e108d89ff71955b 26318Author: Wolfgang Denk <wd@denx.de> 26319Date: Sun Mar 29 00:58:16 2009 +0100 26320 26321 VCMA9: fix compile errors 26322 26323 Fix these: 26324 cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr' 26325 cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function) 26326 26327 Signed-off-by: Wolfgang Denk <wd@denx.de> 26328 26329commit 26e42cbd786241fec370a0b92ad591f4e9cc423b 26330Author: Wolfgang Denk <wd@denx.de> 26331Date: Sun Mar 29 00:54:21 2009 +0100 26332 26333 ARM: fix warning: 'print_eth' defined but not used 26334 26335 This warning got issued for all ARM systems that don't have 26336 CONFIG_CMD_NET enabled. 26337 26338 Signed-off-by: Wolfgang Denk <wd@denx.de> 26339 26340commit fd88d91a639ce41b825c8d50dc2182050e98fe53 26341Author: Ladislav Michl <ladis@linux-mips.org> 26342Date: Mon Mar 23 18:16:34 2009 +0100 26343 26344 cs8900 compile fix 26345 26346 cs8900.c: In function 'eth_init': 26347 cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type 26348 cs8900.c:165: error: invalid operands to binary << 26349 cs8900.c:166: error: invalid operands to binary << 26350 cs8900.c:167: error: invalid operands to binary << 26351 26352 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 26353 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26354 26355commit d2567be915036720693f3ddd00c39b5b4d86fb8d 26356Author: Wolfgang Denk <wd@denx.de> 26357Date: Sat Mar 28 20:16:16 2009 +0100 26358 26359 Fix implicit declaration of function 'eth_[gs]etenv_enetaddr' 26360 26361 ...and some other compile warnings. 26362 26363 Signed-off-by: Wolfgang Denk <wd@denx.de> 26364 26365commit 97b05d7d524a6b4f195f07b8f90e98561a85596c 26366Author: Wolfgang Denk <wd@denx.de> 26367Date: Sat Mar 28 16:17:29 2009 +0100 26368 26369 mpc8xx/ether.c: fix warning: unused variable 'bd' 26370 26371 Also minor coding style cleanup. 26372 26373 Signed-off-by: Wolfgang Denk <wd@denx.de> 26374 26375commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90 26376Author: Detlev Zundel <dzu@denx.de> 26377Date: Wed Mar 25 17:27:52 2009 +0100 26378 26379 command.c: Expose the core of do_help as _do_help to the rest of u-boot. 26380 26381 Other commands implementing subcommands can reuse this code nicely. 26382 26383 Signed-off-by: Detlev Zundel <dzu@denx.de> 26384 Signed-off-by: Andreas Pfefferle <ap@denx.de> 26385 26386commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f 26387Author: Detlev Zundel <dzu@denx.de> 26388Date: Tue Mar 24 18:02:33 2009 +0100 26389 26390 mpc5xxx: Add structure definition for several more register blocks. 26391 26392 Signed-off-by: Detlev Zundel <dzu@denx.de> 26393 26394commit 739b0e594677a0676577bc95db4495a5563fc7f8 26395Author: Detlev Zundel <dzu@denx.de> 26396Date: Fri Mar 27 15:03:55 2009 +0100 26397 26398 MAINTAINERS: Add entry for 'inka4x0' board. 26399 26400 Signed-off-by: Detlev Zundel <dzu@denx.de> 26401 26402commit e55ecec45340755ef47cbbb13fb35ceed60eb115 26403Author: Detlev Zundel <dzu@denx.de> 26404Date: Fri Mar 27 15:03:54 2009 +0100 26405 26406 MAINTAINERS: Keep list sorted. 26407 26408 Signed-off-by: Detlev Zundel <dzu@denx.de> 26409 26410commit 0baeca4b09b703728f8e66b52418039fd8f8ce35 26411Author: Mike Frysinger <vapier@gentoo.org> 26412Date: Thu Mar 26 11:17:41 2009 -0400 26413 26414 karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos 26415 26416 The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr". 26417 26418 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26419 CC: Ben Warren <biggerbadderben@gmail.com> 26420 26421commit 76756e41cde0a617e781a604cc47dfaef63697cd 26422Author: Heiko Schocher <hs@denx.de> 26423Date: Thu Mar 26 07:33:59 2009 +0100 26424 26425 ppc: cleanup compiler errors/warnings 26426 26427 Current u-boot top of tree builds with warnings/errors for 26428 the following boards: 26429 26430 ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823 26431 RPXClassic debris PN62 26432 26433 following patch solves this. 26434 26435 Signed-off-by: Heiko Schocher <hs@denx.de> 26436 Acked-by: Mike Frysinger <vapier@gentoo.org> 26437 26438commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1 26439Author: Stefan Roese <sr@denx.de> 26440Date: Thu Mar 26 16:14:13 2009 +0100 26441 26442 ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code 26443 26444 This patch fixes a bug in the Sequoia TLB init code to reconfigure 26445 the correct TLB (boot space) after running from RAM. This bug was 26446 introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed 26447 [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the 26448 TLB in the Sequoia init.S file. 26449 26450 Signed-off-by: Stefan Roese <sr@denx.de> 26451 26452commit e2b66fe453a3679f807b37fc5923d89214302764 26453Author: Wolfgang Denk <wd@denx.de> 26454Date: Thu Mar 26 10:00:57 2009 +0100 26455 26456 ads5121: enable instruction cache 26457 26458 Enabling the instruction cache significantly accelerates U-Boot 26459 operations like CRC checking, image uncompression, etc. 26460 26461 Kudos to Andrea Scian for pointing out. 26462 26463 Signed-off-by: Wolfgang Denk <wd@denx.de> 26464 26465commit 33e88c557b29c84c52039ba05993fa70fe62afe3 26466Author: Jon Smirl <jonsmirl@gmail.com> 26467Date: Sun Mar 22 22:55:45 2009 -0400 26468 26469 mpc5200: suppress printf until console initialized 26470 26471 On boards which have the environment in eeprom, i2c_init() is called 26472 before the console and RAM are initialized. 26473 Suppress printfs until the console is initialized. 26474 26475 Signed-off-by: Jon Smirl <jonsmirl@gmail.com> 26476 Acked-by: Heiko Schocher <hs@denx.de> 26477 26478commit 0c6926736effbb9a19047949b7e9b3e8feab7c46 26479Author: Guennadi Liakhovetski <lg@denx.de> 26480Date: Wed Mar 25 11:36:50 2009 +0100 26481 26482 ARM: Add the imx31_phycore_eet board to MAKEALL 26483 26484 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 26485 26486commit 917cfc70c18b74fa8a80189bdce8395199fa8360 26487Author: Nishanth Menon <nm@ti.com> 26488Date: Wed Mar 25 22:13:56 2009 +0100 26489 26490 OMAP3:Beagle: Enable mtdparts 26491 26492 http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts 26493 provides a flexible way to create and maintain u-boot mtd 26494 partitions. This allows commands such as "nand erase fs" 26495 to work and the user no longer needs to decode the absolute 26496 nand offsets. This patch enables this function for beagleboard 26497 26498 Signed-off-by: Nishanth Menon <nm@ti.com> 26499 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26500 26501commit 4de1a5daab079ddc8ce1274144700203d692105c 26502Author: Mike Frysinger <vapier@gentoo.org> 26503Date: Sun Feb 22 16:26:35 2009 -0500 26504 26505 Blackfin: bf537-stamp: split post code out into dedicated post.c 26506 26507 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26508 26509commit 5e8f245743ed14c89e495ba2c027703db9813160 26510Author: Mike Frysinger <vapier@gentoo.org> 26511Date: Sat Oct 11 22:51:56 2008 -0400 26512 26513 Blackfin: add support for S25FL128 parts 26514 26515 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26516 26517commit bf1e028bf3eab1d702fa0627cade4460688f3913 26518Author: Mike Frysinger <vapier@gentoo.org> 26519Date: Sat Oct 11 22:51:23 2008 -0400 26520 26521 Blackfin: overhaul SPI flash handling to speed things up 26522 26523 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26524 26525commit efcc08cededa2168b96f12a22a5872340880d334 26526Author: Mike Frysinger <vapier@gentoo.org> 26527Date: Sat Oct 11 22:51:05 2008 -0400 26528 26529 Blackfin: add support for SST SPI flashes 26530 26531 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26532 26533commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf 26534Author: Mike Frysinger <vapier@gentoo.org> 26535Date: Sat Oct 11 22:50:10 2008 -0400 26536 26537 Blackfin: add hack for crappy m25p80 26538 26539 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26540 26541commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5 26542Author: Mike Frysinger <vapier@gentoo.org> 26543Date: Wed Jan 21 20:47:12 2009 -0500 26544 26545 Blackfin: bf537-stamp: increase monitor size 26546 26547 The new jffs2 code pushed the code size just over the limit, so increase 26548 the limit a bit more. 26549 26550 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26551 26552commit f82caaccc87e1f76448ff42a6b930e59797e4f65 26553Author: Mike Frysinger <vapier@gentoo.org> 26554Date: Mon Dec 8 16:16:11 2008 -0500 26555 26556 Blackfin: bf537-stamp: bump default SCLK up to 125MHz 26557 26558 Since all of the bf537-stamp and bf537-ezkit boards out there can handle it, 26559 increase the speed of SCLK to 125MHz rather than 100MHz. 26560 26561 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26562 26563commit 751e54c3b77311b720b794813cce20546f288ada 26564Author: Mike Frysinger <vapier@gentoo.org> 26565Date: Sat Oct 11 22:44:14 2008 -0400 26566 26567 Blackfin: bf537-stamp: rewrite MAC-in-flash handling 26568 26569 Use the common net eth functions to setup the env/global data with the MAC 26570 address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined. 26571 26572 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26573 26574commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad 26575Author: Mike Frysinger <vapier@gentoo.org> 26576Date: Tue Dec 9 13:47:39 2008 -0500 26577 26578 Blackfin: add clkin_hz= to default kernel command line for ADI boards 26579 26580 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26581 26582commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232 26583Author: Mike Frysinger <vapier@gentoo.org> 26584Date: Sun Oct 12 23:49:13 2008 -0400 26585 26586 Blackfin: bf533-stamp: bump up default clocks 26587 26588 Since the hardware can handle it, bump the default clocks from 80mhz SCLK 26589 and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK. 26590 26591 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26592 26593commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699 26594Author: Mike Frysinger <vapier@gentoo.org> 26595Date: Sat Oct 11 22:40:22 2008 -0400 26596 26597 Blackfin: bf533-stamp: rewrite startup LED notifications 26598 26599 Again, don't clobber pins that we aren't actually using, and use the common 26600 LED framework rather than our own hob-job-but-not-really-working. 26601 26602 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26603 26604commit cf6f469e2730fc8ab3523808b828be000d6eee77 26605Author: Mike Frysinger <vapier@gentoo.org> 26606Date: Sun Jun 1 09:09:48 2008 -0400 26607 26608 Blackfin: unify common ADI board settings 26609 26610 Rather than duplicate the same ADI settings in every ADI board, create a 26611 common ADI config header and have all ADI boards start using that. This 26612 will also make merging the ~10 boards I have to forward port a lot easier. 26613 26614 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26615 26616commit 196c74311f394c6eb08bd9ab07a35671299b9851 26617Author: Kyungmin Park <kmpark@infradead.org> 26618Date: Tue Mar 3 09:05:53 2009 +0900 26619 26620 Reduce OneNAND IPL common code 26621 26622 OneNAND IPL has common codes for RAM init, load data, and jump to 2nd 26623 bootloader, but it's common code used about 300~400 bytes. So board 26624 specific codes, such as lowlevel_init, can't has enough code. It make 26625 a difficult to implement OneNAND IPL. 26626 26627 his patch make this common code as small as possible. and give 26628 lowlevel_init can have more codes. 26629 26630 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 26631 Signed-off-by: Scott Wood <scottwood@freescale.com> 26632 26633commit 16f2f5a351004129e79e79816697a367fd9e5446 26634Author: Wolfgang Grandegger <wg@grandegger.com> 26635Date: Wed Feb 11 18:38:24 2009 +0100 26636 26637 Add multi-chip NAND support for the TQM8548 modules 26638 26639 This patches configures the NAND UPM-FSL driver with multi-chip 26640 support for the Micron MT29F8G08FAB NAND flash memory on the 26641 TQM8548 modules. 26642 26643 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 26644 Signed-off-by: Scott Wood <scottwood@freescale.com> 26645 26646commit 33846df28fa1f4cf96a96c18142d48d813caa892 26647Author: Wolfgang Grandegger <wg@grandegger.com> 26648Date: Wed Feb 11 18:38:23 2009 +0100 26649 26650 Add wait flags to support board/chip specific delays 26651 26652 The NAND flash on the TQM8548_BE modules requires a short delay after 26653 running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE 26654 requires a further short delay after writing out a buffer. Normally the 26655 R/B pin should be checked, but it's not connected on the TQM8548_BE. 26656 The corresponding Linux FSL UPM driver uses similar delay points at the 26657 same locations. To manage these extra delays in a more general way, I 26658 introduced the "wait_flags" field allowing the board-specific driver to 26659 specify various types of extra delay. 26660 26661 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 26662 Signed-off-by: Scott Wood <scottwood@freescale.com> 26663 26664commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313 26665Author: Wolfgang Grandegger <wg@grandegger.com> 26666Date: Wed Feb 11 18:38:22 2009 +0100 26667 26668 Add support for TQM-specific chip select logic to FSL-UPM 26669 26670 For the NAND chips on the TQM8548 modules, a special chip-select logic is 26671 used. It uses dedicated address lines to be set via UPM machine address 26672 register (mar). This patch adds such support to the FSL-UPM driver. 26673 26674 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 26675 Signed-off-by: Scott Wood <scottwood@freescale.com> 26676 26677commit e93c1c169d49eda7babad9c781f541e2e34f0ff0 26678Author: Wolfgang Grandegger <wg@grandegger.com> 26679Date: Wed Feb 11 18:38:21 2009 +0100 26680 26681 Add multi chip support to the FSL-UPM driver 26682 26683 This patch adds support for multi-chip NAND devices to the FSL-UPM 26684 driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now 26685 called with the argument "chip_nr" to allow testing the proper chip 26686 select line. The NAND support of the MPC8360ERDK is updated as well. 26687 No other boards are currently using the FSL UPM driver. 26688 26689 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 26690 Signed-off-by: Scott Wood <scottwood@freescale.com> 26691 26692commit 672ed2aee91b4856f6671fc72cd34168d8f1b624 26693Author: Wolfgang Grandegger <wg@grandegger.com> 26694Date: Wed Feb 11 18:38:20 2009 +0100 26695 26696 Enable multi chip support in the NAND layer 26697 26698 This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer. 26699 Multi-chips devices are displayed as shown: 26700 26701 Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB 26702 26703 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 26704 Signed-off-by: Scott Wood <scottwood@freescale.com> 26705 26706commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9 26707Author: Mike Frysinger <vapier@gentoo.org> 26708Date: Sat Oct 11 21:58:33 2008 -0400 26709 26710 Blackfin: put memory into self-refresh before/after programming clocks 26711 26712 When initializing the core clocks, stick external memory into self-refresh. 26713 This gains us a few cool things: 26714 - support suspend-to-RAM with Linux 26715 - reprogram clocks automatically when doing "go" on u-boot.bin in RAM 26716 - make sure settings are stable before flashing new version 26717 - finally fully unify initialize startup code path between LDR/non-LDR 26718 26719 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26720 26721commit d347d572ab1f2d47bf257c9f7ca2e602038a136b 26722Author: Mike Frysinger <vapier@gentoo.org> 26723Date: Sat Oct 11 21:56:08 2008 -0400 26724 26725 Blackfin: do not program voltage regulator on parts that do not have one 26726 26727 Some newer Blackfins (like the BF51x) do not have an on-chip voltage 26728 regulator, so do not attempt to program the memory as if it does. 26729 26730 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26731 26732commit 0d4f24b70f7a979f58174f3eb271874950b551b6 26733Author: Mike Frysinger <vapier@gentoo.org> 26734Date: Sun Jun 1 01:28:24 2008 -0400 26735 26736 Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers 26737 26738 If the board config does not specify an explicit EBIU_SDBCTL value, set it 26739 up with sane values based on other configuration options. 26740 26741 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26742 26743commit 3986e981f565c08f10c7e526af8cb518d741c349 26744Author: Mike Frysinger <vapier@gentoo.org> 26745Date: Sat Dec 6 18:06:58 2008 -0500 26746 26747 Blackfin: handle reboot anomaly 432 26748 26749 Workaround anomaly 432: 26750 The bfrom_SysControl() firmware function does not clear the SIC_IWR1 26751 register before executing the PLL programming sequence. Therefore, any 26752 interrupt enabled in the SIC_IWR1 register prior to the call to 26753 bfrom_SysControl() can prematurely terminate the idle sequence required 26754 for the PLL to relock properly. SIC_IWR0 is properly handled. 26755 26756 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26757 26758commit 7e1d212b6da492c6ea32c62af92e185284f41291 26759Author: Mike Frysinger <vapier@gentoo.org> 26760Date: Sat Oct 18 04:04:49 2008 -0400 26761 26762 Blackfin: kill off LDR jump block 26763 26764 The Boot ROM uses EVT1 as the entry point so set that rather than having 26765 to use a tiny jump block in the default EVT1 location. 26766 26767 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26768 26769commit a75fa148d60b1975403441e45565621bba50d2d9 26770Author: Mike Frysinger <vapier@gentoo.org> 26771Date: Tue Jan 6 10:00:48 2009 -0500 26772 26773 Blackfin: simplify symbol_lookup() a bit 26774 26775 No need to skip a byte as the symbol table handles this. 26776 26777 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26778 26779commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98 26780Author: Mike Frysinger <vapier@gentoo.org> 26781Date: Sat Feb 7 05:43:21 2009 -0500 26782 26783 Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits 26784 26785 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26786 26787commit 58130f8920151d9e8942bbdf3388f2defb47e415 26788Author: Mike Frysinger <vapier@gentoo.org> 26789Date: Sat Feb 7 05:41:17 2009 -0500 26790 26791 Blackfin: drop SPORT_TX read helper macros 26792 26793 The SPORT_TX registers cannot be read (the hardware will trigger an error), 26794 so drop the read helper macros. 26795 26796 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26797 26798commit 820b076c449688bcd4af6db5a33ae424d1a60d0e 26799Author: Mike Frysinger <vapier@gentoo.org> 26800Date: Sat Feb 7 05:25:35 2009 -0500 26801 26802 Blackfin: unify duplicate CPU port definitions 26803 26804 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26805 26806commit 744fd240d181b0b05b1436e1b655c9a62526c752 26807Author: Mike Frysinger <vapier@gentoo.org> 26808Date: Fri Feb 6 00:59:50 2009 -0500 26809 26810 Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX 26811 26812 With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines 26813 are no longer used/needed. 26814 26815 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26816 26817commit 45c48953e8a4038bd49c46813fcff5a207867ae4 26818Author: Mike Frysinger <vapier@gentoo.org> 26819Date: Mon Oct 6 04:01:26 2008 -0400 26820 26821 Blackfin: print out Flash: before checking it 26822 26823 If there is some problem in the flash init/checking code, it's nicer to see 26824 the message "Flash:" before crashing. This way the source of the problem 26825 is a bit more straightforward. 26826 26827 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26828 26829commit 1c7a79a04eb916f685f7275520b5eea6968a1559 26830Author: Mike Frysinger <vapier@gentoo.org> 26831Date: Thu Aug 7 15:33:09 2008 -0400 26832 26833 Blackfin: safely flush data caches when in writeback mode 26834 26835 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26836 26837commit c06f2b13022703611bc3e512bd34f9014a46f448 26838Author: Mike Frysinger <vapier@gentoo.org> 26839Date: Thu Aug 7 13:21:48 2008 -0400 26840 26841 Blackfin: update lockbox api according to latest documentation 26842 26843 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26844 26845commit 2decc2a8d17a5397cb5956e46c8466c736e305a2 26846Author: Mike Frysinger <vapier@gentoo.org> 26847Date: Sat Oct 11 21:49:06 2008 -0400 26848 26849 Blackfin: mark bfin_reset static 26850 26851 The function is only used locally, so mark it static. 26852 26853 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26854 26855commit 974473caa732f63312687ef2bd2d22dad8e99b9a 26856Author: Sonic Zhang <Sonic.Zhang@analog.com> 26857Date: Fri Mar 20 19:28:20 2009 -0400 26858 26859 Blackfin: spi: there is no PORTJ_FER MMR on BF537 26860 26861 Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality), 26862 then there is no PORTJ_FER register for us to worry about. 26863 26864 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com> 26865 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26866 26867commit e82b762f293debc53c5afa90f37264f6b07520f9 26868Author: Mike Frysinger <vapier@gentoo.org> 26869Date: Tue Mar 17 13:58:23 2009 -0400 26870 26871 Blackfin: fix jtag console tstc 26872 26873 The jtag tstc operation was checking the hardware to see if data is 26874 available from it (which is fine for the jtag getc operation), but the 26875 higher layers need to know whether any data is available. Since we have 26876 to read up to 4 bytes at a time from the hardware, the higher layers need 26877 to know they can consume the cached bytes as well. 26878 26879 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26880 26881commit bc683f58b1f1d8d20546fe019483967a51a49df1 26882Author: Mike Frysinger <vapier@gentoo.org> 26883Date: Sun Feb 22 16:23:41 2009 -0500 26884 26885 Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...) 26886 26887 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26888 26889commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297 26890Author: Mike Frysinger <vapier@gentoo.org> 26891Date: Sun Feb 22 16:02:27 2009 -0500 26892 26893 Blackfin: unify net-related init code 26894 26895 Unify all of the net-related init code in the common Blackfin board init 26896 code to clean up the ifdef mess a bit. 26897 26898 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26899 26900commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657 26901Author: Mike Frysinger <vapier@gentoo.org> 26902Date: Wed Feb 18 12:51:48 2009 -0500 26903 26904 Blackfin: fix SWRST/SYSCR register sizes 26905 26906 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26907 26908commit a9d6777d39154978b9ef9c682b2627a3480b194c 26909Author: Mike Frysinger <vapier@gentoo.org> 26910Date: Wed Feb 18 12:51:31 2009 -0500 26911 26912 Blackfin: update anomaly lists 26913 26914 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 26915 26916commit 4d7c32dad2e787f890ebcd51bfb723a126913c90 26917Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26918Date: Thu Mar 19 18:31:38 2009 +0100 26919 26920 avr32: fix cacheflush.h location introducted by d8f2aa3298610b 26921 26922 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26923 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 26924 26925commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48 26926Author: Eric Schumann <E.Schumann@phytec.de> 26927Date: Sat Mar 21 09:59:34 2009 -0400 26928 26929 Make flash protection work, when the environment is in EEPROM 26930 26931 On the pcm030 the environment is located in the onboard EEPROM. But we want 26932 to handle flash sector protection in a safe manner. So we must read the 26933 unlock environment variable from EEPROM instead from flash. 26934 26935 This patch is required as long the evironment is saved into the EEPROM. 26936 26937 Stefan: Additional change as suggested by Wolfgang, use bigger char array 26938 (instead of 4). 26939 26940 Signed-off-by: Eric Schumann <E.Schumann@phytec.de> 26941 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 26942 Acked-by: Wolfgang Denk <wd@denx.de> 26943 Signed-off-by: Stefan Roese <sr@denx.de> 26944 26945commit de3ce8c59f48f99779d7d7379a5432ded12ec06c 26946Author: Jon Smirl <jonsmirl@gmail.com> 26947Date: Sat Mar 21 11:17:56 2009 -0400 26948 26949 Add define for mpc5200 CDM_CLK_ENA 26950 26951 Signed-off-by: Jon Smirl <jonsmirl@gmail.com> 26952 26953commit df486b1fa3f750b153eac7daa0b3bf1f594e5098 26954Author: Nicolas Ferre <nicolas.ferre@atmel.com> 26955Date: Sun Mar 22 14:48:16 2009 +0100 26956 26957 at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC. 26958 26959 AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed. 26960 26961 The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board. 26962 It is essentially the same, with a few minor differences. 26963 26964 Here is the chip page on Atmel website: 26965 http://www.atmel.com/dyn/products/product_card.asp?part_id=4337 26966 26967 Signed-off-by: Justin Waters <justin.waters@timesys.com> 26968 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> 26969 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26970 26971commit 118d168035cc93f586da4812c89cb153eb9f4243 26972Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26973Date: Sun Mar 22 14:28:14 2009 +0100 26974 26975 cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr' 26976 26977 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26978 26979commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03 26980Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26981Date: Sun Mar 22 14:28:13 2009 +0100 26982 26983 cmc_pu2: fix misc_init_r prototype 26984 26985 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26986 26987commit 53158aea995221706b42c7bad9f717b31ae20414 26988Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26989Date: Sun Jan 11 03:32:01 2009 +0100 26990 26991 at91sam9xeek: fix soc name 26992 26993 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26994 26995commit 74c076d6c33d6d42ab065541a38383587879e7b7 26996Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 26997Date: Sun Mar 22 10:22:34 2009 +0100 26998 26999 at91sam9/at91cap: move nand drivers to drivers/mtd/nand 27000
27001 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27002 27003commit 163966087d62680547f188a93c61d01c8155254e 27004Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27005Date: Sat Mar 21 21:08:01 2009 +0100 27006 27007 atmel/at91/boards: compile dataflash partition only when dataflash is 27008 27009 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27010 27011commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56 27012Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27013Date: Sat Mar 21 21:08:00 2009 +0100 27014 27015 at91sam9/at91cap: move common macb initialisation to cpu 27016 27017 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27018 27019commit f3f91f886bc8927fd692ac411b7423a87ffec532 27020Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27021Date: Sat Mar 21 21:08:00 2009 +0100 27022 27023 at91sam9/at91cap: move common usb host initialisation to cpu 27024 27025 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27026 27027commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe 27028Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27029Date: Sat Mar 21 21:08:00 2009 +0100 27030 27031 at91sam9/at91cap: move common led management to cpu 27032 27033 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27034 27035commit 7ebafb7ec1a0285af8380623c009576f92583b98 27036Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27037Date: Sat Mar 21 21:07:59 2009 +0100 27038 27039 at91sam9/at91cap: move common spi initialisation to cpu 27040 27041 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27042 27043commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e 27044Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27045Date: Sat Mar 21 21:07:59 2009 +0100 27046 27047 at91sam9/at91cap: move common serial initialisation to cpu 27048 27049 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 27050 27051commit e60beb13cf0135dc71c541021487b5ccc4d269cb 27052Author: Wolfgang Denk <wd@denx.de> 27053Date: Sat Mar 21 22:04:41 2009 +0100 27054 27055 Prepare 2009.03 27056 27057 Update CHANGELOG 27058 27059 Signed-off-by: Wolfgang Denk <wd@denx.de> 27060 27061commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5 27062Author: Vivek Kutal <vivek.kutal@azingo.com> 27063Date: Mon Feb 23 21:35:11 2009 +0530 27064 27065 Replaced endpoint numbers with appropriate macros in usbtty.c. 27066 27067 Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com> 27068 Signed-off-by: Remy Bohmer <linux@bohmer.net> 27069 27070commit faac4fd852e39cb1d7a740801b060e41aeacef1f 27071Author: Michael Lawnick <ml.lawnick@gmx.de> 27072Date: Thu Mar 19 10:06:41 2009 +0100 27073 27074 UBIFS: Missing offset relocation for compressor 'none' 27075 27076 On systems where U-Boot is linked to another address than it really lays 27077 (e.g. backup image), calls via function pointers must be fixed with a 27078 '+= gd->reloc_off'. 27079 This was not done for none_compr in ubifs_compressors_init() what leads 27080 to system crash on ubifsmount command. 27081 27082 Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de> 27083 Acked-by: Stefan Roese <sr@denx.de> 27084 27085commit ce6d0c8de031f345bde745f3b855082adf1c4e45 27086Author: Stefan Roese <sr@denx.de> 27087Date: Thu Mar 19 15:35:50 2009 +0100 27088 27089 UBIFS: Add UBIFS commands 27090 27091 This patchset adds these UBIFS related commands: 27092 27093 - ubifsmount 27094 Mount an UBIFS volume 27095 27096 - ubifsls 27097 List a directory of the mounted UBIFS volume 27098 27099 - ubifsload 27100 Load a file from the mounted UBIFS volume to memory 27101 27102 Signed-off-by: Stefan Roese <sr@denx.de> 27103 27104commit 9eefe2a2b37a838558e3d213a9f5519503d0c180 27105Author: Stefan Roese <sr@denx.de> 27106Date: Thu Mar 19 15:35:05 2009 +0100 27107 27108 UBIFS: Implement read-only UBIFS support in U-Boot 27109 27110 The U-Boot UBIFS implementation is largely a direct copy from the current 27111 Linux version (2.6.29-rc6). As already done in the UBI version we have an 27112 "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock() 27113 ...). This makes it possible to use the original Linux code with very 27114 little changes. And by this we can better update to later Linux versions. 27115 27116 I removed some of the Linux features that are not used in the U-Boot 27117 version (e.g. garbage-collection, write support). 27118 27119 Signed-off-by: Stefan Roese <sr@denx.de> 27120 CC: Artem Bityutskiy <dedekind@infradead.org> 27121 CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com> 27122 27123commit b1b4e89a0f3b75854c39a62cae41bad56d210adf 27124Author: Stefan Roese <sr@denx.de> 27125Date: Thu Mar 19 15:34:56 2009 +0100 27126 27127 Add LZO decompressor support 27128 27129 This patch adds LZO decompression support to U-Boot. It is needed for 27130 the upcoming UBIFS support, since UBIFS uses LZO as default compressor/ 27131 decompressor. Since we only support read-only in UBIFS, only the 27132 decompressor is needed. 27133 27134 All this is copied with minor changes from the current Linux kernel 27135 version (2.6.28-rc8). 27136 27137 This patch only implements this LZO decompressor support for PPC. 27138 Other platforms using UBIFS will have to add the required 27139 "include/asm/unaligned.h" as well. It should be fairly easy to copy this 27140 from the Linux source tree as I have done it for PPC in this patch. 27141 27142 Signed-off-by: Stefan Roese <sr@denx.de> 27143 27144commit 68d7d65100e84df00bca971c114092731b441090 27145Author: Stefan Roese <sr@denx.de> 27146Date: Thu Mar 19 13:30:36 2009 +0100 27147 27148 Separate mtdparts command from jffs2 27149 27150 Currently the mtdparts commands are included in the jffs2 command support. 27151 This doesn't make sense anymore since other commands (e.g. UBI) use this 27152 infrastructure as well now. This patch separates the mtdparts commands from 27153 the jffs2 commands making it possible to only select mtdparts when no JFFS2 27154 support is needed. 27155 27156 Signed-off-by: Stefan Roese <sr@denx.de> 27157 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 27158 27159commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398 27160Author: Stefan Roese <sr@denx.de> 27161Date: Wed Feb 25 12:11:15 2009 +0100 27162 27163 powerpc: Only use eth_getenv_enetaddr() if networking is enabled 27164 27165 Signed-off-by: Stefan Roese <sr@denx.de> 27166 27167commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5 27168Author: Grzegorz Bernacki <gjb@semihalf.com> 27169Date: Tue Mar 17 10:06:40 2009 +0100 27170 27171 Add support for the digsy MTC board. 27172 27173 This is the InterControl custom device based on the MPC5200B chip. 27174 27175 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 27176 27177commit ff7dc067369e30066744f096995aef7d97574d15 27178Author: Stefan Roese <sr@denx.de> 27179Date: Mon Feb 23 16:52:36 2009 +0100 27180 27181 powerpc: Fix compilation warning in board.c 27182 27183 Fix this warning: 27184 27185 board.c: In function 'board_init_r': 27186 board.c:653: warning: unused variable 'i' 27187 board.c:651: warning: unused variable 'e' 27188 27189 Signed-off-by: Stefan Roese <sr@denx.de> 27190 27191commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c 27192Author: Stefan Roese <sr@denx.de> 27193Date: Mon Feb 23 16:42:51 2009 +0100 27194 27195 ppc4xx: Don't write the MAC address into the internal SoC registers 27196 27197 Remove this code. It's not needed. The 4xx EMAC driver stores the MAC 27198 addresses into the SoC registers instead. 27199 27200 Signed-off-by: Stefan Roese <sr@denx.de> 27201 27202commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f 27203Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 27204Date: Fri Feb 20 10:19:19 2009 +0100 27205 27206 ppc4xx: Use correct io accessors for esd 405/440 boards 27207 27208 This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32 27209 macros. Also volatile pointer references are replaced by the 27210 new accessors. 27211 27212 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 27213 Signed-off-by: Stefan Roese <sr@denx.de> 27214 27215commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988 27216Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 27217Date: Fri Feb 20 10:19:18 2009 +0100 27218 27219 ppc4xx: Use correct io accessors for esd 405 boards 27220 27221 This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32 27222 macros. Also volatile pointer references are replaced by the 27223 new accessors. 27224 27225 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 27226 Signed-off-by: Stefan Roese <sr@denx.de> 27227 27228commit a59205d1519375d027f97a545ad642ab20fce6f8 27229Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 27230Date: Fri Feb 20 10:19:17 2009 +0100 27231 27232 ppc4xx: Cleanup linker scripts of esd 4xx boards 27233 27234 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 27235 Signed-off-by: Stefan Roese <sr@denx.de> 27236 27237commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f 27238Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 27239Date: Fri Feb 20 10:19:16 2009 +0100 27240 27241 ppc4xx: Update TEXT_BASE for DASA_SIM boards 27242 27243 Fix building DASA_SIM boards by increasing U-Boot's size in flash. 27244 27245 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 27246 Signed-off-by: Stefan Roese <sr@denx.de> 27247 27248commit 09db8f4de6805f1dde510c167f20e56a5405d29e 27249Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 27250Date: Fri Feb 20 10:19:15 2009 +0100 27251 27252 ppc4xx: DU405 maintenance fix 27253 27254 -strip unused features 27255 -fix resetting phy 27256 27257 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu> 27258 Signed-off-by: Stefan Roese <sr@denx.de> 27259 27260commit 75511b47ac2647be48218dbb93af05b21f404f67 27261Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 27262Date: Fri Feb 20 10:19:14 2009 +0100 27263 27264 ppc4xx: Abort autoboot only by space key on CPCI405 boards 27265 27266 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 27267 Signed-off-by: Stefan Roese <sr@denx.de> 27268 27269commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c 27270Author: Graeme Russ <graeme.russ@gmail.com> 27271Date: Tue Feb 24 21:14:56 2009 +1100 27272 27273 Add basic relocation to i386 port 27274 27275 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 27276 27277commit 8c63d47651f77d9fb887cad433370b866eb0a193 27278Author: Graeme Russ <graeme.russ@gmail.com> 27279Date: Tue Feb 24 21:14:45 2009 +1100 27280 27281 Implement SC520 timers 27282 27283 Signed-off-by: Graeme Russ <graeme.russ at gmail.com> 27284 27285commit 6d7f610b09f813b1239eedcbfe921cfd439aea25 27286Author: Graeme Russ <graeme.russ@gmail.com> 27287Date: Tue Feb 24 21:14:32 2009 +1100 27288 27289 Factor out SC520 sub-features 27290 27291 Moved sub-features of the SC520 code which is currently selectively compiled 27292 using #ifdef out of sc520.c into individual files selectively compiled via 27293 the makefile 27294 27295 Signed-off-by: Graeme Russ <graeme.russ at gmail.com> 27296 27297commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df 27298Author: Graeme Russ <graeme.russ@gmail.com> 27299Date: Tue Feb 24 21:13:40 2009 +1100 27300 27301 Rewrite i386 interrupt handling 27302 27303 Rewrite interrupt handling functionality for the i386 port. Separated 27304 functionality into separate CPU and Architecture components. 27305 27306 It appears as if the i386 interrupt handler functionality was intended 27307 to allow multiple handlers to be installed for a given interrupt. 27308 Unfortunately, this functionality was not fully implemented and also 27309 had the problem that irq_free_handler() does not allow the passing 27310 of the handler function pointer and therefore could never be used to 27311 free specific handlers that had been installed for a given IRQ. 27312 27313 There were also various issues with array bounds not being fully 27314 tested. 27315 27316 I had two objectives in mind for the new implementation: 27317 27318 1) Keep the implementation as similar as possible to existing 27319 implementations. To that end, I have used the leon2/3 27320 implementations as the reference 27321 27322 2) Seperate CPU and Architecture specific elements. All specific i386 27323 interrupt functionality is now in cpu/i386/ with the high level 27324 API and architecture specific code in lib_i386. Functionality 27325 specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has 27326 been further split out into an individual file to allow for the 27327 implementation of the PIC architecture of the SC520 CPU (supports 27328 more IRQs) 27329 27330 Signed-off-by: Graeme Russ <graeme.russ at gmail.com> 27331 27332commit ece444b42b71eb5bce34a24ec584573b3c8c4a98 27333Author: Graeme Russ <graeme.russ@gmail.com> 27334Date: Tue Feb 24 21:12:35 2009 +1100 27335 27336 Move ali512x.h 27337 27338 Moved ali512x.h from include/asm-i386/ic/ to /include 27339 27340 Signed-off-by: Graeme Russ <graeme.russ at gmail.com> 27341 27342commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704 27343Author: Graeme Russ <graeme.russ@gmail.com> 27344Date: Tue Feb 24 21:12:20 2009 +1100 27345 27346 Rename SC520 Configuration Options 27347 27348 Options are now all uniformly CONFIG_SYS_SC520_<option> 27349 27350 Signed-off-by: Graeme Russ <graeme.russ at gmail.com> 27351 27352commit f62fb99941c625605aa16a0097b396a5c16d2c88 27353Author: Trent Piepho <xyzzy@speakeasy.org> 27354Date: Wed Feb 18 15:22:05 2009 -0800 27355 27356 Fix all linker script to handle all rodata sections 27357 27358 A recent gcc added a new unaligned rodata section called '.rodata.str1.1', 27359 which needs to be added the the linker script. Instead of just adding this 27360 one section, we use a wildcard ".rodata*" to get all rodata linker section 27361 gcc has now and might add in the future. 27362 27363 However, '*(.rodata*)' by itself will result in sub-optimal section 27364 ordering. The sections will be sorted by object file, which causes extra 27365 padding between the unaligned rodata.str.1.1 of one object file and the 27366 aligned rodata of the next object file. This is easy to fix by using the 27367 SORT_BY_ALIGNMENT command. 27368 27369 This patch has not be tested one most of the boards modified. Some boards 27370 have a linker script that looks something like this: 27371 27372 *(.text) 27373 . = ALIGN(16); 27374 *(.rodata) 27375 *(.rodata.str1.4) 27376 *(.eh_frame) 27377 27378 I change this to: 27379 27380 *(.text) 27381 . = ALIGN(16); 27382 *(.eh_frame) 27383 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) 27384 27385 This means the start of rodata will no longer be 16 bytes aligned. 27386 However, the boundary between text and rodata/eh_frame is still aligned to 27387 16 bytes, which is what I think the real purpose of the ALIGN call is. 27388 27389 Signed-off-by: Trent Piepho <xyzzy@speakeasy.org> 27390 27391commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032 27392Author: Mike Frysinger <vapier@gentoo.org> 27393Date: Wed Feb 11 18:26:08 2009 -0500 27394 27395 remove bi_enet*addr from global data for all arches 27396 27397 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27398 CC: Ben Warren <biggerbadderben@gmail.com> 27399 CC: Daniel Hellstrom <daniel@gaisler.com> 27400 CC: Michal Simek <monstr@seznam.cz> 27401 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 27402 CC: Scott McNutt <smcnutt@psyent.com> 27403 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 27404 27405commit eb85aa594c1b57a1e3be9689b65171a137a36432 27406Author: Mike Frysinger <vapier@gentoo.org> 27407Date: Wed Feb 11 20:07:19 2009 -0500 27408 27409 ppc: mark global bi_enet*addr as legacy 27410 27411 The environment is the canonical storage location of the mac address, so 27412 we're killing off the global data location and moving everything to 27413 querying the env directly. 27414 27415 In the ppc case, these things are part of the legacy ABI, so keep them 27416 around but mark them as legacy so no new code will touch them. 27417 27418 Also stop calling load_sernum_ethaddr() since all boards now implement 27419 this as a stub. 27420 27421 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27422 CC: Ben Warren <biggerbadderben@gmail.com> 27423 27424commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df 27425Author: Mike Frysinger <vapier@gentoo.org> 27426Date: Wed Feb 11 20:09:52 2009 -0500 27427 27428 boards: get mac address from env and move load_sernum_ethaddr() to board init 27429 27430 The environment is the canonical storage location of the mac address, so 27431 we're killing off the global data location and moving everything to 27432 querying the env directly. 27433 27434 Rather than have common ppc code call a board-specific function like 27435 load_sernum_ethaddr(), have each board call it in its own board-specific 27436 misc_init_r() function. 27437 27438 The boards that get converted here are: 27439 - kup4k/kup4x 27440 - pcs440ep 27441 - tqm8xx 27442 27443 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27444 CC: Ben Warren <biggerbadderben@gmail.com> 27445 CC: Stefan Roese <sr@denx.de> 27446 27447commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2 27448Author: Mike Frysinger <vapier@gentoo.org> 27449Date: Wed Feb 11 19:55:01 2009 -0500 27450 27451 cmc_pu2: get mac address from environment 27452 27453 The environment is the canonical storage location of the mac address, so 27454 we're killing off the global data location and moving everything to 27455 querying the env directly. 27456 27457 Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to 27458 handle this board specially in common ARM code. 27459 27460 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27461 CC: Ben Warren <biggerbadderben@gmail.com> 27462 27463commit d8d21e699d7fcfb6ab11635110266dd09b7edc62 27464Author: Mike Frysinger <vapier@gentoo.org> 27465Date: Mon Feb 16 18:03:14 2009 -0500 27466 27467 boards: move board_get_enetaddr() into board-specific init 27468 27469 The environment is the canonical storage location of the mac address, so 27470 we're killing off the global data location and moving everything to 27471 querying the env directly. 27472 27473 Rather than have the common ppc code have board-specific hooks, move the 27474 board_get_enetaddr() function into the board-specific init functions. 27475 27476 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27477 CC: Ben Warren <biggerbadderben@gmail.com> 27478 27479commit f11e6ff5b1859d9213f0d501b3309e065f487543 27480Author: Mike Frysinger <vapier@gentoo.org> 27481Date: Wed Feb 11 19:39:55 2009 -0500 27482 27483 arm: get mac address from environment 27484 27485 The environment is the canonical storage location of the mac address, so 27486 we're killing off the global data location and moving everything to 27487 querying the env directly. 27488 27489 Some warts are remaining and should be killed off (by moving the func to 27490 the appropriate board init code): 27491 - davinci_eth_set_mac_addr 27492 - cs8900_get_enetaddr 27493 - smc_set_mac_addr 27494 27495 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27496 CC: Ben Warren <biggerbadderben@gmail.com> 27497 27498commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59 27499Author: Mike Frysinger <vapier@gentoo.org> 27500Date: Wed Feb 11 19:36:20 2009 -0500 27501 27502 nx823: get mac address from environment 27503 27504 The environment is the canonical storage location of the mac address, so 27505 we're killing off the global data location and moving everything to 27506 querying the env directly. 27507 27508 For the nx823, the serial number is moved out of load_sernum_ethaddr() and 27509 into misc_init_r() as is the env setup. This lets us kill off the former 27510 function in the process. 27511 27512 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27513 CC: Ben Warren <biggerbadderben@gmail.com> 27514 27515commit 19b5b533ccd522abeb501d510750693c35e20456 27516Author: Mike Frysinger <vapier@gentoo.org> 27517Date: Wed Feb 11 18:27:18 2009 -0500 27518 27519 lib_*/board.c: do not initialize bi_enet*addr in global data 27520 27521 Since everyone is using the environment for mac address storage, there is 27522 no point in seeding the global data. 27523 27524 The arches that are converted here: 27525 i386 27526 m68k 27527 microblaze 27528 mips 27529 nios 27530 nios2 27531 sh 27532 sparc 27533 27534 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27535 CC: Ben Warren <biggerbadderben@gmail.com> 27536 CC: Daniel Hellstrom <daniel@gaisler.com> 27537 CC: Michal Simek <monstr@seznam.cz> 27538 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 27539 CC: Scott McNutt <smcnutt@psyent.com> 27540 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 27541 27542commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0 27543Author: Mike Frysinger <vapier@gentoo.org> 27544Date: Wed Feb 11 19:19:54 2009 -0500 27545 27546 npe: get mac address from environment 27547 27548 The environment is the canonical storage location of the mac address, so 27549 we're killing off the global data location and moving everything to 27550 querying the env directly. 27551 27552 The resulting code can also be simplified even further. 27553 27554 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27555 CC: Stefan Roese <sr@denx.de> 27556 CC: Ben Warren <biggerbadderben@gmail.com> 27557 27558commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81 27559Author: Mike Frysinger <vapier@gentoo.org> 27560Date: Wed Feb 11 19:18:41 2009 -0500 27561 27562 cpu/: get mac address from environment 27563 27564 The environment is the canonical storage location of the mac address, so 27565 we're killing off the global data location and moving everything to 27566 querying the env directly. 27567 27568 The cpus that get converted here: 27569 at91rm9200 27570 mpc512x 27571 mpc5xxx 27572 mpc8260 27573 mpc8xx 27574 ppc4xx 27575 27576 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27577 CC: Ben Warren <biggerbadderben@gmail.com> 27578 CC: John Rigby <jrigby@freescale.com> 27579 CC: Stefan Roese <sr@denx.de> 27580 27581commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b 27582Author: Mike Frysinger <vapier@gentoo.org> 27583Date: Wed Feb 11 19:09:54 2009 -0500 27584 27585 lan91c96/smc91111/smc911x: get mac address from environment 27586 27587 The environment is the canonical storage location of the mac address, so 27588 we're killing off the global data location and moving everything to 27589 querying the env directly. 27590 27591 Also, do not bother checking the EEPROM if the env is setup. This 27592 simplifies the code greatly. 27593 27594 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27595 Signed-off-by: Wolfgang Dnek <wd@denx.de> 27596 CC: Ben Warren <biggerbadderben@gmail.com> 27597 CC: Rolf Offermanns <rof@sysgo.de> 27598 CC: Erik Stahlman <erik@vt.edu> 27599 CC: Daris A Nevil <dnevil@snmc.com> 27600 CC: Sascha Hauer <s.hauer@pengutronix.de> 27601 27602commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81 27603Author: Mike Frysinger <vapier@gentoo.org> 27604Date: Wed Feb 11 19:14:09 2009 -0500 27605 27606 sh_eth: get mac address from environment 27607 27608 The environment is the canonical storage location of the mac address, so 27609 we're killing off the global data location and moving everything to 27610 querying the env directly. 27611 27612 The sh_eth driver can also be simplified a bit by using enetaddr member of 27613 the eth_device structure. 27614 27615 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27616 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 27617 CC: Carlos Munoz <carlos@kenati.com> 27618 CC: Ben Warren <biggerbadderben@gmail.com> 27619 27620commit 0a5238cea90665c230297a8fd77bb0b3b61ca177 27621Author: Mike Frysinger <vapier@gentoo.org> 27622Date: Wed Feb 11 19:06:09 2009 -0500 27623 27624 cs8900: get mac address from environment 27625 27626 The environment is the canonical storage location of the mac address, so 27627 we're killing off the global data location and moving everything to 27628 querying the env directly. 27629 27630 The cs8900 driver also changes slightly in that the hardware is not 27631 consulted if the mac address in the env is sane. 27632 27633 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27634 CC: Marius Groeger <mgroeger@sysgo.de> 27635 CC: Ben Warren <biggerbadderben@gmail.com> 27636 27637commit c4b8762f11d337e6a9d90c227b2871d65d372469 27638Author: Mike Frysinger <vapier@gentoo.org> 27639Date: Wed Feb 11 19:04:25 2009 -0500 27640 27641 bcm570x: get mac address from environment 27642 27643 The environment is the canonical storage location of the mac address, so 27644 we're killing off the global data location and moving everything to 27645 querying the env directly. 27646 27647 Since the address is in the PLM_DEVICE_BLOCK structure already, there is 27648 no need to pass the NodeAddress as a second parameter. So drop the second 27649 argument to the LM_SetMacAddress() function (and update the tigon3 driver 27650 accordingly). 27651 27652 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27653 CC: Ben Warren <biggerbadderben@gmail.com> 27654 27655commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f 27656Author: Mike Frysinger <vapier@gentoo.org> 27657Date: Wed Feb 11 19:01:26 2009 -0500 27658 27659 drivers/net/: get mac address from environment 27660 27661 The environment is the canonical storage location of the mac address, so 27662 we're killing off the global data location and moving everything to 27663 querying the env directly. 27664 27665 The drivers that get converted here: 27666 3c589 27667 4xx_enet 27668 dc2114x 27669 dm9000x 27670 enc28j60 27671 fsl_mcdmafec 27672 ks8695eth 27673 mcffec 27674 rtl8019 27675 rtl8169 27676 s3c4510b_eth 27677 xilinx_emac 27678 xilinx_emaclite 27679 27680 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27681 CC: Ben Warren <biggerbadderben@gmail.com> 27682 CC: Rolf Offermanns <rof@sysgo.de> 27683 CC: Stefan Roese <sr@denx.de> 27684 CC: Sascha Hauer <saschahauer@web.de> 27685 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 27686 CC: Greg Ungerer <greg.ungerer@opengear.com> 27687 CC: Xue Ligong <lgxue@hotmail.com> 27688 CC: Masami Komiya <mkomiya@sonare.it> 27689 CC: Curt Brune <curt@cucy.com> 27690 CC: Michal SIMEK <monstr@monstr.eu> 27691 27692commit b6b4625d175019e387e5b0f65a17322a78f6bb90 27693Author: Mike Frysinger <vapier@gentoo.org> 27694Date: Wed Feb 11 18:38:38 2009 -0500 27695 27696 boards: get mac address from environment 27697 27698 The boards that get converted here to use the environment for the mac 27699 address rather than global data: 27700 debris 27701 mgcoge 27702 mgsuvd 27703 muas3001 27704 netstal 27705 pn62 27706 sixnet 27707 vcma9 27708 xilinx (the ones that use xilinx_enet) 27709 27710 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27711 CC: Ben Warren <biggerbadderben@gmail.com> 27712 CC: Sangmoon Kim <dogoil@etinsys.com> 27713 CC: Heiko Schocher <hs@denx.de> 27714 CC: David Mueller <d.mueller@elsoft.ch> 27715 CC: Niklaus Giger <niklaus.giger@netstal.com> 27716 CC: Wolfgang Grandegger <wg@denx.de> 27717 CC: Dave Ellis <DGE@sixnetio.com> 27718 CC: Ricardo Ribalda <ricardo.ribalda@uam.es> 27719 27720commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b 27721Author: Mike Frysinger <vapier@gentoo.org> 27722Date: Wed Feb 11 18:36:45 2009 -0500 27723 27724 AmigaOneG3SE/enet: get mac address from environment 27725 27726 Always use the MAC address that is stored in the environment first before 27727 falling back to the ROM. This also cuts out any comparison steps: if the 27728 mac in the env is sane, the ROM is never consulted. 27729 27730 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27731 CC: Thomas Frieden <ThomasF@hyperion-entertainment.com> 27732 CC: Ben Warren <biggerbadderben@gmail.com> 27733 27734commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5 27735Author: Mike Frysinger <vapier@gentoo.org> 27736Date: Wed Feb 11 18:52:38 2009 -0500 27737 27738 nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr() 27739 27740 Since the ethernet layer handles updating of device addresses itself from 27741 the environment, there is no point in calling eth_set_enetaddr(). 27742 27743 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27744 CC: Ben Warren <biggerbadderben@gmail.com> 27745 27746commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb 27747Author: Mike Frysinger <vapier@gentoo.org> 27748Date: Wed Feb 11 18:54:07 2009 -0500 27749 27750 lynxkdi: get mac address from environment 27751 27752 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27753 CC: Ben Warren <biggerbadderben@gmail.com> 27754 27755commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246 27756Author: Mike Frysinger <vapier@gentoo.org> 27757Date: Wed Feb 11 18:51:43 2009 -0500 27758 27759 bootvx: get mac address from environment 27760 27761 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27762 CC: Niklaus Giger <niklaus.giger@member.fsf.org> 27763 CC: Ben Warren <biggerbadderben@gmail.com> 27764 27765commit de2dff6ff89f98c6062f4d224fd434a3ede035d1 27766Author: Mike Frysinger <vapier@gentoo.org> 27767Date: Wed Feb 11 18:50:10 2009 -0500 27768 27769 bdinfo: get mac address from environment 27770 27771 Add a new print_eth() function to automate the eth*addr env var acquisition 27772 and display. Affects all arches. 27773 27774 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27775 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 27776 CC: Scott McNutt <smcnutt@psyent.com> 27777 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 27778 CC: Michal Simek <monstr@seznam.cz> 27779 CC: Daniel Hellstrom <daniel@gaisler.com> 27780 CC: Ben Warren <biggerbadderben@gmail.com> 27781 27782commit 95823ca0773356860e622ee3304a4b7cafcbf19a 27783Author: Mike Frysinger <vapier@gentoo.org> 27784Date: Wed Feb 11 18:23:48 2009 -0500 27785 27786 net: get mac address from environment and use eth util funcs 27787 27788 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27789 CC: Ben Warren <biggerbadderben@gmail.com> 27790 27791commit 500b6c51e4c41f4562cb48344af98deb7e342731 27792Author: Mike Frysinger <vapier@gentoo.org> 27793Date: Mon Oct 13 15:06:25 2008 -0400 27794 27795 Blackfin: bfin_mac: force boards to setup the MAC themselves 27796 27797 Since the on-chip MAC does not have an eeprom or similar interface, force 27798 all Blackfin boards that use this driver to setup the board data with a 27799 proper MAC. 27800 27801 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27802 CC: Ben Warren <biggerbadderben@gmail.com> 27803 27804commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730 27805Author: Mike Frysinger <vapier@gentoo.org> 27806Date: Wed Feb 11 14:12:34 2009 -0500 27807 27808 doc/README.enetaddr: document proper MAC usage 27809 27810 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27811 CC: Ben Warren <biggerbadderben@gmail.com> 27812 27813commit 3f6e6993e92fd0658da1746d1c84644612ee520b 27814Author: Mike Frysinger <vapier@gentoo.org> 27815Date: Thu Jan 29 19:43:44 2009 -0500 27816 27817 net: new utility functions for working with enetaddr's 27818 27819 Declare new utility functions for converting between the environment 27820 variables (eth*addr) and the binary MAC address representation. This way 27821 we can unify all the random places that already do this kind of thing. 27822 27823 The functions in question: 27824 eth_parse_enetaddr - "..." -> {...} 27825 eth_getenv_enetaddr - env -> {...} 27826 eth_setenv_enetaddr - {...} -> env 27827 27828 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27829 CC: Ben Warren <biggerbadderben@gmail.com> 27830 27831commit b6446b67758ea1e41223f0782924bb73fd0a89d0 27832Author: Mike Frysinger <vapier@gentoo.org> 27833Date: Tue Feb 17 00:00:53 2009 -0500 27834 27835 convert print_IPaddr() to %pI4 27836 27837 Now that our printf functions support the %pI4 modifier like the kernel, 27838 let's drop the inflexible print_IPaddr() function and covert over to the 27839 %pI4 modifier. 27840 27841 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27842 CC: Ben Warren <biggerbadderben@gmail.com> 27843 27844commit 6c6166f52983dac775e3852f9d0f49d033f27108 27845Author: Mike Frysinger <vapier@gentoo.org> 27846Date: Mon Feb 16 23:21:36 2009 -0500 27847 27848 vsprintf: pull updates from Linux kernel 27849 27850 This brings in support for the %p modifier which allows us to easily print 27851 out things like ip addresses, mac addresses, and pointers. 27852 27853 It also converts the rarely used 'q' length modifier to the common 'L' 27854 modifier when dealing with quad types. 27855 27856 While this new code is a bit larger (~1k .text), most of it should be made 27857 up by converting the existing ip/mac address code to use format modifiers. 27858 27859 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27860 27861commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6 27862Author: Jon Smirl <jonsmirl@gmail.com> 27863Date: Thu Mar 19 23:04:18 2009 -0400 27864 27865 .gitignore for generated files in api_examples directory 27866 27867 Add .gitignore for generated files in api_examples directory 27868 27869 Signed-off-by: Jon Smirl <jonsmirl@gmail.com> 27870 Signed-off-by: Wolfgang Denk <wd@denx.de> 27871 27872commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231 27873Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 27874Date: Wed Mar 18 12:27:04 2009 +0900 27875 27876 net: sh_eth: Remove sh_eth_reset() from halt function 27877 27878 sh_eth_reset is function to reset Ether IP. 27879 The MAC address is stored in IP, but it is initialized by this function. 27880 OS (e.g. Linux Kernel) can not use this device when initialized. 27881 This revises this problem. 27882 27883 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 27884 27885commit f8853d105da7d69bc92a5b4578f9b85234e558ec 27886Author: Anatolij Gustschin <agust@denx.de> 27887Date: Fri Mar 20 12:45:50 2009 +0100 27888 27889 ppc4xx: Fix bug in PCI outbound map configuration for canyonlands 27890 27891 PCI outbound address map configuration doesn't match the 27892 PCI memory address range covered by appropriate TLB entry 27893 configuration for canyonlands causing machine check 27894 exceptions while accessing PCI memory regions. This patch 27895 provides a fix for this issue. 27896 27897 Kazuaki Ichinohe observed and reported this issue while 27898 testing display output with PCI ATI video card on canyonlands. 27899 27900 Signed-off-by: Anatolij Gustschin <agust@denx.de> 27901 Signed-off-by: Stefan Roese <sr@denx.de> 27902 27903commit 7a88601a34132548c3c591ea87ab3468b51121b0 27904Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 27905Date: Fri Mar 6 10:09:37 2009 -0500 27906 27907 CFI: geometry reversal for STMicro M29W320DT 27908 27909 Follow up to the flash_fixup_stm to fix geometry reversal 27910 on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region. 27911 27912 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 27913 Signed-off-by: Stefan Roese <sr@denx.de> 27914 27915commit 069f4364d807d7fdea3de7385ad2f8d83c587aec 27916Author: Mike Frysinger <vapier@gentoo.org> 27917Date: Wed Feb 25 17:29:40 2009 -0500 27918 27919 smc911x_eeprom: update register API 27920 27921 The smc911x driver changed the naming convention for its register funcs, 27922 so update the eeprom code accordingly. 27923 27924 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 27925 CC: Ben Warren <biggerbadderben@gmail.com> 27926 27927commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4 27928Author: Grzegorz Bernacki <gjb@semihalf.com> 27929Date: Tue Mar 17 10:06:39 2009 +0100 27930 27931 mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c 27932 27933 Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select. 27934 To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new 27935 define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by 27936 Total5200 and will be used by digsy MTC and other boards with 27937 ATA CS on I2C pins. 27938 27939 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 27940 27941commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654 27942Author: Heiko Schocher <hs@denx.de> 27943Date: Thu Mar 12 07:37:34 2009 +0100 27944 27945 8xx: add support for new keymile kmsupx4 board. 27946 27947 This patch adds support for the kmsupx4 board from Keymile, 27948 based on a Freescale MPC852T CPU 27949 27950 - serial console on SMC1 27951 - 32 MB SDRAM 27952 - 32 MB NOR Flash 27953 - Ethernet over SCC3 27954 - I2C Bitbang 27955 27956 Signed-off-by: Heiko Schocher <hs@denx.de> 27957 27958commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911 27959Author: Heiko Schocher <hs@denx.de> 27960Date: Thu Mar 12 07:37:28 2009 +0100 27961 27962 8xx, mgsuvd: rename board to a more generic name 27963 27964 renaming the "mgsuvd" board port into "km8xx", because 27965 there come more similar boards from keymile. 27966 Compiling the mgsuvd board with "make mgsuvd_config" 27967 remains. 27968 27969 Signed-off-by: Heiko Schocher <hs@denx.de> 27970 27971commit 18b2f35bde1672e074a3d5048383cb56fda745cb 27972Author: Heiko Schocher <hs@denx.de> 27973Date: Thu Mar 12 07:37:23 2009 +0100 27974 27975 8xx, mgsuvd: Coding Style cleanup config file 27976 27977 Signed-off-by: Heiko Schocher <hs@denx.de> 27978 27979commit 364123db6730d32330f818b65360d2cd27396667 27980Author: Heiko Schocher <hs@denx.de> 27981Date: Thu Mar 12 07:37:18 2009 +0100 27982 27983 powerpc: common updates for keymile boards 27984 27985 - added to keymile-common.h: 27986 - bootcount support 27987 - COMMAND HISTORY 27988 - CONFIG_AUTO_COMPLETE 27989 - CONFIG_SYS_FLASH_PROTECTION 27990 - JFFS2 support 27991 - CONFIG_VERSION_VARIABLE 27992 - extracted common I2C settings for all boards 27993 - common default environment settings summarized 27994 27995 Signed-off-by: Heiko Schocher <hs@denx.de> 27996 27997commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8 27998Author: Heiko Schocher <hs@denx.de> 27999Date: Thu Mar 12 07:37:15 2009 +0100 28000
28001 8xx, icache: enabling ICache not before running from RAM 28002 28003 with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache 28004 is not enabled before code runs from RAM. 28005 28006 Signed-off-by: Heiko Schocher <hs@denx.de> 28007 28008commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3 28009Author: Heiko Schocher <hs@denx.de> 28010Date: Thu Mar 12 07:37:11 2009 +0100 28011 28012 82xx, mgcoge: fix environment sector size 28013 28014 Size of one environment sector is 0x20000. 28015 28016 Signed-off-by: Heiko Schocher <hs@denx.de> 28017 28018commit 27057d416c7cc9eb1860953da8836352c07f13e9 28019Author: Ladislav Michl <ladis@linux-mips.org> 28020Date: Mon Mar 16 23:27:31 2009 +0100 28021 28022 NetStar: config reindentation 28023 28024 Fix indentation broken by symbol renames. "Sort" driver related definitons. 28025 28026 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 28027 28028commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a 28029Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28030Date: Tue Mar 17 11:21:43 2009 +0000 28031 28032 ColdFire: Fix incorrect definition 28033 28034 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28035 28036commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8 28037Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28038Date: Mon Mar 2 19:16:45 2009 +0000 28039 28040 ColdFire: Fix M5329EVB and M5373EVB nand issue 28041 28042 The Nand flash was unable to read and write properly 28043 due to Nand Chip Select (nCE) setup was in reverse 28044 order. Also, increase the Nand time out value to 60. 28045 28046 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28047 28048commit 42b68af1062f75bb4a91cf47e329a7e8100cd815 28049Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28050Date: Tue Jan 27 15:19:35 2009 +0000 28051 28052 ColdFire: PLATFORM_CPPFLAGS updates for new compiler 28053 28054 Update PLATFORM_CPPFLAGS to accept 4.3.x version of 28055 ColdFire compiler. 28056 28057 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28058 28059commit d6e4baf49987fc6f75e8574c0c27301a828b3132 28060Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28061Date: Tue Jan 27 12:57:47 2009 +0000 28062 28063 ColdFire: Provide gzip image size V2 & V3 platforms 28064 28065 Default gzip bootm size is 8MB. Some platforms require 28066 more than 8MB 28067 28068 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28069 28070commit c3a9e6374210679a81f611c1bcf968988bc20e41 28071Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28072Date: Wed Feb 18 11:49:31 2009 +0000 28073 28074 ColdFire: Fix M54451 serial boot dram setup 28075 28076 The serial boot dram extended/standard mode register was not 28077 setup and was using default DRAM setup causing the U-boot was 28078 unstable to boot up in serial mode. 28079 28080 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 28081 28082commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d 28083Author: arun c <arun.edarath@gmail.com> 28084Date: Thu Dec 4 15:57:15 2008 +0530 28085 28086 Coldfire: XL Bus minor fixes 28087 28088 According to coldfire manual data timeout > address time out 28089 also use correct macro to program XARB_CFG 28090 28091 Signed-off-by: Arun C <arunedarath@mistralsolutions.com> 28092 28093commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5 28094Author: Scott Wood <scottwood@freescale.com> 28095Date: Tue Mar 17 12:06:04 2009 -0500 28096 28097 NAND: Have nboot accept .e and .i as legacy no-ops. 28098 28099 This was intended to happen before, but a trivial bug prevented it. 28100 28101 Signed-off-by: Scott Wood <scottwood@freescale.com> 28102 28103commit 0987505540918b2464b73069af3a5b766dbd3ceb 28104Author: Ladislav Michl <ladis@linux-mips.org> 28105Date: Fri Mar 13 14:38:19 2009 +0100 28106 28107 NAND: Make nboot skip bad blocks 28108 28109 nboot command currently does not skip bad blocks and gives read error when 28110 loading image stored over bad block. With patch applied, nboot works as 28111 expected: 28112 28113 Device 0 bad blocks: 28114 00780000 28115 014a0000 28116 02000000 28117 02cc0000 28118 04aa0000 28119 28120 Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000 28121 Image Name: Linux-2.6.22-omap1 28122 Created: 2008-11-20 23:44:32 UTC 28123 Image Type: ARM Linux Kernel Image (uncompressed) 28124 Data Size: 1052520 Bytes = 1 MB 28125 Load Address: 10008000 28126 Entry Point: 10008000 28127 Skipping bad block 0x02cc0000 28128 Automatic boot of image at addr 0x10400000 ... 28129 ... 28130 28131 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 28132 Signed-off-by: Scott Wood <scottwood@freescale.com> 28133 28134commit 0b2f38fe3c4555dd2b81c69880403c13ad723153 28135Author: Stefan Roese <sr@denx.de> 28136Date: Thu Mar 12 07:27:25 2009 +0100 28137 28138 ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration 28139 28140 This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with 28141 the DDR2 configuration to only use one CS (rank). As this code is most 28142 likely copied from the original Sequoia version, this error was copied 28143 as well. 28144 28145 This patch also removes some dead code. 28146 28147 Signed-off-by: Stefan Roese <sr@denx.de> 28148 28149commit 9199b9cc8f56aca26504b48cf702176208f46e54 28150Author: Stefan Roese <sr@denx.de> 28151Date: Thu Mar 12 07:24:40 2009 +0100 28152 28153 ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration 28154 28155 This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with 28156 the DDR2 configuration to only use one CS (rank). As this code is most 28157 likely copied from the original Sequoia version, this error was copied 28158 as well. 28159 28160 Signed-off-by: Stefan Roese <sr@denx.de> 28161 28162commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145 28163Author: Mikhail Zolotaryov <lebon@lebon.org.ua> 28164Date: Wed Mar 11 10:54:46 2009 +0200 28165 28166 Fix AMCC Sequoia board DDR memory configuration 28167 28168 Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D) 28169 specifies that BankSel#1 is not connected, while bootloader memory 28170 configuration is (board/amcc/sequoia/sdram.c): 28171 mtsdram(DDR0_10, 0x00000300); 28172 i.e. both Chip Selects used - not correct. 28173 28174 If we change to correct value here: 28175 mtsdram(DDR0_10, 0x00000100); 28176 memory is accessible OK also. 28177 28178 Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua> 28179 Signed-off-by: Stefan Roese <sr@denx.de> 28180 28181commit b3dd629e78870ba2dc9f8032978721c0fa02a856 28182Author: Wolfgang Denk <wd@denx.de> 28183Date: Sun Mar 15 22:40:09 2009 +0100 28184 28185 Prepare 2009.03-rc2 28186 28187 Update CHANEGLOG, fix minor coding style issue. 28188 28189 Signed-off-by: Wolfgang Denk <wd@denx.de> 28190 28191commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31 28192Author: Jerry Van Baren <gvb.uboot@gmail.com> 28193Date: Fri Mar 13 11:40:10 2009 -0400 28194 28195 mpc83xx: Add bank configuration to FSL spd_sdram.c 28196 28197 The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8 28198 bank SDRAMs. 28199 28200 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 28201 Acked-by: Dave Liu <daveliu@freescale.com> 28202 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28203 28204commit b581626c1e2474a3dadf69d4f0e0582eccbc4235 28205Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl> 28206Date: Fri Mar 13 08:58:14 2009 +0100 28207 28208 mpc83xx: correctly set encryption and I2C bus 0 clock 28209 28210 This patch makes sure the correct mask is applied when setting 28211 the encryption and I2C bus 0 clock in SCCR. 28212 Failing to do so may lead to ENCCM being 0 in which case I2C bus 0 28213 won't function. 28214 28215 Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl> 28216 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28217 28218commit e6a6a704151c2d7e4a7b485545b48a6020ccca17 28219Author: Dirk Behme <dirk.behme@googlemail.com> 28220Date: Thu Mar 12 19:30:50 2009 +0100 28221 28222 OMAP3: Add support for OMAP3 die ID 28223 28224 Read and store OMAP3 die ID in U-Boot environment. 28225 28226 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 28227 28228commit f949bd8d089ec3059c460ac829c0d919e1d7af0e 28229Author: Jon Smirl <jonsmirl@gmail.com> 28230Date: Wed Mar 11 15:08:56 2009 -0400 28231 28232 MPC5200 FEC MII speed register 28233 28234 Set a non-zero speed in the MII register so that MII commands will work. 28235 28236 Signed-off-by: Jon Smirl <jonsmirl@gmail.com> 28237 28238commit 94a353611b93ac4cb4434a5f7e98aa0902da919e 28239Author: Yusuke.Goda <goda.yusuke@renesas.com> 28240Date: Fri Mar 13 16:08:18 2009 +0900 28241 28242 sh: ap325rxa: Change the wait cycle in the area 5 28243 28244 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com> 28245 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 28246 28247commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac 28248Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28249Date: Wed Feb 25 16:04:26 2009 +0900 28250 28251 sh: Fix cannot work rtl8139 on r2dplus 28252 28253 The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory 28254 registration. 28255 28256 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28257 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 28258 28259commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f 28260Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 28261Date: Fri Feb 27 18:35:41 2009 +0900 28262 28263 sh: Add netdev header fixing of warning/build 28264 28265 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 28266 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 28267 28268commit ada9318252f51c2626e9837c623f9812b0308dea 28269Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28270Date: Tue Mar 3 15:11:17 2009 +0900 28271 28272 sh: Add support 32-Bit Extended Address Mode to sh7785lcr 28273 28274 We can built 'make sh7785lcr_32bit_config'. And add new command "pmb" 28275 for this mode. This command changes PMB for using 512MB system memory. 28276 28277 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28278 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 28279 28280commit 06b18163b57e6b0349b0c299222d50e7b1e41e50 28281Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28282Date: Wed Feb 25 14:26:42 2009 +0900 28283 28284 sh: Add some register value configurable to PCI of SH7780 28285 28286 Some register value was hardcoded for System memory size 128MB and 28287 memory offset 0x08000000. This patch fixed the problem. 28288 28289 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28290 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 28291 28292commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c 28293Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28294Date: Wed Feb 25 14:26:52 2009 +0900 28295 28296 sh: Add system memory registration to PCI for SH4 28297 28298 It is necessary for some pci device driver. 28299 28300 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28301 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 28302 28303commit b3061b40db691245a7bb9a55354b4edacbf3902d 28304Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28305Date: Wed Feb 25 14:26:55 2009 +0900 28306 28307 sh: Add value for PCI system memory registration of sh7785lcr 28308 28309 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28310 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 28311 28312commit 6d84ae3956a6cd7aebd86f661130752594e60124 28313Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28314Date: Tue Mar 3 15:11:08 2009 +0900 28315 28316 sh: Add macros for SH-4A 32-Bit Address Extended Mode 28317 28318 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 28319 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 28320 28321commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1 28322Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 28323Date: Tue Feb 3 13:35:05 2009 +0900 28324 28325 sh: use write{8,16,32} in ms7720se lowlevel_init 28326 28327 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 28328 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 28329 28330commit 0452352df118bc9dd684a056aaaa5fb4aed1178a 28331Author: Paul Gortmaker <paul.gortmaker@windriver.com> 28332Date: Mon Mar 9 18:07:53 2009 -0500 28333 28334 tsec: report when there is no vendor specific PHY support 28335 28336 Commit af1c2b84 added a generic phy support, with an ID of zero 28337 and a 32 bit mask; meaning that it will match on any PHY ID. 28338 28339 The problem is that there is a test that checked if a matching 28340 PHY was found, and if not, it printed the non-matching ID. 28341 But since there will always be a match (on the generic PHY, 28342 worst case), this test will never trip. 28343 28344 In the case of a misconfigured PHY address, or of a PHY that 28345 isn't explicitly supported outside of the generic support, 28346 you will never see the ID of 0xffffffff, or the ID of the 28347 real (but unsupported) chip. It will silently fall through 28348 onto the generic support. 28349 28350 This change makes that test useful again, and ensures that 28351 the selection of generic PHY support doesn't happen without 28352 some sort of notice. It also makes it explicitly clear that 28353 the generic PHY must be last in the PHY table. 28354 28355 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 28356 Acked-by: Andy Fleming <afleming@freescale.com> 28357 28358commit c279dfc10186ceba78d3862036f158750e86599a 28359Author: Wolfgang Denk <wd@denx.de> 28360Date: Mon Mar 9 10:53:05 2009 +0100 28361 28362 SIMPC8313 board: fix out of tree building. 28363 28364 Fix typo in makefile which broke out of tree builds. 28365 28366 Also use expolicit "rm" instead of "ln -sf" which is known to be 28367 unreliable. 28368 28369 Signed-off-by: Wolfgang Denk <wd@denx.de> 28370 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28371 28372commit 49b5aff491bd574935ecaf8545152066a25eff3d 28373Author: ksi@koi8.net <ksi@koi8.net> 28374Date: Mon Feb 23 10:53:13 2009 -0800 28375 28376 Add eTSEC 1/2 IO override control (corrected) 28377 28378 This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.) 28379 28380 Signed-off-by: Sergey Kubushyn <ksi@koi8.net> 28381 28382commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc 28383Author: Andy Fleming <afleming@freescale.com> 28384Date: Fri Mar 6 19:05:52 2009 -0600 28385 28386 fsl: Remove unnecessary debug printfs 28387 28388 These were left in accidentally, and are not really useful unless the 28389 code is as broken as it was when it was being developed. 28390 28391 Signed-off-by: Andy Fleming <afleming@freescale.com> 28392 28393commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0 28394Author: Ed Swarthout <Ed.Swarthout@freescale.com> 28395Date: Tue Feb 24 02:37:59 2009 -0600 28396 28397 Fix mpc85xx ddr-gen3 ddr_sdram_cfg. 28398 28399 Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other 28400 sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set. 28401 28402 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 28403 28404commit a922fdb87af25c25c032424908dcf60fbf3250ea 28405Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 28406Date: Tue Feb 24 06:13:10 2009 +0100 28407 28408 PXA: timer use do_div and simplify it 28409 28410 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 28411 28412commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3 28413Author: Wolfgang Denk <wd@denx.de> 28414Date: Mon Mar 9 10:51:39 2009 +0100 28415 28416 SIMPC8313 board: fix out of tree building. 28417 28418 Fix typo in makefile which broke out of tree builds. 28419 28420 Also use expolicit "rm" instead of "ln -sf" which is known to be 28421 unreliable. 28422 28423 Signed-off-by: Wolfgang Denk <wd@denx.de> 28424 28425commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a 28426Author: Heiko Schocher <hs@denx.de> 28427Date: Tue Feb 24 11:30:51 2009 +0100 28428 28429 8360, kmeter1: added bootcount feature. 28430 28431 add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU. 28432 28433 The bootcounter uses 8 bytes from the muram, 28434 because no other memory was found on this 28435 CPU for the bootcount feature. So we must 28436 correct the muram size in DTS before booting 28437 Linux. 28438 28439 This feature is actual only implemented for 28440 MPC8360, because not all 83xx CPU have qe, 28441 and therefore no muram, which this feature 28442 uses. 28443 28444 Signed-off-by: Heiko Schocher <hs@denx.de> 28445 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28446 28447commit 1e7ed2565031e01abc18c713030a0a9829c07684 28448Author: Heiko Schocher <hs@denx.de> 28449Date: Tue Feb 24 11:30:48 2009 +0100 28450 28451 83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1 28452 28453 old code implemented the QE_ENET10 errata only for Silicon 28454 Revision 2.0. New code reads now the Silicon Revision 28455 register and sets dependend on the Silicon Revision the 28456 values as advised in the QE_ENET10 errata. 28457 28458 Signed-off-by: Heiko Schocher <hs@denx.de> 28459 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28460 28461commit 605f78e34a3f0103693b891f2573edd352e7d495 28462Author: Heiko Schocher <hs@denx.de> 28463Date: Tue Feb 24 11:30:44 2009 +0100 28464 28465 83xx, kmeter1: updates for 2009.03 28466 28467 - HRCW update 28468 HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL 28469 HRCWH_LALE_EARLY added 28470 - DDR-SDRAM settings modified. This solves sporadically 28471 problems with this memory. 28472 - CS1 now 128 MB window size 28473 - CS3 now 512 MB window size 28474 - PRAM activated 28475 - MTDPARTS_DEFAULT defined 28476 - CONFIG_HOSTNAME added 28477 - MONITOR_LEN now 384 KB 28478 28479 Signed-off-by: Heiko Schocher <hs@denx.de> 28480 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28481 28482commit 118cbe3c35c898f8d020b29d6dc180307cacf147 28483Author: Heiko Schocher <hs@denx.de> 28484Date: Tue Feb 24 11:30:40 2009 +0100 28485 28486 83xx, kmeter1: autodetect size of DDR II RAM 28487 28488 it is possible that some board variants have different DDR II 28489 RAM sizes. So we autodetect the size of the assembled RAM. 28490 28491 Signed-off-by: Heiko Schocher <hs@denx.de> 28492 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28493 28494commit c1bce4fff750d734b1fa7467eb08f93902c97ca6 28495Author: Heiko Schocher <hs@denx.de> 28496Date: Tue Feb 24 11:30:37 2009 +0100 28497 28498 83xx, i2c: add mux support for fsl_i2c 28499 28500 This patch adds I2C mux support for the fsl_i2c driver. This 28501 allows you to add "new" i2c busses, which are reached over 28502 i2c muxes. For more infos, please look in the README and 28503 search for CONFIG_I2C_MUX. 28504 28505 Signed-off-by: Heiko Schocher <hs@denx.de> 28506 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28507 28508commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803 28509Author: Heiko Schocher <hs@denx.de> 28510Date: Tue Feb 24 11:30:34 2009 +0100 28511 28512 83xx, kmeter1: add I2C, dtt, eeprom support 28513 28514 This patch adds I2C support for the Keymile kmeter1 board. 28515 It uses the First I2C Controller from the CPU, for 28516 accessing 4 temperature sensors, an eeprom with IVM data 28517 and the booteeprom over a pca9547 mux. 28518 28519 Signed-off-by: Heiko Schocher <hs@denx.de> 28520 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28521 28522commit db1d72afd77287bc8577210f3f71ab249dcf146f 28523Author: Heiko Schocher <hs@denx.de> 28524Date: Tue Feb 24 11:30:30 2009 +0100 28525 28526 i2c, dtt: move dtt_init () to board_init_r () 28527 28528 In case where a board not uses CONFIG_POST, it is not 28529 necessary to init the DTTs when running from flash. 28530 28531 Signed-off-by: Heiko Schocher <hs@denx.de> 28532 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28533 28534commit 5b0055547f0246908b79cc300170d87380b69e18 28535Author: Dave Liu <daveliu@freescale.com> 28536Date: Wed Feb 25 12:31:32 2009 +0800 28537 28538 83xx: Fix some bugs in spd sdram code 28539 28540 1. RD_TO_PRE missed to add the AL, and need min 2 clocks for 28541 tRTP according to DDR2 JEDEC spec. 28542 2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec. 28543 3. add the support of DDR2-533,667,800 DIMMs 28544 4. cpo 28545 5. make the AL to min to gain better performance. 28546 28547 The Micron MT9HTF6472CHY-667D1 DIMMs test passed on 28548 MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate. 28549 28550 items 1, 2 and 5: 28551 Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 28552 28553 Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 28554 Signed-off-by: Dave Liu <daveliu@freescale.com> 28555 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28556 28557commit b7be63abec45858c044f0fbd6aeef524c4663f9b 28558Author: Valeriy Glushkov <gvv@lstec.com> 28559Date: Wed Feb 4 18:27:49 2009 +0200 28560 28561 MPC8349ITX: several config issues fixed 28562 28563 The previous version rebooted forever with DDR bigger than 256MB. 28564 Access the DS1339 RTC chip is on I2C1 bus. 28565 Allow DHCP. 28566 28567 Signed-off-by: Valeriy Glushkov <gvv@lstec.com> 28568 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28569 28570commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af 28571Author: Anton Vorontsov <avorontsov@ru.mvista.com> 28572Date: Thu Feb 19 18:20:39 2009 +0300 28573 28574 mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal 28575 28576 The SerDes initialization should be finished before negating the reset 28577 signal according to the reference manual. This isn't an issue on real 28578 hardware, but we'd better stick to the specifications anyway. 28579 28580 Suggested-by: Liu Dave <DaveLiu@freescale.com> 28581 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 28582 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28583 28584commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f 28585Author: Heiko Schocher <hs@denx.de> 28586Date: Wed Feb 25 12:28:32 2009 +0100 28587 28588 i2c, dtt: move dtt_init () to board_init_r () 28589 28590 it is not necessary to init the DTTs so early, 28591 so move this init to board_init_r (). 28592 28593 Signed-off-by: Heiko Schocher <hs@denx.de> 28594 28595commit 00cc5595a7caac8066b408774383a956c2e26797 28596Author: Anatolij Gustschin <agust@denx.de> 28597Date: Wed Feb 25 20:28:13 2009 +0100 28598 28599 lcd: Fix compilation warning in common/lcd.c 28600 28601 Fix following warning while compilation for mcc200 board: 28602 28603 lcd.c: In function 'lcd_display_bitmap': 28604 lcd.c:625: warning: unused variable 'cmap' 28605 28606 Signed-off-by: Anatolij Gustschin <agust@denx.de> 28607 28608commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674 28609Author: Graeme Russ <graeme.russ@gmail.com> 28610Date: Tue Feb 24 21:11:24 2009 +1100 28611 28612 Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb) 28613 28614 Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb 28615 28616 Signed-off-by: Graeme Russ <graeme.russ at gmail.com> 28617 28618commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215 28619Author: Mike Frysinger <vapier@gentoo.org> 28620Date: Mon Feb 23 10:29:47 2009 -0500 28621 28622 smc911x: split out useful defines/functions into local header 28623 28624 The smc911x driver has a lot of useful defines/functions which can be used 28625 by pieces of code (such as example eeprom programmers). Rather than 28626 forcing each place to duplicate these defines/functions, split them out 28627 of the smdc911x driver into a local header. 28628 28629 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 28630 Acked-by: Ben Warren <biggerbadderben@gmail.com> 28631 CC: Sascha Hauer <s.hauer@pengutronix.de> 28632 CC: Guennadi Liakhovetski <lg@denx.de> 28633 CC: Magnus Lilja <lilja.magnus@gmail.com> 28634 CC: Ben Warren <biggerbadderben@gmail.com> 28635 28636commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1 28637Author: Guennadi Liakhovetski <lg@denx.de> 28638Date: Tue Feb 24 10:44:02 2009 +0100 28639 28640 ARM: add an "eet" variant of the imx31_phycore board 28641 28642 The "eet" variant of the imx31_phycore board has an OLED display, using a 28643 s6e63d6 display controller on the first SPI interface, using GPIO57 as a 28644 chip-select for it. With this configuration you can display 256 colour BMP 28645 images in 16-bit RGB (RGB565) LCD mode. 28646 28647 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 28648 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 28649 28650commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f 28651Author: Guennadi Liakhovetski <lg@denx.de> 28652Date: Fri Feb 6 10:37:57 2009 +0100 28653 28654 video: add an i.MX31 framebuffer driver 28655 28656 Add a driver for the Synchronous Display Controller and the Display 28657 Interface on i.MX31, using IPU for DMA channel setup. So far only 28658 displaying of bitmaps is supported, no text output. 28659 28660 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 28661 Acked-by: Anatolij Gustschin <agust@denx.de> 28662 28663commit b245e65ee3c4cce3ccf008a21f4528239655876c 28664Author: Guennadi Liakhovetski <lg@denx.de> 28665Date: Fri Feb 6 10:37:53 2009 +0100 28666 28667 LCD: support 8bpp BMPs on 16bpp displays 28668 28669 This patch also simplifies some ifdefs in lcd.c, introduces a generic 28670 vidinfo_t, which new drivers are encouraged to use and old drivers to switch 28671 over to. 28672 28673 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 28674 Acked-by: Anatolij Gustschin <agust@denx.de> 28675 28676commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1 28677Author: Mark Jackson <mpfj@mimc.co.uk> 28678Date: Fri Feb 6 10:37:49 2009 +0100 28679 28680 Add 16bpp BMP support 28681 28682 This patch adds 16bpp BMP support to the common lcd code. 28683 28684 Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code. 28685 28686 At the moment it's only been tested on the MIMC200 AVR32 board, but extending 28687 this to other platforms should be a simple task !! 28688 28689 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 28690 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 28691 Acked-by: Anatolij Gustschin <agust@denx.de> 28692 28693commit 689551c5ff1b394b88412f3df22144e79468d3a9 28694Author: Guennadi Liakhovetski <lg@denx.de> 28695Date: Fri Feb 6 10:37:41 2009 +0100 28696 28697 A driver for the S6E63D6 SPI display controller from Samsung 28698 28699 This is a driver for the S6E63D6 SPI OLED display controller from Samsung. 28700 It only provides access to controller's registers so the client can freely 28701 configure it. 28702 28703 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 28704 Acked-by: Anatolij Gustschin <agust@denx.de> 28705 28706commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d 28707Author: Guennadi Liakhovetski <lg@denx.de> 28708Date: Fri Feb 13 09:26:40 2009 +0100 28709 28710 i.MX31: support GPIO as a chip-select in the mxc_spi driver 28711 28712 Some SPI devices have special requirements on chip-select handling. 28713 With this patch we can use a GPIO as a chip-select and strictly follow 28714 the SPI_XFER_BEGIN and SPI_XFER_END flags. 28715 28716 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 28717 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 28718 28719commit b30de3cccf8867566cd314e7c7033904afa5dc9d 28720Author: Guennadi Liakhovetski <lg@denx.de> 28721Date: Sat Feb 7 01:18:07 2009 +0100 28722 28723 i.MX31: add a simple gpio driver 28724 28725 This is a minimal driver, so far only managing output. It will 28726 be used by the mxc_spi.c driver. 28727 28728 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 28729 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 28730 28731commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f 28732Author: Guennadi Liakhovetski <lg@denx.de> 28733Date: Sat Feb 7 00:09:12 2009 +0100 28734 28735 i.MX31: fix SPI driver for shorter than 32 bit 28736 28737 Fix setting the SPI Control register, 8 and 16-bit transfers 28738 and a wrong pointer in the free routine in the mxc_spi driver. 28739 28740 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 28741 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 28742 28743commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496 28744Author: Anton Vorontsov <avorontsov@ru.mvista.com> 28745Date: Thu Feb 19 18:20:52 2009 +0300 28746 28747 mpc83xx: MPC837XERDB: Add PCIe support 28748 28749 On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe 28750 slots. Let's support them. 28751 28752 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 28753 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28754 28755commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b 28756Author: Anton Vorontsov <avorontsov@ru.mvista.com> 28757Date: Thu Feb 19 18:20:50 2009 +0300 28758 28759 mpc83xx: PCI: Fix hard-coded first_busno value 28760 28761 We should use pci_last_busno() in pci_init_bus(), otherwise we'll 28762 erroneously re-use PCI0's first_busno for PCI1 hoses. 28763 28764 NOTE: The patch is untested. All MPC83xx FSL boards I have have 28765 PCI1 in miniPCI form, for which I don't have any cards handy. 28766 28767 But looking in cpu/mpc85xx/pci.c: 28768 ... 28769 #ifdef CONFIG_MPC85XX_PCI2 28770 hose = &pci_hose[1]; 28771 28772 hose->first_busno = pci_hose[0].last_busno + 1; 28773 28774 And considering that we do the same for MPC83xx PCI-E support, 28775 I think this patch is correct. 28776 28777 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 28778 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28779 28780commit a5878d427128c1a9226045ebe05fbadaa02eb9dd 28781Author: Anton Vorontsov <avorontsov@ru.mvista.com> 28782Date: Thu Feb 19 18:20:46 2009 +0300 28783 28784 mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers 28785 28786 This patch fixes copy-paste issue: pci_hose[0]'s first and last 28787 busnos were used to fixup pci1's nodes. 28788 28789 We don't see this bug triggering only because Linux reenumerate 28790 buses anyway. 28791 28792 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 28793 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28794 28795commit b24a99f6666ac278ec9f9c1334518af828833d19 28796Author: Anton Vorontsov <avorontsov@ru.mvista.com> 28797Date: Thu Feb 19 18:20:44 2009 +0300 28798 28799 mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values 28800 28801 This patch fixes an issue in config space read accessors: we should 28802 fill-in the value even if we fail (e.g. skipping devices), otherwise 28803 CONFIG_PCI_SCAN_SHOW reports bogus values during boot up. 28804 28805 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 28806 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28807 28808commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022 28809Author: Anton Vorontsov <avorontsov@ru.mvista.com> 28810Date: Thu Feb 19 18:20:42 2009 +0300 28811 28812 mpc83xx: PCIe: Don't start bus enumeration at 0 28813 28814 Currently we assign first_busno = 0 for the first PCIe hose, but this 28815 scheme won't work if we have ordinary PCI hose already registered (its 28816 first_busno value is 0 too). 28817 28818 The old code worked fine only because we have PCI disabled on 28819 MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3 28820 "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards"). 28821 But on MPC837XERDB boards we have PCI and PCIe, so the bug actually 28822 triggers. 28823 28824 So, to fix the issue, we should use pci_last_busno() + 1 for the 28825 first_busno (i.e. last available busno). 28826 28827 Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com> 28828 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 28829 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28830 28831commit cc2a8c7751ddbae3116660064f446888538b93e9 28832Author: Anton Vorontsov <avorontsov@ru.mvista.com> 28833Date: Thu Feb 19 18:20:41 2009 +0300 28834 28835 PCI: Add pci_last_busno() helper 28836 28837 This is just a handy routine that reports last PCI busno: we walk 28838 down all the hoses and return last hose's last_busno. 28839 28840 Will be used by PCI/PCIe initialization code. 28841 28842 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 28843 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 28844 28845commit bd76729bcbfd64b5d016a9b936f058931fc06eaf 28846Author: Becky Bruce <beckyb@kernel.crashing.org> 28847Date: Mon Feb 23 13:56:51 2009 -0600 28848 28849 MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default 28850 28851 Currently, we get 256MB as the default, but since all the 86xx 28852 board configs define a 2G BAT mapping for RAM, raise default 28853 to 2G. 28854 28855 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 28856 Acked-by: Jon Loeliger <jdl@freescale.com> 28857 28858commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa 28859Author: Becky Bruce <beckyb@kernel.crashing.org> 28860Date: Thu Feb 12 10:43:32 2009 -0600 28861 28862 mpc8641hpcn: Indicate 36-bit addr map in boot messages 28863 28864 If 36-bit addressing is enabled, print a message on the console 28865 when we boot. 28866 28867 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 28868 28869commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e 28870Author: Mark Jackson <mpfj-list@mimc.co.uk> 28871Date: Fri Feb 13 15:48:18 2009 +0000 28872 28873 Setup extra MIMC200 chip selects 28874 28875 Added code to setup the extra Flash and FRAM chip selects as used on the 28876 MIMC200 board. 28877 28878 V2 moves the init code from the common "cpu.c" file into the board specific 28879 setup file. 28880 28881 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 28882 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 28883 28884commit 80534886a72a0088eef9e781a8e0b7d04ea41f36 28885Author: Mark Jackson <mpfj@mimc.co.uk> 28886Date: Mon Nov 24 12:10:56 2008 +0000 28887 28888 MIMC200: tidy GCLK init code 28889 28890 Change the MIMC200 startup code to use the built-in (rather than 28891 hard-coded) funtions for setting up gclk outputs. 28892 28893 We'll also move the code to the new, more-appropriate 28894 board_postclk_init() routine. 28895 28896 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 28897 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 28898 28899commit b423f94063bf04e92047ff85c7e53441eb3b712b 28900Author: Olav Morken <olavmrk@gmail.com> 28901Date: Fri Jan 23 12:56:32 2009 +0100 28902 28903 AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES 28904 28905 The AT32UC3A0512ES chip has a bug when disabling interrupts. As a 28906 workaround, two NOPs can be inserted. 28907 28908 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com> 28909 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com> 28910 Signed-off-by: Olav Morken <olavmrk@gmail.com> 28911 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 28912 28913commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b 28914Author: Gunnar Rangoy <gunnar@rangoy.com> 28915Date: Fri Jan 23 12:56:29 2009 +0100 28916 28917 AVR32: Make GPIO implmentation cpu dependent 28918 28919 There are some differences in the implementation of GPIO in the 28920 at32uc chip compared to the ap700x series. 28921 28922 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com> 28923 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com> 28924 Signed-off-by: Olav Morken <olavmrk@gmail.com> 28925 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 28926 28927commit a38de083d2979db3680f0d0978c509a172c8fa00 28928Author: Olav Morken <olavmrk@gmail.com> 28929Date: Fri Jan 23 12:56:28 2009 +0100 28930 28931 AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h 28932 28933 The AVR32A architecture (which AT32UC3A-series is based on) has a 28934 different memory layout than the AVR32B-architecture. This patch moves 28935 addrspace.h to an arch-dependent directory in preparation for 28936 AT32UC3A-support. It also moves some address-space manipulation 28937 functions from io.h to addrspace.h. 28938 28939 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com> 28940 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com> 28941 Signed-off-by: Olav Morken <olavmrk@gmail.com> 28942 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 28943 28944commit d8f2aa3298610b44127dbc4796d8038aa5847e0b 28945Author: Olav Morken <olavmrk@gmail.com> 28946Date: Fri Jan 23 12:56:27 2009 +0100 28947 28948 AVR32: Make cacheflush cpu-dependent 28949 28950 The AT32UC3A series of processors doesn't contain any cache, and issuing 28951 cache control instructions on those will cause an exception. This commit 28952 makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support. 28953 28954 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com> 28955 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com> 28956 Signed-off-by: Olav Morken <olavmrk@gmail.com> 28957 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 28958 28959commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9 28960Author: Heiko Schocher <hs@denx.de> 28961Date: Tue Feb 10 09:38:52 2009 +0100 28962 28963 netloop: speed up NetLoop 28964 28965 NetLoop polls every cycle with getenv some environment variables. 28966 This is horribly slow, especially when the environment is big. 28967 28968 This patch reads only the environment variables in NetLoop, 28969 when they were changed. 28970 28971 Also moved the init part of the NetLoop function in a seperate 28972 function. 28973 28974 Signed-off-by: Heiko Schocher <hs@denx.de> 28975 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 28976 28977commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87 28978Author: Mike Frysinger <vapier@gentoo.org> 28979Date: Mon Dec 22 02:56:07 2008 -0500 28980 28981 smc911x_eeprom: new example app for managing newer SMC parts 28982 28983 A forward port of the last version to work with the newer smc911x driver. 28984 I only have a board with a LAN9218 part on it, so that is the only one 28985 I've tested. But there isn't anything in this that would make it terribly 28986 chip specific afaik. 28987 28988 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 28989 CC: Sascha Hauer <s.hauer@pengutronix.de> 28990 CC: Guennadi Liakhovetski <lg@denx.de> 28991 CC: Magnus Lilja <lilja.magnus@gmail.com> 28992 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 28993 28994commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6 28995Author: Pieter Henning <phenning@vastech.co.za> 28996Date: Sun Feb 22 23:17:15 2009 -0800 28997 28998 Added Vitesse VSC8211 definitions to TSEC driver 28999 29000 Added the struct containing PHY settings for the Vitesse VSC8211 phy to
29001 the phy_info list in tsec.c 29002 29003 Signed-off-by: Pieter Henning <phenning@vastech.co.za> 29004 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 29005 29006commit 32688e572ff96715b41420e9a7f280db6c399b65 29007Author: Wolfgang Denk <wd@denx.de> 29008Date: Mon Feb 23 00:22:21 2009 +0100 29009 29010 Update CHANGELOG; Prepare 2009.03-rc1 29011 29012 Signed-off-by: Wolfgang Denk <wd@denx.de> 29013 29014commit 80b827c2b78329c6503b271e43d9eb693d644710 29015Author: Wolfgang Denk <wd@denx.de> 29016Date: Sun Feb 22 23:45:40 2009 +0100 29017 29018 ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5 29019 29020 The file was generated from building versatile_defconfig. 29021 29022 Signed-off-by: Wolfgang Denk <wd@denx.de> 29023 29024commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00 29025Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 29026Date: Sun Feb 22 14:24:11 2009 +0900 29027 29028 MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings 29029 29030 Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings 29031 like this: 29032 29033 skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000 29034 Configuring for dbau1x00 board... 29035 au1x00_eth.c: In function 'au1x00_send': 29036 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type 29037 au1x00_eth.c: In function 'au1x00_recv': 29038 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type 29039 au1x00_eth.c: In function 'au1x00_init': 29040 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type 29041 au1x00_eth.c: In function 'au1x00_recv': 29042 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type 29043 au1x00_eth.c: In function 'au1x00_init': 29044 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type 29045 au1x00_eth.c: In function 'au1x00_send': 29046 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type 29047 29048 We're passing a volatile pointer to a function which is expecting a non- 29049 volatile pointer. That's potentially dangerous, so gcc warns about it. 29050 Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3). 29051 29052 To fix this, we add a volatile attribute to the argument in question. 29053 The virt_to_phys function in Linux kernel also does the same thing. 29054 29055 Signed-off-by: Stefan Roese <sr@denx.de> 29056 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 29057 29058commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3 29059Author: Dirk Behme <dirk.behme@googlemail.com> 29060Date: Fri Feb 20 17:51:28 2009 +0100 29061 29062 OMAP3: Clean up MMC code 29063 29064 Clean up OMAP3 MMC code: 29065 29066 * Convert register access to struct & readx/writex style 29067 * Replace hardcode values by macros 29068 * Remove macro defined twice 29069 29070 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 29071 29072commit cfcdf4a9b361d015c0debac73fbf7c511df4a934 29073Author: Dirk Behme <dirk.behme@googlemail.com> 29074Date: Thu Feb 12 18:55:43 2009 +0100 29075 29076 OMAP3: Pandora: Update pin mux 29077 29078 Clock pin must have input enabled for MMC3 to work. 29079 Also enable pull-ups for cmd/data lines to be consistent 29080 with remaining MMC host pin setup. 29081 29082 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com> 29083 29084commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f 29085Author: Dirk Behme <dirk.behme@googlemail.com> 29086Date: Thu Feb 12 18:55:42 2009 +0100 29087 29088 OMAP3: Add OMAP3 auto detection 29089 29090 This patch adds OMAP3 cpu type auto detection based on OMAP3 register 29091 and removes hardcoded values. 29092 29093 Signed-off-by: Steve Sakoman <sakoman@gmail.com> 29094 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 29095 29096commit f956fd0338f4990793a10f767929ba4963665261 29097Author: Dirk Behme <dirk.behme@googlemail.com> 29098Date: Thu Feb 12 18:55:41 2009 +0100 29099 29100 OMAP3: Beagle: Add board revision detection 29101 29102 With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX) 29103 which might need different software handling. For this, GPIO pin 171 (GPIO 29104 module 6, offset 11) can be used to check for board revision. If this pin 29105 is low, we have a rev C board. Else it must be a revision Ax or Bx board. 29106 29107 To handle board differences you can call function beagle_get_revision(). 29108 E.g.: 29109 29110 if (beagle_get_revision()) { 29111 29112 /* do special revision C stuff here */ 29113 29114 } 29115 29116 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 29117 29118commit 288f3cd912918b97919d13b6f7fb13fbddf74d68 29119Author: Dirk Behme <dirk.behme@googlemail.com> 29120Date: Thu Feb 12 18:55:40 2009 +0100 29121 29122 OMAP3: Overo: Clean up pin mux and GPIO configuration 29123 29124 * Make Overo GPIO114 an input for touchscreen PENDOWN 29125 * Make Overo GPIO144-147 readable 29126 * Make Overo EHCI pinmux match beagle rev c setup 29127 * Adjust pinmux for SMSC911X network chip support 29128 * Remove unnecessary GPIO setup 29129 * Fix merge error in Makefile 29130 29131 Signed-off-by: Steve Sakoman <sakoman@gmail.com> 29132 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 29133 29134commit 2579019b8248e5f166e60e37065766efc8a49dbc 29135Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29136Date: Sun Feb 22 17:08:41 2009 +0100 29137 29138 nmdk8815: fix onenand support 29139 29140 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29141 29142commit 0176c03a2469676df5bf19cf93a1a6f582f6a120 29143Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29144Date: Sun Feb 22 17:56:50 2009 +0100 29145 29146 nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type 29147 29148 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29149 29150commit 9751a456f702ba2fcdfd1bdbc0138927ef007858 29151Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29152Date: Sun Feb 22 17:49:43 2009 +0100 29153 29154 davinci: fix implicit declaration of function 'davinci_errata_workarounds' 29155 29156 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29157 29158commit 4f5728987f4f9f7845688482aa2b7f2127768165 29159Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29160Date: Sun Feb 22 15:49:28 2009 +0100 29161 29162 arm: add uart dcc support 29163 29164 Serial driver via the EmbeddedICE macrocell's DCC channel using 29165 co-processor 14. 29166 29167 It does include a timeout to ensure that the system does not 29168 totally freeze when there is nothing connected to read. 29169 29170 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29171 29172commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48 29173Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 29174Date: Fri Nov 21 14:35:56 2008 -0500 29175 29176 ARM DaVinci: Add common peripherals and modules enable functions. 29177 29178 Taken all the duplicated code for enabling common modules and apply 29179 software workarounds from the board specific code into common 29180 functions. Also added comments explaining the workarounds 29181 (from TI errata documents) and replaced some numerical bit numbers 29182 with more meaningful defines. 29183 29184 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 29185 29186commit d3be1bcae7a8207e0a79ffd035d0e90f80378295 29187Author: Alessandro Rubini <rubini@unipv.it> 29188Date: Mon Feb 9 15:53:33 2009 +0100 29189 29190 Enable Ethernet for Nomadik 8815 Evaluation Kit 29191 29192 This trivially enables Ethernet support in the debug board 29193 by setting up the proper chip select. 29194 29195 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 29196 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com> 29197 29198commit 0d8c6eab2481046e9446264bfe9402bb98ddf433 29199Author: Alessandro Rubini <rubini@unipv.it> 29200Date: Mon Feb 9 15:53:31 2009 +0100 29201 29202 Nand driver for Nomadik SoC 29203 29204 This driver implements the ECC algorithm described in 29205 the CPU data sheet and uses the OOB layout chosen in 29206 already-released development systems (shipped with a custom-made 29207 u-boot 1.3.1). 29208 29209 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 29210 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com> 29211 29212commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d 29213Author: Alessandro Rubini <rubini@unipv.it> 29214Date: Mon Feb 9 15:53:31 2009 +0100 29215 29216 Added nomadik.h header 29217 29218 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 29219 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com> 29220 29221commit 60ece6d8043d1dd80f5dd32c541213716d624b19 29222Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 29223Date: Wed Oct 29 20:05:18 2008 +0900 29224 29225 r8a66597-hcd: fix cannot use external hub 29226 29227 Fix the problem that cannot use external hub, because this driver 29228 did not control correctly a DEVADDx register. 29229 29230 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 29231 Signed-off-by: Remy Bohmer <linux@bohmer.net> 29232 29233commit e1ffaee728190e76a4596a3579d94e730143585f 29234Author: Mike Frysinger <vapier@gentoo.org> 29235Date: Thu Feb 19 01:20:27 2009 -0500 29236 29237 Blackfin: disable syscontrol code for now 29238 29239 Looks like the initcode updates fell out of order during my merges. The 29240 patch that really fixes up this code is part of power-on overhaul and so 29241 is too large for merging at this point. Instead, we can disable the code 29242 as no currently in-tree board depends on it. The next merge window will 29243 fix things up properly. 29244 29245 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 29246 29247commit 1b228d68f54832edd867ef98520f760f68192ab7 29248Author: Mike Frysinger <vapier@gentoo.org> 29249Date: Thu Feb 19 01:19:49 2009 -0500 29250 29251 Blackfin: bf537-stamp: fix I2C board defines 29252 29253 The previous merge for cleaning up the I2C driver incorrectly reverted the 29254 CFG_xxx rename for some of the I2C defines. 29255 29256 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 29257 Signed-off-by: Heiko Schocher <hs@denx.de> 29258 29259commit 09fee8e8677a6265e89144ccc163bf00e321769e 29260Author: Wolfgang Denk <wd@denx.de> 29261Date: Sun Feb 22 01:19:52 2009 +0100 29262 29263 Coding Style cleanup; update CHANGELOG 29264 29265 Signed-off-by: Wolfgang Denk <wd@denx.de> 29266 29267commit 1dcb50afbb63a439320a985380a0af2dca079d1e 29268Author: Wolfgang Denk <wd@denx.de> 29269Date: Sun Feb 22 01:17:47 2009 +0100 29270 29271 Makefile: fix cleanup 29272 29273 Commit e4943ec5 moved the ARM boards to a vendor directory but forgot 29274 to adapt the cleanup rules in the Makefile 29275 29276 Signed-off-by: Wolfgang Denk <wd@denx.de> 29277 29278commit edff7bcc4d5540df8b416274652ff02e94c38b9e 29279Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 29280Date: Fri Feb 20 13:01:56 2009 -0500 29281 29282 Cleanup the comment for m68k linux boot argument passing. 29283 29284 This patch clarifies the way m68k passes linux boot argument. 29285 The one gotcha here is that the assembly instruction that 29286 the compiler uses to jump to the kernel is 'jsr' which pushes the 29287 program counter for the instruction after the jsr into the stack pointer. 29288 29289 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 29290 Signed-off-by: Wolfgang Denk <wd@denx.de> 29291 29292commit 4d41650eec959668280a612467bd95c7b8398513 29293Author: Peter Griffin <pgriffin@mpc-data.co.uk> 29294Date: Tue Feb 10 16:44:45 2009 +0000 29295 29296 sh: Fix rsk7203 in tree build 29297 29298 Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk> 29299 29300commit fca0cecff73db99d99ad094cca7980472b8a11b5 29301Author: Minkyu Kang <mk7.kang@samsung.com> 29302Date: Wed Feb 18 09:05:52 2009 +0900 29303 29304 bootm: Reduce the unnecessary memmove 29305 29306 Although load address and image start address are same address, 29307 bootm command always does memmove. 29308 That is unnecessary memmove and can be taken few milliseconds 29309 (about 500 msec to 1000 msec). 29310 If skip this memmove, we can reduce the boot time. 29311 29312 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com> 29313 29314commit 670cbde8da83690fed1064c3358f54ae1d693ed2 29315Author: Matthias Fuchs <matthias.fuchs@esd.eu> 29316Date: Sun Feb 15 22:29:15 2009 +0100 29317 29318 fpga: Fix Spartan III FPGA booting 29319 29320 This patch does some minor fixing of the Xilinx Spartan III 29321 FPGA boot code: 29322 29323 - Fixed call order of post configuration callback and 29324 success message printing (result of copy-paste?) 29325 - remove obsolete comment 29326 - minor coding style cleanup 29327 29328 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 29329 29330commit 3818b677641038d27b2663fbd6771ad38c932f86 29331Author: Matthias Fuchs <matthias.fuchs@esd.eu> 29332Date: Sun Feb 15 22:28:36 2009 +0100 29333 29334 fpga: Fix Spartan II FPGA booting 29335 29336 This patch does some minor fixing of the Xilinx Spartan II 29337 FPGA boot code: 29338 29339 - Fixed call order of post configuration callback and 29340 success message printing (result of copy-paste?) 29341 - relocate post configuration callback only when it 29342 is implemented 29343 - remove obsolete comment 29344 - minor coding style cleanup 29345 29346 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 29347 29348commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b 29349Author: Mike Frysinger <vapier@gentoo.org> 29350Date: Wed Feb 11 20:26:52 2009 -0500 29351 29352 drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...) 29353 29354 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 29355 29356commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e 29357Author: Derek Ou <dou@siconix.com> 29358Date: Tue Feb 3 16:00:07 2009 -0700 29359 29360 lcd_putc bug fix for tab. 29361 29362 Signed-off-by: Derek Ou <dou@siconix.com> 29363 29364commit 35c9e14d8096e519fe76c953a43d52a09617345c 29365Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 29366Date: Mon Feb 2 09:46:21 2009 +0900 29367 29368 MIPS: cpu/mips/Makefile: Add a missing START line 29369 29370 In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/ 29371 Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START 29372 line. This patch puts it back. 29373 29374 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 29375 29376commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a 29377Author: Wolfgang Denk <wd@denx.de> 29378Date: Sat Feb 21 21:51:21 2009 +0100 29379 29380 Enable ext2 support for TQM8xxL/M based boards 29381 29382 Signed-off-by: Wolfgang Denk <wd@denx.de> 29383 29384commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f 29385Author: Tom Rix <Tom.Rix@windriver.com> 29386Date: Fri Feb 20 03:47:50 2009 +0100 29387 29388 ARM:PXA Use new definitions in mmc.h 29389 29390 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 29391 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29392 29393commit 682beeac34dc9ab18fab58b26973d2e29d113717 29394Author: Andy Fleming <afleming@freescale.com> 29395Date: Fri Feb 20 03:47:50 2009 +0100 29396 29397 Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions 29398 29399 These names are being taken over by the new MMC framework. Hopefuly 29400 the PXA can be easily ported, and these functions will go away entirely. 29401 29402 Signed-off-by: Andy Fleming <afleming@freescale.com> 29403 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29404 29405commit b03d92e5584935886ff91d5aa0755dc8888b7187 29406Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29407Date: Fri Feb 20 03:47:50 2009 +0100 29408 29409 pxa: move mmc drivers to drivers/mmc 29410 29411 introduce new macro CONFIG_PXA_MMC to activate it 29412 29413 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29414 29415commit 9490f465642c80c054854689a2ef1a77d65cf1f3 29416Author: Tom Rix <Tom.Rix@windriver.com> 29417Date: Thu Feb 19 19:27:22 2009 -0600 29418 29419 ARM:PXA Remove redefinition of mmc_cid and mmc_csd. 29420 29421 These structures are defined in the common mmc.h 29422 29423 This was compile checked on cerf250. 29424 29425commit 94a3312920b6f9b5da27309549fb73650718c10a 29426Author: Micha Kalfon <smichak.uv@gmail.com> 29427Date: Wed Feb 11 19:50:11 2009 +0200 29428 29429 pxa: fixing get_timer to return time in miliseconds. 29430 29431 Fixing the get_timer function to return time in miliseconds instead of 29432 ticks. Also fixed PXA boards to use the conventional value of 1000 for 29433 CONFIG_SYS_HZ. 29434 29435 Signed-off-by: Micha Kalfon <smichak.uv@gmail.com> 29436 29437commit e5e88c3614b79b54719905f66aefb51f9494bc1f 29438Author: Tom Rix <Tom.Rix@windriver.com> 29439Date: Thu Feb 19 16:45:43 2009 -0600 29440 29441 ARM:OMAP3 Change mmc_init to mmc_legacy_init 29442 29443 omap3_mmc.c was changed to define mmc_legacy_init. 29444 Remove unused functions. 29445 29446 Compile tested on all arm 29447 Runtime tested on Zoom1. 29448 29449 Signed-off-by: Tom Rix <Tom.Rix@windriver.com> 29450 29451commit 9e80bb21629988063574f88ca0d28baadff4d963 29452Author: Heiko Schocher <hs@denx.de> 29453Date: Thu Feb 19 17:23:58 2009 +0100 29454 29455 82xx, mgcoge: updates for 2009.03 29456 29457 - activate CS4 for accessing the FPGA 29458 - activate Rx buf len > 1 on SMC 29459 - pram activated 29460 - MTDPARTS_DEFAULT defined 29461 - update the size of the flashes in the DTS 29462 before booting Linux 29463 - MONITOR_LEN updated to 384k 29464 - added CONFIG_HOSTNAME 29465 - added CONFIG_ENV_BUFFER_PRINT 29466 - Environment size reduced to 16k 29467 29468 Signed-off-by: Heiko Schocher <hs@denx.de> 29469 29470commit df909554e2401f307925e1bd45d576e4176d9de9 29471Author: Heiko Schocher <hs@denx.de> 29472Date: Thu Feb 19 17:24:01 2009 +0100 29473 29474 8xx, mgsuvd: updates for 2009.03 29475 29476 - activate Rx buf len > 1 on SMC 29477 - pram activated 29478 - MTDPARTS_DEFAULT defined 29479 - update the size of the flash in the DTS 29480 before booting Linux 29481 - MONITOR_LEN updated to 384k 29482 - added CONFIG_HOSTNAME 29483 - added CONFIG_ENV_BUFFER_PRINT 29484 - Environment size reduced to 16k 29485 29486 Signed-off-by: Heiko Schocher <hs@denx.de> 29487 29488commit 3511b4e208e12be85b532866f1c660aa2e021557 29489Author: Dirk Behme <dirk.behme@googlemail.com> 29490Date: Wed Feb 18 19:59:39 2009 +0100 29491 29492 MMC: Don't use new framework code if not enabled 29493 29494 Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC 29495 isn't enabled. 29496 29497 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 29498 29499commit 32482be67775e00b4cbc49fba62347c1ecc6229c 29500Author: Wolfgang Denk <wd@denx.de> 29501Date: Thu Feb 19 13:53:29 2009 +0100 29502 29503 TQM8xxL: make some room in low memory for future needs 29504 29505 THe TQM8xxL use a ahnd-optimized linker script to efficiently use the 29506 small boot sectors in the flash. This patch makes some room in the 29507 first sector to prepare for a size increase of lib_generic/vsprintf.o 29508 by a future patch. 29509 29510 Signed-off-by: Wolfgang Denk <wd@denx.de> 29511 29512commit c157cec3c3f6dfc194532b3a3ca87f85b642962a 29513Author: Kim Phillips <kim.phillips@freescale.com> 29514Date: Wed Feb 18 18:06:18 2009 -0600 29515 29516 README: remove duplicate entry 29517 29518 it's been around since the original commit (2ad6b513) that added two 29519 identical entries. 29520 29521 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 29522 29523commit 1bba30efe1717bea13026e15c7c7d906419fac69 29524Author: Wolfgang Denk <wd@denx.de> 29525Date: Thu Feb 19 00:41:08 2009 +0100 29526 29527 Coding style cleanup, update CHANGELOG 29528 29529 Signed-off-by: Wolfgang Denk <wd@denx.de> 29530 29531commit 369d0aa9674b65c83f8553b9bcf9d207dc369223 29532Author: Kim Phillips <kim.phillips@freescale.com> 29533Date: Wed Feb 18 17:43:59 2009 -0600 29534 29535 sata_sil3114: fix compiler warning 29536 29537 judging from other printfs in the same file, it seems ata should be 29538 postpended with the interface number, not the address of the global 29539 port variable. Fixes this for current u-boot-mpc83xx tree: 29540 29541 Configuring for MPC8349ITX board... 29542 sata_sil3114.c: In function 'sata_bus_softreset': 29543 sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *' 29544 sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *' 29545 29546 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 29547 29548commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd 29549Author: Ron Madrid <ron_madrid@sbcglobal.net> 29550Date: Wed Feb 18 14:30:44 2009 -0800 29551 29552 Create configuration option for restricted ns16550 functions 29553 29554 This patch will create a configuration option for a minimum configuration for 29555 the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new 29556 configuration option to the SIMPC8313.h config file in order to fix the NAND 29557 bootstrap build error. This option will exclude all functions with exception of 29558 NS16550_putc and NS16550_init. This will be used primarily to save space and 29559 remove unused code from builds in which space is limited. 29560 29561 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net> 29562 29563commit 7b0bc0219db8981613259473cf19699ac259b4fb 29564Author: Kim Phillips <kim.phillips@freescale.com> 29565Date: Wed Feb 18 16:14:29 2009 -0600 29566 29567 mkconfig: include board config.h before asm/config.h 29568 29569 swapping the include order suppresses warnings for board configs 29570 that define their own CONFIG_MAX_MEM_MAPPED: 29571 29572 In file included from /home/r1aaha/git/u-boot/include/config.h:5, 29573 from /home/r1aaha/git/u-boot/include/common.h:35, 29574 from simpc8313.c:26: 29575 /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning: 29576 "CONFIG_MAX_MEM_MAPPED" redefined 29577 In file included from /home/r1aaha/git/u-boot/include/config.h:4, 29578 from /home/r1aaha/git/u-boot/include/common.h:35, 29579 from simpc8313.c:26: 29580 /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is 29581 the location of the previous definition 29582 29583 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 29584 29585commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c 29586Author: Wolfgang Denk <wd@denx.de> 29587Date: Wed Feb 18 21:35:38 2009 +0100 29588 29589 Fix build errors after making flash_get_info() non-static 29590 29591 Fix for these build problems: 29592 error: static declaration of 'flash_get_info' follows non-static declaration 29593 29594 Signed-off-by: Wolfgang Denk <wd@denx.de> 29595 29596commit b4996d6b2140e5da7f1c346f37a67b19907b307a 29597Author: Stefan Roese <sr@denx.de> 29598Date: Wed Feb 18 13:18:00 2009 +0100 29599 29600 ppc4xx: PCIe: Change 16GB inbound memory to 4GB 29601 29602 This patch fixes a problem recently seen on some 4xx platforms. For 29603 example on Kilauea PCIe slot #0. 29604 29605 Signed-off-by: Stefan Roese <sr@denx.de> 29606 29607commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5 29608Author: Stefan Roese <sr@denx.de> 29609Date: Wed Feb 18 14:05:37 2009 +0100 29610 29611 ppc4xx: Some more PMC405 coding-style cleanup 29612 29613 Signed-off-by: Stefan Roese <sr@denx.de> 29614 29615commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5 29616Author: Matthias Fuchs <matthias.fuchs@esd.eu> 29617Date: Sun Feb 15 22:27:47 2009 +0100 29618 29619 ppc4xx: Update PMC405 board support 29620 29621 This patch prepares the good old PMC405 board support for 29622 upcoming PMC405V2 patches. 29623 29624 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 29625 Signed-off-by: Stefan Roese <sr@denx.de> 29626 29627commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f 29628Author: Matthias Fuchs <matthias.fuchs@esd.eu> 29629Date: Sun Feb 15 22:26:54 2009 +0100 29630 29631 ppc4xx: Cleanup PMC405 board support 29632 29633 This patch fixes coding style for PMC405 board support. 29634 Also some unneeded features/code is removed. 29635 29636 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 29637 Signed-off-by: Stefan Roese <sr@denx.de> 29638 29639commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667 29640Author: Ilya Yanok <yanok@emcraft.com> 29641Date: Thu Feb 5 04:08:20 2009 +0100 29642 29643 qong: changes to Dave/DENX Qong configuration 29644 29645 1. Changes to the default environment: 29646 - "bootcmd" defined as "run flash_self" 29647 - "saveenv" command removed from "update" 29648 - "uboot" changed to "u-boot" (also in "load") 29649 - "addmtd" variable defined (and added to all boot commands) 29650 2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command 29651 3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined 29652 4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem 29653 with truncated "bootargs" environment variable. 29654 29655 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 29656 29657commit 5f0320108870e5d62983d1d5c13a2a087dddf686 29658Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29659Date: Sun Feb 1 17:07:52 2009 +0100 29660 29661 common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible 29662 29663 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29664 29665commit ec6f14994602276660f7264c6ab3b91ef1f7614d 29666Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29667Date: Sun Feb 1 17:07:51 2009 +0100 29668 29669 common/console: coding style cleanup 29670 29671 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 29672 29673commit daaf74f176b548dfd34a9990231f4189201d57ba 29674Author: Mike Frysinger <vapier@gentoo.org> 29675Date: Thu Jan 29 20:02:23 2009 -0500 29676 29677 mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile 29678 29679 Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and 29680 into the Makefile so we avoid pointless compiling of the file. 29681 29682 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 29683 29684commit 7bd2722e890bc877a3c057d7ccddc80451c99939 29685Author: Mike Frysinger <vapier@gentoo.org> 29686Date: Thu Jan 29 20:02:07 2009 -0500 29687 29688 disk: convert part_* files to COBJ-$(CONFIG_XXX) style 29689 29690 Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to 29691 avoid pointless compiles. 29692 29693 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 29694 29695commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338 29696Author: Petri Lehtinen <petri.lehtinen@inoi.fi> 29697Date: Thu Jan 29 10:35:40 2009 +0200 29698 29699 include/image.h: Ease grepping of image_* functions 29700 29701 Because the functions have been defined using macros, grepping for 29702 their definitions is not possible. This patch adds the real function 29703 names in comments. 29704 29705 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi> 29706 Acked-by: Mike Frysinger <vapier@gentoo.org> 29707 29708commit bdab39d358e63aa47f400a8a76b8d5f283842df3 29709Author: Mike Frysinger <vapier@gentoo.org> 29710Date: Wed Jan 28 19:08:14 2009 -0500 29711 29712 rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV 29713 29714 The CONFIG_CMD_ENV option controls enablement of the `saveenv` command 29715 rather than a generic "env" command, or anything else related to the 29716 environment. So, let's make sure the define is named accordingly. 29717 29718 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 29719 29720commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101 29721Author: Valeriy Glushkov <gvv@lstec.com> 29722Date: Fri Jan 23 20:02:17 2009 +0200 29723 29724 disable imls command if no flash is defined 29725 29726 Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined 29727 29728 Signed-off-by: Valeriy Glushkov <gvv@lstec.com> 29729 29730commit 923aa48126259c13de95131203f1d28bfa5cb889 29731Author: Rafal Jaworowski <raj@semihalf.com> 29732Date: Fri Jan 23 13:27:18 2009 +0100 29733 29734 API: Improve glue mid-layer of the API demo application. 29735 29736 - Extend ub_dev_read() and ub_dev_recv() so they return the length actually 29737 read, which allows for better control and error handling (this introduces 29738 additional error code API_ESYSC returned by the glue mid-layer). 29739 29740 - Clean up definitions naming and usage. 29741 29742 - Other minor cosmetics. 29743 29744 Note these changes do not touch the API proper, so the interface between 29745 U-Boot and standalone applications remains unchanged. 29746 29747 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 29748 29749commit 44a94e596ba0f6d0951b165403c520bf55b1c56f 29750Author: Rafal Jaworowski <raj@semihalf.com> 29751Date: Fri Jan 23 13:27:17 2009 +0100 29752 29753 API: Only output test data when reading was successful. 29754 29755 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 29756 29757commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d 29758Author: Rafal Jaworowski <raj@semihalf.com> 29759Date: Fri Jan 23 13:27:16 2009 +0100 29760 29761 API: Provide syscall entry point for the ARM architecture. 29762 29763 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 29764 Acked-by: Rafal Jaworowski <raj@semihalf.com> 29765 29766commit b84d7d8f1e1066f810866304a16a3583f88e7c98 29767Author: Rafal Jaworowski <raj@semihalf.com> 29768Date: Fri Jan 23 13:27:15 2009 +0100 29769 29770 API: Use stack pointer as API signature search hint in the glue layer. 29771 29772 De-hardcode range in RAM we search for the API signature. Instead use the stack 29773 pointer as a hint to narrow down the range in which the signature could reside 29774 (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity 29775 from stack area). Adjust PowerPC code in API demo to the new scheme. 29776 29777 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 29778 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 29779 29780commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5 29781Author: Wolfgang Denk <wd@denx.de> 29782Date: Tue Feb 17 10:26:38 2009 +0100 29783 29784 TQM8260: fix locations of kernel and ramdisk images in flash 29785 29786 After introducing redundant environment the kernel images was 29787 overlapping with environment. 29788 29789 Signed-off-by: Wolfgang Denk <wd@denx.de> 29790 29791commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb 29792Author: Heiko Schocher <hs@denx.de> 29793Date: Wed Feb 11 19:26:15 2009 +0100 29794 29795 83xx: add missing TIMING_CFG1_CASLAT_* defines 29796 29797 Signed-off-by: Heiko Schocher <hs@denx.de> 29798 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 29799 29800commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5 29801Author: Valeriy Glushkov <gvv@lstec.com> 29802Date: Thu Feb 5 14:35:21 2009 +0200 29803 29804 mpc8349itx: allow SATA boot from the onboard SIL1334 29805 29806 This patch allows using of SATA devices connected 29807 to the onboard PCI SIL1334 SATA controller. 29808 29809 Signed-off-by: Valeriy Glushkov <gvv@lstec.com> 29810 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 29811 29812commit e1ac387f4645499746856adc1aeaa9787da2eca6 29813Author: Andy Fleming <afleming@freescale.com> 29814Date: Thu Oct 30 16:50:14 2008 -0500 29815 29816 83xx: Add eSDHC support on 8379 EMDS board 29817 29818 Signed-off-by: Andy Fleming <afleming@freescale.com> 29819 29820commit 80522dc8369a89938369fbcee572e662373bc9a3 29821Author: Andy Fleming <afleming@freescale.com> 29822Date: Thu Oct 30 16:51:33 2008 -0500 29823 29824 85xx: Add eSDHC support for 8536 DS 29825 29826 Signed-off-by: Andy Fleming <afleming@freescale.com> 29827 29828commit 50586ef24ed5caf6ce5591df76f355009da2cd79 29829Author: Andy Fleming <afleming@freescale.com> 29830Date: Thu Oct 30 16:47:16 2008 -0500 29831 29832 Add support for the Freescale eSDHC found on 8379 and 8536 SoCs 29833 29834 This uses the new MMC framework 29835 29836 Some contributions by Dave Liu <daveliu@freescale.com> 29837 29838 Signed-off-by: Andy Fleming <afleming@freescale.com> 29839 29840commit 272cc70b211e945e4413122aa73868f6ada732a5 29841Author: Andy Fleming <afleming@freescale.com> 29842Date: Thu Oct 30 16:41:01 2008 -0500 29843 29844 Add MMC Framework 29845 29846 Here's a new framework (based roughly off the linux one) for managing 29847 MMC controllers. It handles all of the standard SD/MMC transactions, 29848 leaving the host drivers to implement only what is necessary to 29849 deal with their specific hardware. 29850 29851 This also hooks the infrastructure into the PowerPC board code 29852 (similar to how the ethernet infrastructure now hooks in) 29853 29854 Some of this code was contributed by Dave Liu <daveliu@freescale.com> 29855 29856 Signed-off-by: Andy Fleming <afleming@freescale.com> 29857 29858commit 1de97f9856f697380cc504126ab92561ed238803 29859Author: Andy Fleming <afleming@freescale.com> 29860Date: Thu Oct 30 16:31:39 2008 -0500 29861 29862 Eliminated arch-specific mmc header requirement 29863 29864 The current MMC infrastructure relies on the existence of an 29865 arch-specific header file. This isn't necessary, and a couple 29866 drivers were forced to implement dummy files to meet this requirement. 29867 Instead, we move the stuff in those header files into a more appropriate 29868 place, and eliminate the stubs and the #include of asm/arch/mmc.h 29869 29870 Signed-off-by: Andy Fleming <afleming@freescale.com> 29871 29872commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3 29873Author: Andy Fleming <afleming@freescale.com> 29874Date: Thu Oct 30 16:21:00 2008 -0500 29875 29876 Convert mmc_init to mmc_legacy_init 29877 29878 This is to get it out of the way of incoming MMC framework 29879 29880 Signed-off-by: Andy Fleming <afleming@freescale.com> 29881 29882commit b2e2ed0233a5ef299361abec4fbdaefb63456eff 29883Author: Andy Fleming <afleming@freescale.com> 29884Date: Thu Oct 30 16:19:25 2008 -0500 29885 29886 Eliminate support for using MMC as memory 29887 29888 MMC cards are not memory, so we stop treating them that way. 29889 29890 Signed-off-by: Andy Fleming <afleming@freescale.com> 29891 29892commit e1be0d25ecf494ae81245ca438738ba839d6329b 29893Author: Poonam_Aggrwal-b10812 <b10812@freescale.com> 29894Date: Sun Jan 4 08:46:38 2009 +0530 29895 29896 32bit BUg fix for DDR2 on 8572 29897 29898 This errata fix is required for 32 bit DDR2 controller on 8572. 29899 May also be required for P10XX20XX platforms 29900 29901 Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net> 29902 29903commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad 29904Author: Andy Fleming <afleming@freescale.com> 29905Date: Mon Feb 16 09:40:20 2009 -0600 29906 29907 TQM85xx: Fix a couple warnings in TQM8548 build 29908 29909 The ecm variable in sdram.c was being declared for all 8548, but only 29910 used by specific 8548 boards, so we make that variable require those 29911 specific boards, too 29912 29913 The nand code was using an index "i" into a table, and then re-using "i" 29914 to set addresses for each upm. However, then it relied on the old value 29915 of i still being there to enable things. Changed the second "i" to "j" 29916 29917 Signed-off-by: Andy Fleming <afleming@freescale.com> 29918 29919commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8 29920Author: Wolfgang Grandegger <wg@grandegger.com> 29921Date: Wed Feb 11 18:38:26 2009 +0100 29922 29923 MPC85xx: TQM8548: workaround for erratum DDR 19 and 20 29924 29925 This patch adds the workaround for erratum DDR20 according to MPC8548 29926 Device Errata document, Rev. 1: "CKE signal may not function correctly 29927 after assertion of HRESET". Furthermore, the bug DDR19 is fixed in 29928 processor version 2.1 and the work-around must be removed. 29929 29930 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 29931 29932commit 080408fdc71706adcb883d22125637c54f6010b1 29933Author: Wolfgang Grandegger <wg@grandegger.com> 29934Date: Wed Feb 11 18:38:25 2009 +0100 29935 29936 MPC85xx: TQM8548: use cache for AG and BE variants 29937 29938 This patch makes accesses to the system memory cachable by removing the 29939 caching-inhibited and guarded flags from the relevant TLB entries for 29940 the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards 29941 are configured similarly. 29942 29943 This results in a big averall performace improvement. TFTP downloads, 29944 NAND Flash accesses, kernel boots, etc. are much faster. 29945 29946 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 29947 29948commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2 29949Author: Wolfgang Grandegger <wg@grandegger.com> 29950Date: Wed Feb 11 18:38:24 2009 +0100 29951 29952 MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration 29953 29954 This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG 29955 module. 29956 29957 Signed-off-by: Jens Gehrlein <sew_s@tqs.de> 29958 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 29959 29960commit 88b0e88d186479349e5a2b771e82775109e10fb4 29961Author: Wolfgang Grandegger <wg@grandegger.com> 29962Date: Wed Feb 11 18:38:23 2009 +0100 29963 29964 MPC85xx: TQM8548: fix SDRAM timing for 533 MHz 29965 29966 According to new TQM8548 timing specification: 29967 Refresh Recovery: 34 -> 53 clocks 29968 CKE pulse width: 1 -> 3 cycles 29969 Window for four activities: 13 -> 14 cycles 29970 29971 Signed-off-by: Jens Gehrlein <sew_s@tqs.de> 29972 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 29973 29974commit a865bcdac89278cac4dfc07dec8299403110499d 29975Author: Wolfgang Grandegger <wg@grandegger.com> 29976Date: Wed Feb 11 18:38:22 2009 +0100 29977 29978 MPC85xx: TQM8548: add support for the TQM8548_AG module 29979 29980 The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory, 29981 CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module 29982 with "$ make TQM8548_AG_config". 29983 29984 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 29985 29986commit ad7ee5d43b0db94079d56521dabca25674f28747 29987Author: Wolfgang Grandegger <wg@grandegger.com> 29988Date: Wed Feb 11 18:38:21 2009 +0100 29989 29990 MPC85xx: TQM8548: add support for the TQM8548_BE module 29991 29992 The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN 29993 interface. With NAND support, the image is significantly larger and 29994 TEXT_BASE is adjusted accordingly. U-Boot can be built for this 29995 module with "$ make TQM8548_BE_config". 29996 29997 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 29998 29999commit a318234878c346e673b2ef8dc4b14b338fe7fc2b 30000Author: Wolfgang Grandegger <wg@grandegger.com>
30001Date: Wed Feb 11 18:38:20 2009 +0100 30002 30003 MPC85xx: TQM85xx: make standard PCI/PCI-X configurable 30004 30005 The TQM8548_AG module does not have the standard PCI/PCI-X interface 30006 connected but just the PCI Express interface . So far it was not 30007 possible to disable it without disabling the complete PCI interface 30008 (CONFIG_PCI) including PCI Express. 30009 30010 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 30011 30012commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf 30013Author: Wolfgang Grandegger <wg@grandegger.com> 30014Date: Wed Feb 11 18:38:19 2009 +0100 30015 30016 MPC85xx: TQM85xx: fix flash protection for boot loader 30017 30018 As the reset vector is located at 0xfffffffc, all flash sectors from the 30019 beginning of the U-Boot binary to 0xffffffff must be protected. On the 30020 TQM8548-AG having small sectors at the end of the flash it happened that 30021 the last two sector were not protected and an "erase all" left an 30022 un-bootable system behind: 30023 30024 Bank # 2: CFI conformant FLASH (32 x 16) Size: 32 MB in 270 Sectors 30025 AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E 30026 Erase timeout: 8192 ms, write timeout: 1 ms 30027 30028 FFFA0000 E RO FFFC0000 RO FFFE0000 RO FFFE4000 RO FFFE8000 RO 30029 FFFEC000 RO FFFF0000 RO FFFF4000 RO FFFF8000 E FFFFC000 30030 30031 The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many 30032 board BSPs as well. 30033 30034 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 30035 30036commit a1c8a719262151f97119e76166043ee3da3f97b2 30037Author: Peter Tyser <ptyser@xes-inc.com> 30038Date: Fri Feb 6 14:30:40 2009 -0600 30039 30040 86xx: Update CPU info output on bootup 30041 30042 - Update style of 86xx CPU information on boot to more closely 30043 match 85xx boards 30044 - Fix detection of 8641/8641D 30045 - Use strmhz() to display frequencies 30046 - Display L1 information 30047 - Display L2 cache size 30048 - Fixed CPU/SVR version output 30049 30050 == Before == 30051 Freescale PowerPC 30052 CPU: 30053 Core: E600 Core 0, Version: 0.2, (0x80040202) 30054 System: Unknown, Version: 2.1, (0x80900121) 30055 Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz 30056 L2: Enabled 30057 Board: X-ES XPedite5170 3U VPX SBC 30058 30059 == After == 30060 CPU: 8641D, Version: 2.1, (0x80900121) 30061 Core: E600 Core 0, Version: 2.2, (0x80040202) 30062 Clock Configuration: 30063 CPU:1066.667 MHz, MPX:533.333 MHz 30064 DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz 30065 L1: D-cache 32 KB enabled 30066 I-cache 32 KB enabled 30067 L2: 512 KB enabled 30068 Board: X-ES XPedite5170 3U VPX SBC 30069 30070 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 30071 30072commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c 30073Author: Peter Tyser <ptyser@xes-inc.com> 30074Date: Thu Feb 5 11:25:24 2009 -0600 30075 30076 86xx: Update Global Utilities structure 30077 30078 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 30079 30080commit 4ef630df773e45806d701bf5d25c328778bb4cde 30081Author: Peter Tyser <ptyser@xes-inc.com> 30082Date: Thu Feb 5 11:25:25 2009 -0600 30083 30084 86xx: Reset update 30085 30086 Update the 86xx reset sequence to try executing a board-specific reset 30087 function. If the board-specific reset is not implemented or does not 30088 succeed, then assert #HRESET_REQ. Using #HRESET_REQ is a more standard 30089 reset procedure than the previous method and allows all board 30090 peripherals to be reset if needed. 30091 30092 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 30093 30094commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab 30095Author: Kumar Gala <galak@kernel.crashing.org> 30096Date: Tue Feb 10 23:53:40 2009 -0600 30097 30098 fsl-ddr: Allow system to boot if we have more than 4G of memory 30099 30100 Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report 30101 an error and hang. Instead of doing that since DDR is mapped in the 30102 lowest priority LAWs we setup the DDR controller and the max amount 30103 of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED) 30104 30105 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30106 Acked-by: Becky Bruce <beckyb@kernel.crashing.org> 30107 30108commit 8d949aff38cfb4388cbd73876e77bcd06d601f20 30109Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com> 30110Date: Wed Jan 21 17:17:33 2009 -0600 30111 30112 mpc85xx: Add support for the P2020 30113 30114 Added various p2020 processor specific details: 30115 * SVR for p2020, p2020E 30116 * immap updates for LAWs and DDR on p2020 30117 * LAW defines related to p2020 30118 30119 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com> 30120 Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com> 30121 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30122 30123commit cb69e4de8702e108324e1c40363f30ef6f2e2918 30124Author: Kumar Gala <galak@kernel.crashing.org> 30125Date: Tue Feb 10 17:36:15 2009 -0600 30126 30127 85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS 30128 30129 Added some info that is printed out when we boot to distiquish if we 30130 built MPC8572DS_config vs MPC8572DS_36BIT_config since they have 30131 different address maps. 30132 30133 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30134 30135commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a 30136Author: Andy Fleming <afleming@freescale.com> 30137Date: Fri Dec 5 20:10:22 2008 -0600 30138 30139 Fixup SGMII PHY ids in the device tree 30140 30141 The device tree's PHY addresses need to be fixed up if we're using the 30142 SGMII Riser Card. 30143 30144 The 8572, 8536, and 8544 DS boards were modified to call this function. 30145 30146 Code idea taken from Liu Yu <yu.liu@freescale.com> 30147 30148 Signed-off-by: Andy Fleming <afleming@freescale.com> 30149 30150commit 5dc0cf68f8f101042997d75188081d8526d705ea 30151Author: Andy Fleming <afleming@freescale.com> 30152Date: Wed Feb 11 15:10:31 2009 -0600 30153 30154 Make some minor whitespace changes to eliminate line-wrapping 30155 30156 Signed-off-by: Andy Fleming <afleming@freescale.com> 30157 30158commit 9e56986a2b74d197f51eca70fad7b836b1900c4d 30159Author: Andy Fleming <afleming@freescale.com> 30160Date: Wed Feb 11 15:07:24 2009 -0600 30161 30162 Add eth_get_dev_by_index 30163 30164 This allows code to iterate through the ethernet devices 30165 30166 Signed-off-by: Andy Fleming <afleming@freescale.com> 30167 30168commit b67305120aaf268a6140125346678166d14f1f47 30169Author: Kumar Gala <galak@kernel.crashing.org> 30170Date: Mon Feb 9 22:03:04 2009 -0600 30171 30172 85xx: Fix bug in device tree setup in 36-bit physical confg 30173 30174 In the 36-bit physical config for MPC8572DS when need the start address 30175 of memory and it size to be kept in phys_*_t instead of a ulong since 30176 we support >4G of memory in the config and ulong cant represent that. 30177 Otherwise we end up seeing the memory node in the device tree reporting 30178 back we have memory starting @ 0 and of size 0. 30179 30180 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30181 30182commit ad97dce18445ff05bf326094e691a01aa95aa8dc 30183Author: Kumar Gala <galak@kernel.crashing.org> 30184Date: Mon Feb 9 22:03:05 2009 -0600 30185 30186 85xx: Fix address map for 36-bit config of MPC8572DS 30187 30188 When we introduced the 36-bit config of the MPC8572DS board we had the 30189 wrong PCI MEM bus address map. Additionally, the change to the address 30190 map exposes a small issue in our dummy read on the ULI bus. We need 30191 to use the new mapping functions to handle that read properly in the 30192 36-bit config. 30193 30194 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30195 30196commit f8523cb0815b2d3d2d780b7d49ca614105555f58 30197Author: Kumar Gala <galak@kernel.crashing.org> 30198Date: Fri Feb 6 09:56:35 2009 -0600 30199 30200 85xx: Fix how we map DDR memory 30201 30202 Previously we only allowed power-of-two memory sizes and didnt 30203 handle >2G of memory. Now we will map up to CONFIG_MAX_MEM_MAPPED 30204 and should properly handle any size that we can make in the TLBs 30205 we have available to us 30206 30207 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30208 30209commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3 30210Author: Kumar Gala <galak@kernel.crashing.org> 30211Date: Fri Feb 6 09:56:34 2009 -0600 30212 30213 fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller 30214 30215 If we only have one controller we can completely ignore how 30216 memctl_intlv_ctl is set. Otherwise other levels of code get confused 30217 and think we have twice as much memory. 30218 30219 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30220 30221commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8 30222Author: Kumar Gala <galak@kernel.crashing.org> 30223Date: Wed Feb 4 09:35:57 2009 -0600 30224 30225 85xx: Format cpu freq printing to handle 8 cores 30226 30227 Only print 4 cpu freq per line. This way when we have 8 cores its a 30228 bit more readable. 30229 30230 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30231 30232commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f 30233Author: Abraham, Thomas <t-abraham@ti.com> 30234Date: Tue Oct 28 16:51:31 2008 +0530 30235 30236 USB: Remove LUN number from CDB 30237 30238 The LUN number is not part of the Command Descriptor Block (CDB) for scsi inquiry, request sense, test unit ready, read capacity and read10 commands. This patch removes the LUN number information from the CDB. 30239 30240 Signed-off-by: Thomas Abraham <t-abraham@ti.com> 30241 Signed-off-by: Remy Bohmer <linux@bohmer.net> 30242 30243commit f3c0de636252f3a18654c8f9c6370a9574a7e755 30244Author: Atin Malaviya <atin.malaviya@gmail.com> 30245Date: Tue Feb 3 15:17:10 2009 -0500 30246 30247 Added usbtty_configured() check. Fixed attribute(packed) warnings. 30248 30249 V3: Fixed line-wrap problem due to user error in mail! 30250 30251 Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang 30252 when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc). 30253 Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc. 30254 30255 Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com> 30256 Signed-off-by: Remy Bohmer <linux@bohmer.net> 30257 30258commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7 30259Author: Guennadi Liakhovetski <lg@denx.de> 30260Date: Fri Feb 13 09:23:36 2009 +0100 30261 30262 i.MX31: Start the I2C clock on driver initialisation 30263 30264 i.MX31 powers on with most clocks running, so, after a power on this explicit 30265 clock start up is not required. However, as Linux boots it disables most clocks 30266 to save power. This includes the I2C clock. If we then soft reboot from Linux 30267 the I2C clock stays off. This breaks the phycore, which has its environment in 30268 I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver 30269 initialisation routine. 30270 30271 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 30272 Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 30273 30274commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba 30275Author: Mike Frysinger <vapier@gentoo.org> 30276Date: Wed Feb 11 20:36:14 2009 -0500 30277 30278 i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts 30279 30280 The Blackfin i2c driver has been rewritten thus the special ifdefs in the 30281 common code are no longer needed. 30282 30283 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 30284 30285commit c2d9befa0b4695b89476fb5d259742c09afe243f 30286Author: Heiko Schocher <hs@denx.de> 30287Date: Thu Feb 12 08:08:54 2009 +0100 30288 30289 82xx, mgcoge: fix compile error 30290 30291 With actual u-boot compiling the mgcoge port fails, because 30292 since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is 30293 necessary to define CONFIG_NET_MULTI. 30294 30295 Seems to me the mgcoge port is the only actual existing 8260 30296 port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed 30297 to be fixed. 30298 30299 Signed-off-by: Heiko Schocher <hs@denx.de> 30300 30301commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e 30302Author: Dirk Eibach <eibach@gdsys.de> 30303Date: Mon Feb 9 08:18:34 2009 +0100 30304 30305 ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE 30306 30307 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 30308 Signed-off-by: Stefan Roese <sr@denx.de> 30309 30310commit 7369f0e384e2a831be13a7773a58242c9173fa9c 30311Author: Carolyn Smith <carolyn.smith@tektronix.com> 30312Date: Thu Feb 12 06:13:44 2009 +0100 30313 30314 ppc4xx: Fix initialization of the SDRAM_CODT register 30315 30316 This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2 30317 initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END 30318 and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits. 30319 30320 Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com> 30321 Signed-off-by: Stefan Roese <sr@denx.de> 30322 30323commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31 30324Author: Stefan Roese <sr@denx.de> 30325Date: Wed Feb 11 09:29:33 2009 +0100 30326 30327 ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards 30328 30329 Some AMCC eval boards do have a board_eth_init() function calling 30330 pci_eth_init(). These boards need to call cpu_eth_init() explicitly now 30331 with the new eth_init rework. 30332 30333 Signed-off-by: Stefan Roese <sr@denx.de> 30334 30335commit c645012aefebb301e6907d148c6c8efacac049d4 30336Author: Adam Graham <agraham@amcc.com> 30337Date: Mon Feb 9 13:18:12 2009 -0800 30338 30339 ppc4xx: Autocalibration can set RDCC to over aggressive value. 30340 30341 The criteria of the AMCC SDRAM Controller DDR autocalibration 30342 U-Boot code is to pick the largest passing write/read/compare 30343 window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample 30344 Cycle Select value. 30345 30346 On some Kilauea boards the DDR autocalibration algorithm can 30347 find a large passing write/read/compare window with a small 30348 SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select 30349 value "T1 Sample". 30350 30351 This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of 30352 "T1 Sample" proves to be to aggressive when later on U-Boot 30353 relocates into DDR memory and executes. 30354 30355 The memory traces on the Kilauea board are short so on some 30356 Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select 30357 value of "T1 Sample" shows up as a potentially valid value for 30358 the DDR autocalibratiion algorithm. 30359 30360 The fix is to define a weak default function which provides 30361 the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value 30362 to accept for DDR autocalibration. The default will be the 30363 "T2 Sample" value. A board developer who has a well defined 30364 board and chooses to be more aggressive can always provide 30365 their own board specific string function with the more 30366 aggressive "T1 Sample" value or stick with the default 30367 minimum SDRAM_RDCC.[RDSS] value of "T2". 30368 30369 Also put in a autocalibration loop fix for case where current 30370 write/read/compare passing window size is the same as a prior 30371 window size, then in this case choose the write/read/compare 30372 result that has the associated smallest RDCC T-Sample value. 30373 30374 Signed-off-by: Adam Graham <agraham@amcc.com> 30375 Signed-off-by: Stefan Roese <sr@denx.de> 30376 30377commit 2ede879fcb67470524847bb4fc8972651bb46184 30378Author: Stefan Roese <sr@denx.de> 30379Date: Wed Feb 11 09:37:12 2009 +0100 30380 30381 ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h 30382 30383 CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is 30384 included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB. 30385 30386 It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx 30387 boards right now. 30388 30389 Signed-off-by: Stefan Roese <sr@denx.de> 30390 30391commit f15c6515fc23f83c51f3de272ca23d86b80e81b1 30392Author: Wolfgang Denk <wd@denx.de> 30393Date: Thu Feb 12 00:08:39 2009 +0100 30394 30395 Coding style cleanup; update CHANGELOG 30396 30397 Signed-off-by: Wolfgang Denk <wd@denx.de> 30398 30399commit 5fc56b907d993260b9ebdb137af66fe69635ae9e 30400Author: Peter Tyser <ptyser@xes-inc.com> 30401Date: Fri Jan 30 16:36:40 2009 -0600 30402 30403 Add feature-removal-schedule.txt 30404 30405 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 30406 30407commit 255d28e1642e8fc32a6753226be1a96b481ce111 30408Author: Heiko Schocher <hs@denx.de> 30409Date: Tue Feb 10 09:32:38 2009 +0100 30410 30411 8xx serial, smc: Coding-Style cleanup serial SMC driver 30412 30413 Signed-off-by: Heiko Schocher <hs@denx.de> 30414 30415commit 2b3f12c214346508cae3f1245808c1ca54c81fdd 30416Author: Heiko Schocher <hs@denx.de> 30417Date: Tue Feb 10 09:31:47 2009 +0100 30418 30419 8xx serial, smc: add configurable SMC Rx buffer len 30420 30421 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN. 30422 With this option it is possible to allow the receive 30423 buffer for the SMC on 8xx to be greater then 1. In case 30424 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the 30425 old version. 30426 30427 When defining CONFIG_SYS_SMC_RXBUFLEN also 30428 CONFIG_SYS_MAXIDLE must be defined to setup the maximum 30429 idle timeout for the SMC. 30430 30431 Signed-off-by: Heiko Schocher <hs@denx.de> 30432 30433commit e915f8bb73d74178bc21d3a457959883b1afd1c0 30434Author: Mike Frysinger <vapier@gentoo.org> 30435Date: Thu Feb 5 21:04:36 2009 -0500 30436 30437 common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile 30438 30439 Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into 30440 the COBJS-$(CONFIG_xxx) in the Makefile. Also delete unused var in kgdb 30441 code in the process. 30442 30443 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 30444 30445commit ab76e9848a1f4db64d14233741d739a3b3360c93 30446Author: Mike Frysinger <vapier@gentoo.org> 30447Date: Thu Feb 5 21:04:50 2009 -0500 30448 30449 bzip2: move ifdef handling to Makefile COBJS-$(...) 30450 30451 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 30452 30453commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316 30454Author: Jerry Van Baren <gvb.uboot@gmail.com> 30455Date: Thu Feb 5 22:18:02 2009 -0500 30456 30457 Fix whitespace damage: double space changed to a tab 30458 30459 At some point an intentional double space at the end of the sentence 30460 got changed into a tab in the GPL header line: 30461 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 30462 30463 This patch fixes the damage. 30464 30465 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 30466 30467commit 4f975678de995b55749d5e84590c268972a7c835 30468Author: Heiko Schocher <hs@denx.de> 30469Date: Tue Feb 10 09:53:29 2009 +0100 30470 30471 cfi: make flash_get_info() non static 30472 30473 If on your board is more than one flash, you must know 30474 the size of every single flash, for example, for updating 30475 the DTS before booting Linux. So make this function 30476 flash_get_info() extern, and you can have all info 30477 about your flashes. 30478 30479 Signed-off-by: Heiko Schocher <hs@denx.de> 30480 Signed-off-by: Stefan Roese <sr@denx.de> 30481 30482commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e 30483Author: Ben Warren <biggerbadderben@gmail.com> 30484Date: Thu Feb 5 23:58:25 2009 -0800 30485 30486 net: removed board-specific CONFIGs from MPC5xxx FEC driver 30487 30488 Added new CONFIG options for the three type of MAC-PHY interconnect and 30489 applied them all relevant board config files 30490 30491 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 30492 30493commit 638ed3e296e70fab286d157b7adedaaa4a09a474 30494Author: Mike Frysinger <vapier@gentoo.org> 30495Date: Thu Feb 5 21:04:47 2009 -0500 30496 30497 net/sntp.c: move ifdef into Makefile COBJS-$(...) 30498 30499 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 30500 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 30501 30502commit 9e5be8214ba751436e57c3be044bf6dccb9a6687 30503Author: Andy Fleming <afleming@freescale.com> 30504Date: Tue Feb 3 18:26:41 2009 -0600 30505 30506 tsec: Fix a bug in soft-resetting 30507 30508 SOFT_RESET must be asserted for at least 3 TX clocks. Usually, that's about 30 30509 clock cycles, so it's been mostly working. But we had no guarantee, and at 30510 slower bitrates, it's just over a microsecond (over 1000 clock cycles). This 30511 enforces a 2 microsecond gap between assertion and deassertion. 30512 30513 Signed-off-by: Andy Fleming <afleming@freescale.com> 30514 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 30515 30516commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b 30517Author: Simon Munton <simon@nidoran.m5data.com> 30518Date: Mon Feb 2 09:44:08 2009 +0000 30519 30520 Fix 100Mbs ethernet operation on sh7763 based boards 30521 30522 100Mbs ethernet does not work on sh7763 chips due to the wrong value being 30523 used in the GECMR register. Following diff fixes the problem 30524 30525 Signed-off-by: Simon Munton <simon@nidoran.m5data.com> 30526 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 30527 30528commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2 30529Author: ksi@koi8.net <ksi@koi8.net> 30530Date: Fri Feb 6 16:27:55 2009 -0800 30531 30532 Fix MPC8260 with ethernet on SCC 30533 30534 This fixes MPC8260 compilation with ethernet on SCC. Probably was a 30535 typo or something... 30536 30537 Signed-off-by: Sergey Kubushyn <ksi@koi8.net> 30538 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 30539 30540commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023 30541Author: Heiko Schocher <hs@denx.de> 30542Date: Fri Jan 30 12:56:15 2009 +0100 30543 30544 82xx serial, smc: Coding-Style cleanup serial SMC driver 30545 30546 Signed-off-by: Heiko Schocher <hs@denx.de> 30547 30548commit c92fac91a06c60f874c605e3ca80dd407c1caaa7 30549Author: Heiko Schocher <hs@denx.de> 30550Date: Fri Jan 30 12:55:38 2009 +0100 30551 30552 82xx serial, smc: add configurable SMC Rx buffer len 30553 30554 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN. 30555 With this option it is possible to allow the receive 30556 buffer for the SMC on 82xx to be greater then 1. In case 30557 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the 30558 old version. 30559 30560 When defining CONFIG_SYS_SMC_RXBUFLEN also 30561 CONFIG_SYS_MAXIDLE must be defined to setup the maximum 30562 idle timeout for the SMC. 30563 30564 Signed-off-by: Heiko Schocher <hs@denx.de> 30565 30566commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe 30567Author: Kumar Gala <galak@kernel.crashing.org> 30568Date: Fri Feb 6 08:08:06 2009 -0600 30569 30570 ppc: Fix roll over bug in flush_cache() 30571 30572 If we call flush_cache(0xfffff000, 0x1000) it would never 30573 terminate the loop since end = 0xffffffff and we'd roll over 30574 our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line) 30575 30576 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30577 30578commit 87c9063963561d3d01064be34d0c30855a56587b 30579Author: Kumar Gala <galak@kernel.crashing.org> 30580Date: Thu Feb 5 20:40:58 2009 -0600 30581 30582 ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h 30583 30584 Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent 30585 between the two current users (lib_ppc/board.c, 44x SPD DDR2). 30586 30587 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30588 Acked-by: Stefan Roese <sr@denx.de> 30589 30590commit 47d41cc3a11a03c6d56146d056145df73f47eb50 30591Author: Kumar Gala <galak@kernel.crashing.org> 30592Date: Thu Feb 5 20:40:57 2009 -0600 30593 30594 Add an architecture specific config.h for common defines 30595 30596 We have common defines that we duplicate in various ways. Having an 30597 arch specific config.h gives us a common location for those defines. 30598 30599 Eventually we should be able to replace this when we have proper 30600 Kconfig support. 30601 30602 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30603 30604commit 4c78d4a6c01621721b732418e1c6da684a56bbb1 30605Author: Becky Bruce <beckyb@kernel.crashing.org> 30606Date: Tue Feb 3 18:10:56 2009 -0600 30607 30608 mpc8641hpcn: Change PCI MEM pci bus address 30609 30610 Now that the rest of u-boot can support it, change the PCI bus 30611 address of the PCI MEM regions from 0x80000000 to 0xc0000000, 30612 and use the same bus address for both PCI1 and PCI2. This will 30613 maximize the amount of PCI address space left over to map RAM 30614 on systems with large amounts of memory. 30615 30616 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 30617 30618commit 1785dbeed43599eed1d8875673c96912cd770141 30619Author: Becky Bruce <beckyb@kernel.crashing.org> 30620Date: Tue Feb 3 18:10:55 2009 -0600 30621 30622 drivers/block/ahci: Fix pci mapping bug 30623 30624 The code assumes that the pci bus address and the virtual 30625 address used to access a region are the same, but they might 30626 not be. Fix this assumption. 30627 30628 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 30629 30630commit d591a80e74091e7a0658d165721e6c7de2ef0bcd 30631Author: Becky Bruce <beckyb@kernel.crashing.org> 30632Date: Tue Feb 3 18:10:54 2009 -0600 30633 30634 MPC8641HPCN: Enable CONFIG_ADDR_MAP 30635 30636 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 30637 30638commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b 30639Author: Becky Bruce <beckyb@kernel.crashing.org> 30640Date: Tue Feb 3 18:10:53 2009 -0600 30641 30642 mpc8641hpcn: Clean up PCI mapping concepts 30643 30644 Clean up PCI mapping concepts in the 8641 config - rename _BASE 30645 to _BUS, as it's actually a PCI bus address, separate virtual 30646 and physical addresses into _VIRT and _PHYS, and use each 30647 appopriately. 30648 30649 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 30650 30651commit c9315e6b4f244981de0b2eaaa29a7838a165b494 30652Author: Becky Bruce <beckyb@kernel.crashing.org> 30653Date: Tue Feb 3 18:10:52 2009 -0600 30654 30655 mpc86xx: Add support to populate addr map based on BATs 30656 30657 If CONFIG_ADDR_MAP is enabled, update the address map 30658 whenever we write a bat. 30659 30660 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 30661 30662commit d35ae5a938679bd7e18167faf79d0fb3c6639b51 30663Author: Becky Bruce <beckyb@kernel.crashing.org> 30664Date: Tue Feb 3 18:10:51 2009 -0600 30665 30666 powerpc: Move duplicated BAT defines to mmu.h 30667 30668 The BAT fields are architected; there's no need for these to be in 30669 cpu-specific files. Drop the duplication and move these to 30670 include/asm-ppc/mmu.h. Also, remove the BL_xxx defines that were only 30671 used by the alaska board, and switch to using the BATU_BL_xxx defines 30672 used by all the other boards. The BL_ defines previously in use 30673 had to be shifted into the proper position for use, which was inefficient. 30674 30675 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 30676 30677commit 6e61fae4d360a1380b63e7d007b31477e366bcce 30678Author: Becky Bruce <beckyb@kernel.crashing.org> 30679Date: Tue Feb 3 18:10:50 2009 -0600 30680 30681 drivers/pci: Create pci_map_bar function 30682 30683 It is no longer always true that the pci bus address can be 30684 used as the virtual address for pci accesses. pci_map_bar() 30685 is created to return the virtual address for a pci region. 30686 30687 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 30688 30689commit 2ecca3401775b125c3b9ff65766befb23989414b 30690Author: Becky Bruce <beckyb@kernel.crashing.org> 30691Date: Tue Feb 3 18:10:49 2009 -0600 30692 30693 mpc8641hpcn: Set up outbound pci windows before inbound 30694 30695 Because the inbound pci windows are mapped generously, set up 30696 the more specific outbound windows first. This way, when we 30697 search the pci regions for something, we will hit on the more 30698 specific region. This can actually be a problem on systems 30699 with large amounts of RAM. 30700 30701 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 30702 30703commit b81b773ead0687114dc8a800f99ea6e504447739 30704Author: Becky Bruce <beckyb@kernel.crashing.org> 30705Date: Mon Feb 2 16:34:52 2009 -0600 30706 30707 mpc8641hpcn: Use physical address in flash banks defintion 30708 30709 If the VA and PA of the flash aren't the same, the banks list 30710 should be initialized to hold the physical address. Correct this. 30711 30712 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 30713 30714commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870 30715Author: Ilya Yanok <yanok@emcraft.com> 30716Date: Tue Feb 10 00:22:31 2009 +0100 30717 30718 qong: support for Dave/DENX QongEVB-LITE board 30719 30720 This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board. 30721 30722 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 30723 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 30724 30725commit 62cbc408f52fc9a5eb849e0b882c504780c9d183 30726Author: Ilya Yanok <yanok@emcraft.com> 30727Date: Mon Feb 9 18:45:28 2009 +0100 30728 30729 dnet: driver for Dave DNET ethernet controller 30730 30731 Driver for Dave DNET ethernet controller (used on Dave/DENX 30732 QongEVB-LITE board). 30733 30734 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 30735 Acked-by: Ben Warren <biggerbadderben@gmail.com> 30736 30737commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf 30738Author: Kumar Gala <galak@kernel.crashing.org> 30739Date: Fri Feb 6 09:49:32 2009 -0600 30740 30741 pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching 30742 30743 When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys} 30744 we should give preference to memory regions that aren't system memory. 30745 30746 Its possible that we have over mapped system memory in the regions and 30747 we want to avoid depending on the order of the regions. 30748 30749 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30750 30751commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612 30752Author: Kumar Gala <galak@kernel.crashing.org> 30753Date: Fri Feb 6 09:49:31 2009 -0600 30754 30755 pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity 30756 30757 The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and 30758 can be confusing when reading the code. 30759 30760 Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used 30761 for system memory mapping purposes. 30762 30763 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 30764 30765commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec 30766Author: Ilya Yanok <yanok@emcraft.com> 30767Date: Sun Feb 8 00:59:43 2009 +0300 30768 30769 mx31: add GPIO registers definitions 30770 30771 Added definitions for i.MX31 processor GPIO registers. 30772 30773 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 30774 30775commit 8da601280a8acbc3385784780ed35130e53812f1 30776Author: Peter Tyser <ptyser@xes-inc.com> 30777Date: Wed Feb 4 13:47:22 2009 -0600 30778 30779 NAND: Add timeout for reset command 30780 30781 Without the timeout present an infinite loop can occur if the 30782 NAND device is broken or not present. 30783 30784 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 30785 Signed-off-by: Scott Wood <scottwood@freescale.com> 30786 30787commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126 30788Author: Peter Tyser <ptyser@xes-inc.com> 30789Date: Wed Feb 4 13:39:40 2009 -0600 30790 30791 NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST 30792 30793 Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support 30794 for disabling the "No NAND device found!!!" warning when 30795 CONFIG_SYS_NAND_QUIET_TEST was defined. This re-adds support 30796 for silencing the warning. 30797 30798 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 30799 Signed-off-by: Scott Wood <scottwood@freescale.com> 30800 30801commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13 30802Author: Valeriy Glushkov <gvv@lstec.com> 30803Date: Mon Jan 19 16:32:59 2009 +0200 30804 30805 NAND: Fixed invalid pointers to static relocated chip names 30806 30807 Dear Wolfgang, 30808 30809 You are right, the patch was ugly. 30810 The new one seems to be better. 30811 30812 Signed-off-by: Valeriy Glushkov <gvv@lstec.com> 30813 Signed-off-by: Scott Wood <scottwood@freescale.com> 30814 30815commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8 30816Author: Nishanth Menon <nm@ti.com> 30817Date: Mon Feb 2 18:20:12 2009 -0600 30818 30819 ARM:OMAP3:Zoom1: Add nand unlock option 30820 30821 Enable NAND_UNLOCK option for unlocking nand for 30822 erase/write operations 30823 30824 Signed-off-by: Nishanth Menon <nm@ti.com> 30825 30826commit 5a9427dc9b8438759db3f67a1e547062f76eb18d 30827Author: derek@siconix.com <derek@siconix.com> 30828Date: Mon Jan 26 14:08:17 2009 -0700 30829 30830 env_nand: fix env memory release 30831 30832 This fixes a bug that tmp environment memory not being released. 30833 30834 Signed-off-by: Derek Ou <dou@siconix.com> 30835 Signed-off-by: Scott Wood <scottwood@freescale.com> 30836 30837commit 05fd88776419df59e7f37bac063a209409dd801d 30838Author: Guennadi Liakhovetski <lg@denx.de> 30839Date: Fri Feb 6 10:37:45 2009 +0100 30840 30841 ARM: remove unused variable 30842 30843 The "size" variable in start_armboot() in lib_arm/board.c is only really 30844 used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be 30845 eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.) 30846 30847 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 30848 30849commit 6989e4f546d960a407dd5425f800dff9751c8132 30850Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30851Date: Thu Feb 5 09:33:50 2009 -0500 30852 30853 Coldfire: M527x: Add missing GPIO register address defines 30854 30855 Add missing GPIO registers address definition for Coldfire M5271. 30856 30857 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30858 30859commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95 30860Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30861Date: Fri Jan 23 14:42:58 2009 -0500 30862 30863 Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command 30864 30865 Modified mii_init to support boards with PHYs that are not set to 30866 autonegotiate, but still want to use u-boot's mii commands to probe 30867 the smi bus. Such PHYs will not set the Autonegotiate-done bit. 30868 30869 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30870 30871commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f 30872Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30873Date: Fri Jan 23 11:44:30 2009 -0500 30874 30875 Coldfire: Applied baudrate formula of serial_init to serial_setbrg 30876 30877 Applied the patch for baudrate divider value truncation for 30878 serial_init to serial_setbrg as well. 30879 30880 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30881 30882commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148 30883Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30884Date: Fri Jan 23 14:07:05 2009 -0500 30885 30886 Coldfire: M5271EVB: Board header update (dependencies) 30887 30888 Cleanup for M5271EVB: 30889 Added clarification on the use of CONFIG_SYS_CLOCK. 30890 Modified to use u-boot's HUSH parser. 30891 Cleanup on environment settings. 30892 Removed compiler warning by defining CONFIG_SYS_CS0_* 30893 30894 Dependencies: 30895 Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier. 30896 This depends on a patch to include/asm-m68k/m5271.h 30897 that defines the multiplier and divider ratios. 30898 30899 Removed the definition of CONFIG_SYS_FECI2C. 30900 This depends on a patch that removes the use of it in 30901 cpu/mcf52x2/cpu_init.c 30902 30903 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30904 30905commit e0db344fabfeb4f9649846f94838f51172f6a1f6 30906Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30907Date: Thu Jan 29 14:36:06 2009 -0500 30908 30909 Coldfire: M5271: Allow board header file to specify clock multiplier 30910 30911 M5271 dynamic clock multiplier. It is currently fixed at 100MHz. 30912 30913 Allow the board header file to set their own multiplier and divider. 30914 Added the #define for the multiplier and divider to the cpu header file. 30915 30916 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30917 30918commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3 30919Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30920Date: Fri Jan 23 10:47:13 2009 -0500 30921 30922 Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C 30923 30924 Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB). 30925 Use read-modify-write to activate the FEC pins without disabling I2C. 30926 30927 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30928 30929commit ee73cc59ab904976af3c33b454fc84f78618b2d1 30930Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30931Date: Fri Jan 23 09:45:34 2009 -0500 30932 30933 Coldfire: cmd_bdinfo cleanup 30934 30935 CONFIG_M68K bdinfo cleanup: 30936 30937 Fixed compiler warning about baudrate printing. 30938 format '%d' expects type 'int', but argument 2 has type 'long unsigned int'. 30939 30940 Added printing of "cpufreq" 30941 30942 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30943 30944commit 4ffc39050aa46ed8a3d29732293dff769e54fffa 30945Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30946Date: Fri Jan 23 09:27:00 2009 -0500 30947 30948 Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list 30949 30950 Added the CONFIG_M5271 to the list of Coldfire V2 processor. This 30951 was causing the bus clock (not CPU clock) to be declared twice as 30952 fast as it actually is. This causes UARTS to operate at half the 30953 specified baudrate. 30954 30955 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 30956 30957commit 59d1bda7f92c8a28c3aba94e48063749d425949f 30958Author: Dirk Eibach <eibach@gdsys.de> 30959Date: Tue Feb 3 15:15:21 2009 +0100 30960 30961 ppc4xx: Make PCIE support selectable 30962 30963 On some platforms PCIE support is not required, but would be included 30964 because the cpu supports it. To reduce fooprint it is now configurable 30965 via CONFIG_PCI_DISABLE_PCIE. 30966 30967 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 30968 Signed-off-by: Stefan Roese <sr@denx.de> 30969 30970commit b129eff5ede394cc1faeb6dbf6a987e91abce552 30971Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 30972Date: Tue Feb 3 22:13:16 2009 +0100 30973 30974 ppc4xx: Only fixup opb attached UARTs 30975 30976 This patch updates the fdt UART clock fixup code to 30977 only touch CPU internal UARTs on 4xx systems. 30978 Only these UARTs are definitely clocked by gd->uart_clk. 30979 30980 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 30981 Signed-off-by: Stefan Roese <sr@denx.de> 30982 30983commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c 30984Author: Mike Frysinger <vapier@gentoo.org> 30985Date: Tue Jan 13 11:00:29 2009 -0500 30986 30987 Blackfin: move default boot SPI CS to common code 30988 30989 Move the default SPI CS that we boot from into common code so that it can 30990 be used in other SPI drivers and environment settings. 30991 30992 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 30993 30994commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6 30995Author: Mike Frysinger <vapier@gentoo.org> 30996Date: Wed Dec 10 12:33:54 2008 -0500 30997 30998 Blackfin: dynamically update UART speed when initializing 30999 31000 Previously, booting over the UART required the baud rate to be known ahead
31001 of time. Using a bit of tricky simple math, we can calculate the new board 31002 rate based on the old divisors. 31003 31004 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31005 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org> 31006 31007commit 97f265f14f23050f3cb997f617f3a6917b843ea2 31008Author: Mike Frysinger <vapier@gentoo.org> 31009Date: Tue Dec 9 17:21:08 2008 -0500 31010 31011 Blackfin: add support for fast SPI reads with Boot ROM 31012 31013 Newer Blackfin boot roms support using the fast SPI read command rather than 31014 just the slow one. If the functionality is available, then use it. 31015 31016 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31017 31018commit 67619982bfc5cd62710a48e3cbffc304cb78c341 31019Author: Mike Frysinger <vapier@gentoo.org> 31020Date: Sat Oct 11 21:46:52 2008 -0400 31021 31022 Blackfin: check for reserved settings in DDR MMRs 31023 31024 Some bits of the DDR MMRs should not be set. If they do, bad things may 31025 happen (like random failures or hardware destruction). 31026 31027 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31028 31029commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6 31030Author: Mike Frysinger <vapier@gentoo.org> 31031Date: Sat Oct 11 21:54:00 2008 -0400 31032 31033 Blackfin: set default voltage levels for BF538/BF539 parts 31034 31035 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31036 31037commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f 31038Author: Mike Frysinger <vapier@gentoo.org> 31039Date: Sun Jun 1 01:29:57 2008 -0400 31040 31041 Blackfin: use on-chip syscontrol() rom function when available 31042 31043 Newer Blackfin's have an on-chip rom with a syscontrol() function that needs 31044 to be used to properly program the memory and voltage settings as it will 31045 include (possibly critical) factory tested bias values. 31046 31047 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31048 31049commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63 31050Author: Stefan Roese <sr@denx.de> 31051Date: Thu Feb 5 11:44:52 2009 +0100 31052 31053 cfi_flash: Fix typo in cfi_flash.c 31054 31055 Patch "flash/cfi_flash: Use virtual sector start address, not phys" 31056 introduced a small typo and compilation warning for systems with CFI 31057 legacy support (e.g. hcu4). This patch fixes it. 31058 31059 Signed-off-by: Stefan Roese <sr@denx.de> 31060 31061commit 28745db969b72693754991c838f68a7fb4a8b1ab 31062Author: Stefan Roese <sr@denx.de> 31063Date: Thu Jan 29 11:21:38 2009 +0100 31064 31065 jedec_flash: Only use manufacturer defines from common flash.h 31066 31067 This patch removes the double defined manufacturer defines from 31068 jedec_flash.c. Since the common defines in flash.h are 32bit 31069 we now need the (16) cast. This patch also removes the compilation 31070 warning (e.g. seen on hcu5): 31071 31072 ./MAKEALL hcu5 31073 Configuring for hcu5 board... 31074 jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type 31075 31076 Signed-off-by: Stefan Roese <sr@denx.de> 31077 31078commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2 31079Author: Stefan Roese <sr@denx.de> 31080Date: Thu Feb 5 11:25:57 2009 +0100 31081 31082 cfi_flash: Silence compilation warning 31083 31084 Patch "flash/cfi_flash: Use virtual sector start address, not phys" 31085 introduced a small compilation warning. This patch fixes it. 31086 31087 Signed-off-by: Stefan Roese <sr@denx.de> 31088 31089commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38 31090Author: Becky Bruce <beckyb@kernel.crashing.org> 31091Date: Mon Feb 2 16:34:51 2009 -0600 31092 31093 flash/cfi_flash: Use virtual sector start address, not phys 31094 31095 include/flash.h was commented to say that the address in 31096 flash_info->start was a physical address. However, from u-boot's 31097 point of view, and looking at most flash code, it makes more 31098 sense for this to be a virtual address. So I corrected the 31099 comment to indicate that this was a virtual address. 31100 31101 The only flash driver that was actually treating the address 31102 as physical was the mtd/cfi_flash driver. However, this code 31103 was using it inconsistently as it actually directly dereferenced 31104 the "start" element, while it used map_physmem to get a 31105 virtual address in other places. I changed this driver so 31106 that the code which initializes the info->start field calls 31107 map_physmem to get a virtual address, eliminating the need for 31108 further map_physmem calls. The code is now consistent. 31109 31110 The *only* place a physical address should be used is when defining the 31111 flash banks list that is used to initialize the flash_info struct, 31112 usually found in the board config file. 31113 31114 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 31115 Signed-off-by: Stefan Roese <sr@denx.de> 31116 31117commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779 31118Author: Wolfgang Denk <wd@denx.de> 31119Date: Wed Feb 4 09:42:20 2009 +0100 31120 31121 Fix compiler warning 31122 31123 (shows up only when DEBUG is enabled) 31124 31125 Signed-off-by: Wolfgang Denk <wd@denx.de> 31126 31127commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb 31128Author: Mike Frysinger <vapier@gentoo.org> 31129Date: Mon Oct 6 03:45:55 2008 -0400 31130 31131 Blackfin: update anomaly lists 31132 31133 Update the anomaly lists to match latest anomaly sheets. 31134 31135 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31136 31137commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d 31138Author: Ralph Kondziella <rk@argos-messtechnik.de> 31139Date: Mon Jan 26 12:34:36 2009 -0700 31140 31141 ADS5121 Add PATA support 31142 31143 Original patch from Ralph Kondziella 31144 plus clean up by Wolfgang Denk 31145 plus changes by John Rigby 31146 use ips clock not lpc 31147 port forward to current u-boot release 31148 31149 Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de> 31150 Signed-off-by: Wolfgang Denk <wd@denx.de> 31151 Signed-off-by: John Rigby <jrigby@freescale.com> 31152 31153commit abfbd0ae4967df18102345db4f4b529a13da107b 31154Author: Martha Marx <mmarx@silicontkx.com> 31155Date: Mon Jan 26 10:45:07 2009 -0700 31156 31157 ADS5121 Add IC Ident Module (IIM) support 31158 31159 IIM (IC Identification Module) is the fusebox for the mpc5121. 31160 Use #define CONFIG_IIM to turn on the clock for this module 31161 use #define CONFIG_CMD_FUSE to add fusebox commands. 31162 Fusebox commands include the ability to read 31163 the status, read the register cache, override the register cache, 31164 program the fuses and sense them. 31165 31166 Signed-off-by: Martha Marx <mmarx@silicontkx.com> 31167 Signed-off-by: John Rigby <jrigby@freescale.com> 31168 31169commit 14d19cd1bce9a24b1335598f1568140f4950e4d9 31170Author: John Rigby <jrigby@freescale.com> 31171Date: Fri Jan 23 10:33:15 2009 -0700 31172 31173 ADS5121 Fix rev2 silicon pci iopad config 31174 31175 Reset config is not correct 31176 31177 Signed-off-by: John Rigby <jrigby@freescale.com> 31178 31179commit 4c154252c480b13f69ce1b71a9530b0515da76a6 31180Author: John Rigby <jrigby@freescale.com> 31181Date: Wed Nov 19 13:57:34 2008 -0700 31182 31183 ADS5121 DIU Add diu_bmp_addr env 31184 31185 Add support for using a bmp other than 31186 FSL_Logo_BMP for the DIU splash screen. 31187 31188 Can now set the env var "diu_bmp_addr" to 31189 the address of a BMP in flash to use instead 31190 of the default FSL_Logo_BMP. 31191 31192 Signed-off-by: Martha Marx <mmarx@silicontkx.com> 31193 Signed-off-by: John Rigby <jrigby@freescale.com> 31194 31195commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a 31196Author: John Rigby <jrigby@freescale.com> 31197Date: Thu Oct 30 16:39:35 2008 -0600 31198 31199 ADS5121 DIU Make inclusion of FSL logo optional 31200 31201 Make inclusion of FSL logo optional and 31202 turn it off by default. 31203 31204 Signed-off-by: John Rigby <jrigby@freescale.com> 31205 31206commit bd99ec149abe94e7f6b2bda4766d701b4005053f 31207Author: Remy Bohmer <linux@bohmer.net> 31208Date: Sun Feb 1 12:27:53 2009 +0100 31209 31210 Compile warning fix in onenand_uboot.h 31211 31212 Regression since merge window after 2009.01 31213 31214 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31215 31216commit a270d1e7295c3d829f42c0480117941dfc1c6477 31217Author: Stefan Roese <sr@denx.de> 31218Date: Thu Jan 29 06:33:55 2009 +0100 31219 31220 USB: Add EHCI support for VCT EHCI controller (really with driver now) 31221 31222 Somehow I missed the real driver part in my last patch version. This patch 31223 now adds the driver. 31224 31225 Signed-off-by: Stefan Roese <sr@denx.de> 31226 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31227 31228commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e 31229Author: Cliff Cai <cliff.cai@analog.com> 31230Date: Sat Nov 29 18:22:38 2008 -0500 31231 31232 Blackfin: add driver for on-chip MMC/SD controller 31233 31234 This is a port of the Linux Blackfin on-chip SDH driver to U-Boot. 31235 31236 Signed-off-by: Cliff Cai <cliff.cai@analog.com> 31237 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31238 31239commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2 31240Author: Mike Frysinger <vapier@gentoo.org> 31241Date: Sat Oct 11 22:47:34 2008 -0400 31242 31243 Blackfin: add port muxing for BF51x SPI 31244 31245 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31246 31247commit fc68f9f85959664d528daea2aef5ef54974331ce 31248Author: Mike Frysinger <vapier@gentoo.org> 31249Date: Tue Jan 6 06:16:19 2009 -0500 31250 31251 Blackfin: output booting source when booting 31252 31253 Knowing the booting source of the part is useful, especially when the part 31254 can switch dynamically between sources. 31255 31256 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31257 31258commit 8df3ce0f49c37947800ac7c84e751499882619fc 31259Author: Mike Frysinger <vapier@gentoo.org> 31260Date: Thu Dec 11 06:30:46 2008 -0500 31261 31262 Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom 31263 31264 Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by 31265 the Blackfin on-chip bootrom to boot out of SPI flash. 31266 31267 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31268 31269commit 2b4a486e6fac502d8b883e344cc4012283945b3d 31270Author: Mike Frysinger <vapier@gentoo.org> 31271Date: Thu Dec 11 04:06:26 2008 -0500 31272 31273 Blackfin: update asm-blackfin/posix_types.h to latest Linux version 31274 31275 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31276 31277commit e5eb93e77391bcc308697116c544ea1340aaae8a 31278Author: Mike Frysinger <vapier@gentoo.org> 31279Date: Sat Dec 6 02:54:52 2008 -0500 31280 31281 Blackfin: add port I bits 31282 31283 Some people need to access port I, so make sure the pins are defined. 31284 31285 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31286 31287commit 8a6b272596d43de0db4943eac7af58c3534c4026 31288Author: Sonic Zhang <Sonic.Zhang@analog.com> 31289Date: Wed Nov 26 22:16:45 2008 -0500 31290 31291 Blackfin: add driver for on-chip ATAPI controller 31292 31293 This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot. 31294 31295 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com> 31296 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31297 31298commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b 31299Author: Mike Frysinger <vapier@gentoo.org> 31300Date: Wed Nov 26 21:43:06 2008 -0500 31301 31302 Blackfin: add driver for on-chip NAND controller 31303 31304 This is a port of the Linux Blackfin on-chip NFC driver to U-Boot. 31305 31306 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31307 31308commit 4148e02abae9a099f4444b5e168ebc2b911d2295 31309Author: Mike Frysinger <vapier@gentoo.org> 31310Date: Wed Nov 12 07:18:15 2008 -0500 31311 31312 Blackfin: build with -mno-fdpic 31313 31314 Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build 31315 up u-boot, including ones that output FDPIC ELF by default. 31316 31317 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31318 31319commit 70e95589a24a2d83ad00317e4a9611d0211ecb58 31320Author: Mike Frysinger <vapier@gentoo.org> 31321Date: Tue Nov 11 05:43:57 2008 -0500 31322 31323 Blackfin: fix up EBIU defines 31324 31325 The EBIU defines for EBSZ 256/512 were incorrect. 31326 31327 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31328 31329commit 961954ea0ec8dc4341034c1a1ff3107ec0527809 31330Author: Mike Frysinger <vapier@gentoo.org> 31331Date: Wed Nov 5 12:45:24 2008 -0500 31332 31333 Blackfin: use 8/16/32 bit transfer widths in dma_memcpy() 31334 31335 Rather than using 8bit transfers for everything, use 8/16/32 bit transfers 31336 as usable with the source/destination addresses and the count size. 31337 31338 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31339 31340commit b93c68648426f906d63b98117496b6415f505f39 31341Author: Mike Frysinger <vapier@gentoo.org> 31342Date: Wed Nov 5 08:50:23 2008 -0500 31343 31344 Blackfin: only flag L1 instruction for DMA memcpy 31345 31346 The performance difference from doing an 8 bit DMA memcpy vs an optimized 31347 core memcpy can be pretty big when you add in the overhead of setting up the 31348 MDMA registers, cache flushes, etc... So only use dma_memcpy() when we 31349 actually require it. 31350 31351 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31352 31353commit e347c092a3b3a2ce1e72f25f4829163634d09fbe 31354Author: Mike Frysinger <vapier@gentoo.org> 31355Date: Wed Nov 5 07:20:37 2008 -0500 31356 31357 Blackfin: dma_memcpy(): fix random failures 31358 31359 We have to make sure the DMA channel is actually disabled in hardware before 31360 attempting to reprogram it. Otherwise the new settings are ignored and we 31361 end up with random hangs/failures. 31362 31363 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31364 31365commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3 31366Author: Mike Frysinger <vapier@gentoo.org> 31367Date: Tue Nov 4 00:04:03 2008 -0500 31368 31369 Blackfin: rewrite cache handling functions 31370 31371 Take the cache flush functions from the kernel as they use hardware loops in 31372 order to get optimal performance. 31373 31374 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31375 31376commit 84c5f0dc47d17593fd81206614891bdc94f6d51c 31377Author: Mike Frysinger <vapier@gentoo.org> 31378Date: Mon Nov 3 22:30:05 2008 -0500 31379 31380 Blackfin: setup bi_enetaddr for single nets 31381 31382 For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup 31383 based on $ethaddr, so set it up. 31384 31385 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31386 31387commit 40599239e7875b39e2a5c12e6545992041c72c52 31388Author: Mike Frysinger <vapier@gentoo.org> 31389Date: Fri Oct 24 22:48:47 2008 -0400 31390 31391 Blackfin: cache core/system clock values 31392 31393 Calculating the clocks requires a bit of calls to gcc math functions, so 31394 cache the values after the first run since they'll most likely never 31395 change once U-Boot is up and running. 31396 31397 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31398 31399commit 6957a6209b02f6b69607fc47425f13731cc477f1 31400Author: Mike Frysinger <vapier@gentoo.org> 31401Date: Fri Oct 24 18:18:16 2008 -0400 31402 31403 Blackfin: enable --gc-sections 31404 31405 Start building all Blackfin boards with -ffunction-sections/-fdata-sections 31406 and linking with --gc-sections. 31407 31408 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31409 31410commit ee1d2001ea7fbabb2b9256026dc5468f057337f8 31411Author: Mike Frysinger <vapier@gentoo.org> 31412Date: Mon Oct 20 21:08:54 2008 -0400 31413 31414 Blackfin: dont check baud if it wont actually get used 31415 31416 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31417 31418commit 400f5778f375bc99c73c8488c555def261ccfab7 31419Author: Mike Frysinger <vapier@gentoo.org> 31420Date: Tue Oct 14 07:54:09 2008 -0400 31421 31422 Blackfin: add driver for on-chip SPI controller 31423 31424 This fills out the SPI backend for the Blackfin on-chip SPI peripheral. 31425 31426 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31427 31428commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd 31429Author: Mike Frysinger <vapier@gentoo.org> 31430Date: Sat Oct 18 05:33:51 2008 -0400 31431 31432 Blackfin: only build post code when CONFIG_POST 31433 31434 Save some time by using CONFIG_POST in the Makefile rather than C files. 31435 31436 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31437 31438commit 6d7d4803c74bb86e1b401b1199e63381a62b9382 31439Author: Mike Frysinger <vapier@gentoo.org> 31440Date: Thu Jan 8 11:57:57 2009 -0500 31441 31442 Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues 31443 31444 Redo how pointers are managed to get rid of ugly casts and strict pointer 31445 aliasing issues that are highlighted by gcc 4.3. 31446 31447 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31448 Acked-by: Ben Warren <biggerbadderben@gmail.com> 31449 31450commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b 31451Author: Mike Frysinger <vapier@gentoo.org> 31452Date: Tue Dec 9 17:46:21 2008 -0500 31453 31454 Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII 31455 31456 No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that 31457 does exactly the same thing as common "CONFIG_RMII". 31458 31459 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31460 Acked-by: Ben Warren <biggerbadderben@gmail.com> 31461 31462commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5 31463Author: Mike Frysinger <vapier@gentoo.org> 31464Date: Wed Nov 5 06:36:15 2008 -0500 31465 31466 Blackfin: bfin_mac: use common debug() 31467 31468 Rather then defining our own DEBUGF(), just use the common debug(). 31469 31470 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31471 Acked-by: Ben Warren <biggerbadderben@gmail.com> 31472 31473commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04 31474Author: Mike Frysinger <vapier@gentoo.org> 31475Date: Mon Oct 20 13:59:51 2008 -0400 31476 31477 Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ} 31478 31479 Rather than having the on-chip MAC hardcoded to phy address 1 and a speed 31480 of 2.5mhz, use these as defaults if the board doesn't specify otherwise. 31481 31482 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31483 Acked-by: Ben Warren <biggerbadderben@gmail.com> 31484 31485commit ac45af4e63ea925f4accc98453aab1a1166c196d 31486Author: Mike Frysinger <vapier@gentoo.org> 31487Date: Tue Oct 14 04:52:00 2008 -0400 31488 31489 Blackfin: bfin_mac: cleanup MII/PHY functions 31490 31491 Cleanup and rewrite the MII/PHY related functions so that we can reuse the 31492 existing common linux/miiphy.h code and hook into the `mii` command. 31493 31494 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31495 Acked-by: Ben Warren <biggerbadderben@gmail.com> 31496 31497commit 6b310a05f0d10c751f22468040932139f71c71d3 31498Author: Mike Frysinger <vapier@gentoo.org> 31499Date: Tue Oct 14 00:31:30 2008 -0400 31500 31501 Blackfin: bfin_mac: set MDCDIV based on SCLK 31502 31503 Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK), 31504 use the real algorithm so it gets set correctly regardless of SCLK. 31505 31506 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31507 Acked-by: Ben Warren <biggerbadderben@gmail.com> 31508 31509commit 930590f3e49c8f32256edf2e5861e1535a329c6c 31510Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31511Date: Sat Jan 31 09:10:48 2009 +0100 31512 31513 ixp: move serial to drivers/serial 31514 31515 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31516 31517commit f90c8022f448bc5e93090e4b714368e52e912f0f 31518Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31519Date: Sat Jan 31 09:04:58 2009 +0100 31520 31521 ixp: move pci init in arm/board instead of cpu 31522 31523 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31524 31525commit 8cb79b5f275f1888ccb278a2d2197140444a84b7 31526Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31527Date: Sat Jan 31 08:56:49 2009 +0100 31528 31529 ixp: move pci drivers to drivers/pci 31530 31531 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31532 31533commit 012d5bab09a534e4800b02f50cf508e6837202ea 31534Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31535Date: Sat Jan 31 08:53:44 2009 +0100 31536 31537 ixp: Move conditional compilation to Makefile 31538 31539 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31540 31541commit f693f501d67434df1f815fd1824a71973ae08207 31542Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31543Date: Sat Jan 31 08:53:44 2009 +0100 31544 31545 ixp: add missing os define 31546 31547 need by arm-elf toolchains and no impact on the arm-linux one 31548 31549 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31550 31551commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f 31552Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31553Date: Sat Jan 31 09:53:39 2009 +0100 31554 31555 ixp: remove the option to include the Microcode 31556 31557 instead the board will have to load it from flash or ram 31558 which will be specified by npe_ucode env var 31559 31560 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31561 31562commit 1b017baf2071d8daf643bce87250db898c606c66 31563Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31564Date: Fri Jan 30 09:45:23 2009 +0100 31565 31566 ixp/npe: Move conditional compilation to Makefile 31567 31568 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31569 31570commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0 31571Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31572Date: Wed Jan 28 21:58:04 2009 +0100 31573 31574 SX1: add hardware V2 support 31575 31576 In the V2 the 2 flash has been replace by one 32MB flash 31577 31578 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31579 31580commit f877f2233dbcd7417c2f0babe6a849099b167f3c 31581Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31582Date: Wed Jan 28 21:58:03 2009 +0100 31583 31584 SX1: Fix second flash mapping 31585 31586 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31587 31588commit 47fd3bffed6430c91eb2660f859574ed98be5bd8 31589Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31590Date: Wed Jan 28 21:58:03 2009 +0100 31591 31592 SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty 31593 31594 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31595 31596commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6 31597Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31598Date: Wed Jan 28 21:57:59 2009 +0100 31599 31600 move Samsung's board to board/samsung 31601 31602 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31603 31604commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e 31605Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31606Date: Thu Jan 29 12:07:21 2009 +0100 31607 31608 move ARM Ltd. to vendor dir 31609 31610 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 31611 31612commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf 31613Author: Larry Johnson <lrj@acm.org> 31614Date: Wed Jan 28 15:30:37 2009 -0500 31615 31616 ppc4xx: Clean up configuration file for Korat board 31617 31618 This patch updates the default environmental variables for the 31619 Korat PPC 440EPx board, and makes additional minor fixes. 31620 31621 Signed-off-by: Larry Johnson <lrj@acm.org> 31622 Signed-off-by: Stefan Roese <sr@denx.de> 31623 31624commit f20405e31680efc36293c59b4963db57c9d93df4 31625Author: Larry Johnson <lrj@acm.org> 31626Date: Wed Jan 28 15:30:02 2009 -0500 31627 31628 ppc4xx: Add variable "korat_usbcf" for Korat board 31629 31630 The new environment variable "korat_usbcf" selects the USB 31631 port used by the Korat board's CompactFlash controller. 31632 31633 Signed-off-by: Larry Johnson <lrj@acm.org> 31634 Signed-off-by: Stefan Roese <sr@denx.de> 31635 31636commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe 31637Author: Gunnar Rangoy <gunnar@rangoy.com> 31638Date: Fri Jan 23 12:56:31 2009 +0100 31639 31640 AVR32: macb - Search for PHY id 31641 31642 This patch adds support for searching through available PHY-addresses in 31643 the macb-driver. This is needed for the ATEVK1100 evaluation board, 31644 where the PHY-address will be initialized to either 1 or 7. 31645 31646 This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when 31647 enabled tells the driver to search for the PHY address. 31648 31649 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com> 31650 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com> 31651 Signed-off-by: Olav Morken <olavmrk@gmail.com> 31652 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 31653 31654commit af8626e0c08a780d9ded1d9c4883a89355f60e75 31655Author: Olav Morken <olavmrk@gmail.com> 31656Date: Fri Jan 23 12:56:26 2009 +0100 31657 31658 Fix IP alignment problem 31659 31660 This patch removes volatile from: 31661 volatile IP_t *ip = (IP_t *)xip; 31662 31663 Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when 31664 using volatile, which causes an exception since xip isn't aligned on a word 31665 boundary. 31666 31667 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com> 31668 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com> 31669 Signed-off-by: Olav Morken <olavmrk@gmail.com> 31670 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 31671 31672commit 12a8b9db12f82a189ff143a58731007f5469da61 31673Author: Ron Madrid <ron_madrid@sbcglobal.net> 31674Date: Wed Jan 28 16:17:21 2009 -0800 31675 31676 Marvell 88E1118 interrupt fix 31677 31678 This patch adjusts the LED control so that interrupt lines are not reading LEDs 31679 and effectively causing indefinite interrupts to the controller. 31680 31681 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net> 31682 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 31683 31684commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9 31685Author: Stefan Roese <sr@denx.de> 31686Date: Wed Jan 21 17:14:26 2009 +0100 31687 31688 net: smc911x.c: Add LAN9211 to chip_ids[] array 31689 31690 Signed-off-by: Stefan Roese <sr@denx.de> 31691 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 31692 31693commit 75edebe3011c963a7cd84be0f4a987477f2aaf89 31694Author: Mike Frysinger <vapier@gentoo.org> 31695Date: Tue Jan 27 16:53:39 2009 -0500 31696 31697 Move is_valid_ether_addr() to include/net.h 31698 31699 Import the is_valid_ether_addr() function from the Linux kernel. 31700 31701 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31702 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 31703 31704commit 268859338c0188eab1d0d3b867b7dad3c5cc734a 31705Author: Michal Simek <monstr@monstr.eu> 31706Date: Mon Jan 5 12:25:13 2009 +0100 31707 31708 net: Sort Makefile labels 31709 31710 Signed-off-by: Michal Simek <monstr@monstr.eu> 31711 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 31712 31713commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2 31714Author: Wolfgang Denk <wd@denx.de> 31715Date: Wed Jan 28 23:06:42 2009 +0100 31716 31717 85xx: Fix compile breakage with sbc8540 and sbc8560 31718 31719 This fixes an error which raises just a warning: 31720 sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast 31721 31722 Signed-off-by: Wolfgang Denk <wd@denx.de> 31723 31724commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58 31725Author: Mike Frysinger <vapier@gentoo.org> 31726Date: Wed Jan 28 13:48:55 2009 -0500 31727 31728 SPD823TS: do not define CONFIG_CMD_ENV 31729 31730 Since the SPD823TS board does not actually have any writable flash to save 31731 its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is 31732 disabled. 31733 31734 This fixes the build error: 31735 common/libcommon.a(cmd_nvedit.o): In function `do_saveenv': 31736 common/cmd_nvedit.c:557: undefined reference to `saveenv' 31737 make: *** [u-boot] Error 1 31738 31739 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31740 31741commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315 31742Author: Dirk Behme <dirk.behme@googlemail.com> 31743Date: Wed Jan 28 21:40:16 2009 +0100 31744 31745 OMAP3: Add Zoom1 board support 31746 31747 Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here: 31748 http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit 31749 31750 Signed-off-by: Nishanth Menon <nm@ti.com> 31751 Signed-off-by: Jason Kridner <jkridner@beagleboard.org> 31752 31753commit 2be2c6cc674e26237962f5cf4c0d311e139e4241 31754Author: Dirk Behme <dirk.behme@googlemail.com> 31755Date: Wed Jan 28 21:39:58 2009 +0100 31756 31757 OMAP3: Add Pandora support 31758 31759 Add Pandora support. 31760 31761 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com> 31762 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 31763 Signed-off-by: Jason Kridner <jkridner@beagleboard.org> 31764 31765commit ad9bc8e52d174d699d1367be0b90089e4fdeb933 31766Author: Dirk Behme <dirk.behme@googlemail.com> 31767Date: Wed Jan 28 21:39:58 2009 +0100 31768 31769 OMAP3: Add EVM board 31770 31771 Add EVM board support. 31772 31773 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com> 31774 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 31775 Signed-off-by: Jason Kridner <jkridner@beagleboard.org> 31776 31777commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec 31778Author: Dirk Behme <dirk.behme@googlemail.com> 31779Date: Wed Jan 28 21:39:57 2009 +0100 31780 31781 OMAP3: Add Overo board 31782 31783 Add Overo board support. 31784 31785 Signed-off-by: Steve Sakoman <sakoman@gmail.com> 31786 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 31787 Signed-off-by: Jason Kridner <jkridner@beagleboard.org> 31788 31789commit f904cdbb68167c647887f19929ad295dbaac8862 31790Author: Dirk Behme <dirk.behme@googlemail.com> 31791Date: Tue Jan 27 18:19:12 2009 +0100 31792 31793 OMAP3: Add common power code, README, and BeagleBoard 31794 31795 Add BeagleBoard support, common power code and README. 31796 31797 Signed-off-by: Jason Kridner <jkridner@beagleboard.org> 31798 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 31799 31800commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60 31801Author: Kumar Gala <galak@kernel.crashing.org> 31802Date: Wed Jan 28 08:31:10 2009 -0600 31803 31804 85xx: Fix compile breakage with MPC8540EVAL 31805 31806 Configuring for MPC8540EVAL board... 31807 mpc8540eval.c: In function 'checkboard': 31808 mpc8540eval.c:53: error: invalid operands to binary / 31809 make[1]: *** [mpc8540eval.o] Error 1 31810 31811 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 31812 31813commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6 31814Author: Bryan Wu <bryan.wu@analog.com> 31815Date: Sun Jan 18 23:04:27 2009 -0500 31816 31817 usb_scan_devices: fix output with no devices 31818 31819 We should check the return of usb_new_device() so that if no USB device is 31820 found, we print out the right message rather than always saying "new usb 31821 device found". 31822 31823 Signed-off-by: Bryan Wu <bryan.wu@analog.com> 31824 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31825 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31826 31827commit f1c1f540243438246aefb703fdcf16957e3a72e1 31828Author: Stefan Roese <sr@denx.de> 31829Date: Thu Jan 22 10:11:21 2009 +0100 31830 31831 USB: Add high-speed (480Mb/s) to all USB related outputs 31832 31833 With this patch the USB related connection speed output ("usb tree" command and 31834 debug output) is now high-speed enabled. 31835 31836 This patch also fixes a compilation warning when debugging is enabled. 31837 31838 Signed-off-by: Stefan Roese <sr@denx.de> 31839 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31840 31841commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb 31842Author: Stefan Roese <sr@denx.de> 31843Date: Wed Jan 21 17:12:19 2009 +0100 31844 31845 USB: Add dcache support to the EHCI driver 31846 31847 This patch adds routines to handle (flush/invalidate) the dcache for the 31848 QH and qTD structures and data buffers. This is needed on platforms using 31849 this EHCI support with dcache enabled (like the MIPS VCT board port). 31850 31851 Signed-off-by: Stefan Roese <sr@denx.de> 31852 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31853 31854commit 4e0ea0efc1e501186aca8577a4042fc6fa641602 31855Author: Stefan Roese <sr@denx.de> 31856Date: Wed Jan 21 17:12:28 2009 +0100 31857 31858 USB: Add EHCI support for VCT EHCI controller 31859 31860 Signed-off-by: Stefan Roese <sr@denx.de> 31861 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31862 31863commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d 31864Author: Stefan Roese <sr@denx.de> 31865Date: Wed Jan 21 17:12:10 2009 +0100 31866 31867 USB: Add config option to call ehci_hcd_init() again after EHCI reset 31868 31869 This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET 31870 to call ehci_hcd_init() again after ehci_reset() is executed. This 31871 is needed for the upcoming VCT EHCI support which needs to re-init 31872 the hcd part again after the EHCI CMD_RESET is executed. 31873 31874 Signed-off-by: Stefan Roese <sr@denx.de> 31875 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31876 31877commit 597eb28bd9691266b7b804364cda577cdb51d106 31878Author: Stefan Roese <sr@denx.de> 31879Date: Wed Jan 21 17:12:01 2009 +0100 31880 31881 USB: Fix speed detection on EHCI cntr with root hub transaction translators 31882 31883 This patch fixes an issue that the speed of USB devices was not detected 31884 correctly on some EHCI controllers. This will be used on the upcoming VCT 31885 EHCI support. 31886 31887 Signed-off-by: Stefan Roese <sr@denx.de> 31888 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31889 31890commit 20cc06611ea33fc0a67a5e56e6476379d2de3091 31891Author: Thomas Abraham <t-abraham@ti.com> 31892Date: Sun Jan 4 09:41:20 2009 +0530 31893 31894 usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform 31895 31896 Enabling USB MSC support for DM6446 (TI DaVinci) platform in the 31897 configuration file. 31898 31899 Signed-off-by: Ravi Babu <ravibabu@ti.com> 31900 Signed-off-by: Swaminathan S <swami.iyer@ti.com> 31901 Signed-off-by: Thomas Abraham <t-abraham@ti.com> 31902 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 31903 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31904 31905commit 538ef967715322f64ee08efa2296d9682111b014 31906Author: Thomas Abraham <t-abraham@ti.com> 31907Date: Sun Jan 4 09:41:16 2009 +0530 31908 31909 usb : musb : Enabling DM6446 (TI DaVinci) USB module power 31910 31911 Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level 31912 controller hook up to USB core layer. 31913 31914 Signed-off-by: Ravi Babu <ravibabu@ti.com> 31915 Signed-off-by: Swaminathan S <swami.iyer@ti.com> 31916 Signed-off-by: Thomas Abraham <t-abraham@ti.com> 31917 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 31918 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31919 31920commit e142e9f35f8ec61e74bf8019428b003f5070c33b 31921Author: Thomas Abraham <t-abraham@ti.com> 31922Date: Sun Jan 4 09:41:13 2009 +0530 31923 31924 usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support 31925 31926 Adding DM6446 (TI DaVinci) platform specific USB functionality for 31927 USB Phy and VBUS initialization. 31928 31929 Signed-off-by: Ravi Babu <ravibabu@ti.com> 31930 Signed-off-by: Swaminathan S <swami.iyer@ti.com> 31931 Signed-off-by: Thomas Abraham <t-abraham@ti.com> 31932 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 31933 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31934 31935commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da 31936Author: Thomas Abraham <t-abraham@ti.com> 31937Date: Sun Jan 4 09:41:09 2009 +0530 31938 31939 usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM 31940 31941 Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci) 31942 platform. 31943 31944 Signed-off-by: Ravi Babu <ravibabu@ti.com> 31945 Signed-off-by: Swaminathan S <swami.iyer@ti.com> 31946 Signed-off-by: Thomas Abraham <t-abraham@ti.com> 31947 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 31948 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31949 31950commit a142896934c755e679ba87e227a8e449f39b0012 31951Author: Thomas Abraham <t-abraham@ti.com> 31952Date: Sun Jan 4 09:41:03 2009 +0530 31953 31954 usb : musb : Adding host controller driver for Mentor USB controller 31955 31956 Adding Mentor USB core functionality and Mentor USB Host controller 31957 functionality for Mentor USB OTG controller (musbhdrc). 31958 31959 Signed-off-by: Ravi Babu <ravibabu@ti.com> 31960 Signed-off-by: Swaminathan S <swami.iyer@ti.com> 31961 Signed-off-by: Thomas Abraham <t-abraham@ti.com> 31962 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com> 31963 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31964 31965commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a 31966Author: Mike Frysinger <vapier@gentoo.org> 31967Date: Thu Jan 1 18:27:27 2009 -0500 31968 31969 usb.h: use standard __LITTLE_ENDIAN from Linux headers 31970 31971 Rather than forcing people to define a custom "LITTLEENDIAN", just use the 31972 __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is 31973 already setting up. 31974 31975 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 31976 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31977 31978commit 7b6e31eb17e3ff76238a60803fc531517d516223 31979Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 31980Date: Wed Dec 31 10:33:56 2008 +0100 31981 31982 USB ehci ixp4xx support 31983 31984 Add USB ehci ixp4xx host controller. Test on ixdp465 board. 31985 31986 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it> 31987 Signed-off-by: Remy Bohmer <linux@bohmer.net> 31988 31989commit 1ed9f9adc88218841dfeb60b9094a5a548bff009 31990Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 31991Date: Wed Dec 31 10:33:22 2008 +0100 31992 31993 USB ehci remove infinite loop and use handshake function 31994 31995 USB ehci code cleanup. Use handshake instead of infinite while loop 31996 to check the STD_ASS status 31997 31998 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it> 31999 Signed-off-by: Remy Bohmer <linux@bohmer.net> 32000
32001commit 8fea2914ac974029b65926ef8247d908f84d202d 32002Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 32003Date: Wed Dec 31 10:32:41 2008 +0100 32004 32005 Add initial support for USB ehci pci 32006 32007 Add USB ehci pci support. This patch doesn't include any 32008 pci_ids and it is not tested on real hardware. 32009 32010 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it> 32011 Signed-off-by: Remy Bohmer <linux@bohmer.net> 32012 32013commit 14e4111cdab7e7738ff6a203d445e4d8377f058f 32014Author: Bryan Wu <Bryan.Wu@analog.com> 32015Date: Thu Jan 1 19:48:07 2009 -0500 32016 32017 usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive 32018 32019 The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4 32020 does not like to be reset, so check for it. 32021 32022 Signed-off-by: Bryan Wu <bryan.wu@analog.com> 32023 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32024 Signed-off-by: Remy Bohmer <linux@bohmer.net> 32025 32026commit 1eb734fed3b79a5e6106dad16e88041894fdab30 32027Author: Thomas Abraham <t-abraham@ti.com> 32028Date: Sun Jan 4 12:15:35 2009 +0530 32029 32030 usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure 32031 32032 This patch populates the 'priv' field of the USB keyboard device_t 32033 structure. The 'priv' field is populated with the address of the 32034 'struct usb_device' structure that represents the USB device. 32035 32036 The 'priv' field can then be used in the 'usb_event_poll' function to 32037 determine the USB device that requires to be polled. An 32038 example of its usage in 'usb_event_poll' function is as below. 32039 32040 device_t *dev; 32041 struct usb_device *usb_kbd_dev; 32042 32043 <snip> 32044 32045 dev = device_get_by_name("usbkbd"); 32046 usb_kbd_dev = (struct usb_device *)dev->priv; 32047 iface = &usb_kbd_dev->config.if_desc[0]; 32048 32049 Signed-off-by: Thomas Abraham <t-abraham@ti.com> 32050 Signed-off-by: Remy Bohmer <linux@bohmer.net> 32051 32052commit 366523c26b6320af171459b19e6e0e9e3baa83ca 32053Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 32054Date: Thu Dec 18 10:05:37 2008 +0100 32055 32056 USB change speed 32057 32058 USB changes the speed according to the port status 32059 32060 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it> 32061 Signed-off-by: Remy Bohmer <linux@bohmer.net> 32062 32063commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df 32064Author: Remy Böhmer <linux@bohmer.net> 32065Date: Sat Dec 13 22:51:58 2008 +0100 32066 32067 EHCI fix code and ixp4xx test. 32068 USB ehci configuration parameter: 32069 32070 #define CONFIG_CMD_USB 1 32071 #define CONFIG_USB_STORAGE 1 32072 #define CONFIG_USB_EHCI 32073 #define CONFIG_USB_EHCI_IXP4XX 1 32074 #define CONFIG_EHCI_IS_TDI 1 32075 #define CONFIG_EHCI_DESC_BIG_ENDIAN 1 32076 #define CONFIG_EHCI_MMIO_BIG_ENDIAN 1 32077 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2 32078 #define CONFIG_LEGACY_USB_INIT_SEQ 1 32079 32080 2 USB Device(s) found 32081 scanning bus for storage devices... 0 Storage Device(s) found 32082 => usb tree 32083 32084 Device Tree: 32085 1 Hub (1.5MBit/s, 0mA) 32086 | u-boot EHCI Host Controller 32087 | 32088 |+-2 Mass Storage (12MBit/s, 100mA) 32089 Sony Storage Media 0C07040930296 32090 32091 => 32092 32093 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it> 32094 Signed-off-by: Remy Böhmer <linux@bohmer.net> 32095 32096commit 51ab142b8b546d5e627b2c8c36d0adae222565f7 32097Author: michael <michael@panicking.retis> 32098Date: Thu Dec 11 13:43:55 2008 +0100 32099 32100 [PATCH] This patch add varius fix to the ehci. 32101 - fix ehci_readl, ehci_writel 32102 - introduce new define in ehci.h 32103 - introduce the handshake function for waiting on a register 32104 - fix usb_ehci_fsl with the new HC_LENGTH macro 32105 32106 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it> 32107 Signed-off-by: Remy Böhmer <linux@bohmer.net> 32108 32109commit db63299b1dd2894ade542278210bccd046de6435 32110Author: michael <michael@panicking.retis> 32111Date: Wed Dec 10 17:55:19 2008 +0100 32112 32113 [PATCH] Fix EHCI usb. I start to test on a 32114 IXP465 board and I find some errors in the code. This 32115 patch fix: 32116 - descriptor initizialization (config, interface and endpoint 32117 must be one next-to the other when the USB_DT_CONFIG message 32118 is send. 32119 - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN 32120 and the CONFIG_EHCI_MMIO_BIG_ENDIAN) 32121 - Introduce the linux version of the usb_config_descriptor and 32122 usb_interface descriptor. This descriptor does't contains 32123 u-boot extension. 32124 32125 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it> 32126 Signed-off-by: Remy Böhmer <linux@bohmer.net> 32127 32128commit 6b92487dcf9afe83a3570153d66940fdb293be76 32129Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 32130Date: Fri Nov 28 13:22:09 2008 +0100 32131 32132 USB ehci freescale support 32133 32134 Add USB ehci freescale support 32135 32136 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it> 32137 Signed-off-by: Remy Böhmer <linux@bohmer.net> 32138 32139commit aaf098cfeed04595d4c5100ffd39095d79edbf90 32140Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 32141Date: Fri Nov 28 13:20:46 2008 +0100 32142 32143 USB ehci core support 32144 32145 Add USB ehci core support 32146 32147 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it> 32148 Signed-off-by: Remy Böhmer <linux@bohmer.net> 32149 32150commit 3e126484df7868e341545cce740b24b62b0cd3b7 32151Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 32152Date: Fri Nov 28 13:19:19 2008 +0100 32153 32154 Prepare USB layer for ehci 32155 32156 Prepare USB layer for ehci support 32157 32158 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it> 32159 Signed-off-by: Remy Böhmer <linux@bohmer.net> 32160 32161commit a0cb3fc31e58996a1c5732715ac04159d4d284fd 32162Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 32163Date: Wed Dec 10 15:52:06 2008 +0100 32164 32165 USB storage cleanup patch 32166 32167 Cleanup usb storage 32168 32169 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it> 32170 Signed-off-by: Remy Bohmer <linux@bohmer.net> 32171 32172commit fe033ad6d0883063fe857237abb9436fab03208c 32173Author: Mike Frysinger <vapier@gentoo.org> 32174Date: Sun Oct 12 06:02:55 2008 -0400 32175 32176 Blackfin: fixup misc warnings such as printf's and missing casts 32177 32178 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32179 32180commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c 32181Author: Mike Frysinger <vapier@gentoo.org> 32182Date: Sun Oct 12 22:09:26 2008 -0400 32183 32184 Blackfin: convert old boards to use COBJS-y Makefile style 32185 32186 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32187 32188commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5 32189Author: Mike Frysinger <vapier@gentoo.org> 32190Date: Sat Oct 11 22:38:37 2008 -0400 32191 32192 Blackfin: bf533-stamp: rewrite resource swap logic 32193 32194 The old swap function tended to clobber unrelated pins and screw up masks. 32195 Rewrite the thing from scratch so it only uses the resources it needs. 32196 32197 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32198 32199commit 29d4ea0a9073c82469184331010136f52edf8db6 32200Author: Mike Frysinger <vapier@gentoo.org> 32201Date: Sat Oct 11 22:08:42 2008 -0400 32202 32203 Blackfin: bootldr: implement BF53x/BF56x LDR loader 32204 32205 The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of 32206 arbitrary memory locations, so implement a basic one in software. 32207 32208 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32209 32210commit 8b35e3aeff6c2d747c37697997b3f8a808432329 32211Author: Mike Frysinger <vapier@gentoo.org> 32212Date: Sat Oct 11 22:05:42 2008 -0400 32213 32214 Blackfin: implement real write support for OTP 32215 32216 Now that real documentation has been released for the OTP interface and 32217 the on-chip ROM wrt writing/timings, implement support for reading/writing 32218 as well as dumping/locking. 32219 32220 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32221 32222commit 9372c3214808fab545227d8d0f76b3bfcc6760ec 32223Author: Mike Frysinger <vapier@gentoo.org> 32224Date: Sat Oct 11 22:04:05 2008 -0400 32225 32226 Blackfin: update on-chip ROM API 32227 32228 This brings the API for the on-chip ROM in line with the toolchain and 32229 hardware documentation. 32230 32231 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32232 32233commit 7633903bff432ec7b27905dce7396958553f2be6 32234Author: Mike Frysinger <vapier@gentoo.org> 32235Date: Sat Oct 11 21:52:17 2008 -0400 32236 32237 Blackfin: allow serial console to be disabled 32238 32239 Some devices have no UART device pulled out, so allow people to disable the 32240 driver completely in favor of other methods (like JTAG-console). 32241 32242 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32243 32244commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45 32245Author: Mike Frysinger <vapier@gentoo.org> 32246Date: Sat Oct 11 21:51:20 2008 -0400 32247 32248 Blackfin: support console-over-JTAG 32249 32250 The Blackfin JTAG has the ability to pass data via a back-channel without 32251 halting the processor. Utilize that channel to emulate a console. 32252 32253 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32254 32255commit cf8f2efb5f39c5225da92391c14a07eecbeca881 32256Author: Mike Frysinger <vapier@gentoo.org> 32257Date: Sat Oct 11 21:49:06 2008 -0400 32258 32259 Blackfin: handle new anomalies with reset 32260 32261 Workaround fun new anomalies related to software reset of the processor. 32262 32263 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32264 32265commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e 32266Author: Mike Frysinger <vapier@gentoo.org> 32267Date: Sat Oct 11 21:44:00 2008 -0400 32268 32269 Blackfin: pass RETX to Linux 32270 32271 Make sure we save the value of RETX at power on and then pass it on to the 32272 kernel so that it can nicely debug a "double-fault-caused-a-reset" crash. 32273 32274 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32275 32276commit b5eba3fafcccd1979380f12a256bd0e19be3d61e 32277Author: Mike Frysinger <vapier@gentoo.org> 32278Date: Sat Oct 11 21:40:26 2008 -0400 32279 32280 Blackfin: clarify relocation comment during init 32281 32282 People often ask questions about the init process and when things go 32283 from flash to relocated base, so clarify the comments a bit. 32284 32285 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32286 32287commit 95433f6d43ede6b40c1d900f3f704c839aa074f1 32288Author: Mike Frysinger <vapier@gentoo.org> 32289Date: Sat Oct 11 21:23:41 2008 -0400 32290 32291 Blackfin: just set SP register directly during init 32292 32293 No need to set the SP register indirectly to the configured value when it 32294 can be set directly. 32295 32296 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32297 32298commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c 32299Author: Mike Frysinger <vapier@gentoo.org> 32300Date: Sat Oct 11 21:15:53 2008 -0400 32301 32302 Blackfin: add portmuxing for UARTs on the BF51x 32303 32304 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32305 32306commit 4f6a313240c531042f16909a3a170ab047b95779 32307Author: Mike Frysinger <vapier@gentoo.org> 32308Date: Sun Jun 1 01:26:29 2008 -0400 32309 32310 Blackfin: respect CONFIG_CLKIN_HALF 32311 32312 As pointed out by Ivan Koryakovskiy, the initialization code was not 32313 actually respecting the CONFIG_CLKIN_HALF option when configuring the 32314 PLL_CTL register. 32315 32316 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32317 32318commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33 32319Author: Mike Frysinger <vapier@gentoo.org> 32320Date: Sun Jun 1 01:21:34 2008 -0400 32321 32322 Blackfin: use common memcpy routine during init 32323 32324 Rather than using a local custom memcpy function, just call the existing 32325 optimized Blackfin version. 32326 32327 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32328 32329commit 362c943347364e9373af4c5530778491ab56ec2e 32330Author: Mike Frysinger <vapier@gentoo.org> 32331Date: Wed Apr 9 02:27:06 2008 -0400 32332 32333 Blackfin: set default boot SPI CS for BF538/BF539 32334 32335 The BF538/BF539 use CS2 for booting off of rather than CS1 like newer 32336 Blackfin parts. 32337 32338 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32339 32340commit 74dde80bd5d55bc146630853ca191aaeea7c30f4 32341Author: Mike Frysinger <vapier@gentoo.org> 32342Date: Wed Apr 9 02:20:59 2008 -0400 32343 32344 Blackfin: punt unused BF533-STAMP definitions 32345 32346 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32347 32348commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26 32349Author: Mike Frysinger <vapier@gentoo.org> 32350Date: Fri Apr 18 20:44:11 2008 -0400 32351 32352 Blackfin: resurrect BF533-STAMP video splash driver 32353 32354 This video driver used to live in the Blackfin cpu directory, but it was 32355 lost during the unification process. This brings it back. 32356 32357 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32358 32359commit a750d038f2548d846ea1e046d873dc932d041319 32360Author: Mike Frysinger <vapier@gentoo.org> 32361Date: Wed Apr 9 02:31:29 2008 -0400 32362 32363 Blackfin: tighten up post memory coding style 32364 32365 No functional changes here; just cleanup code style a bit. 32366 32367 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32368 32369commit 0649908f92c9bd214dd139aa3d4698c1654a45c6 32370Author: Mike Frysinger <vapier@gentoo.org> 32371Date: Wed Apr 9 02:29:18 2008 -0400 32372 32373 Blackfin: bf537-stamp nand: fix more style errors in previous commit 32374 32375 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32376 32377commit 41f3325ae9add641036d7cb362e884b698e53f07 32378Author: Mike Frysinger <vapier@gentoo.org> 32379Date: Sat Oct 11 20:31:17 2008 -0400 32380 32381 Blackfin: drop dead/wrong debug code in initdram() 32382 32383 The DEBUG code in initdram() is quite old and was never really useful, so 32384 just drop it altogether. Common Blackfin debug code does a better job. 32385 32386 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32387 32388commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb 32389Author: Mike Frysinger <vapier@gentoo.org> 32390Date: Sat Oct 11 20:30:28 2008 -0400 32391 32392 Blackfin: bf533-ezkit: shuffle flash defines a little 32393 32394 Some of the flash defines weren't in the correct location and caused build 32395 problems in some configurations, so let's move types and defines to better 32396 local locations. 32397 32398 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32399 32400commit be853bf86b41e91f4c422f0f56fdf87ea3191266 32401Author: Mike Frysinger <vapier@gentoo.org> 32402Date: Mon Oct 6 04:16:47 2008 -0400 32403 32404 Blackfin: overhaul i2c driver 32405 32406 The current Blackfin i2c driver does not work properly with certain devices 32407 due to it breaking up transfers incorrectly. This is a rewrite of the 32408 driver and relocates it to the newer place in the source tree. 32409 32410 Also remove duplicated I2C speed defines in Blackfin board configs and 32411 disable I2C slave address usage since it isn't implemented. 32412 32413 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32414 32415commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45 32416Author: Mike Frysinger <vapier@gentoo.org> 32417Date: Mon Oct 6 04:00:07 2008 -0400 32418 32419 Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection 32420 32421 Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of 32422 128kB when setting up the default flash protection region for U-Boot 32423 itself. 32424 32425 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32426 32427commit 78a0ba7dc24c9682371f6ee8549b569fb573a329 32428Author: Mike Frysinger <vapier@gentoo.org> 32429Date: Mon Oct 6 03:57:39 2008 -0400 32430 32431 Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE 32432 32433 When setting up the global data, rather than relying on sizeof(), use the 32434 common CONFIG_SYS_GBL_DATA_SIZE define. 32435 32436 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32437 32438commit 01815c2d06c5b838f2cd536703e47bd2c9148194 32439Author: Mike Frysinger <vapier@gentoo.org> 32440Date: Mon Oct 6 03:52:24 2008 -0400 32441 32442 Blackfin: implement general support for CONFIG_STATUS_LED 32443 32444 Here are the Blackfin-specific and board-independent pieces for status leds. 32445 32446 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32447 32448commit 6882b5a79a3247494b62c05015fa672557f1bfaa 32449Author: Mike Frysinger <vapier@gentoo.org> 32450Date: Mon Oct 6 03:49:32 2008 -0400 32451 32452 Blackfin: do not init i2c in Blackfin board init 32453 32454 The common code takes care of calling i2c_init() when needed, so no point 32455 in us doing it as well. 32456 32457 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32458 32459commit 1118ea73698eee6e72ef5cbfc00e41746040304f 32460Author: Mike Frysinger <vapier@gentoo.org> 32461Date: Mon Oct 6 03:42:20 2008 -0400 32462 32463 Blackfin: bfin_mac: update port muxing 32464 32465 Adds support more Blackfin parts and fixes broken muxing for older ones. 32466 32467 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32468 32469commit 05b75e48832fc4afeecf8e76d704349557dffa35 32470Author: Mike Frysinger <vapier@gentoo.org> 32471Date: Mon Oct 6 03:35:44 2008 -0400 32472 32473 Blackfin: fix dcache handling when doing dma memcpy's 32474 32475 Our dcache invalidate function doesn't just invalidate, it also flushes. 32476 So rename the function accordingly and fix the dma_memcpy() function so it 32477 doesn't inadvertently corrupt the data destination. 32478 32479 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32480 32481commit 68e5632494168095d75f120af70043b68afd2476 32482Author: Mike Frysinger <vapier@gentoo.org> 32483Date: Thu Aug 7 18:56:56 2008 -0400 32484 32485 Blackfin: dont generate ldrs with --force 32486 32487 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32488 32489commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8 32490Author: Mike Frysinger <vapier@gentoo.org> 32491Date: Thu Aug 7 18:55:30 2008 -0400 32492 32493 Blackfin: pass --bmode/--initcode when creating ldr 32494 32495 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32496 32497commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a 32498Author: Mike Frysinger <vapier@gentoo.org> 32499Date: Thu Aug 7 18:39:27 2008 -0400 32500 32501 Blackfin: minimize time cache is turned off when replacing cplb entries 32502 32503 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32504 32505commit 21d631360430cf0ae9099612273cd4de28911ba9 32506Author: Mike Frysinger <vapier@gentoo.org> 32507Date: Thu Aug 7 15:31:13 2008 -0400 32508 32509 Blackfin: split cache handling out of dma_memcpy() 32510 32511 Creating a new dma_memcpy() function that skips all cache checks allows us 32512 to use the function in very early init where the cache is not yet setup. 32513 32514 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32515 32516commit d31eb38512bed377d5d4b3c696662e52120a2e4c 32517Author: Mike Frysinger <vapier@gentoo.org> 32518Date: Thu Aug 7 15:30:49 2008 -0400 32519 32520 Blackfin: abort dma_memcpy() for L1 scratchpad 32521 32522 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32523 32524commit 81b799add709177e838466461f7b9989488b0fd5 32525Author: Mike Frysinger <vapier@gentoo.org> 32526Date: Thu Aug 7 15:27:52 2008 -0400 32527 32528 Blackfin: rename bootm.c to boot.c 32529 32530 The boot file contains functions for more than just "bootm", so rename it 32531 accordingly. 32532 32533 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32534 32535commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091 32536Author: Mike Frysinger <vapier@gentoo.org> 32537Date: Thu Aug 7 13:22:37 2008 -0400 32538 32539 Blackfin: set more sane default board config values 32540 32541 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32542 32543commit 36cd52a00794fb15ffab05d640acca92d7482993 32544Author: Mike Frysinger <vapier@gentoo.org> 32545Date: Thu Aug 7 15:24:59 2008 -0400 32546 32547 Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE} 32548 32549 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32550 32551commit c8054bc12e00669bd7588f2b30fef48aa94babac 32552Author: Mike Frysinger <vapier@gentoo.org> 32553Date: Thu Aug 7 13:21:27 2008 -0400 32554 32555 Blackfin: add bit defines for DDR parts 32556 32557 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32558 32559commit 154502fe0796f3b7a4698378c5d2080ae28a9782 32560Author: Mike Frysinger <vapier@gentoo.org> 32561Date: Thu Aug 7 13:21:11 2008 -0400 32562 32563 Blackfin: add defines to describe active bootrom behavior 32564 32565 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32566 32567commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2 32568Author: Kim Phillips <kim.phillips@freescale.com> 32569Date: Tue Jan 27 16:03:53 2009 -0600 32570 32571 mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build 32572 32573 extend commit c70564e6b1bd08f3230182392238907f3531a87e 32574 "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency 32575 to the simpc8313 build and fix this: 32576 32577 ...Large Page NAND...Configuring for SIMPC8313 board... 32578 nand_boot_fsl_elbc.o: In function `nand_boot': 32579 nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache' 32580 make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1 32581 make: *** [nand_spl] Error 2 32582 32583 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 32584 32585commit 54a7cc4912feefa45be961cc47cc159563725d2f 32586Author: Wolfgang Denk <wd@denx.de> 32587Date: Wed Jan 28 09:25:31 2009 +0100 32588 32589 mpc8536ds.c: include sata.h to for needed function prototypes 32590 32591 Signed-off-by: Wolfgang Denk <wd@denx.de> 32592 32593commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8 32594Author: Peter Tyser <ptyser@xes-inc.com> 32595Date: Tue Jan 27 18:03:12 2009 -0600 32596 32597 Command usage cleanup 32598 32599 Remove command name from all command "usage" fields and update 32600 common/command.c to display "name - usage" instead of 32601 just "usage". Also remove newlines from command usage fields. 32602 32603 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 32604 32605commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b 32606Author: Peter Tyser <ptyser@xes-inc.com> 32607Date: Tue Jan 27 18:03:11 2009 -0600 32608 32609 amcc: Clean up command usage output 32610 32611 Update taihu and taishan commands to use cmd_usage() function 32612 to display usage messages. 32613 32614 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 32615 32616commit 62c3ae7c6ef215b1afa614abdf61acf077752207 32617Author: Peter Tyser <ptyser@xes-inc.com> 32618Date: Tue Jan 27 18:03:10 2009 -0600 32619 32620 Standardize command usage messages with cmd_usage() 32621 32622 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 32623 32624commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70 32625Author: Peter Tyser <ptyser@xes-inc.com> 32626Date: Tue Jan 27 18:03:09 2009 -0600 32627 32628 pcs440ep: Clean up led command definition 32629 32630 The pcs440ep's led command usage formatting is non-standard. It 32631 was made standard in preparation for larger command usage updates. 32632 32633 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 32634 32635commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62 32636Author: Peter Tyser <ptyser@xes-inc.com> 32637Date: Tue Jan 27 18:03:08 2009 -0600 32638 32639 Clean up diufb command definitions 32640 32641 The diufb command usage formatting is non-standard. It was 32642 made standard in preparation for larger command usage updates. 32643 32644 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 32645 32646commit 6450a8485836fc80615ae6de6a864c33369b44f5 32647Author: Wolfgang Denk <wd@denx.de> 32648Date: Wed Jan 28 00:29:26 2009 +0100 32649 32650 Update CHANGELOG, tiny coding style cleanup. 32651 32652 Signed-off-by: Wolfgang Denk <wd@denx.de> 32653 32654commit cf7e399fb35b3aea90a27d1df72f45f5d6156204 32655Author: Mike Frysinger <vapier@gentoo.org> 32656Date: Tue Jan 27 16:12:21 2009 -0500 32657 32658 SATA: do not auto-initialize during boot 32659 32660 Rather than have the board code initialize SATA automatically during boot, 32661 make the user manually run "sata init". This brings the SATA subsystem in 32662 line with common U-Boot policy. 32663 32664 Rather than having a dedicated weak function "is_sata_supported", people 32665 can override sata_initialize() to do their weird board stuff. Then they 32666 can call the actual __sata_initialize(). 32667 32668 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32669 32670commit 50970839712dda35399e2fa83fe818df9354d618 32671Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 32672Date: Mon Jan 26 08:45:14 2009 -0500 32673 32674 part_efi: Fix partition size calculation due to inclusive ending LBA. 32675 32676 The ending LBA is inclusive. Hence, the partition size should be 32677 ((ending-LBA + 1) - starting-LBA) to get the proper partition size. 32678 32679 This is confirmed against the results from the parted tool. 32680 (e.g. use parted /dev/sda -s unit S print) and observe the size. 32681 32682 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 32683 32684commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042 32685Author: Tomasz Figa <tomasz.figa@gmail.com> 32686Date: Tue Dec 30 18:35:57 2008 +0100 32687 32688 jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE 32689 32690 This patch fixes a bug (?) introduced after inclusion of the new 32691 JFFS2 code. 32692 32693 When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't 32694 fill in part->sector_size (keeping it as 0), but a correct value is 32695 needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses 32696 to be in the same place of the memory, what obviously means 32697 impossibility to use the JFFS2 partition. 32698 32699 This problem is fixed in this patch by including sector size 32700 calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant. 32701 32702 Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com> 32703 32704commit ba69dc26a5fd606da49573bb2f15e756a34f3f98 32705Author: Mike Frysinger <vapier@gentoo.org> 32706Date: Tue Dec 30 02:59:25 2008 -0500 32707 32708 saveenv: standardize enablement 32709 32710 Rather than special casing each environment type for enabling the saveenv 32711 command, have them all behave the same. This avoids bitrot as new env 32712 sources are added/removed. 32713 32714 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 32715 32716commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764 32717Author: Andrew Dyer <adyer@righthandtech.com> 32718Date: Mon Dec 29 17:36:01 2008 -0600 32719 32720 soft_i2c.c add option for repeated start in i2c_read() 32721 32722 This patch adds a #define to optionally change the behaviour of 32723 i2c_read() in soft_i2c.c to send an I2C repeated start instead of a 32724 stop-start between sending the device address pointer write and 32725 reading back the data. The current behaviour is retained as the 32726 default. 32727 32728 While most devices will work either way, I have a smart battery(*) 32729 that requires repeated start, and someone at some point found a 32730 device that required a stop-start. 32731 32732 (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf 32733 32734 Signed-off-by: Andrew Dyer <adyer@righthandtech.com> 32735 32736commit 3429071700963ca2f944c51d695a7481af0cee33 32737Author: Wolfgang Denk <wd@denx.de> 32738Date: Tue Jan 27 22:07:14 2009 +0100 32739 32740 {delta,zylonite}/lowlevel_init.S: fix typo 32741 32742 Commit 9d803d8c mistakenly changed some constants 32743 from 0x300 into 300 - this patch fixes it. 32744 32745 Pointed out by Tom Evans <tom@ceos.com.au>, see 32746 http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for 32747 details. 32748 32749 Signed-off-by: Wolfgang Denk <wd@denx.de> 32750 32751commit 1bc434373013af241835c14011ac3f291dccbf53 32752Author: Stefan Althoefer <stefan.althoefer@web.de> 32753Date: Sat Dec 20 19:40:41 2008 +0100 32754 32755 drivers/net/e1000.c: missing terminator for supported devices 32756 32757 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de> 32758 32759commit 65f7d41031a70b1649b35020995c505edca91533 32760Author: Wolfgang Denk <wd@denx.de> 32761Date: Tue Jan 27 21:36:28 2009 +0100 32762 32763 fat.c: fix warning: array subscript is above array bounds 32764 32765 Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>. 32766 32767 Signed-off-by: Wolfgang Denk <wd@denx.de> 32768 32769commit 107b801cf3fe39612d69d70581ebc3bf5e215554 32770Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 32771Date: Fri Jan 2 15:11:41 2009 +0100 32772 32773 Fix gunzip in case of insufficient output buffer 32774 32775 U-Boot's gunzip() function does not handle the return code 32776 of zlib's inflate() function correctly. gunzip() is implemented 32777 to uncompress all input data in one run. So the correct return 32778 code for the good case is Z_STREAM_END. In case of insufficient 32779 output buffer memory inflate returns Z_OK. For gunzip() this 32780 is an error. 32781 32782 It also makes sense to me to call inflateEnd() also in case 32783 of an error. 32784 32785 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 32786 32787commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e 32788Author: Stefan Roese <sr@denx.de> 32789Date: Wed Jan 21 17:25:01 2009 +0100 32790 32791 MIPS: Add VCT board series support (Part 3/3) 32792 32793 Signed-off-by: Stefan Roese <sr@denx.de> 32794 32795commit ae691e5719c48f1d2826cb72722497d1d162765b 32796Author: Stefan Roese <sr@denx.de> 32797Date: Wed Jan 21 17:24:49 2009 +0100 32798 32799 MIPS: Add VCT board series support (Part 2/3) 32800 32801 Signed-off-by: Stefan Roese <sr@denx.de> 32802 32803commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72 32804Author: Stefan Roese <sr@denx.de> 32805Date: Wed Jan 21 17:24:39 2009 +0100 32806 32807 MIPS: Add VCT board series support (Part 1/3) 32808 32809 Signed-off-by: Stefan Roese <sr@denx.de> 32810 32811commit 03d3bfb00806b5441f1871c7408c1749863e0fdc 32812Author: Stefan Roese <sr@denx.de> 32813Date: Wed Jan 21 17:20:20 2009 +0100 32814 32815 MIPS: Add flush_dcache_range() and invalidate_dcache_range() 32816 32817 This patch adds flush_/invalidate_dcache_range() to the MIPS architecture. 32818 Those functions are needed for the upcoming dcache support for the USB 32819 EHCI driver. I chose this API because those cache handling functions are 32820 already present in the PPC architecture. 32821 32822 Signed-off-by: Stefan Roese <sr@denx.de> 32823 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 32824 32825commit de832a99414ff06a4b2cdc9f5280b387da039834 32826Author: Stefan Roese <sr@denx.de> 32827Date: Mon Jan 26 10:05:20 2009 +0100 32828 32829 nand_spl: Fix compile problem with board_nand_init() prototype 32830 32831 This patch removes the now obsolete and additionally wrongly defined 32832 board_nand_init() prototype from nand_spl/nand_boot.c. 32833 32834 Signed-off-by: Stefan Roese <sr@denx.de> 32835 Signed-off-by: Scott Wood <scottwood@freescale.com> 32836 32837commit e8eac437189430d8e04a5d254ed92c58bc534a79 32838Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 32839Date: Wed Jan 14 08:44:26 2009 -0500 32840 32841 CFI: Add geometry reversal for STMicro M29W320ET 32842 32843 Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip. 32844 32845 Modeled after flash_fixup_amd, this patch handles the geometry reversal 32846 or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash. 32847 Since I cannot test all STM's chips, the detection is implemented as 32848 narrow as possible for now. 32849 32850 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 32851 Signed-off-by: Stefan Roese <sr@denx.de> 32852 32853commit 0f8e851e897b535959a0781171910cd97f33c30c 32854Author: Jens Gehrlein <sew_s@tqs.de> 32855Date: Tue Dec 16 17:25:55 2008 +0100 32856 32857 CFI: increase performance of function find_sector() 32858 32859 Tested on TQM5200S-BD with Samsung K8P2815UQB 32860 32861 Signed-off-by: Jens Gehrlein <sew_s@tqs.de> 32862 Signed-off-by: Stefan Roese <sr@denx.de> 32863 32864commit a7292871a79cc48d98e3a708dd3c3b81580db6ef 32865Author: Jens Gehrlein <sew_s@tqs.de> 32866Date: Tue Dec 16 17:25:54 2008 +0100 32867 32868 CFI: avoid redundant function call in single word programming mode 32869 32870 The function find_sector() doesn't need to be called twice in 32871 the case of AMD command set. 32872 Tested on TQM5200S-BD with Samsung K8P2815UQB. 32873 32874 Signed-off-by: Jens Gehrlein <sew_s@tqs.de> 32875 Signed-off-by: Stefan Roese <sr@denx.de> 32876 32877commit c8901f46a71ec16e084e604596a09e23bfb0f6ac 32878Author: Stefan Roese <sr@denx.de> 32879Date: Mon Jan 26 10:15:23 2009 +0100 32880 32881 ppc4xx: Remove compilation warning in gdppc440etc.c 32882 32883 Signed-off-by: Stefan Roese <sr@denx.de> 32884 32885commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc 32886Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 32887Date: Fri Jan 2 12:19:47 2009 +0100 32888 32889 ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files 32890 32891 Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59. 32892 Either they define or undef it. Because it's not used in any source 32893 files this patch removes any references to it. 32894 32895 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 32896 Signed-off-by: Stefan Roese <sr@denx.de> 32897 32898commit 89b8619aaeafc922ca0c3bb249872591050c8dcc 32899Author: Dirk Eibach <eibach@gdsys.de> 32900Date: Tue Dec 9 13:12:40 2008 +0100 32901 32902 ppc4xx: Add GDsys PowerPC 440 ETX board support. 32903 32904 Board support for the Guntermann & Drunck PowerPC 440 ETX module. 32905 Based on the AMCC Yosemite board support by Stefan Roese. 32906 32907 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 32908 Signed-off-by: Stefan Roese <sr@denx.de> 32909 32910commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d 32911Author: Dirk Eibach <eibach@gdsys.de> 32912Date: Tue Dec 9 11:00:07 2008 +0100 32913 32914 ppc4xx: Improve DDR autodetect 32915 32916 Added support for a second memory bank to DDR autodetection for 440 32917 platforms. 32918 Made hardcoded values configurable. 32919 32920 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 32921 Signed-off-by: Stefan Roese <sr@denx.de> 32922 32923commit 71a040f4f556cca4d30f06805d82e717b3ef1020 32924Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 32925Date: Fri Nov 21 12:06:26 2008 +0900 32926 32927 sh: sh7763rdp: Update sh7763rdp config 32928 32929 Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API. 32930 32931 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 32932 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 32933 32934commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 32935Author: Gary Jennejohn <garyj@denx.de> 32936Date: Thu Nov 20 12:28:38 2008 +0100 32937 32938 mgcoge make ether_scc.c work with CONFIG_NET_MULTI 32939 32940 This change is needed for mgcoge because it uses two ethernet drivers. 32941 32942 Add a check for the presence of the PIGGY board on mgcoge. Without this 32943 board networking cannot work and the initialization must be aborted. 32944 32945 Only allocate rtx once to prevent DPRAM exhaustion. 32946 32947 Initialize ether_scc.c and the keymile-specific HDLC driver (to be added 32948 soon) in eth.c. 32949 32950 Signed-off-by: Gary Jennejohn <garyj@denx.de> 32951 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 32952 32953commit bd3980cc095af1728b994cdd8bf1ac430b6289e6 32954Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 32955Date: Fri Nov 21 12:04:18 2008 +0900 32956 32957 sh: sh_eth: Change new network API 32958 32959 sh_eth used old network API. This patch changed new API. 32960 32961 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 32962 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 32963 32964commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6 32965Author: Stefan Roese <sr@denx.de> 32966Date: Wed Nov 12 13:31:02 2008 +0100 32967 32968 net: smc911x: Make register read/write functions weak 32969 32970 This patch changes the reg_read/_write to smc911x_reg_read/_write 32971 and defines then as weak so that they can be overridden by board 32972 specific version. 32973 32974 This will be used by the upcoming VCTH board support. 32975 32976 Signed-off-by: Stefan Roese <sr@denx.de> 32977 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 32978 32979commit 8b69b563039989885969d24465c56f8ac4c07c4c 32980Author: Heiko Schocher <hs@denx.de> 32981Date: Thu Nov 20 09:57:14 2008 +0100 32982 32983 powerpc: net: support for the SMSC LAN8700 PHY 32984 32985 Signed-off-by: Heiko Schocher <hs@denx.de> 32986 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 32987 32988commit d5254f149da9e6cd649d887b042ce577ef3ba78d 32989Author: Alessandro Rubini <rubini@unipv.it> 32990Date: Sat Jan 24 18:10:37 2009 +0100 32991 32992 Initial support for Nomadik 8815 development board 32993 32994 The NMDK8815 board is distributed by ST Microelectornics. 32995 Other (proprietary) code must be run to unlock the CPU before 32996 U-Boot runs. doc/README.nmdk8815 outlines the boot sequence. 32997 32998 This is the initial port, with basic infrastructure and 32999 a working serial port. 33000
33001 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 33002 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com> 33003 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 33004 33005commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47 33006Author: Dirk Behme <dirk.behme@googlemail.com> 33007Date: Sun Dec 14 09:47:18 2008 +0100 33008 33009 OMAP3: Add I2C support 33010 33011 Add I2C support. 33012 33013 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 33014 33015commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b 33016Author: Dirk Behme <dirk.behme@googlemail.com> 33017Date: Sun Dec 14 09:47:17 2008 +0100 33018 33019 OMAP3: Add MMC support 33020 33021 Add MMC support. 33022 33023 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 33024 33025commit 12201a13547ec22ddcdae278e74465e54a3be60c 33026Author: Dirk Behme <dirk.behme@googlemail.com> 33027Date: Sun Dec 14 09:47:16 2008 +0100 33028 33029 OMAP3: Add NAND support 33030 33031 Add NAND support. 33032 33033 Signed-off-by: Nishanth Menon <nm@ti.com> 33034 Signed-off-by: Syed Mohammed Khasim <khasim@ti.com> 33035 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 33036 33037commit 91eee546737ae21d930af479530997174c342b13 33038Author: Dirk Behme <dirk.behme@googlemail.com> 33039Date: Sun Dec 14 09:47:15 2008 +0100 33040 33041 OMAP3: Add common board, interrupt and system info 33042 33043 Add common board, interrupt and system info code. 33044 33045 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 33046 33047commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8 33048Author: Dirk Behme <dirk.behme@googlemail.com> 33049Date: Sun Dec 14 09:47:14 2008 +0100 33050 33051 OMAP3: Add common clock, memory and low level code 33052 33053 Add common clock, memory and low level code 33054 33055 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 33056 33057commit 0b02b184003e6a5023e05d5f31de54db279b1431 33058Author: Dirk Behme <dirk.behme@googlemail.com> 33059Date: Sun Dec 14 09:47:13 2008 +0100 33060 33061 OMAP3: Add common cpu and start code 33062 33063 Add common cpu and start code. 33064 33065 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 33066 33067commit a8b6450546cd507d331b8fde384791d84bde5651 33068Author: Dirk Behme <dirk.behme@googlemail.com> 33069Date: Sun Dec 14 09:47:12 2008 +0100 33070 33071 OMAP3: Add OMAP3, memory and function prototype headers 33072 33073 Add OMAP3, memory and function prototype header files for OMAP3. 33074 33075 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 33076 33077commit 2c803210a464abbac35752ca1c737514360b4c32 33078Author: Dirk Behme <dirk.behme@googlemail.com> 33079Date: Sun Dec 14 09:47:11 2008 +0100 33080 33081 OMAP3: Add pin mux, clock and cpu headers 33082 33083 Add pin mux, clock and cpu header files for OMAP3. 33084 33085 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com> 33086 33087commit 685533646f4ff17a84ec9265cabb60af325b6e1f 33088Author: Maxim Artamonov <scn1874@yandex.ru> 33089Date: Wed Dec 3 05:38:17 2008 +0300 33090 33091 bugfix for i.mx31 CCM_UPCTL reg 33092 33093 Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru> 33094 33095commit 24113a44ed5cd3257a0237c3961e121812fca6db 33096Author: Mike Frysinger <vapier@gentoo.org> 33097Date: Tue Dec 30 03:15:38 2008 -0500 33098 33099 easylogo: add optional gzip support 33100 33101 Some images can be quite large, so add an option to compress the 33102 image data with gzip in the U-Boot image. Then at runtime, the 33103 board can decompress it with the normal zlib functions. 33104 33105 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 33106 33107commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c 33108Author: Bryan Wu <bryan.wu@analog.com> 33109Date: Fri Jan 2 20:47:45 2009 -0500 33110 33111 fat: fix unaligned errors 33112 33113 A couple of buffers in the fat code are declared as an array of bytes. 33114 But it is then cast up to a structure with 16bit and 32bit members. 33115 Since GCC assumes structure alignment here, we have to force the 33116 buffers to be aligned according to the structure usage. 33117 33118 Signed-off-by: Bryan Wu <bryan.wu@analog.com> 33119 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 33120 33121commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc 33122Author: Brad Bozarth <bflinux@yumbrad.com> 33123Date: Thu Jan 1 22:45:47 2009 -0500 33124 33125 spi flash: fix crash due to spi flash miscommunication 33126 33127 Higher spi flash layers expect to be given back a pointer that was 33128 malloced so that it can free the result, but the lower layers return 33129 a pointer that is in the middle of the malloced memory. Reorder the 33130 members of the lower spi structures so that things work out. 33131 33132 Signed-off-by: Brad Bozarth <bflinux@yumbrad.com> 33133 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 33134 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 33135 33136commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c 33137Author: Yuri Tikhonov <yur@emcraft.com> 33138Date: Sat Dec 20 14:54:21 2008 +0300 33139 33140 FPU POST: fix warnings when building with 2.18 binutils 33141 33142 When compile u-boot with the 2.18 binutils the following 33143 warning messages for each object file in post/lib_ppc/fpu/ is 33144 produced at the linking stage: 33145 33146 post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float 33147 ... 33148 33149 This is because of the fact that, in general, the soft-float and 33150 hard-float ABIs are incompatible; the 2.18 binutils do checking 33151 of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and 33152 produce the worning like above if these are not compatible. 33153 33154 The incompatibility of ABIs is concerned only the float values: 33155 e.g. the soft-float ABI assumes the float argument passing in the 33156 pair of rX registers, and the hard-float ABI assumes passing of 33157 the float argument in the fX register. When we don't pass the float 33158 arguments between the functions compiled with different floatness, 33159 then such an application will work correctly. 33160 This is the case for the FPU POST: u-boot (compiled with soft-float) 33161 doesn't pass to (and doesn't get from) the FPU POST functions any 33162 floats; there are no functions exported from the post/lib_ppc/fpu/ 33163 objects which would work with float parameters/returns too. So, we 33164 can reassure the linker not to worry about the difference in ABI 33165 attributes of linking files just by setting the 'soft-float' 33166 attribute for the objects in post/lib_ppc/fpu. And this patch does 33167 this. 33168 33169 Also, to avoid passing both soft- and hard-float options in CFLAGS 33170 when compiling the files from post/lib_ppc/fpu (which is OK, but 33171 looks rather dirty) this patch removes the soft-float string from 33172 CFLAGS in post/lib_ppc/fpu/Makefile. 33173 33174 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 33175 33176commit a7c9310457e85b4598abe5b304108edf11332e2f 33177Author: Peter Tyser <ptyser@xes-inc.com> 33178Date: Wed Dec 17 16:36:22 2008 -0600 33179 33180 Add support for Maxim's DS4510 I2C device 33181 33182 Initial support for the DS4510, a CPU supervisor with 33183 integrated EEPROM, SRAM, and 4 programmable non-volatile 33184 GPIO pins. The CONFIG_DS4510 define enables support 33185 for the device while the CONFIG_CMD_DS4510 define 33186 enables the ds4510 command. The additional 33187 CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and 33188 CONFIG_DS4510_RST defines add additional sub-commands 33189 to the ds4510 command when defined. 33190 33191 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 33192 33193commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f 33194Author: Dirk Eibach <eibach@gdsys.de> 33195Date: Tue Dec 16 14:51:56 2008 +0100 33196 33197 common: Iteration limit for memory test. 33198 33199 The iteration limit is passed to mtest as a fourth parameter: 33200 [start [end [pattern [iterations]]]] 33201 If no fourth parameter is supplied, there is no iteration limit and the 33202 test will loop forever. 33203 33204 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 33205 33206commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d 33207Author: Stefan Roese <sr@denx.de> 33208Date: Mon Dec 15 15:40:12 2008 +0100 33209 33210 serial: Rename driver vcth to vct to support other board variants 33211 33212 Moved driver vcth.c to vct.c to better reflect the VCT board series. 33213 This driver is now used by the VCT platforms: 33214 33215 vct_premium 33216 vct_platinum 33217 vct_platinumsvc 33218 33219 Signed-off-by: Stefan Roese <sr@denx.de> 33220 33221commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2 33222Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 33223Date: Fri Dec 12 00:45:27 2008 +0900 33224 33225 nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir 33226 33227 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 33228 33229commit c3284b030b1cd492b4f46c576aea01bef258599d 33230Author: Peter Korsgaard <jacmet@sunsite.dk> 33231Date: Wed Dec 10 16:24:16 2008 +0100 33232 33233 common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED 33234 33235 Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case 33236 similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the 33237 !CONFIG_AUTOBOOT_KEYED case. 33238 33239 Do this by reversing the loop so we do at least one iteration before 33240 checking for timeout. 33241 33242 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> 33243 33244commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3 33245Author: Niklaus Giger <niklaus.giger@netstal.com> 33246Date: Mon Dec 8 17:24:08 2008 +0100 33247 33248 Added legacy flash ST Micro M29W040B 33249 33250commit 626d07348e5f9f302f4ea182161a89f7362a0488 33251Author: Graeme Russ <graeme.russ@gmail.com> 33252Date: Mon Dec 8 20:04:51 2008 +1100 33253 33254 Fixed off-by-one errors in lib_m68k/interrupts.c 33255 33256 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 33257 33258commit a5989c42ae5e295f274a795c426c47819bbdbfda 33259Author: Graeme Russ <graeme.russ@gmail.com> 33260Date: Sun Dec 7 10:29:05 2008 +1100 33261 33262 Removed all references to CONFIG_SYS_RESET_GENERIC 33263 33264 Generic i386 reset - #define made redundant by weak function 33265 33266 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 33267 33268commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a 33269Author: Graeme Russ <graeme.russ@gmail.com> 33270Date: Sun Dec 7 10:29:04 2008 +1100 33271 33272 Remove #ifdef CONFIG_SC520 in source code 33273 33274 CONFIG_SC520 is now used for conditional compile 33275 33276 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 33277 33278commit ead056bc206f6b7ee6dc98766678b64635ea20b8 33279Author: Graeme Russ <graeme.russ@gmail.com> 33280Date: Sun Dec 7 10:29:03 2008 +1100 33281 33282 Added MMCR reset functionality 33283 33284 Reset function specific to AMD SC520 microcontroller - Is more of a 33285 'hard reset' that the triple fault. 33286 33287 Requires CONFIG_SYS_RESET_SC520 to be defined in config 33288 33289 I would have liked to add this to a new file (cpu/i386/sc520/reset.c) 33290 but ld requires that a object file in a library arhive MUST contain 33291 at least one function which does not override a weak function (and is 33292 called from outside the object file) in order for that object file to 33293 be extracted from the archive. This would be the only function on the 33294 new file, and hence, will never get linked in. 33295 33296 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 33297 33298commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e 33299Author: Graeme Russ <graeme.russ@gmail.com> 33300Date: Sun Dec 7 10:29:02 2008 +1100 33301 33302 Moved generic (triple fault) reset code 33303 33304 Moved from interrupts.c to cpu.c and made into a weak function to 33305 allow vendor specific override 33306 33307 Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be 33308 added to the vendor specific code without the need to remember to 33309 #undef usage of the generic method and if you forget to include your 33310 custom reset method, you will always get the default. 33311 33312 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 33313 33314commit 9933d609020c297788f53f334c8465fa7a99b10c 33315Author: Graeme Russ <graeme.russ@gmail.com> 33316Date: Sun Dec 7 10:29:01 2008 +1100 33317 33318 Moved definition of set_vector() to new header file 33319 33320 This allows for future tidy ups and functionality that will require 33321 set_vector () 33322 33323 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 33324 33325commit 407976185e0dda2c90e89027121a1071b9c77bfb 33326Author: Graeme Russ <graeme.russ@gmail.com> 33327Date: Sun Dec 7 10:29:00 2008 +1100 33328 33329 Moved sc520 specific code into new cpu/i386/sc520 folder 33330 33331 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 33332 Signed-off-by: Wolfgang Denk <wd@denx.de> 33333 33334commit 85ffbbd51914925a542d8528be7f072e5ab02157 33335Author: Graeme Russ <graeme.russ@gmail.com> 33336Date: Sun Dec 7 10:28:58 2008 +1100 33337 33338 Renamed cpu/i386/reset.S to resetvec.S 33339 33340 Brings i386 in line with other CPUs with a reset vector and frees up reset.c 33341 for CPU reset functions 33342 33343 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 33344 33345commit a3f4c123f569474e80ea012b8db0de46afdb6443 33346Author: Wolfgang Denk <wd@denx.de> 33347Date: Sat Jan 24 01:01:49 2009 +0100 33348 33349 Makefile: keep lists sorted. 33350 33351 Signed-off-by: Wolfgang Denk <wd@denx.de> 33352 33353commit c620c01e96814558470698ed5cab1bf2f504d1b5 33354Author: Graeme Russ <graeme.russ@gmail.com> 33355Date: Sun Dec 7 10:28:57 2008 +1100 33356 33357 Added initial eNET board support 33358 33359 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 33360 33361commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086 33362Author: Gary Jennejohn <garyj@denx.de> 33363Date: Thu Nov 20 11:37:26 2008 +0100 33364 33365 POWERPC 82xx: add the SCC as an HDLC controller 33366 33367 Right now this is only used by keymile. 33368 33369 Signed-off-by: Gary Jennejohn <garyj@denx.de> 33370 33371commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f 33372Author: Heiko Schocher <hs@denx.de> 33373Date: Thu Nov 20 09:59:09 2008 +0100 33374 33375 powerpc, keymile boards: extract identical config options 33376 33377 This patch extracts the identical config options for the 33378 keymile boards mgcoge, mgsuvd and kmeter1 in a new 33379 common config file keymile-common.h. 33380 33381 Signed-off-by: Heiko Schocher <hs@denx.de> 33382 33383commit 210c8c00aad3328145204adab434bb7d70b06b75 33384Author: Heiko Schocher <hs@denx.de> 33385Date: Fri Nov 21 08:29:40 2008 +0100 33386 33387 powerpc: keymile: Add a check for the PIGGY debug board 33388 33389 Check the presence of the PIGGY on the keymile boards mgcoge, 33390 mgsuvd and kmeter1. If the PIGGY is not present, dont register 33391 this Ethernet device. 33392 33393 Signed-off-by: Heiko Schocher <hs@denx.de> 33394 Acked-by: Ben Warren <biggerbadderben@gmail.com> 33395 33396commit de0443614af4d16675ab436665aeb11ddc9f7214 33397Author: Heiko Schocher <hs@denx.de> 33398Date: Thu Nov 20 09:57:47 2008 +0100 33399 33400 powerpc: 83xx: add support for the kmeter1 board 33401 33402 This patch adds support for the kmeter1 board from Keymile, 33403 based on a Freescale MPC8360 CPU. 33404 33405 - serial console on UART 1 33406 - 256 MB DDR2 RAM 33407 - 64 MB NOR Flash 33408 - Ethernet RMII Mode over UCC4 33409 - PHY SMSC LAN8700 33410 33411 Signed-off-by: Heiko Schocher <hs@denx.de> 33412 33413commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a 33414Author: Sergei Poselenov <sposelenov@emcraft.com> 33415Date: Tue Nov 4 13:51:18 2008 +0100 33416 33417 Add a do_div() wrapper macro, lldiv(). 33418 33419 Add a do_div() wrapper, lldiv(). The new inline function doesn't modify 33420 the dividend and returns the result of division, so it is useful 33421 in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))" 33422 33423 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 33424 33425commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72 33426Author: Kumar Gala <galak@kernel.crashing.org> 33427Date: Fri Jan 23 14:22:14 2009 -0600 33428 33429 85xx: Add a 36-bit physical configuration for MPC8572DS 33430 33431 We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary 33432 to allow for larger memory sizes. 33433 33434 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33435 33436commit c51fc5d53c4560abc4d0a6126c06fc68133d1528 33437Author: Kumar Gala <galak@kernel.crashing.org> 33438Date: Fri Jan 23 14:22:13 2009 -0600 33439 33440 85xx: Handle eLBC difference w/36-bit physical 33441 33442 The eLBC only handles 32-bit physical address in systems with 36-bit 33443 physical. The previos generation of LBC handled 34-bit physical 33444 address in 36-bit systems. Added a new CONFIG option to convey 33445 the difference between the LBC and eLBC. 33446 33447 Also added defines for XAM bits used in LBC for the extended 34-bit 33448 support. 33449 33450 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33451 33452commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d 33453Author: Kumar Gala <galak@kernel.crashing.org> 33454Date: Fri Jan 23 14:22:12 2009 -0600 33455 33456 85xx: Use BR_ADDR macro for NAND chipselects 33457 33458 Use the new BR_ADDR macro to properly setup the address field of the 33459 localbus chipselects used by NAND. 33460 33461 This allows us to deal with 36-bit phys on these boards in the future. 33462 33463 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33464 33465commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c 33466Author: Haiying Wang <Haiying.Wang@freescale.com> 33467Date: Thu Jan 15 11:58:35 2009 -0500 33468 33469 Add secondary CPUs processor frequency for e500 core 33470 33471 This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS, 33472 and prints each CPU's frequency separately. It also fixes up each CPU's 33473 frequency in "clock-frequency" of fdt blob. 33474 33475 Signed-off-by: James Yang <James.Yang@freescale.com> 33476 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 33477 33478commit bf5b1f0c0d28ce062e1d368680632dfb099de692 33479Author: Dave Liu <daveliu@freescale.com> 33480Date: Fri Nov 21 16:31:53 2008 +0800 33481 33482 85xx: enable the auto self refresh for wake up ARP 33483 33484 The wake up ARP feature need use the memory to process 33485 wake up packet, we enable auto self refresh to support it. 33486 33487 Signed-off-by: Dave Liu <daveliu@freescale.com> 33488 Acked-by: Andy Fleming <afleming@freescale.com> 33489 33490commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f 33491Author: Dave Liu <daveliu@freescale.com> 33492Date: Fri Nov 21 16:31:43 2008 +0800 33493 33494 fsl-ddr: use the 1T timing as default configuration 33495 33496 For light loaded system, we use the 1T timing to gain better 33497 memory performance, but for some heavily loaded system, 33498 you have to add the 2T timing options to board files. 33499 33500 Signed-off-by: Dave Liu <daveliu@freescale.com> 33501 Acked-by: Andy Fleming <afleming@freescale.com> 33502 33503commit 22cca7e1cd54590e967c73558b07ffbdccd39504 33504Author: Dave Liu <daveliu@freescale.com> 33505Date: Fri Nov 21 16:31:35 2008 +0800 33506 33507 fsl-ddr: make the self refresh idle threshold configurable 33508 33509 Some 85xx processors have the advanced power management feature, 33510 such as wake up ARP, that needs enable the automatic self refresh. 33511 33512 If the DDR controller pass the SR_IT (self refresh idle threshold) 33513 idle cycles, it will automatically enter self refresh. However, 33514 anytime one transaction is issued to the DDR controller, it will 33515 reset the counter and exit self refresh state. 33516 33517 Signed-off-by: Dave Liu <daveliu@freescale.com> 33518 Acked-by: Andy Fleming <afleming@freescale.com> 33519 33520commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178 33521Author: Dave Liu <daveliu@freescale.com> 33522Date: Fri Nov 21 16:31:29 2008 +0800 33523 33524 fsl-ddr: clean up the ddr code for DDR3 controller 33525 33526 - The DDR3 controller is expanding the bits for timing config 33527 - Add the DDR3 32-bit bus mode support 33528 33529 Signed-off-by: Dave Liu <daveliu@freescale.com> 33530 Acked-by: Andy Fleming <afleming@freescale.com> 33531 33532commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106 33533Author: Dave Liu <daveliu@freescale.com> 33534Date: Fri Nov 21 16:31:22 2008 +0800 33535 33536 fsl-ddr: update the bit mask for DDR3 controller 33537 33538 According to the latest 8572 UM, the DDR3 controller 33539 is expanding the bit mask, and we use the extend ACTTOPRE 33540 mode when tRAS more than 19 MCLK. 33541 33542 Signed-off-by: Dave Liu <daveliu@freescale.com> 33543 33544commit aca5f018a8386b85469482ed9867e3e29a2437d0 33545Author: Kumar Gala <galak@kernel.crashing.org> 33546Date: Tue Dec 2 16:08:40 2008 -0600 33547 33548 85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards 33549 33550 Introduce a new define to seperate out the virtual address that PCI 33551 IO space is at from the physical address. In most situations these are 33552 mapped 1:1. However any code accessing the bus should use VIRT. 33553 33554 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33555 Acked-by: Andy Fleming <afleming@freescale.com> 33556 33557commit 5af0fdd81c3370c3a51421208fda568bdcbbec23 33558Author: Kumar Gala <galak@kernel.crashing.org> 33559Date: Tue Dec 2 16:08:39 2008 -0600 33560 33561 85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards 33562 33563 Introduce a new define to seperate out the virtual address that PCI 33564 memory is at from the physical address. In most situations these are 33565 mapped 1:1. However any code accessing the bus should use VIRT. 33566 33567 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33568 Acked-by: Andy Fleming <afleming@freescale.com> 33569 33570commit a6e04c344ad1eefd47a75484441b385da815b8df 33571Author: Kumar Gala <galak@kernel.crashing.org> 33572Date: Tue Dec 2 16:08:38 2008 -0600 33573 33574 85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards 33575 33576 Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields 33577 of TLBs. This is what we should have always been using from the start. 33578 33579 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33580 Acked-by: Andy Fleming <afleming@freescale.com> 33581 33582commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d 33583Author: Kumar Gala <galak@kernel.crashing.org> 33584Date: Tue Dec 2 16:08:37 2008 -0600 33585 33586 85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards 33587 33588 Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead 33589 of _IO_BASE so we are more explicit. 33590 33591 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33592 33593commit 10795f42cb94e71bcb262b615084f69dd886399a 33594Author: Kumar Gala <galak@kernel.crashing.org> 33595Date: Tue Dec 2 16:08:36 2008 -0600 33596 33597 85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards 33598 33599 Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead 33600 of _MEM_BASE so we are more explicit. 33601 33602 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33603 Acked-by: Andy Fleming <afleming@freescale.com> 33604 33605commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa 33606Author: Kumar Gala <galak@kernel.crashing.org> 33607Date: Tue Dec 2 14:19:34 2008 -0600 33608 33609 85xx: separate FLASH BASE virtual from physical address 33610 33611 Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and 33612 maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash. 33613 33614 This allows us to deal with 36-bit phys on these boards in the future. 33615 33616 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33617 Acked-by: Andy Fleming <afleming@freescale.com> 33618 33619commit 52b565f5ad23b682489055b187767d8bf1c2e444 33620Author: Kumar Gala <galak@kernel.crashing.org> 33621Date: Tue Dec 2 14:19:33 2008 -0600 33622 33623 85xx: separate PIXIS virtual from physical address 33624 33625 Added a PIXIS_BASE_PHYS for use as the physical address and maintain 33626 PIXIS_BASE as the virtual address of the PIXIS fpga registers. 33627 33628 This allows us to deal with 36-bit phys on these boards in the future. 33629 33630 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 33631 Acked-by: Andy Fleming <afleming@freescale.com> 33632 33633commit 30837e5b21d5a742983581ab9ee3fac085311d19 33634Author: Haiying Wang <Haiying.Wang@freescale.com> 33635Date: Tue Nov 11 08:52:09 2008 -0500 33636 33637 Add README file for MPC8572DS board 33638 33639 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 33640 Acked-by: Andy Fleming <afleming@freescale.com> 33641 33642commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2 33643Author: Mike Frysinger <vapier@gentoo.org> 33644Date: Mon Oct 20 16:15:04 2008 -0400 33645 33646 Blackfin: use common strmhz() in system output 33647 33648 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 33649 33650commit 5bb907a4925397789c90d074f4f7e92ce6b39402 33651Author: Ron Madrid <ron_madrid@sbcglobal.net> 33652Date: Thu Jan 22 15:05:24 2009 -0800 33653 33654 mpc83xx: New board support for SIMPC8313 33655 33656 This patch will create a new board, SIMPC8313, from Sheldon Instruments. This 33657 board boots from NAND devices and is configureable for either large or small 33658 page devices. The board supports non-soldered DDR2, one ethernet port, a 33659 Marvell 88E1118 PHY, and PCI host support. The board also has a FPGA connected 33660 to the eLBC providing glue logic to a TMS320C67xx DSP. 33661 33662 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net> 33663 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 33664 33665commit d4bade8d77aa20e2846fa4accff0e7fa7961a134 33666Author: Mike Frysinger <vapier@gentoo.org> 33667Date: Sun Jan 18 19:46:06 2009 -0500 33668 33669 nand: fixup printf modifiers to match types used 33670 33671 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 33672 Signed-off-by: Scott Wood <scottwood@freescale.com> 33673 33674commit 389e6620e2271096df3316917528003627db4021 33675Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at> 33676Date: Tue Jan 20 16:57:55 2009 +0100 33677 33678 nand read.jffs2 (nand_legacy) in common/cmd_nand.c 33679 33680 Error with CONFIG_NAND_LEGACY in common/cmd_nand.c: 33681 With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as 33682 "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is 33683 tested before ".jffs2s" and only the first two characters are compared. 33684 33685 Correction: 33686 Test for ".jffs2s" first and compare the first 7 characters. 33687 33688 Signed-off-by: Scott Wood <scottwood@freescale.com> 33689 33690commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7 33691Author: Wolfgang Grandegger <wg@grandegger.com> 33692Date: Fri Jan 16 18:55:54 2009 +0100 33693 33694 NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS 33695 33696 This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and 33697 changes the default from 8 to 1 for the legacy and the new MTD 33698 NAND layer. This allows to remove all NAND_MAX_CHIPS definitions 33699 in the board config files because none of the boards use multi 33700 chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440 33701 define 33702 33703 #define NAND_MAX_CHIPS CONFIG_SYS_MAX_NAND_DEVICE 33704 33705 but that's bogus and did not work anyhow. 33706 33707 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 33708 Signed-off-by: Scott Wood <scottwood@freescale.com> 33709 33710commit c70564e6b1bd08f3230182392238907f3531a87e 33711Author: Dave Liu <daveliu@freescale.com> 33712Date: Tue Dec 2 11:48:51 2008 +0800 33713 33714 NAND: Fix cache and memory inconsistency issue 33715 33716 We load the secondary stage u-boot image from NAND to 33717 system memory by nand_load, but we did not flush d-cache 33718 to memory, nor invalidate i-cache before we jump to RAM. 33719 When the system has cache enabled and the TLB/page attribute 33720 of system memory is cacheable, it will cause issues. 33721 33722 - 83xx family is using the d-cache lock, so all of d-cache 33723 access is cache-inhibited. so you can't see the issue. 33724 - 85xx family is using d-cache, i-cache enable, partial 33725 cache lock. you will see the issue. 33726 33727 This patch fixes the cache issue. 33728 33729 Signed-off-by: Dave Liu <daveliu@freescale.com> 33730 Signed-off-by: Scott Wood <scottwood@freescale.com> 33731 33732commit 50657c273278f74378e1ac39b41d612b92fdffa0 33733Author: Nishanth Menon <menon.nishanth@gmail.com> 33734Date: Sat Dec 13 09:43:06 2008 -0600 33735 33736 NAND: Enable nand lock, unlock feature 33737 33738 Enable nand lock, unlock and status of lock feature. 33739 Not every device and platform requires this, hence, 33740 it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK 33741 33742 Nand unlock and status operate on block boundary instead 33743 of page boundary. Details in: 33744 http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT 33745 33746 Intial solution provided by Vikram Pandita <vikram.pandita@ti.com> 33747 Includes preliminary suggestions from Scott Wood 33748 33749 Signed-off-by: Nishanth Menon <nm@ti.com> 33750 Signed-off-by: Scott Wood <scottwood@freescale.com> 33751 33752commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e 33753Author: Mike Frysinger <vapier@gentoo.org> 33754Date: Sat Dec 6 02:40:55 2008 -0500 33755 33756 NAND: move board_nand_init to nand.h 33757 33758 Rather than putting the function prototype for board_nand_init() in the one 33759 place where it gets called, put it into nand.h so that every place that also 33760 defines it gets the prototype. Otherwise, errors can go silently unnoticed 33761 such as using the wrong return value (void rather than int) when defining 33762 the function. 33763 33764 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 33765 Signed-off-by: Scott Wood <scottwood@freescale.com> 33766 33767commit 1ae39862044ebb1e682234b51f94421e3f871d6a 33768Author: Stefan Roese <sr@denx.de> 33769Date: Tue Dec 2 11:06:47 2008 +0100 33770 33771 OneNAND: Additional sync with 2.6.27 33772 33773 - Add subpage write support 33774 - Add onenand_oob_64/32 ecclayout 33775 33776 This has been missing and without it UBI has some incompatibilies issues 33777 with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is 33778 placed differently (2048 instead of 512) without this fix. 33779 33780 Signed-off-by: Stefan Roese <sr@denx.de> 33781 Signed-off-by: Scott Wood <scottwood@freescale.com> 33782 33783commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23 33784Author: Kyungmin Park <kmpark@infradead.org> 33785Date: Thu Nov 13 15:14:33 2008 +0900 33786 33787 Add markbad function 33788 33789 Add missing markbad function 33790 If not, it's hang when it entered the mtd->mark_bad(). 33791 33792 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 33793 33794commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9 33795Author: Stefan Roese <sr@denx.de> 33796Date: Wed Nov 12 13:47:24 2008 +0100 33797 33798 OneNAND: Bad block aware read/write command support 33799 33800 Update OneNAND command to support bad block awareness. 33801 Also change the OneNAND command style to better match the 33802 NAND version. 33803 33804 Signed-off-by: Stefan Roese <sr@denx.de> 33805 Acked-by: Kyungmin Park <kyungmin.park@samsung.com> 33806 33807commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8 33808Author: Stefan Roese <sr@denx.de> 33809Date: Tue Nov 11 10:29:09 2008 +0100 33810 33811 OneNAND: Save version_id in onenand_chip struct 33812 33813 The version (ver_id) was not stored in the onenand_chip structure and 33814 because of this the continuous locking scheme could be enabled on some 33815 chips. 33816 33817 Signed-off-by: Stefan Roese <sr@denx.de> 33818 33819commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3 33820Author: Stefan Roese <sr@denx.de> 33821Date: Tue Nov 11 10:28:53 2008 +0100 33822 33823 OneNAND: Fix compiler warnings 33824 33825 Signed-off-by: Stefan Roese <sr@denx.de> 33826 33827commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69 33828Author: Dave Liu <daveliu@freescale.com> 33829Date: Tue Nov 4 14:55:06 2008 +0800 33830 33831 mpc83xx: enable eLBC NAND support for MPC8315ERDB board 33832 33833 Signed-off-by: Dave Liu <daveliu@freescale.com> 33834 33835commit ef0921d6b05aeb9034158f9bef5323d6da9c925e 33836Author: Kyungmin Park <kmpark@infradead.org> 33837Date: Tue Nov 4 09:24:07 2008 +0900 33838 33839 Sync with 2.6.27 33840 33841 Sync with OneNAND kernel codes 33842 33843 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 33844 33845commit e7f325be9edeb84bb457301776bbac1f7257dafc 33846Author: Michal Simek <monstr@monstr.eu> 33847Date: Mon Jan 5 13:35:31 2009 +0100 33848 33849 microblaze: Use cache functions (especially cache status) 33850 in systems which are configured without flash 33851 33852commit e9b737deb2c30125362d20e24170617476026e94 33853Author: Michal Simek <monstr@monstr.eu> 33854Date: Mon Jan 5 13:29:32 2009 +0100 33855 33856 microblaze: Add cache flush 33857 33858commit b4f8dda35bfad447b4106828232705b2e878d168 33859Author: Michal Simek <monstr@monstr.eu> 33860Date: Mon Jan 5 13:28:40 2009 +0100 33861 33862 microblaze: Add bootup messages to board.c 33863 33864commit 330e55459bc9983341da6c1d5c7fe00a664436fe 33865Author: Michal Simek <monstr@monstr.eu> 33866Date: Fri Dec 19 13:25:55 2008 +0100 33867 33868 microblaze: Change microblaze-generic config file 33869 33870 Signed-off-by: Michal Simek <monstr@monstr.eu> 33871 33872commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10 33873Author: Michal Simek <monstr@monstr.eu> 33874Date: Fri Dec 19 13:14:05 2008 +0100 33875 33876 microblaze: Rename ml401 to microblaze-generic 33877 33878 Signed-off-by: Michal Simek <monstr@monstr.eu> 33879 33880commit 6677876181cc8772bca8a372479a500d160f3993 33881Author: Scott Wood <scottwood@freescale.com> 33882Date: Tue Jan 20 11:56:11 2009 -0600 33883 33884 83xx: Use the proper sequence for updating IMMR. 33885 33886 This ensures that subsequent accesses properly hit the new window. 33887 33888 The dcbi during the NAND loop was accidentally working around this; 33889 it's no longer necessary, as the cache is not enabled. 33890 33891 Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com> 33892 Signed-off-by: Scott Wood <scottwood@freescale.com> 33893 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 33894 33895commit 8b34557c546e5e9f34ebf83c93413dad973d93df 33896Author: Anton Vorontsov <avorontsov@ru.mvista.com> 33897Date: Thu Jan 8 04:26:19 2009 +0300 33898 33899 mpc83xx: Add PCI-E support for MPC837XEMDS boards 33900 33901 MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card 33902 provides two PCI-E (x2) ports. Though, only one port can be used in x2 33903 mode. Two ports can function simultaneously in x1 mode. 33904 33905 PCI-E x1/x2 modes can be switched via "pex_x2" environment variable. 33906 33907 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 33908 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 33909 33910commit 8f11e34b31a7be124a3239653f33af9510502045 33911Author: Anton Vorontsov <avorontsov@ru.mvista.com> 33912Date: Thu Jan 8 04:26:17 2009 +0300 33913 33914 mpc83xx: Add PCI-E support for MPC8315ERDB boards 33915 33916 MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's 33917 support them. 33918 33919 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 33920 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 33921 33922commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8 33923Author: Anton Vorontsov <avorontsov@ru.mvista.com> 33924Date: Thu Jan 8 04:26:12 2009 +0300 33925 33926 mpc83xx: Add support for MPC83xx PCI-E controllers 33927 33928 This patch adds support for MPC83xx PCI-E controllers in Root Complex 33929 mode. 33930 33931 The patch is based on Tony Li and Dave Liu work[1]. 33932 33933 Though unlike the original patch, by default we don't register PCI-E 33934 buses for use in U-Boot, we only configure the controllers for future 33935 use in other OSes (Linux). This is done because we don't have enough 33936 of spare BATs to map all the PCI-E regions. 33937 33938 To actually use PCI-E in U-Boot, users should explicitly define 33939 CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And 33940 only then U-Boot will able to access PCI-E, but at the cost of disabled 33941 address translation. 33942 33943 [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html 33944 33945 Signed-off-by: Tony Li <tony.li@freescale.com> 33946 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 33947 Acked-by: Dave Liu <daveliu@freescale.com> 33948 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 33949 33950commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5 33951Author: Ira Snyder <iws@ovro.caltech.edu> 33952Date: Mon Jan 12 13:33:17 2009 -0800 33953 33954 MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode 33955 33956 When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do 33957 not enable them. See the MPC8349EA Reference Manual, Section 4.4.2 33958 "Clocking in PCI Agent Mode". 33959 33960 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu> 33961 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 33962 33963commit 75f35209f702bb26826855ed8c8e4d108ab5f412 33964Author: Ira Snyder <iws@ovro.caltech.edu> 33965Date: Mon Jan 12 13:32:26 2009 -0800 33966 33967 83xx: PCI agent mode fixes for multi-board systems 33968 33969 When running a system with 2 or more MPC8349EMDS boards in PCI agent mode, 33970 the boards will lock up the PCI bus by scanning against each other. 33971 33972 The boards lock against each other by trying to access the PCI bus before 33973 clearing their configuration lock bit. Both boards end up in a loop, 33974 sending and receiving "Target Not Ready" messages forever. 33975 33976 When running in PCI agent mode, the scanning now takes place after the 33977 boards have cleared their configuration lock bit. 33978 33979 Also, add a missing declaration to the mpc83xx.h header file, fixing a 33980 build warning. 33981 33982 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu> 33983 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 33984 33985commit 455a46915b82896cc2070eb326d075555c2bc580 33986Author: Ron Madrid <ron_madrid@sbcglobal.net> 33987Date: Fri Dec 12 13:12:45 2008 -0800 33988 33989 mpc83xx: Size optimization of start.S 33990 33991 Currently there are in excess of 100 bytes located at the beginning of the image 33992 built by start.S that are not being utilized. This patch moves a few functions 33993 into this part of the image. This will create a greater number of *available* 33994 bytes that can be used by board specific code in NAND builds and will decrease 33995 the size of the assembled code in other builds. 33996 33997 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net> 33998 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 33999 34000commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
34001Author: Wolfgang Denk <wd@denx.de> 34002Date: Wed Jan 21 23:08:12 2009 +0100 34003 34004 Prepare v2009.01 34005 34006 Signed-off-by: Wolfgang Denk <wd@denx.de> 34007 34008commit 635e5f8fc82365e6e9734b3132bc95135a6de679 34009Author: Wolfgang Denk <wd@denx.de> 34010Date: Sun Jan 18 21:37:48 2009 +0100 34011 34012 Prepare 2009.01-rc3 34013 34014 Update CHANGELOG 34015 34016 Signed-off-by: Wolfgang Denk <wd@denx.de> 34017 34018commit 4cda437898f7873752f0201757cd33f12196ce87 34019Author: Mike Frysinger <vapier@gentoo.org> 34020Date: Sat Jan 17 13:32:42 2009 -0500 34021 34022 build system: treat all Darwin's alike 34023 34024 The x86 based version of Darwin behaves the same quirky way as the powerpc 34025 Darwin, so only check HOSTOS when setting up Darwin workarounds. 34026 34027 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 34028 34029commit c088a108c75db565e07292fd668dfa5491e85bc2 34030Author: Peter Korsgaard <jacmet@sunsite.dk> 34031Date: Wed Jan 14 13:52:24 2009 +0100 34032 34033 fdt_resize(): fix actualsize calculations with unaligned blobs 34034 34035 The code in fdt_resize() to extend the fdt size to end on a page boundary 34036 is wrong for fdt's not located at an address aligned on a page boundary. 34037 What's even worse, the code would make actualsize shrink rather than grow 34038 if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(), 34039 causing fdt_add_mem_rsv to fail. 34040 34041 Fix it by aligning end address (blob + size) to a page boundary instead. 34042 For aligned fdt's this is equivalent to what we had before. 34043 34044 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> 34045 34046commit fadad1573fb16c90025f08a2861d6047d093cba7 34047Author: Mike Frysinger <vapier@gentoo.org> 34048Date: Fri Jan 9 04:38:17 2009 -0500 34049 34050 ncb: use socklen_t 34051 34052 The recvfrom() function takes a socklen_t, not an int. 34053 34054 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 34055 34056commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa 34057Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34058Date: Sun Jan 11 16:35:16 2009 +0100 34059 34060 sh: serial: use readx/writex accessors 34061 34062 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34063 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 34064 34065commit 9e1fa628bdb64745811cdd26c4f953846c076180 34066Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34067Date: Sun Jan 11 16:35:15 2009 +0100 34068 34069 sh: serial: coding style cleanup 34070 34071 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34072 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 34073 34074commit c9935c992575922b7ef13eec0656ed8665d324e3 34075Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 34076Date: Sun Jan 11 17:48:56 2009 +0900 34077 34078 sh: Fix compile error on lowlevel_init file 34079 34080 lowlevel_init of SH was corrected to use the write/readXX macro. 34081 However, there was a problem that was not able to be compiled partially. 34082 This patch corrected this. 34083 34084 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 34085 34086commit a5b04d00bfeb940c62232972ce644d50b45797f9 34087Author: Kieran Bingham <kieranbingham@gmail.com> 34088Date: Tue Dec 30 01:16:03 2008 +0000 34089 34090 sh: Fix up rsk7203 target for out of tree build 34091 34092 Fix up rsk7203 target to build successfully using out-of-tree build. 34093 34094 Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk> 34095 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 34096 34097commit f7e78f3b74aae9caca2997bad865a72338326c0a 34098Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34099Date: Sat Dec 20 19:29:49 2008 +0100 34100 34101 sh: use write{8,16,32} in all lowlevel_init 34102 34103 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34104 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 34105 34106commit e4430779623af500de1cee7892c379f07ef59813 34107Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34108Date: Sat Dec 20 19:29:48 2008 +0100 34109 34110 sh: lowlevel_init coding style cleanup 34111 34112 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34113 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 34114 34115commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9 34116Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34117Date: Sat Dec 20 15:27:45 2008 +0100 34118 34119 sh: update sh2/sh2a timer coding style 34120 34121 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34122 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 34123 34124commit 1e15ff999322e81af4c0c0c548908f38944ba39c 34125Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34126Date: Sat Dec 20 15:25:22 2008 +0100 34127 34128 sh: update sh timer coding style 34129 34130 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34131 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 34132 34133commit 0e3ece33801e377be67ffa29f083421ad820f28b 34134Author: Wolfgang Denk <wd@denx.de> 34135Date: Wed Jan 14 23:26:05 2009 +0100 34136 34137 Prepare 2009.01-rc2 34138 34139 Update CHANGELOG. 34140 34141 Signed-off-by: Wolfgang Denk <wd@denx.de> 34142 34143commit e92c9a860e44c14513c8909ce4299e253a775eeb 34144Author: Wolfgang Denk <wd@denx.de> 34145Date: Wed Jan 14 22:35:30 2009 +0100 34146 34147 cpu/mpc824x/Makefile: fix warning with parallel builds 34148 34149 Parallel builds would occasionally issue this build warning: 34150 34151 ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists 34152 34153 Use "ln -sf" as quick work around for the issue. 34154 34155 Signed-off-by: Wolfgang Denk <wd@denx.de> 34156 34157commit 3ba605d4beec649438539e7df97b5fedb26592fb 34158Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 34159Date: Fri Jan 2 12:18:49 2009 +0100 34160 34161 ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards 34162 34163 This patch adds esd's loadpci BSP command to CPCI4052 and 34164 CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM. 34165 34166 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 34167 Signed-off-by: Stefan Roese <sr@denx.de> 34168 34169commit 600fe46fb3dab7f07604f9009904f31584415114 34170Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 34171Date: Fri Jan 2 12:18:12 2009 +0100 34172 34173 ppc4xx: Disable pci node in device tree on CPCI405 pci adapters 34174 34175 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 34176 Signed-off-by: Stefan Roese <sr@denx.de> 34177 34178commit f6a1f490d224c600a09137e58d1026d150b8e679 34179Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 34180Date: Fri Jan 2 12:17:36 2009 +0100 34181 34182 ppc4xx: Cleanup CPCI405 board code 34183 34184 This patch cleans up CPCI405 board support: 34185 - wrap long lines 34186 - unification of spaces in function calls 34187 - remove dead code 34188 34189 Use correct io accessors on peripherals. 34190 34191 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 34192 Signed-off-by: Stefan Roese <sr@denx.de> 34193 34194commit fceebb45a0b97e92f9889861f8c3b9cb885e706f 34195Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 34196Date: Fri Jan 2 12:16:35 2009 +0100 34197 34198 ppc4xx: Enable auto RS485 mode on PLU405 boards 34199 34200 This patch turns on the auto RS485 mode in the 2nd external 34201 uart on PLU405 boards. This is a special mode of the used 34202 Exar XR16C2850 uart. Because these boards only have a 485 physical 34203 layer connected it's a good idea to turn it on by default. 34204 34205 Signed-off-by: Matthias Fuchs <mf@esd.eu> 34206 Signed-off-by: Stefan Roese <sr@denx.de> 34207 34208commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6 34209Author: Haiying Wang <Haiying.Wang@freescale.com> 34210Date: Tue Jan 13 16:29:28 2009 -0500 34211 34212 Some changes of TLB entry setting for MPC8572DS 34213 34214 - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode, 34215 all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0 34216 can not access PIXIS_BASE anymore (any access will cause DataTLBError exception) 34217 34218 - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board. 34219 34220 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 34221 34222commit 950264317eb9594b2b5ee2fb65206200a1c6007a 34223Author: Haiying Wang <Haiying.Wang@freescale.com> 34224Date: Tue Jan 13 16:29:22 2009 -0500 34225 34226 Change DDR tlb start entry to CONFIG param for 85xx 34227 34228 So that we can locate the DDR tlb start entry to the value other than 8. By 34229 default, it is still 8. 34230 34231 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 34232 34233commit 6d3a10f73ece7ffb736890c10e023222612a4aa0 34234Author: Roy Zang <tie-fei.zang@freescale.com> 34235Date: Fri Jan 9 16:02:35 2009 +0800 34236 34237 Change PCIE1&2 deciide logic on MPC8544DS board more readable 34238 34239 The IO port selection for MPC8544DS board: 34240 Port cfg_io_ports 34241 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7 34242 PCIE2 0x4, 0x5, 0x6, 0x7 34243 PCIE3 0x6, 0x7 34244 This patch changes the PCIE12 and PCIE2 logic more readable. 34245 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 34246 34247commit 028e116811d28a031660f1ad9e20ac1293b3c5c7 34248Author: Roy Zang <tie-fei.zang@freescale.com> 34249Date: Fri Jan 9 16:01:52 2009 +0800 34250 34251 PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit 34252 34253 PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of 34254 PCIE1 bit. 34255 On MPC8572DS board, PCIE refers to PCIE1. 34256 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 34257 34258commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47 34259Author: Roy Zang <tie-fei.zang@freescale.com> 34260Date: Fri Jan 9 16:00:55 2009 +0800 34261 34262 Fix IO port selection issue on MPC8544DS and MPC8572DS boards 34263 34264 The IO port selection is not correct on MPC8572DS and MPC8544DS board. 34265 This patch fixes this issue. 34266 For MPC8572 34267 Port cfg_io_ports 34268 PCIE1 0x2, 0x3, 0x7, 0xb, 0xc, 0xf 34269 PCIE2 0x3, 0x7 34270 PCIE3 0x7 34271 34272 For MPC8544 34273 Port cfg_io_ports 34274 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7 34275 PCIE2 0x4, 0x5, 0x6, 0x7 34276 PCIE3 0x6, 0x7 34277 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 34278 34279commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946 34280Author: Becky Bruce <beckyb@kernel.crashing.org> 34281Date: Wed Dec 3 22:36:44 2008 -0600 34282 34283 mpc8610hpcd: Fix PCI mapping concepts 34284 34285 Rename _BASE to _BUS, as it's actually a PCI bus address, 34286 separate virtual and physical addresses into _VIRT and _PHYS, 34287 and use each appopriately. This makes the code easier to read 34288 and understand, and facilitates mapping changes going forward. 34289 34290 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 34291 34292commit 79e436cad3b4a7db88408c3f05175028f30d700d 34293Author: Becky Bruce <beckyb@kernel.crashing.org> 34294Date: Wed Dec 3 22:36:26 2008 -0600 34295 34296 sbc8641d: Fix PCI mapping concepts 34297 34298 Rename _BASE to _BUS, as it's actually a PCI bus address, 34299 separate virtual and physical addresses into _VIRT and _PHYS, 34300 and use each appopriately. This makes the code easier to read 34301 and understand, and facilitates mapping changes going forward. 34302 34303 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 34304 34305commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0 34306Author: Wolfgang Denk <wd@denx.de> 34307Date: Mon Jan 12 14:50:35 2009 +0100 34308 34309 MPC86xx: fix build warnings 34310 34311 Signed-off-by: Wolfgang Denk <wd@denx.de> 34312 34313commit 032a1c934ef4dc003281f57302b6e693062c1868 34314Author: Mike Frysinger <vapier@gentoo.org> 34315Date: Mon Jan 5 16:09:44 2009 -0500 34316 34317 bf537-stamp/nand: fix board_nand_init prototype 34318 34319 The board_nand_init() function should return an int, not void. 34320 34321 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 34322 34323commit 687f952e4119594ab913be11c90f7f018c2a7a79 34324Author: Mike Frysinger <vapier@gentoo.org> 34325Date: Thu Dec 11 07:04:48 2008 -0500 34326 34327 Blackfin: drop CONFIG_SPI handling in board init 34328 34329 The eeprom SPI init functions are duplicated as the common code already 34330 executes these for us. 34331 34332 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 34333 34334commit e7e684b10d73a303902208594c7c3e7e0d753282 34335Author: Mike Frysinger <vapier@gentoo.org> 34336Date: Fri Oct 24 17:51:57 2008 -0400 34337 34338 Blackfin: fix out-of-tree building with ldscripts 34339 34340 Many of the Blackfin board linker scripts are preprocessed, so make sure we 34341 output the linker script into the build tree rather than the source tree. 34342 34343 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 34344 34345commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb 34346Author: Mike Frysinger <vapier@gentoo.org> 34347Date: Fri Oct 24 17:48:54 2008 -0400 34348 34349 Blackfin: fix linker scripts to work with --gc-sections 34350 34351 Make sure all .text sections get pulled in and the entry point is properly 34352 referenced so they don't get discarded when linking with --gc-sections. 34353 34354 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 34355 34356commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58 34357Author: Mike Frysinger <vapier@gentoo.org> 34358Date: Sat Oct 11 20:45:44 2008 -0400 34359 34360 Blackfin: set proper LDRFLAGS for parallel booting LDRs 34361 34362 In order to boot an LDR out of parallel flash, the ldr utility needs a few 34363 flags to tell it to generate the right header. 34364 34365 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 34366 34367commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3 34368Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34369Date: Tue Jan 6 21:41:59 2009 +0100 34370 34371 at91rm9200: move define from lowlevel_init to header 34372 34373 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34374 34375commit 8a48686fac2030287765f1970ea046bd5734b733 34376Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34377Date: Sat Jan 3 17:22:26 2009 +0100 34378 34379 m501sk: move to the common memory setup 34380 34381 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34382 34383commit d481c80d78f954133c035dae6c7d22de3625795d 34384Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34385Date: Sat Jan 3 17:22:25 2009 +0100 34386 34387 at91rm9200: rename lowlevel init value to CONFIG_SYS_ 34388 34389 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34390 34391commit 4e170b16625291aa10d0d9abc3f34e8a5945d157 34392Author: Nicolas Ferre <nicolas.ferre@atmel.com> 34393Date: Tue Jan 6 21:13:14 2009 +0100 34394 34395 at91: add at91sam9xeek board support 34396 34397 At91sam9xe is basically an at91sam9260 with embedded flash. We can manage 34398 it as another entry for at91sam9260 in the Makefile. 34399 34400 Check documentation at : 34401 http://www.atmel.com/dyn/products/product_card.asp?part_id=4263 34402 34403 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> 34404 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34405 34406commit 9ffd53db870a7da134f9a1ae76894a6b31237be5 34407Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34408Date: Tue Jan 6 21:15:57 2009 +0100 34409 34410 fix bmp_logo.h make dependencies to allow parallel build 34411 34412 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34413 34414commit e12d9a8fb48d24176efffccc072b445e60a3afe4 34415Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34416Date: Sat Jan 3 17:22:24 2009 +0100 34417 34418 at91: Fix Atmel's at91sam9 boards out of tree build 34419 34420 introduced in commit 89a7a87f084c 34421 34422 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34423 34424commit 0668236bafaa1c11c521652a2facebc74beecbf0 34425Author: Wolfgang Denk <wd@denx.de> 34426Date: Tue Dec 30 22:56:11 2008 +0100 34427 34428 README: update mailing list name and hits to patch submission. 34429 34430 Signed-off-by: Wolfgang Denk <wd@denx.de> 34431 34432commit d9011f9b75561a0bd9254934c2bb2bc799d4f645 34433Author: Peter Tyser <ptyser@xes-inc.com> 34434Date: Tue Dec 23 16:32:01 2008 -0600 34435 34436 85xx: Enable inbound PCI config cycles for X-ES boards cleanup 34437 34438 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 34439 34440commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df 34441Author: Peter Tyser <ptyser@xes-inc.com> 34442Date: Tue Dec 23 16:32:00 2008 -0600 34443 34444 XPedite5200 board support cleanup 34445 34446 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 34447 34448commit fea91edee8ae0295e3c30b1ff544df51f4d668e1 34449Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34450Date: Tue Dec 2 21:58:04 2008 +0100 34451 34452 usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable 34453 34454 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34455 Signed-off-by: Remy Böhmer <linux@bohmer.net> 34456 34457commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28 34458Author: Trent Piepho <tpiepho@freescale.com> 34459Date: Wed Dec 3 15:16:37 2008 -0800 34460 34461 mpc8[56]xx: Put localbus clock in sysinfo and gd 34462 34463 Currently MPC85xx and MPC86xx boards just calculate the localbus frequency 34464 and print it out, but don't save it. 34465 34466 This changes where its calculated and stored to be more consistent with the 34467 CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock. 34468 34469 The localbus frequency is added to sysinfo and calculated when sysinfo is 34470 set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are. 34471 34472 get_clocks() copies the frequency into the global data, as the other 34473 frequencies are, into a new field that is only enabled for MPC85xx and 34474 MPC86xx. 34475 34476 checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency 34477 from sysinfo, like the other frequencies, instead of calculating it on the 34478 spot. 34479 34480 Signed-off-by: Trent Piepho <tpiepho@freescale.com> 34481 Acked-by: Kumar Gala <galak@kernel.crashing.org> 34482 Acked-by: Jon Loeliger <jdl@freescale.com> 34483 34484commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7 34485Author: Trent Piepho <tpiepho@freescale.com> 34486Date: Wed Dec 3 15:16:36 2008 -0800 34487 34488 mpc86xx: Double local bus clock divider 34489 34490 The local bus clock divider should be doubled for both 8610 and 8641. 34491 34492 Signed-off-by: Trent Piepho <tpiepho@freescale.com> 34493 Acked-by: Kumar Gala <galak@kernel.crashing.org> 34494 Acked-by: Jon Loeliger <jdl@freescale.com> 34495 34496commit 446c381e3e16f19857b72ea0d06241267b8b9d58 34497Author: Trent Piepho <tpiepho@freescale.com> 34498Date: Wed Dec 3 15:16:35 2008 -0800 34499 34500 mpc8568: Double local bus clock divider 34501 34502 The clock divider for the MPC8568 local bus should be doubled, like the 34503 other newer MPC85xx chips. 34504 34505 Since there are now more chips with a 2x divider than a 1x, and any new 34506 85xx chips will probably be 2x, invert the sense of the #if so that it 34507 lists the 1x chips instead of the 2x ones. 34508 34509 Signed-off-by: Trent Piepho <tpiepho@freescale.com> 34510 Acked-by: Kumar Gala <galak@kernel.crashing.org> 34511 Acked-by: Jon Loeliger <jdl@freescale.com> 34512 34513commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03 34514Author: Dave Liu <daveliu@freescale.com> 34515Date: Tue Dec 16 12:09:27 2008 +0800 34516 34517 85xx: Fix the boot window issue 34518 34519 If one custom board is using the 8MB flash, it is set 34520 as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000. 34521 The current start.S code will be broken at switch_as. 34522 34523 It is because the TLB1[15] is set as 16MB page size, 34524 EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000. 34525 34526 For the 8MB flash case, the EPN = 0xefxxxxxx, 34527 RPN = 0xffxxxxxx. Assume the virt address of switch_as 34528 is 0xef7ff18c, the real address of the instruction at 34529 switch_as should be 0xff7ff18c. the 0xff7ff18c is out 34530 of the range of the default 8MB boot LAW window 34531 0xff800000 - 0xffffffff. 34532 34533 So when we switch to AS1 address space at switch_as, 34534 the core can't fetch the instruction at switch_as any 34535 more. It will cause broken issue. 34536 34537 Signed-off-by: Dave Liu <daveliu@freescale.com> 34538 34539commit 58da8890d5fbd074746037722a423de9ac408616 34540Author: Paul Gortmaker <paul.gortmaker@windriver.com> 34541Date: Thu Dec 11 15:47:50 2008 -0500 34542 34543 sbc8548: use proper PHY address 34544 34545 The values given for the PHY address were wrong, so the code 34546 read no valid PHY ID, and fell through to the generic PHY 34547 support, which would work on 1000M but would not auto negotiate 34548 down to 100M or 10M. 34549 34550 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 34551 34552commit ad22f9273c6f24fbfa917e867680e9688e0c59c5 34553Author: Paul Gortmaker <paul.gortmaker@windriver.com> 34554Date: Thu Dec 11 15:47:51 2008 -0500 34555 34556 sbc8548: enable command line editing by default. 34557 34558 Lets make things a bit more user friendly. It isn't 1985 anymore. 34559 34560 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 34561 34562commit bd93105fa171184a71ca8b22be03dc2705cfbd3f 34563Author: Paul Gortmaker <paul.gortmaker@windriver.com> 34564Date: Thu Dec 11 15:47:49 2008 -0500 34565 34566 sbc8548: don't enable the 3rd and 4th eTSEC 34567 34568 These interfaces don't have usable connectors on the board, so don't 34569 bother enumerating or configuring them. 34570 34571 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 34572 34573commit 181a3650113883728927928b3ac81ad6dade4b2c 34574Author: Haiying Wang <Haiying.Wang@freescale.com> 34575Date: Wed Dec 3 10:08:19 2008 -0500 34576 34577 Set IVPR to kenrel entry point in second core boot page 34578 34579 Assuming the OSes exception vectors start from the base of kernel address, and 34580 the kernel physical starting address can be relocated to an non-zero address. 34581 This patch enables the second core to have a valid IVPR for debugger before 34582 kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid 34583 value for second core which runs kernel at different physical address other 34584 than 0x0. 34585 34586 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 34587 34588commit a5d212a263c58cc746481bf1fc878510533ce7d6 34589Author: Trent Piepho <tpiepho@freescale.com> 34590Date: Wed Dec 3 15:16:34 2008 -0800 34591 34592 mpc8xxx: LCRR[CLKDIV] is sometimes five bits 34593 34594 On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits 34595 instead of four. 34596 34597 In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems. It 34598 should be safe as the fifth bit was defined as reserved and set to 0. 34599 34600 Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV. 34601 34602 Signed-off-by: Trent Piepho <tpiepho@freescale.com> 34603 Acked-by: Kumar Gala <galak@kernel.crashing.org> 34604 Acked-by: Jon Loeliger <jdl@freescale.com> 34605 34606commit 58ec4866ed916c7e422f5107bb27b0822084728e 34607Author: Trent Piepho <tpiepho@freescale.com> 34608Date: Wed Dec 3 15:16:38 2008 -0800 34609 34610 mpc8[56]xx: Put localbus clock in device tree 34611 34612 Export the localbus frequency in the device tree, the same way the CPU, TB, 34613 CCB, and various other frequencies are exported in their respective device 34614 tree nodes. 34615 34616 Some localbus devices need this information to be programed correctly, so 34617 it makes sense to export it along with the other frequencies. 34618 34619 Unfortunately, when someone wrote the localbus dts bindings, they didn't 34620 bother to define what the "compatible" property should be. So it seems no 34621 one was quite sure what to put in their dts files. 34622 34623 Based on current existing dts files in the kernel source, I've used 34624 "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all 34625 of the 85xx devices, and are looked for by the Linux code. The eLBC is 34626 apparently not entirely backward compatible with the pq3 LBC and so eLBC 34627 equipped platforms like 8572 won't use pq3-localbus. 34628 34629 For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems 34630 and is also looked for by the Linux code. On MPC8641, I've also used 34631 "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of 34632 which don't use "fsl,elbc" or any other acceptable name to match on. 34633 34634 Signed-off-by: Trent Piepho <tpiepho@freescale.com> 34635 Acked-by: Kumar Gala <galak@kernel.crashing.org> 34636 Acked-by: Jon Loeliger <jdl@freescale.com> 34637 34638commit 9d94aff699eed38b286814fcbb335f3eb8516a0e 34639Author: Kumar Gala <galak@kernel.crashing.org> 34640Date: Tue Dec 16 14:59:22 2008 -0600 34641 34642 NAND FSL elbc: Use virt_to_phys to determine which bank is in use 34643 34644 The current code that determines which bank/chipselect is used for a 34645 given NAND instance only worked for 32-bit addresses and assumed 34646 a 1:1 mapping. This breaks in 36-bit physical configs. 34647 34648 The proper way to handle this is to use the virt_to_phys() and 34649 BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address 34650 with the the virtual address the NAND code uses. 34651 34652 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 34653 Acked-by: Scott Wood <scottwood@freescale.com> 34654 34655commit 77c8115b1f1871811633eae77a5a700fac1f0e50 34656Author: Kumar Gala <galak@kernel.crashing.org> 34657Date: Tue Dec 16 14:59:21 2008 -0600 34658 34659 ppc: Use addrmap in virt_to_phys and map_physmem. 34660 34661 If we have addr map support enabled use the mapping functions to 34662 implement virt_to_phys() and map_physmem(). 34663 34664 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 34665 34666commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90 34667Author: Kumar Gala <galak@kernel.crashing.org> 34668Date: Tue Dec 16 14:59:20 2008 -0600 34669 34670 85xx: Add support to populate addr map based on TLB settings 34671 34672 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 34673 34674commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec 34675Author: Peter Tyser <ptyser@xes-inc.com> 34676Date: Mon Dec 1 13:47:13 2008 -0600 34677 34678 XPedite5200 board support 34679 34680 Initial support for Extreme Engineering Solutions XPedite5200 - 34681 a MPC8548-based PMC single board computer. 34682 34683 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 34684 34685commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f 34686Author: Peter Tyser <ptyser@xes-inc.com> 34687Date: Wed Oct 29 12:39:27 2008 -0500 34688 34689 85xx: Enable inbound PCI config cycles for X-ES boards 34690 34691 Update X-ES Freescale boards to allow inbound PCI configuration 34692 cycles when configured as agent/endpoint. 34693 34694 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 34695 34696commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f 34697Author: Peter Tyser <ptyser@xes-inc.com> 34698Date: Wed Dec 17 16:36:23 2008 -0600 34699 34700 XPedite5370 board support 34701 34702 Initial support for Extreme Engineering Solutions XPedite5370 - 34703 a MPC8572-based 3U VPX single board computer with a PMC/XMC 34704 site. 34705 34706 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 34707 34708commit e92739d34e2d6b6aca93b2598248210710897ce8 34709Author: Peter Tyser <ptyser@xes-inc.com> 34710Date: Wed Dec 17 16:36:21 2008 -0600 34711 34712 Add support for PCA953x I2C gpio devices 34713 34714 Initial support for NXP's 4 and 8 bit I2C gpio expanders 34715 (eg pca9537, pca9557, etc). The CONFIG_PCA953X define 34716 enables support for the devices while the CONFIG_CMD_PCA953X 34717 define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO 34718 define enables an 'info' sub-command which provides summary 34719 information for the given pca953x device. 34720 34721 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 34722 34723commit 7a8979591171676417ab36852d8811a8c46accd8 34724Author: Peter Tyser <ptyser@xes-inc.com> 34725Date: Wed Oct 29 12:39:26 2008 -0500 34726 34727 pci/fsl_pci_init: Enable inbound PCI config cycles 34728 34729 Add fsl_pci_config_unlock() function to enable a 34730 PCI/PCIe interface configured in agent/endpoint mode to 34731 respond to inbound PCI configuration cycles. 34732 34733 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 34734 34735commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb 34736Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 34737Date: Wed Dec 17 16:43:18 2008 +0100 34738 34739 avr32: Remove second definition of virt_to_phys() 34740 34741 The second definition introduced by 65e43a1063 conflicts with the 34742 existing one. 34743 34744 Also, convert the existing definition to use phys_addr_t. The volatile 34745 qualifier is still needed due to brain damage elsewhere. 34746 34747 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 34748 34749commit b616f2b545f73757669b37386f0b37bb61fc6797 34750Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34751Date: Mon Sep 8 22:27:18 2008 +0200 34752 34753 MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file 34754 34755 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34756 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 34757 34758commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b 34759Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34760Date: Tue Dec 16 22:10:31 2008 +0100 34761 34762 MIPS: qemu_mips: update doc to use all disk and boot linux kernel 34763 34764 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34765 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 34766 34767commit 13095b2f07dacb1f863772266c1789d47a523a8a 34768Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34769Date: Tue Dec 16 22:10:30 2008 +0100 34770 34771 MIPS: qemu_mips: move env storage just after u-boot 34772 34773 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34774 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 34775 34776commit aced78d852d0b009e8aaa1445af8cb40861ee549 34777Author: Wolfgang Denk <wd@denx.de> 34778Date: Tue Dec 16 23:48:27 2008 +0100 34779 34780 Prepare 2009.01-rc1 34781 34782 Signed-off-by: Wolfgang Denk <wd@denx.de> 34783 34784commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8 34785Author: Wolfgang Denk <wd@denx.de> 34786Date: Tue Dec 16 23:13:46 2008 +0100 34787 34788 include/configs/at91cap9adk.h: fix typo. 34789 34790 Signed-off-by: Wolfgang Denk <wd@denx.de> 34791 34792commit 45ca04f2377361593151d2d4da51f8ba4832d233 34793Author: Wolfgang Denk <wd@denx.de> 34794Date: Tue Dec 16 22:32:25 2008 +0100 34795 34796 board/trab/memory.c: Fix compile problems. 34797 34798 Apply changes from commit 44b4dbed to board/trab/memory.c, too. 34799 34800 Actually we'd need a major cleanup here - as it turns out, 34801 board/trab/memory.c is more or less a verbatim copy of 34802 post/drivers/memory.c ... but then, trab is EOL anyway,r 34803 so this is not worth the effort. 34804 34805 Signed-off-by: Wolfgang Denk <wd@denx.de> 34806 34807commit ff49ea8977b56916edd5b1766d9939010e30b181 34808Author: Scott Wood <scottwood@freescale.com> 34809Date: Tue Dec 16 14:24:16 2008 -0600 34810 34811 NAND: Mark the BBT as scanned prior to calling scan_bbt. 34812 34813 Otherwise, recursion can occur if scan_bbt does not find a bad block 34814 table, and tries to write one, and the attempt to erase the BBT area 34815 causes a bad block check. 34816 34817 Signed-off-by: Scott Wood <scottwood@freescale.com> 34818 34819commit 584eedab66d0828f2d571a24b10526c4e65f547b 34820Author: Ilya Yanok <yanok@emcraft.com> 34821Date: Thu Dec 11 05:51:57 2008 +0300 34822 34823 jffs2: include <linux/mtd/compat.h> instead of defining own min_t 34824 34825 Include <linux/mtd/compat.h> header for min_t definition instead of 34826 providing our own one. Removes warnings in case of OneNAND support 34827 enabled. 34828 34829 Although I thinks it's a bit silly to include <linux/mtd/compat.h> 34830 just for min_t... 34831 34832 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 34833 Acked-by: Stefan Roese <sr@denx.de> 34834 34835commit b1ffecec37b57a59c139042267faac458e5324e9 34836Author: Becky Bruce <beckyb@kernel.crashing.org> 34837Date: Wed Dec 3 23:04:37 2008 -0600 34838 34839 powerpc: fix io.h build warning with CONFIG_PHYS_64BIT 34840 34841 Casting a pointer to a phys_addr_t when it's an unsigned long long 34842 on a 32-bit system without first casting to a non-pointer type 34843 generates a compiler warning. Fix this. 34844 34845 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 34846 34847commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351 34848Author: Wolfgang Denk <wd@denx.de> 34849Date: Tue Dec 16 16:22:50 2008 +0100 34850 34851 trab: make trab_fkt standalone code independent of libgcc 34852 34853 Use our own local functions in lib_arm/ instead. 34854 34855 Signed-off-by: Wolfgang Denk <wd@denx.de> 34856 34857commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded 34858Author: Wolfgang Denk <wd@denx.de> 34859Date: Tue Dec 16 14:44:06 2008 +0100 34860 34861 post/Makefile: fix dependency problem with parallel builds 34862 34863 Parallel builds (using "make -jN") would occasionally fail with error 34864 messages like 34865 ppc_4xxFP-objdump: string.o: File format not recognized 34866 or 34867 post/libpost.a(cpu.o): In function `cpu_post_test': 34868 /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string' 34869 or similar. We now make sure to run the 'postdeps" step before 34870 attempting to build the specific POST libraries. 34871 34872 Signed-off-by: Wolfgang Denk <wd@denx.de> 34873 34874commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9 34875Author: Wolfgang Denk <wd@denx.de> 34876Date: Tue Dec 16 14:41:02 2008 +0100 34877 34878 Makefile: fix dependency problem with parallel builds 34879 34880 Parallel builds (using "make -jN") would occasionally fail with error 34881 messages like 34882 include/autoconf.mk:212: *** missing separator. Stop. 34883 Line numbers and affected boards were changing. Obviously some 34884 Makefiles included autoconf.mk while it was still being written to. 34885 As a fix, we now write to a temporary file first and then rename it, 34886 so that it is really ready to use as soon as it appears. 34887 34888 Signed-off-by: Wolfgang Denk <wd@denx.de> 34889 34890commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c 34891Author: Wolfgang Denk <wd@denx.de> 34892Date: Tue Dec 16 01:02:17 2008 +0100 34893 34894 Coding style cleanup, update CHANGELOG. 34895 34896 Signed-off-by: Wolfgang Denk <wd@denx.de> 34897 34898commit 84bc72d90c505fec3ef4b693995407a0bd4064e5 34899Author: Mike Frysinger <vapier@gentoo.org> 34900Date: Thu Dec 11 18:39:08 2008 -0500 34901 34902 spi/stmicro: fix debug() display of cmd 34903 34904 The stmicro_wait_ready() func tries to show the actual opcode that was sent 34905 to the device, but instead it displays the array pointer. Fix it to pull 34906 out the opcode from the start of the array. 34907 34908 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 34909 34910commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9 34911Author: Mike Frysinger <vapier@gentoo.org> 34912Date: Thu Dec 11 06:23:37 2008 -0500 34913 34914 env_sf: support embedded environments 34915 34916 If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect 34917 size is larger than the env size, then it means the env is embedded in a 34918 block. So we have to save/restore the part of the sector which is not the 34919 environment. Previously, saving the environment in SPI flash in this 34920 setup would probably brick the board as the rest of the sector tends to 34921 contain actual U-Boot data/code. 34922 34923 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 34924 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 34925 34926commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d 34927Author: Timur Tabi <timur@freescale.com> 34928Date: Wed Dec 3 11:28:30 2008 -0600 34929 34930 i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions 34931 34932 All implementations of the functions i2c_reg_read() and 34933 i2c_reg_write() are identical. We can save space and simplify the 34934 code by converting these functions into inlines and putting them in 34935 i2c.h. 34936 34937 Signed-off-by: Timur Tabi <timur@freescale.com> 34938 Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 34939 34940commit e39cd81c44740d7355d277ed3d38536cbe1e003d 34941Author: Dave Liu <daveliu@freescale.com> 34942Date: Fri Dec 5 15:36:14 2008 +0800 34943 34944 lib_ppc: rework the flush_cache 34945 34946 - It is possible to miss flush/invalidate the last 34947 cache line, we fix it at here. 34948 - add the volatile and memory clobber. 34949 34950 They are pointed by Scott Wood. 34951 34952 Signed-off-by: Dave Liu <daveliu@freescale.com> 34953 34954commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b 34955Author: Kumar Gala <galak@kernel.crashing.org> 34956Date: Sat Dec 13 17:20:28 2008 -0600 34957 34958 Introduce addr_map library 34959 34960 Add a library that helps in translating between virtual and physical 34961 addresses. This library can be useful as a simple means to implement 34962 map_physmem() and virt_to_phys() for platforms that need functionality 34963 beyond the simple 1:1 mapping. 34964 34965 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 34966 34967commit 65e43a10631537dcb92c302d36301a12308216c3 34968Author: Kumar Gala <galak@kernel.crashing.org> 34969Date: Sat Dec 13 17:20:27 2008 -0600 34970 34971 Introduce virt_to_phys() 34972 34973 virt_to_phys() returns the physical address given a virtual. In most 34974 cases this will be just the input value as the vast majority of 34975 systems run in a 1:1 mode. 34976 34977 However in systems that are not running this way it should report the 34978 physical address or ~0 if no mapping exists for the given virtual 34979 address. 34980 34981 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 34982 34983commit 45845301af3de8675c1f7bbc815c6de35452605a 34984Author: Yuri Tikhonov <yur@emcraft.com> 34985Date: Sun Dec 7 22:12:50 2008 +0100 34986 34987 POST Make: fix the sub-dir dependencies missing. 34988 34989 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 34990 34991commit 22525779cb51f1bbe4e96fea7b778de1935a5a69 34992Author: Martin Michlmayr <tbm@cyrius.com> 34993Date: Wed Aug 6 14:44:05 2008 +0300 34994 34995 Fix a typo in fw_env.config 34996 34997 Reported-by: Martin Michlmayr <tbm@cyrius.com> 34998 Signed-off-by: Wolfgang Denk <wd@denx.de> 34999 35000commit ba490b7761c62b549c222a9723e532dc801a3899
35001Author: Peter Tyser <ptyser@xes-inc.com> 35002Date: Mon Dec 1 16:22:45 2008 -0600 35003 35004 Remove unused CONFIG_ADDR_STREAMING defines 35005 35006 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 35007 35008commit d16da93430520d3e46c1ab52eedacf36ab7a2311 35009Author: Peter Tyser <ptyser@xes-inc.com> 35010Date: Mon Nov 24 11:54:47 2008 -0600 35011 35012 cmd_mem: Remove unused variable 35013 35014 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 35015 35016commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf 35017Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35018Date: Sun Dec 14 10:29:39 2008 +0100 35019 35020 Fix new found CFG_ 35021 35022 Also fix some minor typos. 35023 35024 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35025 Signed-off-by: Wolfgang Denk <wd@denx.de> 35026 35027commit 0e0c862efe7279e9609db74d758cd1b84c6c7209 35028Author: Sergei Poselenov <sposelenov@emcraft.com> 35029Date: Fri Sep 19 12:07:34 2008 +0200 35030 35031 Remove compiler warning: target CPU does not support interworking 35032 35033 This warning is issued by modern ARM-EABI GCC on non-thumb targets. 35034 35035 Signed-off-by: Vladimir Panfilov <pvr@emcraft.com> 35036 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 35037 35038commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1 35039Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35040Date: Mon Nov 24 13:33:51 2008 +0100 35041 35042 Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent 35043 35044 FDT support is used for both FIT style images and for architectures 35045 that can pass a fdt blob to an OS (ppc, m68k, sparc). 35046 35047 For other architectures and boards which do not pass a fdt blob to an 35048 OS but want to use the new uImage format, we just need FIT support. 35049 35050 Now we can have the 4 following configurations : 35051 35052 1) FIT only CONFIG_FIT 35053 2) fdt blob only CONFIG_OF_LIBFDT 35054 3) both CONFIG_OF_LIBFDT & CONFIG_FIT 35055 4) none none 35056 35057 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35058 35059commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172 35060Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 35061Date: Wed Dec 10 15:13:32 2008 +0100 35062 35063 ppc4xx: Disable EEPROM write access on PMC440 boards 35064 35065 This patch disables EEPROM wrtie access by default on PMC440 board. 35066 35067 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 35068 35069commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df 35070Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 35071Date: Wed Dec 10 15:12:56 2008 +0100 35072 35073 ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards 35074 35075 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 35076 35077commit 71fa0714fe5134bc8718c38d5261d267e88582ba 35078Author: Stefan Roese <sr@denx.de> 35079Date: Tue Nov 18 16:36:12 2008 +0100 35080 35081 MIPS: Flush data cache upon relocation 35082 35083 This patch now adds a flush to the data cache upon relocation. The 35084 current implementation is missing this. Only a comment states that it 35085 should be done. So let's really do it now. 35086 35087 Signed-off-by: Stefan Roese <sr@denx.de> 35088 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 35089 35090commit 44174343688dba32571a34550dba08971c65fef1 35091Author: Stefan Roese <sr@denx.de> 35092Date: Tue Nov 18 16:36:22 2008 +0100 35093 35094 MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT 35095 35096 This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This 35097 enables support for boards where the lowlevel initialization is 35098 already done when U-Boot runs (e.g. via OnChip ROM). 35099 35100 This will be used in the upcoming VCTH board support. 35101 35102 Signed-off-by: Stefan Roese <sr@denx.de> 35103 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 35104 35105commit db08ecaa6eb8176904b3bae103a85ee8f735dc40 35106Author: Stefan Roese <sr@denx.de> 35107Date: Wed Nov 12 13:18:02 2008 +0100 35108 35109 MIPS: Add board_early_init_f() to init_sequence 35110 35111 This patch adds the board_early_init_f() call to the MIPS init 35112 sequence. A weak dummy implementation is also added which can be 35113 overridden by a board specific version. 35114 35115 This will be used by the upcoming VCTH board support. 35116 35117 Signed-off-by: Stefan Roese <sr@denx.de> 35118 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 35119 35120commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b 35121Author: Stefan Roese <sr@denx.de> 35122Date: Wed Nov 12 13:18:19 2008 +0100 35123 35124 MIPS: Add onenand_init() to board.c and move nand_init() 35125 35126 This patch adds a call to onenand_init() for OneNAND support and moves 35127 the nand_init() call to an earlier place, so that the environment can 35128 be used from NAND and OneNAND. 35129 35130 Signed-off-by: Stefan Roese <sr@denx.de> 35131 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 35132 35133commit d8bbc51c7ba9b737a20984333d19fe28a3526431 35134Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35135Date: Tue Dec 9 11:32:46 2008 +0900 35136 35137 sh: Update sh2/sh2a timer 35138 35139 Renesas SH2/SH2A timer broken. 35140 This patch fix timer function. 35141 35142 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35143 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 35144 35145commit a319f1496210117b73198e3d889ffffaf6825d00 35146Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35147Date: Fri Dec 5 07:27:37 2008 +0100 35148 35149 sh: r2dplus fix register access 35150 35151 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35152 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 35153 35154commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6 35155Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35156Date: Tue Dec 2 07:40:03 2008 +0100 35157 35158 sh: r2dplus/lowlevel_init: coding style fix 35159 35160 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35161 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 35162 35163commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5 35164Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35165Date: Tue Nov 25 11:05:19 2008 +0900 35166 35167 sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT 35168 35169 SH4 is different a value of CACHE_OC_NUM_ENTRIES and 35170 CACHE_OC_WAY_SHIFT every CPU. 35171 This patch corrects these values. 35172 35173 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35174 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 35175 35176commit e9d5f35497885b3c65d494d09a525d443dcccd3b 35177Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35178Date: Thu Nov 20 16:44:42 2008 +0900 35179 35180 sh: Update sh timer function 35181 35182 Change to write/readX function and fix timer problem. 35183 35184 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35185 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 35186 35187commit b81786cff476c41e332eaeb679158f6527cd67d4 35188Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35189Date: Tue Nov 4 11:58:58 2008 +0900 35190 35191 sh: Migo-R: Update BSC value 35192 35193 A value of BSC CS4 was wrong, Fixed it. 35194 35195 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35196 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 35197 35198commit 5783758fd260a02f44566ad8f29f899565cd0403 35199Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35200Date: Mon Nov 17 16:52:09 2008 +0900 35201 35202 sh: Update ms7722se board config 35203 35204 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35205 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 35206 35207commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51 35208Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35209Date: Mon Nov 17 16:53:09 2008 +0900 35210 35211 sh: Update SuperH serial driver 35212 35213 The address of SCFSR register is wrong at SH7720/SH7721. 35214 This patch fix this. 35215 35216 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 35217 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 35218 35219commit 9a1d3557dcd47365c12eeab584b822e57d994352 35220Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35221Date: Tue Nov 11 22:20:15 2008 +0100 35222 35223 sh: fix rsk7203 and MigoR out of tree build 35224 35225 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35226 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 35227 35228commit 1951f847f0a851853871b613ad7cf21a5242226c 35229Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 35230Date: Wed Dec 10 14:41:25 2008 +0100 35231 35232 ppc4xx: Update TEXT_BASE for CPCI405 boards 35233 35234 This patch fixes building U-Boot for CPCI405 boards. 35235 35236 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 35237 Signed-off-by: Stefan Roese <sr@denx.de> 35238 35239commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452 35240Author: Stefan Roese <sr@denx.de> 35241Date: Tue Dec 9 20:08:01 2008 +0100 35242 35243 ppc4xx: Remove some features from ALPR to fit into 256k again 35244 35245 Signed-off-by: Stefan Roese <sr@denx.de> 35246 35247commit 3b089e4f889a2902449d55e081c886ae607cae89 35248Author: Stefan Roese <sr@denx.de> 35249Date: Wed Dec 10 10:32:59 2008 +0100 35250 35251 UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization 35252 35253 With this patch we set the type back to NONE upon failing UBI partition 35254 initialization. Otherwise further calls to the UBI subsystem would try 35255 to really access the non-existing UBI partition. 35256 35257 Thanks to Michael Lawnick for pointing this out. 35258 35259 Signed-off-by: Stefan Roese <sr@denx.de> 35260 35261commit 817329351639a8895cd9b87b33aeff043f3d5a44 35262Author: Stefan Roese <sr@denx.de> 35263Date: Wed Dec 10 10:28:33 2008 +0100 35264 35265 UBI: Return -ENOMEM upon failing malloc 35266 35267 Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon 35268 failing malloc(). 35269 35270 Signed-off-by: Stefan Roese <sr@denx.de> 35271 35272commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae 35273Author: Ben Warren <biggerbadderben@gmail.com> 35274Date: Tue Dec 9 23:34:15 2008 -0800 35275 35276 Fix compile error in building MBX860T. 35277 35278 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 35279 35280commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee 35281Author: Michal Simek <monstr@monstr.eu> 35282Date: Tue Nov 25 11:42:20 2008 +0100 35283 35284 microblaze: Remove XUPV2P board 35285 35286 --- 35287 35288 Microblaze platforms use generic settings and to have 35289 many platforms is confusing that's why I decided to remove this 35290 platform from U-BOOT. ml401 tree is sufficient for covering 35291 all Microblaze platforms. 35292 35293 This change will go through microblaze custodian tree. 35294 35295commit 99ba6f353582720defff6e6e6761dc455a207d31 35296Author: Michal Simek <monstr@monstr.eu> 35297Date: Mon Nov 24 18:25:41 2008 +0100 35298 35299 microblaze: Remove CONFIG_LIBFDT due to error in common files 35300 35301commit e7d591e823a991513833af7030468409e25a3b13 35302Author: Michal Simek <monstr@monstr.eu> 35303Date: Mon Nov 24 11:43:00 2008 +0100 35304 35305 microblaze: Fix ml401 uart16550 setting 35306 35307 Signed-off-by: Michal Simek <monstr@monstr.eu> 35308 35309commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39 35310Author: Michal Simek <monstr@monstr.eu> 35311Date: Mon Nov 24 11:38:22 2008 +0100 35312 35313 microblaze: Set up relocation is done 35314 35315commit bcb6dd9187d4b23c748704767bd12d20c829e996 35316Author: Mike Frysinger <vapier@gentoo.org> 35317Date: Tue Dec 9 23:20:31 2008 -0500 35318 35319 tools/netconsole: new script for working with netconsole over UDP 35320 35321 While the doc/README.NetConsole does have a snippet for people to 35322 create their own netcat script, it's a lot easier to make a simple 35323 dedicated script and tell people to use it. 35324 35325 Also spruce it up a bit to make it user friendly. 35326 35327 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 35328 35329commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0 35330Author: Sonic Zhang <Sonic.Zhang@analog.com> 35331Date: Tue Dec 9 23:20:18 2008 -0500 35332 35333 fs/fat: handle FAT on SATA 35334 35335 The FAT file system driver should also handle FAT on SATA devices. 35336 35337 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com> 35338 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 35339 35340commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6 35341Author: Ben Warren <biggerbadderben@gmail.com> 35342Date: Tue Dec 9 23:26:31 2008 -0800 35343 35344 Fix compile error in building MBX860T. 35345 Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd 35346 35347 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 35348 35349commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97 35350Author: Jerry Van Baren <gvb.uboot@gmail.com> 35351Date: Mon Nov 24 08:15:02 2008 -0500 35352 35353 libfdt: Fix redefined uintptr_t warning for USE_HOSTCC 35354 35355 Compiling U-Boot in an old OS environment (RedHat-7.3 :-) gives the 35356 following warnings from FDT: 35357 35358 include/libfdt_env.h:50: warning: redefinition of 'uintptr_t' 35359 /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here 35360 35361 Fix: Protect the definition of uintptr_t when compiling on the host 35362 system. 35363 35364 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 35365 35366commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b 35367Author: Graeme Russ <graeme.russ@gmail.com> 35368Date: Sat Nov 22 08:43:29 2008 +1100 35369 35370 Moved sc520 PCI definitions to stand-alone file 35371 35372 Signed Off By: Graeme Russ <graeme.russ@gmail.com> 35373 35374commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa 35375Author: Graeme Russ <graeme.russ@gmail.com> 35376Date: Sat Nov 22 08:43:21 2008 +1100 35377 35378 Fixed path to sc520 SSI include file 35379 35380 Signed Off By: Graeme Russ <graeme.russ@gmail.com> 35381 35382commit d4f70da544c33db3e4fce6473dea4ecca4322545 35383Author: Graeme Russ <graeme.russ@gmail.com> 35384Date: Fri Nov 21 06:28:05 2008 +1100 35385 35386 Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c 35387 35388 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 35389 35390commit c034075a713b60e654c64e88e87da29440f31bb4 35391Author: Stefan Roese <sr@denx.de> 35392Date: Wed Nov 12 13:30:10 2008 +0100 35393 35394 serial: Add vcth UART driver 35395 35396 This patch adds the UART driver for the upcoming VCTH board support. 35397 35398 Signed-off-by: Stefan Roese <sr@denx.de> 35399 35400commit 142a80ffc3b537a9c45acd2444a42a77f147c602 35401Author: Ilya Yanok <yanok@emcraft.com> 35402Date: Thu Nov 13 19:49:36 2008 +0300 35403 35404 jffs2: cache data_crc results 35405 35406 As we moved data_crc() invocation from jffs2_1pass_build_lists() to 35407 jffs2_1pass_read_inode() data_crc is going to be calculated on each 35408 inode access. This patch adds caching of data_crc() results. There 35409 is no significant improvement in speed (because of flash access 35410 caching added in previous patch I think, crc in RAM is really fast) 35411 but this patch impacts memory usage -- every b_node structure uses 35412 12 bytes instead of 8. 35413 35414 Signed-off-by: Alexey Neyman <avn@emcraft.com> 35415 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 35416 35417commit 9b7076229ec6a958bd835ab70745f7676297ce82 35418Author: Ilya Yanok <yanok@emcraft.com> 35419Date: Thu Nov 13 19:49:35 2008 +0300 35420 35421 jffs2: summary support 35422 35423 This patch adds support for reading fs information from summary 35424 node instead of scanning full eraseblock. 35425 35426 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 35427 35428commit 70741004dc28946cd82c7af6789c4ddb3fc94526 35429Author: Ilya Yanok <yanok@emcraft.com> 35430Date: Thu Nov 13 19:49:34 2008 +0300 35431 35432 jffs2: add buffer to cache flash accesses 35433 35434 With this patch JFFS2 code allocates memory buffer of max_totlen size 35435 (size of the largest node, calculated during scan time) and uses it to 35436 store entire node. Speeds up loading. If malloc fails we use old ways 35437 to do things. 35438 35439 Signed-off-by: Alexey Neyman <avn@emcraft.com> 35440 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 35441 35442commit 8a36d31f72411144ac0412ee7e1880e801acd754 35443Author: Ilya Yanok <yanok@emcraft.com> 35444Date: Thu Nov 13 19:49:33 2008 +0300 35445 35446 jffs2: rewrite jffs2 scanning code based on Linux one 35447 35448 Rewrites jffs2_1pass_build_lists() function in style of Linux's 35449 jffs2_scan_medium() and jffs2_scan_eraseblock(). 35450 This includes: 35451 - Caching flash acceses 35452 - Smart dealing with free space 35453 35454 Signed-off-by: Alexey Neyman <avn@emcraft.com> 35455 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 35456 35457commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237 35458Author: Ilya Yanok <yanok@emcraft.com> 35459Date: Thu Nov 13 19:49:32 2008 +0300 35460 35461 jffs2: add sector_size field to part_info structure 35462 35463 This patch adds sector_size field to part_info structure (used 35464 by new JFFS2 code). 35465 35466 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 35467 35468commit f73846956778a7dfee83403ef9747aff77198848 35469Author: Ilya Yanok <yanok@emcraft.com> 35470Date: Thu Nov 13 19:49:31 2008 +0300 35471 35472 jffs2: fix searching for latest version in jffs2_1pass_list_inodes() 35473 35474 We need to update i_version inside cycle to find really latest version 35475 inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside 35476 dump_inode() instead of calling expensive jffs2_1pass_read_inode(). 35477 35478 Signed-off-by: Alexey Neyman <avn@emcraft.com> 35479 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 35480 35481commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4 35482Author: Wolfgang Denk <wd@denx.de> 35483Date: Tue Dec 9 23:13:51 2008 +0100 35484 35485 evb64260: fix "cast to pointer from integer of different size" warnings 35486 35487 Signed-off-by: Wolfgang Denk <wd@denx.de> 35488 35489commit d2776827315c3d469b8cb4cec14d58877798daa2 35490Author: Stefan Althoefer <stefan.althoefer@web.de> 35491Date: Sun Dec 7 19:39:11 2008 +0100 35492 35493 USB: descriptor handling 35494 35495 Hi, 35496 35497 I found a bug when working with the u-boot USB subsystem on IXP425 processor 35498 (big endian Xscale aka ARMv5). 35499 I recognized that the second usb_endpoint_descriptor of the attached memory 35500 stick was corrupted. 35501 35502 The reason for this are the packed structures below (either u-boot and 35503 u-boot-usb): 35504 35505 -------------- 35506 /* Endpoint descriptor */ 35507 struct usb_endpoint_descriptor { 35508 unsigned char bLength; 35509 unsigned char bDescriptorType; 35510 unsigned char bEndpointAddress; 35511 unsigned char bmAttributes; 35512 unsigned short wMaxPacketSize; 35513 unsigned char bInterval; 35514 unsigned char bRefresh; 35515 unsigned char bSynchAddress; 35516 35517 } __attribute__ ((packed)); 35518 /* Interface descriptor */ 35519 struct usb_interface_descriptor { 35520 unsigned char bLength; 35521 unsigned char bDescriptorType; 35522 unsigned char bInterfaceNumber; 35523 unsigned char bAlternateSetting; 35524 unsigned char bNumEndpoints; 35525 unsigned char bInterfaceClass; 35526 unsigned char bInterfaceSubClass; 35527 unsigned char bInterfaceProtocol; 35528 unsigned char iInterface; 35529 35530 unsigned char no_of_ep; 35531 unsigned char num_altsetting; 35532 unsigned char act_altsetting; 35533 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS]; 35534 } __attribute__ ((packed)); 35535 ------------ 35536 35537 As usb_endpoint_descriptor is only 7byte in length, the start of all 35538 odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize 35539 of these structures also not word aligned. 35540 35541 ARMv5 Architecture however does not support non-aligned multibyte 35542 data type (see A2.8 of ARM Architecture Reference Manual). 35543 35544 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de> 35545 Signed-off-by: Remy Böhmer <linux@bohmer.net> 35546 35547commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0 35548Author: Kumar Gala <galak@kernel.crashing.org> 35549Date: Tue Dec 9 10:27:33 2008 -0600 35550 35551 drivers/fsl_pci_init: Fix compile warning 35552 35553 fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows': 35554 fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type 35555 35556 The check only makes sense if we are CONFIG_PHYS_64BIT 35557 35558 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 35559 35560commit dedacc18a8c2b3951581eb721fa055a4e0ac4845 35561Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35562Date: Sun Dec 7 09:45:35 2008 +0100 35563 35564 usbtty/omap: update to current API 35565 35566 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35567 Signed-off-by: Remy Böhmer <linux@bohmer.net> 35568 35569commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed 35570Author: Anatolij Gustschin <agust@denx.de> 35571Date: Tue Dec 9 17:52:05 2008 +0100 35572 35573 video: fix FADS823 and RRvision compiling issues 35574 35575 Since commit 561858ee building for FADS823 and RRvision 35576 doesn't work. Let's include version.h and timestamp.h 35577 unconditionally to fix the problem. 35578 35579 Signed-off-by: Anatolij Gustschin <agust@denx.de> 35580 35581commit 2d2e05727fe4013f807ffa814dff0e75259a1db4 35582Author: Stefan Roese <sr@denx.de> 35583Date: Tue Dec 2 10:53:47 2008 +0100 35584 35585 UBI: Fix size parsing in "ubi create" 35586 35587 Signed-off-by: Stefan Roese <sr@denx.de> 35588 35589commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e 35590Author: Stefan Roese <sr@denx.de> 35591Date: Thu Nov 27 14:07:09 2008 +0100 35592 35593 UBI: Enable re-initializing of the "ubi part" command 35594 35595 With this patch now, the user can call "ubi part" multiple times to 35596 re-connect the UBI device to another MTD partition. 35597 35598 Signed-off-by: Stefan Roese <sr@denx.de> 35599 35600commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4 35601Author: Stefan Roese <sr@denx.de> 35602Date: Thu Nov 27 14:05:15 2008 +0100 35603 35604 MTD: Fix problem based on non-working relocation (list head mtd_partitions) 35605 35606 Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon 35607 first call of add_mtd_partitions(). Otherwise this won't work on platforms 35608 where the relocation is broken (like MIPS or PPC). 35609 35610 Signed-off-by: Stefan Roese <sr@denx.de> 35611 35612commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47 35613Author: Trent Piepho <tpiepho@freescale.com> 35614Date: Wed Nov 12 17:29:48 2008 -0800 35615 35616 Section name should be ".data", not "data" 35617 35618 Signed-off-by: Trent Piepho <tpiepho@freescale.com> 35619 Signed-off-by: Wolfgang Denk <wd@denx.de> 35620 35621commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15 35622Author: Wolfgang Denk <wd@denx.de> 35623Date: Tue Dec 9 00:39:08 2008 +0100 35624 35625 MAKEALL: Automatically use parallel builds 35626 35627 Add logic to the MAKEALL script to determine the number of CPU cores 35628 on the system, and run a parallel build if there is more than one. 35629 Usually this significantrly accelerates builds. 35630 35631 Allow to manually adjust the number of parallel make jobs by using 35632 the "BUILD_NCPUS" environment variable. 35633 35634 Signed-off-by: Wolfgang Denk <wd@denx.de> 35635 35636commit 268405fa7c44156c5192a70779920c70906af8d6 35637Author: Wolfgang Denk <wd@denx.de> 35638Date: Tue Dec 9 00:24:30 2008 +0100 35639 35640 vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23 35641 35642 Signed-off-by: Wolfgang Denk <wd@denx.de> 35643 35644commit 153176a9414120ca1736f3cc4951623d6e14e6af 35645Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35646Date: Tue Nov 11 06:08:59 2008 +0100 35647 35648 avr32/bootm: remove unused variable 'ret' 35649 35650 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35651 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 35652 35653commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183 35654Author: Peter Tyser <ptyser@xes-inc.com> 35655Date: Wed Nov 12 13:06:48 2008 -0600 35656 35657 Remove unneeded CONFIG_SHELL references 35658 35659 Make should be using the bash shell by default which makes 35660 CONFIG_SHELL unnecessary 35661 35662 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 35663 35664commit cf7a7b99794bac936899819b95539be1dbd71708 35665Author: Peter Tyser <ptyser@xes-inc.com> 35666Date: Wed Nov 12 12:33:20 2008 -0600 35667 35668 Use bash for default GNU Make shell application 35669 35670 Some Make script commands rely on bash-specific features like brace 35671 expansion, so default to bash for the SHELL variable with a fallback 35672 to the standard sh shell 35673 35674 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 35675 35676commit 4b530018764934ad5689196e9aa5714a6f4d1a6c 35677Author: Heiko Schocher <hs@denx.de> 35678Date: Wed Nov 12 09:50:45 2008 +0100 35679 35680 jffs2: rename devices_init () in common/jffs2.c 35681 35682 rename devices_init () in common/jffs2.c to 35683 jffs2_devices_init (), because there is also a 35684 devices_init () in common/devices.c. 35685 35686 Signed-off-by: Heiko Schocher <hs@denx.de> 35687 35688commit af5eb847a10f1037590001355d88bab3fe7be48b 35689Author: Daniel Hellstrom <daniel@gaisler.com> 35690Date: Mon Nov 10 12:46:20 2008 +0000 35691 35692 SPARC: Fixed compiler error introduced by commit c160a9544743 35693 35694 This patch fixes a build error for the SPARC platform. It was 35695 introduced by commit c160a9544743e80e8889edb2275538e7764ce334. 35696 35697 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 35698 35699commit 4c60259899aa00f59db0d936b8807f9a26411c0f 35700Author: Gary Jennejohn <garyj@denx.de> 35701Date: Sun Nov 9 12:50:59 2008 +0100 35702 35703 mgsuvd add the board-specific part of the HDLC driver 35704 35705 Signed-off-by: Gary Jennejohn <garyj@denx.de> 35706 35707commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70 35708Author: Gary Jennejohn <garyj@denx.de> 35709Date: Sun Nov 9 12:45:03 2008 +0100 35710 35711 mgcoge add the board-specific part of the HDLC driver 35712 35713 Signed-off-by: Gary Jennejohn <garyj@denx.de> 35714 35715commit 135f5534538bb8ea4f38a7030da12187d22ef7e0 35716Author: Gary Jennejohn <garyj@denx.de> 35717Date: Sun Nov 9 12:36:15 2008 +0100 35718 35719 keymile add the common parts of the HDLC driver 35720 35721 This implements the ICN protocol used across the backplane and is 35722 needed by all the keymile boards. 35723 35724 Signed-off-by: Gary Jennejohn <garyj@denx.de> 35725 35726commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8 35727Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35728Date: Fri Nov 7 22:46:22 2008 +0100 35729 35730 drivers/bios_emulator: Move conditional compilation to Makefile 35731 35732 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35733 35734commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5 35735Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 35736Date: Thu Nov 6 14:01:51 2008 -0500 35737 35738 common/cmd_ide.c: Corrected endian order printing for compact flash serial number. 35739 35740 Corrected endian order printing for compact flash serial number. 35741 35742 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 35743 35744commit 16a28ef219c27423a1ef502f19070c4d375079b8 35745Author: Gary Jennejohn <garyj@denx.de> 35746Date: Thu Nov 6 15:04:23 2008 +0100 35747 35748 IOMUX: Add console multiplexing support. 35749 35750 Modifications to support console multiplexing. This is controlled using 35751 CONFIG_SYS_CONSOLE_MUX in the board configuration file. 35752 35753 This allows a user to specify multiple console devices in the environment 35754 with a command like this: setenv stdin serial,nc. As a result, the user can 35755 enter text on both the serial and netconsole interfaces. 35756 35757 All devices - stdin, stdout and stderr - can be set in this manner. 35758 35759 1) common/iomux.c and include/iomux.h contain the environment setting 35760 implementation. 35761 2) doc/README.iomux contains a somewhat more detailed description. 35762 3) The implementation in (1) is called from common/cmd_nvedit.c to 35763 handle setenv and from common/console.c to handle initialization of 35764 input/output devices at boot time. 35765 4) common/console.c also contains the code needed to poll multiple console 35766 devices for input and send output to all devices registered for output. 35767 5) include/common.h includes iomux.h and common/Makefile generates iomux.o 35768 when CONFIG_SYS_CONSOLE_MUX is set. 35769 35770 Signed-off-by: Gary Jennejohn <garyj@denx.de> 35771 35772commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8 35773Author: Mike Frysinger <vapier@gentoo.org> 35774Date: Tue Nov 4 16:03:46 2008 -0500 35775 35776 strings: use puts() rather than printf() 35777 35778 When running `strings` on really long strings, the stack tends to get 35779 smashed due to printf(). Switch to puts() instead since we're only passing 35780 the data through. 35781 35782 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 35783 35784commit b03150b52e3c491a86a3cc0945274f0e8f9872e7 35785Author: Niklaus Giger <niklaus.giger@member.fsf.org> 35786Date: Mon Nov 3 22:16:18 2008 +0100 35787 35788 Use new CONFIG_SYS_VXWORKS parameters for Netstal boards 35789 35790 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 35791 35792commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9 35793Author: Niklaus Giger <niklaus.giger@member.fsf.org> 35794Date: Mon Nov 3 22:15:34 2008 +0100 35795 35796 cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters 35797 35798 - fix size too small by one in sprintf 35799 - changed old (pre 2004) device name ibmEmac to emac 35800 - boot device may be overriden in board config 35801 - servername may be defined in board config 35802 - additional parameters may be defined in board config 35803 - fixed some line wrappings 35804 - replaced redundant MAX define by max 35805 35806 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 35807 35808commit e9084b23d16102f44ace24379a1c0c352497ef80 35809Author: Niklaus Giger <niklaus.giger@member.fsf.org> 35810Date: Mon Nov 3 22:14:36 2008 +0100 35811 35812 Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters 35813 35814 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 35815 35816commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f 35817Author: Niklaus Giger <niklaus.giger@member.fsf.org> 35818Date: Mon Nov 3 22:13:47 2008 +0100 35819 35820 README: Document CONFIG_SYS parameters for vxworks 35821 35822 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org> 35823 35824commit ace514837cac656e29c37a19569cb8ea83071126 35825Author: Peter Tyser <ptyser@xes-inc.com> 35826Date: Fri Oct 31 11:12:38 2008 -0500 35827 35828 lcd: Let the board code show board-specific info cleanup 35829 35830 remove unneeded version.h from lcd.c 35831 35832 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 35833 Signed-off-by: Wolfgang Denk <wd@denx.de> 35834 35835commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9 35836Author: Peter Tyser <ptyser@xes-inc.com> 35837Date: Mon Nov 3 09:30:59 2008 -0600 35838 35839 Update U-Boot's build timestamp on every compile 35840 35841 Use the GNU 'date' command to auto-generate a new U-Boot 35842 timestamp on every compile. 35843 35844 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 35845 35846commit 83ad179e2f0f625b88adb8ef5696709e46fb9077 35847Author: Remy Bohmer <linux@bohmer.net> 35848Date: Thu Dec 4 22:25:57 2008 +0100 35849 35850 Remove redundant armv4 flag from arm926ejs compile flags 35851 35852 Currently the arm926ejs tree has the armv4 option set during compilation. 35853 This flag does not belong here because a arm926 CPU is always a armv5 CPU. 35854 35855 Signed-off-by: Remy Bohmer <linux@bohmer.net> 35856 35857commit 89a7a87f084c657f8e32b513a77b50eca07e17ec 35858Author: Nicolas Ferre <nicolas.ferre@atmel.com> 35859Date: Sat Dec 6 13:11:14 2008 +0100 35860 35861 at91: Choose environment variables location within make config target 35862 35863 This patch adds the possiblity to choose the media where the environment will 35864 be located. This allow to choose this fundamental configuration without editing 35865 config files. 35866 35867 Documentation file added. 35868 35869 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> 35870 Acked-by: Stelian Pop <stelian@popies.net> 35871 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35872 35873commit 1450c4a6682378567030414a9f1198c39b7730c7 35874Author: Anatolij Gustschin <agust@denx.de> 35875Date: Mon Nov 3 15:30:34 2008 +0100 35876 35877 lwmon, tqm8xx: Fix build errors 35878 35879 Commit 6b59e03e0237a40a2305ea385defdfd92000978b 35880 lcd: Let the board code show board-specific info 35881 35882 introduced some bugs which prevent U-Boot building 35883 for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will 35884 be defined in the board configuration. 35885 35886 Also "LCD enabled" building for TQM823L doesn't work 35887 since this commit. 35888 35889 This patch fixes above-mentioned issues. 35890 35891 Signed-off-by: Anatolij Gustschin <agust@denx.de> 35892 35893commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0 35894Author: Mike Frysinger <vapier@gentoo.org> 35895Date: Sun Nov 2 01:18:18 2008 -0400 35896 35897 ignore .gdb_history files 35898 35899 When using gdb, history files will often get generated. So ignore them. 35900 35901 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 35902 35903commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b 35904Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35905Date: Fri Oct 31 12:26:55 2008 +0100 35906 35907 FPGA: move fpga drivers to drivers/fpga 35908 35909 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 35910 35911commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0 35912Author: Peter Tyser <ptyser@xes-inc.com> 35913Date: Mon Dec 1 16:29:38 2008 -0600 35914 35915 net: Fix TftpStart() ip:filename bug 35916 35917 The TftpStart() function modifies the 'BootFile' 35918 string when 'BootFile' contains both an IP address 35919 and filename (eg 1.2.3.4:/path/file). This causes 35920 subsequent calls to TftpStart to incorrectly parse 35921 the TFTP filename and server IP address to use. 35922 For example: 35923 35924 => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant 35925 Speed: 100, half duplex 35926 Using eTSEC1 device 35927 TFTP from server 10.52.0.62; our IP address is 10.52.253.79 35928 ^^^^^^^^^^ CORRECT 35929 Filename '/home/ptyser/non_existant'. 35930 ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT 35931 Load address: 0x100000 35932 Loading: * 35933 TFTP error: 'File not found' (1) 35934 Starting again 35935 35936 eTSEC2: No link. 35937 Speed: 100, half duplex 35938 Using eTSEC1 device 35939 TFTP from server 10.52.0.33; our IP address is 10.52.253.79 35940 ^^^^^^^^^^ WRONG 35941 Filename '10.52.0.62'. 35942 ^^^^^^^^^^ WRONG 35943 Load address: 0x100000 35944 Loading: * 35945 TFTP error: 'File not found' (1) 35946 Starting again 35947 35948 TftpStart() was modified to not modify the 'BootFile' string. 35949 35950 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 35951 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 35952 35953commit d32c5be50bf0600bfdc54223ef341ee9c63db445 35954Author: Peter Tyser <ptyser@xes-inc.com> 35955Date: Mon Dec 1 16:26:21 2008 -0600 35956 35957 net: Add additional IP fragmentation check 35958 35959 Ignore IP packets which have the "more fragments" flag bit 35960 set. This flag indicates the IP packet is fragmented and 35961 must be ignored by U-Boot. 35962 35963 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 35964 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 35965 35966commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6 35967Author: Peter Tyser <ptyser@xes-inc.com> 35968Date: Mon Dec 1 16:26:20 2008 -0600 35969 35970 net: Define IP flag field values 35971 35972 These defines were pulled from the "Add simple 35973 IP/UDP fragmentation support" patch from Frank 35974 Haverkamp <haver@vnet.ibm.com>. 35975 35976 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 35977 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 35978 35979commit 23afaba65ec5206757e589ef334a8b38168c045f 35980Author: Anatolij Gustschin <agust@denx.de> 35981Date: Tue Dec 2 10:31:04 2008 +0100 35982 35983 net: tsec: Fix Marvell 88E1121R phy init 35984 35985 This patch tries to ensure that phy interrupt pin 35986 won't be asserted after booting. We experienced 35987 following issues with current 88E1121R phy init: 35988 35989 Marvell 88E1121R phy can be hardware-configured 35990 to share MDC/MDIO and interrupt pins for both ports 35991 P0 and P1 (e.g. as configured on socrates board). 35992 Port 0 interrupt pin will be shared by both ports 35993 in such configuration. After booting Linux and 35994 configuring eth0 interface, port 0 phy interrupts 35995 are enabled. After rebooting without proper eth0 35996 interface shutdown port 0 phy interrupts remain 35997 enabled so any change on port 0 (link status, etc.) 35998 cause assertion of the interrupt. Now booting Linux 35999 and configuring eth1 interface will cause permanent 36000 phy interrupt storm as the registered phy 1 interrupt
36001 handler doesn't acknowledge phy 0 interrupts. This 36002 of course should be fixed in Linux driver too. 36003 36004 Signed-off-by: Anatolij Gustschin <agust@denx.de> 36005 Acked-by: Andy Fleming <afleming@freescale.com> 36006 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 36007 36008commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed 36009Author: Peter Tyser <ptyser@xes-inc.com> 36010Date: Tue Dec 2 12:59:51 2008 -0600 36011 36012 net: Fix download command parsing 36013 36014 When CONFIG_SYS_HUSH_PARSER is defined network download 36015 commands with 1 argument in the format 'tftp "/path/file"' 36016 do not work as expected. The hush command parser strips 36017 the quotes from "/path/file" which causes the network 36018 commands to interpret "/path/file" as an address 36019 instead of the intended filename. 36020 36021 The previous check for a leading quote in netboot_common() 36022 was replaced with a check which ensures only valid 36023 numbers are treated as addresses. 36024 36025 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 36026 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 36027 36028commit 3c2c2f427905040c1513d0c51d637689cba48346 36029Author: Remy Bohmer <linux@bohmer.net> 36030Date: Thu Nov 27 22:30:27 2008 +0100 36031 36032 Remove non-ascii characters from fat code 36033 36034 This code contains some non-ascii characters in comment lines and code. 36035 Most editors do not display those characters properly and editing those 36036 files results always in diffs at these places which are usually not required 36037 to be changed at all. This is error prone. 36038 36039 So, remove those weird characters and replace them by normal C-style 36040 equivalents for which the proper defines were already in the header. 36041 36042 Signed-off-by: Remy Bohmer <linux@bohmer.net> 36043 36044commit dc889e865356497d3e495570118c2245ebce2631 36045Author: Dave Liu <daveliu@freescale.com> 36046Date: Fri Nov 28 20:16:58 2008 +0800 36047 36048 85xx: fix the wrong DDR settings for MPC8572DS 36049 36050 The default DDR freq is 400MHz or 800M data rate, 36051 the old settings is pure wrong for the default case. 36052 36053 Signed-off-by: Dave Liu <daveliu@freescale.com> 36054 Acked-by: Andy Fleming <afleming@freescale.com> 36055 36056commit 9df59533f77de2829b4b66e5b7620e04edaa391c 36057Author: Kumar Gala <galak@kernel.crashing.org> 36058Date: Mon Nov 24 10:29:26 2008 -0600 36059 36060 85xx: init gd as early as possible 36061 36062 Moved up the initialization of GD so C code like set_tlb() can use 36063 gd->flags to determine if we've relocated or not in the future. 36064 36065 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 36066 Acked-by: Andy Fleming <afleming@freescale.com> 36067 36068commit aed461af81012a398a205e9be67ab37667491838 36069Author: Kumar Gala <galak@kernel.crashing.org> 36070Date: Mon Nov 24 10:29:25 2008 -0600 36071 36072 85xx: Fix relocation of CCSRBAR 36073 36074 If the virtual address for CCSRBAR is the same after relocation but 36075 the physical address is changing we'd end up having two TLB entries with 36076 the same VA. Instead we new us the new CCSRBAR virt address + 4k as a 36077 temp virt address to access the old CCSRBAR to relocate it. 36078 36079 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 36080 Acked-by: Andy Fleming <afleming@freescale.com> 36081 36082commit ea154a1781135d822eedee7567cc156089eae93c 36083Author: Kumar Gala <galak@kernel.crashing.org> 36084Date: Mon Nov 24 10:25:14 2008 -0600 36085 36086 FSL: Moved BR_PHYS_ADDR for localbus to common header 36087 36088 The BR_PHYS_ADDR macro is useful on all machines that have local bus 36089 which is pretty much all 83xx/85xx/86xx chips. 36090 36091 Additionally most 85xx & 86xx will need it if they want to support 36092 36-bit physical addresses. 36093 36094 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 36095 Acked-by: Andy Fleming <afleming@freescale.com> 36096 36097commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08 36098Author: Peter Tyser <ptyser@xes-inc.com> 36099Date: Mon Dec 1 13:47:12 2008 -0600 36100 36101 85xx: Add PORDEVSR_PCI1 define 36102 36103 Add define used to determine if PCI1 interface is in PCI or PCIX mode. 36104 36105 Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1 36106 36107 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 36108 Signed-off-by: Andy Fleming <afleming@freescale.com> 36109 36110commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3 36111Author: Becky Bruce <becky.bruce@freescale.com> 36112Date: Fri Nov 21 19:24:22 2008 -0600 36113 36114 drivers/fsl_pci_init: Fix inbound window mapping bug 36115 36116 The current code will cause the creation of a 4GB window 36117 starting at 0 if we have more than 4GB of RAM installed, 36118 which overlaps with PCI_MEM space and causes pci_bus_to_phys() 36119 to return erroneous information. Limit the size to 4GB - 1; 36120 which causes the code to create one 2GB and one 1GB window 36121 instead. 36122 36123 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org> 36124 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 36125 Acked-by: Andy Fleming <afleming@freescale.com> 36126 36127commit 5a105a333dab6a23e92d763ce76d6f31d57f45df 36128Author: Jon Loeliger <jdl@freescale.com> 36129Date: Thu Nov 20 15:36:48 2008 -0600 36130 36131 Removed unused CONFIG_L1_INIT_RAM symbol. 36132 36133 Prevent further viral propogation of the unused 36134 symbol CONFIG_L1_INIT_RAM by just removing it. 36135 36136 Signed-off-by: Jon Loeliger <jdl@freescale.com> 36137 Acked-by: Andy Fleming <afleming@freescale.com> 36138 36139commit 7008d26a40a76f90cae5824c812cfed449fb97b8 36140Author: Ed Swarthout <Ed.Swarthout@freescale.com> 36141Date: Wed Oct 29 09:21:44 2008 -0500 36142 36143 fsl ddr skip interleaving if not supported. 36144 36145 Removed while(1) hang if memctl_intlv_ctl is set wrong. 36146 Remove embedded tabs from strings. 36147 36148 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 36149 Acked-by: Kumar Gala <galak@kernel.crashing.org> 36150 Acked-by: Andy Fleming <afleming@freescale.com> 36151 36152commit dd332e18d082de75eca3fc2c7c778f5d4571a096 36153Author: Anatolij Gustschin <agust@denx.de> 36154Date: Thu Nov 13 18:08:57 2008 +0100 36155 36156 85xx: socrates: fix DDR SDRAM tlb entry configuration 36157 36158 since commit be0bd8234b9777ecd63c4c686f72af070d886517 36159 tlb entry for socrates DDR SDRAM will be reconfigured 36160 by setup_ddr_tlbs() from initdram() causing an 36161 inconsistency with previously configured DDR SDRAM tlb 36162 entry from tlb_table: 36163 36164 socrates>l2cam 7 9 36165 IDX PID EPN SIZE V TS RPN U0-U3 WIMGE UUUSSS 36166 7 : 00 00000000 256MB V 0 -> 0_00000000 0000 -I-G- ---RWX 36167 8 : 00 00000000 256MB V 0 -> 0_00000000 0000 ----- ---RWX 36168 9 : 00 10000000 256MB V 0 -> 0_10000000 0000 ----- ---RWX 36169 36170 This patch makes the presence of the DDR SDRAM tlb entry in 36171 the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this 36172 inconsistency. 36173 36174 Signed-off-by: Anatolij Gustschin <agust@denx.de> 36175 Acked-by: Andy Fleming <afleming@freescale.com> 36176 36177commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d 36178Author: Peter Tyser <ptyser@xes-inc.com> 36179Date: Tue Nov 11 10:17:10 2008 -0600 36180 36181 85xx: Add CPU 2 errata workaround to all 8548 boards 36182 36183 All mpc8548-based boards should implement the suggested workaround 36184 to CPU 2 errata. Without the workaround, its possible for the 36185 8548's core to hang while executing a msync or mbar 0 instruction 36186 and a snoopable transaction from an I/O master tagged to make 36187 quick forward progress is present. 36188 36189 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 36190 Acked-by: Andy Fleming <afleming@freescale.com> 36191 36192commit e57f0fa1333cdf3ca36110aac2900712a5f82976 36193Author: Dave Liu <daveliu@freescale.com> 36194Date: Tue Oct 28 17:53:45 2008 +0800 36195 36196 85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case 36197 36198 we need TLB entry for DDR at !SPD case. 36199 36200 Signed-off-by: Dave Liu <daveliu@freescale.com> 36201 Acked-by: Andy Fleming <afleming@freescale.com> 36202 36203commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8 36204Author: Dave Liu <daveliu@freescale.com> 36205Date: Tue Oct 28 17:53:38 2008 +0800 36206 36207 85xx: remove the unused ddr_enable_ecc in the board file 36208 36209 The DDR controller of 8548/8544/8568/8572/8536 processors 36210 have the ECC data init feature, and the new DDR code is 36211 using the feature, and we don't need the way with DMA to 36212 init memory any more. 36213 36214 Signed-off-by: Dave Liu <daveliu@freescale.com> 36215 Acked-by: Andy Fleming <afleming@freescale.com> 36216 36217commit 4a129a57d923f7c15aa1f567028a80a32d66a100 36218Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 36219Date: Sun Nov 30 19:36:53 2008 +0100 36220 36221 at91rm9200dk: Fix typo 36222 36223 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 36224 36225commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01 36226Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 36227Date: Sun Nov 30 19:36:50 2008 +0100 36228 36229 AT91: remove non supported board AT91RM9200DF macro 36230 36231 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 36232 36233commit bd876772ee04095e5dd943d97515a1f14bad4b1c 36234Author: Ilko Iliev <iliev@ronetix.at> 36235Date: Tue Dec 2 17:27:54 2008 +0100 36236 36237 mtd/dataflash.c: fix a problem with the last partition 36238 36239 This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash 36240 partition can be defined to use the area to the end of dataflash size. 36241 Now it is possible to have only one dataflash partition from 0 to the end 36242 of of dataflash size. 36243 36244 Signed-off-by: Ilko Iliev <iliev@ronetix.at> 36245 36246commit 03f797793b124dccaae145b977d15d6cb9e74504 36247Author: Ilko Iliev <iliev@ronetix.at> 36248Date: Tue Dec 2 17:20:17 2008 +0100 36249 36250 fix some coding style violations. 36251 36252 This patch fix some coding style violations. 36253 36254 Signed-off-by: Ilko Iliev <iliev@ronetix.at> 36255 36256commit 5e46b1e54112f4b7fd5185665e571510132c12a7 36257Author: Stefan Roese <sr@denx.de> 36258Date: Thu Nov 27 14:11:37 2008 +0100 36259 36260 OneNAND: Add missing mtd info struct before calling onenand_erase() 36261 36262 Without this patch "saveenv" crashes when MTD partitions are enabled (e.g. 36263 for use in UBI) via CONFIG_MTD_PARTITIONS. 36264 36265 Signed-off-by: Stefan Roese <sr@denx.de> 36266 Signed-off-by: Scott Wood <scottwood@freescale.com> 36267 36268commit 29382d4064fbaff5daacff4c3209370fa5713966 36269Author: Becky Bruce <becky.bruce@freescale.com> 36270Date: Thu Nov 20 16:43:52 2008 -0600 36271 36272 mpc8641: Fix error in README 36273 36274 I made some updates to the code that didn't make it into the 36275 README - fix this 36276 36277 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 36278 36279commit 801a194616d95e6fc426a176d9615ccbf9876c7f 36280Author: Jon Loeliger <jdl@freescale.com> 36281Date: Thu Nov 20 12:01:02 2008 -0600 36282 36283 Removed unused CONFIG_L1_INIT_RAM symbol. 36284 36285 Prevent further viral propogation of the unused 36286 symbol CONFIG_L1_INIT_RAM by just removing it. 36287 36288 Signed-off-by: Jon Loeliger <jdl@freescale.com> 36289 36290commit f698738e46cb461e28c2d58228bb34a2fcf5a475 36291Author: Jon Loeliger <jdl@freescale.com> 36292Date: Thu Nov 20 14:02:56 2008 -0600 36293 36294 86xx: Fix non-64-bit compilation problems. 36295 36296 Introducing 64-bit (36-bit) support for the MPC8641HPCN 36297 failed to accomodate the other two 86xx boards. 36298 Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH} 36299 CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L} 36300 with nominal 32-bit values. 36301 36302 Signed-off-by: Jon Loeliger <jdl@freescale.com> 36303 Acked-by: Becky Bruce <becky.bruce@freescale.com> 36304 36305commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd 36306Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 36307Date: Wed Nov 26 17:40:37 2008 +0100 36308 36309 Remove obsolete command (apply afte USB style patch, 80 chars strict) 36310 36311 Remove USB obsolete commmand 36312 36313 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it> 36314 Signed-off-by: Remy Böhmer <linux@bohmer.net> 36315 36316commit de39f8c19d7c12017248c49d432dcb81db68f724 36317Author: Michael Trimarchi <trimarchi@gandalf.sssup.it> 36318Date: Wed Nov 26 17:41:34 2008 +0100 36319 36320 USB style patch, 80 chars strict 36321 36322 USB Code style patch 36323 36324 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it> 36325 Signed-off-by: Remy Böhmer <linux@bohmer.net> 36326 36327commit d10c5a87cb8affbb4d35a311370316d4383d598e 36328Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 36329Date: Fri Nov 7 22:46:21 2008 +0100 36330 36331 drivers/usb: Move conditional compilation to Makefile 36332 36333 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 36334 Signed-off-by: Remy Böhmer <linux@bohmer.net> 36335 36336commit 2077e348c2a84901022ad95311b47b70361e6daa 36337Author: Scott Wood <scottwood@freescale.com> 36338Date: Tue Nov 25 10:47:02 2008 -0600 36339 36340 NAND: Fix misplaced return statement in nand_{read,write}_skip_bad(). 36341 36342 This caused the operation to be needlessly repeated if there were 36343 no bad blocks and no errors. 36344 36345 Signed-off-by: Valeriy Glushkov <gvv@lstec.com> 36346 Signed-off-by: Scott Wood <scottwood@freescale.com> 36347 36348commit 89295028e7d8f7a524f485328279d72fdb102385 36349Author: Michal Simek <monstr@monstr.eu> 36350Date: Mon Nov 24 12:09:50 2008 +0100 36351 36352 ppc4xx: ml300 remove Xilinx BSP from ml300 folder 36353 36354 This BSP should be outside u-boot source tree. 36355 The second reason is that xilinx ppc405 was moved to generic platform. 36356 36357 Signed-off-by: Michal Simek <monstr@monstr.eu> 36358 Signed-off-by: Stefan Roese <sr@denx.de> 36359 36360commit 24eea623d4974a169026a975ba12fb23d48154b1 36361Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 36362Date: Mon Nov 24 15:11:10 2008 +0100 36363 36364 ppc4xx: Remove unused features 36365 36366 This patch disables some unused features from the PCI405 configuration 36367 to keep U-Boot image size below 192k. 36368 36369 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 36370 Signed-off-by: Stefan Roese <sr@denx.de> 36371 36372commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b 36373Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 36374Date: Mon Nov 24 15:11:09 2008 +0100 36375 36376 ppc4xx: Use correct io accessors for PCI405 36377 36378 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 36379 Signed-off-by: Stefan Roese <sr@denx.de> 36380 36381commit 348c849d86a6f0785752b9bc497a34658713d1d1 36382Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 36383Date: Mon Nov 24 15:11:08 2008 +0100 36384 36385 ppc4xx: Remove unused code from PCI405 code 36386 36387 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 36388 Signed-off-by: Stefan Roese <sr@denx.de> 36389 36390commit 633639587e3596f0dbf5e6247dd3faf80b1d9063 36391Author: Heiko Schocher <hs@denx.de> 36392Date: Thu Nov 20 09:59:09 2008 +0100 36393 36394 powerpc, keymile boards: extract identical config options 36395 36396 This patch extracts the identical config options for the 36397 keymile boards mgcoge, mgsuvd and kmeter1 in a new 36398 common config file keymile-common.h. 36399 36400 Signed-off-by: Heiko Schocher <hs@denx.de> 36401 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 36402 36403commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30 36404Author: Heiko Schocher <hs@denx.de> 36405Date: Fri Nov 21 08:29:40 2008 +0100 36406 36407 powerpc: keymile: Add a check for the PIGGY debug board 36408 36409 Check the presence of the PIGGY on the keymile boards mgcoge, 36410 mgsuvd and kmeter1. If the PIGGY is not present, dont register 36411 this Ethernet device. 36412 36413 Signed-off-by: Heiko Schocher <hs@denx.de> 36414 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 36415 36416commit 58c696eed839af894e0265064669c402dc28b371 36417Author: Wolfgang Denk <wd@xpert.denx.de> 36418Date: Mon Nov 24 21:50:59 2008 +0100 36419 36420 AT91RM9200DK: fix broken boot from NOR flash 36421 36422 Signed-off-by: Wolfgang Denk <wd@denx.de> 36423 36424commit 8052352f20b33bef8f9872fc983eac73d4693c38 36425Author: Jens Scharsig <esw@bus-elektronik.de> 36426Date: Tue Nov 18 10:48:46 2008 +0100 36427 36428 at91rm9200: fix broken boot from nor flash 36429 36430 This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if 36431 CONFIG_AT91RM9200 is defined and nor preloader is used. 36432 36433 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de> 36434 36435commit 25ea652e907516a283b38237e83712a918f125d7 36436Author: Piotr Ziecik <kosmo@semihalf.com> 36437Date: Mon Nov 17 15:58:00 2008 +0100 36438 36439 UBI: Add proof-of-concept CFI flash support 36440 36441 With this patch UBI can be used on CFI flash chips. 36442 36443 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com> 36444 Signed-off-by: Stefan Roese <sr@denx.de> 36445 36446commit e6a7edbc1778d27431ac663b40a71dafa5d20578 36447Author: Piotr Ziecik <kosmo@semihalf.com> 36448Date: Mon Nov 17 15:57:59 2008 +0100 36449 36450 mtd: Remove a printf() from add_mtd_device(). 36451 36452 Remove a printf() from add_mtd_device(), which produces spurious output. 36453 36454 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com> 36455 Signed-off-by: Stefan Roese <sr@denx.de> 36456 36457commit 91809ed51d8327a8dbbf29aa98a091154c282171 36458Author: Piotr Ziecik <kosmo@semihalf.com> 36459Date: Mon Nov 17 15:57:58 2008 +0100 36460 36461 cfi-mtd: Add cfi-mtd driver. 36462 36463 Add cfi-mtd driver, which exports CFI flash to MTD layer. 36464 This allows CFI flash devices to be used from MTD layer. 36465 36466 Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD 36467 option. Initialization is done by calling cfi_mtd_init() from 36468 flash_init(). 36469 36470 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com> 36471 Signed-off-by: Stefan Roese <sr@denx.de> 36472 36473commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2 36474Author: Piotr Ziecik <kosmo@semihalf.com> 36475Date: Mon Nov 17 15:49:32 2008 +0100 36476 36477 cfi_flash: Add interface for flash verbosity control 36478 36479 Add interface for flash verbosity control. It allows 36480 to disable output from low-level flash API. It is useful 36481 when calling these low-level functions from context other 36482 than flash commands (for example the MTD/CFI interface 36483 implmentation). 36484 36485 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com> 36486 Signed-off-by: Stefan Roese <sr@denx.de> 36487 36488commit ebc9784ce6528385bb8d2558e783622d4bbf20f8 36489Author: Piotr Ziecik <kosmo@semihalf.com> 36490Date: Thu Nov 20 15:17:38 2008 +0100 36491 36492 cfi_flash: Export flash_sector_size() function. 36493 36494 Export flash_sector_size() function from drivers/mtd/cfi_flash.c, 36495 so that it can be used in the upcoming cfi-mtd driver. 36496 36497 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com> 36498 Signed-off-by: Stefan Roese <sr@denx.de> 36499 36500commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d 36501Author: Stefan Roese <sr@denx.de> 36502Date: Mon Nov 17 14:45:22 2008 +0100 36503 36504 cfi_flash: Make all flash access functions weak 36505 36506 This patch defines all flash access functions as weak so that 36507 they can be overridden by board specific versions. 36508 36509 This will be used by the upcoming VCTH board support where the NOR 36510 FLASH unfortunately can't be accessed memory-mapped. Special 36511 accessor functions are needed here. 36512 36513 To enable this weak functions you need to define 36514 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header. 36515 Otherwise the "old" default functions will be used resulting 36516 in smaller code. 36517 36518 Signed-off-by: Stefan Roese <sr@denx.de> 36519 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 36520 36521commit a5c4067017631d903e1afa6ad615f0ce19fea517 36522Author: Stefan Roese <sr@denx.de> 36523Date: Mon Nov 24 08:31:16 2008 +0100 36524 36525 UBI: Change parsing of size in commands to default to hex 36526 36527 Currently the size parameters of the UBI commands (e.g. "ubi write") are 36528 decoded as decimal instead of hex as default. This patch now interprets 36529 all these values consistantly as hex, as all other standard U-Boot commands 36530 do. 36531 36532 Signed-off-by: Stefan Roese <sr@denx.de> 36533 36534commit de01c76c3ccc4e6c5989228eed58e955a3a1a968 36535Author: Stefan Roese <sr@denx.de> 36536Date: Fri Nov 21 13:06:06 2008 +0100 36537 36538 ppc4xx: ML2 shouldn't include the 4xx EMAC driver 36539 36540 Signed-off-by: Stefan Roese <sr@denx.de> 36541 36542commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f 36543Author: Yuri Tikhonov <yur@emcraft.com> 36544Date: Fri Nov 14 16:19:19 2008 +0300 36545 36546 ppc4xx: katmai: Change default config 36547 36548 This patch enables support for EXT2, and increases the 36549 CONFIG_SYS_BOOTMAPSZ size for the default configuration 36550 of the katmai boards to use them as the RAID-reference 36551 AMCC setups. 36552 36553 EXT2 enabling allows one to boot kernels from the EXT2 36554 formatted Compact Flash cards. 36555 36556 CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the 36557 Linux kernels, which use PAGE_SIZE of 256KB. Otherwise, 36558 the memory area with DTB file (which is placed at the 36559 end of the bootmap area) will turn out to be overlapped 36560 with the BSS segment of the 256KB kernel, and zeroed 36561 in early_init() of Linux. 36562 36563 Actually, increasing of the bootmap size could be done 36564 via setting of the bootm_size U-Boot variable, but it looks 36565 like the current U-Boot implementation have some bootm_size- 36566 related functionality lost. In many places through the U-Boot 36567 code the CONFIG_SYS_BOOTMAPSZ definition is used directly 36568 (instead of trying to read the corresponding value from the 36569 environment). The same is truth for the boot_jump_linux() 36570 function in lib_ppc/bootm.c, where U-Boot transfers control 36571 to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size) 36572 value to the booting kernel. 36573 36574 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 36575 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 36576 Signed-off-by: Stefan Roese <sr@denx.de> 36577 36578commit ddf45cc758d394591fb9bcdcbe96530f733f2bce 36579Author: Dave Mitchell <dmitch71@gmail.com> 36580Date: Thu Nov 20 14:09:50 2008 -0600 36581 36582 ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization 36583 36584 Expanded OCM TLB to allow access to 64K OCM as well as 256K of 36585 internal SRAM. 36586 36587 Adjusted internal SRAM initialization to match updated user 36588 manual recommendation. 36589 36590 OCM & ISRAM are now mapped as follows: 36591 physical virtual size 36592 ISRAM 0x4_0000_0000 0xE300_0000 256k 36593 OCM 0x4_0004_0000 0xE304_0000 64k 36594 36595 A single TLB was used for this mapping. 36596 36597 Signed-off-by: Dave Mitchell <dmitch71@gmail.com> 36598 Signed-off-by: Stefan Roese <sr@denx.de> 36599 36600commit b14ca4b61a681f75f3125676e09d7ce6af66e927 36601Author: Dave Mitchell <dmitch71@gmail.com> 36602Date: Thu Nov 20 14:00:49 2008 -0600 36603 36604 ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs 36605 36606 Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and 36607 L2 cache DCRs from ppc440.h to this new header. 36608 36609 Also converted these DCR defines from lowercase to uppercase and 36610 modified referencing modules to use them. 36611 36612 Signed-off-by: Dave Mitchell <dmitch71@gmail.com> 36613 Signed-off-by: Stefan Roese <sr@denx.de> 36614 36615commit 711e2b2af820d21d9931d4cf8057d3894600fd54 36616Author: Steven A. Falco <sfalco@harris.com> 36617Date: Thu Nov 20 14:37:57 2008 -0500 36618 36619 ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h 36620 36621 The definitions of bits in SDR_CFG are incorrect, and not used within 36622 U-Boot. Therefore, they can be removed. 36623 36624 The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions, 36625 and are unused, so they can be removed too. 36626 36627 A definition for SDR0_DDRCFG is added. 36628 36629 Signed-off-by: Steven A. Falco <sfalco@harris.com> 36630 Signed-off-by: Stefan Roese <sr@denx.de> 36631 36632commit e23c7c95a96eb0f068efe5c532215a10a1512a95 36633Author: Dirk Behme <dirk.behme@gmail.com> 36634Date: Mon Nov 10 20:15:25 2008 +0100 36635 36636 ARM: OMAP: Convert IO macros 36637 36638 Convert IO macros to readx/writex. 36639 36640 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 36641 36642commit 263b749e2e25473a48776d317bd2a7e2ddcdd212 36643Author: Ilko Iliev <iliev@ronetix.at> 36644Date: Sun Nov 9 15:53:14 2008 +0100 36645 36646 lib_arm: do_bootm_linux() - correct a small mistake 36647 36648 This patch corrects a small bug in the "if" condition: 36649 the parameter "flag" is 0 and the "if" condition is always true. 36650 The result is - the boom command doesn't start the kernel. 36651 Affected targets: all arm based. 36652 36653 Signed-off-by: Ilko Iliev <iliev@ronetix.at> 36654 36655commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc 36656Author: Stelian Pop <stelian@popies.net> 36657Date: Sun Nov 9 00:14:46 2008 +0100 36658 36659 AT91: Enable PLLB for USB 36660 36661 At least some (old ?) versions of the AT91Bootstrap do not set up the 36662 PLLB correctly to 48 MHz in order to make USB host function correctly. 36663 36664 This patch sets up the PLLB to the same values Linux uses, and makes USB 36665 work ok on the following CPUs: 36666 - AT91CAP9 36667 - AT91SAM9260 36668 - AT91SAM9263 36669 36670 This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all 36671 the relevant AT91CAP9/AT91SAM9 atmel boards. 36672 36673 Signed-off-by: Stelian Pop <stelian@popies.net> 36674 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 36675 36676commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb 36677Author: Stelian Pop <stelian@popies.net> 36678Date: Fri Nov 7 13:55:14 2008 +0100 36679 36680 AT91: Use AT91_CPU_CLOCK in displays 36681 36682 Introduce AT91_CPU_CLOCK and use it for displaying the CPU 36683 speed in the LCD driver. 36684 36685 Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the 36686 corresponding board clocks. 36687 36688 Signed-off-by: Stelian Pop <stelian@popies.net> 36689 36690commit fed36ac5ae613773b6cd90e61e292c45440e10c8 36691Author: Heiko Schocher <hs@denx.de> 36692Date: Thu Nov 20 09:57:47 2008 +0100 36693 36694 powerpc: 83xx: add support for the kmeter1 board 36695 36696 This patch adds support for the kmeter1 board from Keymile, 36697 based on a Freescale MPC8360 CPU. 36698 36699 - serial console on UART 1 36700 - 256 MB DDR2 RAM 36701 - 64 MB NOR Flash 36702 - Ethernet RMII Mode over UCC4 36703 - PHY SMSC LAN8700 36704 36705 Signed-off-by: Heiko Schocher <hs@denx.de> 36706 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 36707 36708commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0 36709Author: Stefan Roese <sr@denx.de> 36710Date: Thu Nov 20 11:46:20 2008 +0100 36711 36712 ppc4xx: Clear all potentially pending exceptions in MCSR 36713 36714 This is needed on Canyonlands which still has an exception pending 36715 while running relocate_code(). This leads to a failure after trap_init() 36716 is moved to the top of board_init_r(). 36717 36718 Signed-off-by: Stefan Roese <sr@denx.de> 36719 36720commit facdad5f2602e899a01746916beddbf9e856b5ee 36721Author: Heiko Schocher <hs@denx.de> 36722Date: Wed Nov 19 10:10:30 2008 +0100 36723 36724 powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines 36725 36726 Signed-off-by: Heiko Schocher <hs@denx.de> 36727 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 36728 36729commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4 36730Author: Howard Gregory <Greg.Howard@freescale.com> 36731Date: Tue Nov 4 14:55:33 2008 +0800 36732 36733 mpc83xx: Improve the performance of DDR memory 36734 36735 modify the CAS timings. my understanding is that these 36736 settings decrease various wait times in the DDR interface. 36737 Because these wait times are in clock cycles, and the DDR 36738 clock on the 8315 RDB runs slower than on some other 83xx 36739 platforms, we can dial down these values without a problem, 36740 thereby decreasing the latency of memory a little. 36741 36742 Signed-off-by: Howard Gregory <Greg.Howard@freescale.com> 36743 Signed-off-by: Dave Liu <daveliu@freescale.com> 36744 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 36745 36746commit 8000b086b33a5a81f3f390f37e178db7956dc08b 36747Author: Kyungmin Park <kyungmin.park@samsung.com> 36748Date: Fri Oct 24 14:55:33 2008 +0200 36749 36750 ARM: Add Apollon UBI support 36751 36752 To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI 36753 macro. 36754 36755 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36756 Signed-off-by: Stefan Roese <sr@denx.de> 36757 36758commit 694a0b3f1c0accd0de94b89555155d69f8022824 36759Author: Kyungmin Park <kyungmin.park@samsung.com> 36760Date: Wed Nov 19 11:47:05 2008 +0100 36761 36762 UBI: Add UBI command support 36763 36764 This patch adds these UBI commands: 36765 36766 ubi part [nand|onenand] [part] - Show or set current partition 36767 ubi info [l[ayout]] -Display volume and UBI layout information 36768 ubi create[vol] volume [size] [type] - Create volume name with size 36769 ubi write[vol] address volume size - Write volume from address with size 36770 ubi read[vol] address volume [size] - Read volume to address with size 36771 ubi remove[vol] volume - Remove volume 36772 36773 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36774 Signed-off-by: Stefan Roese <sr@denx.de> 36775 36776commit 58be3a1056d88c6d05f3e914389282807e69923a 36777Author: Kyungmin Park <kyungmin.park@samsung.com> 36778Date: Wed Nov 19 16:38:24 2008 +0100 36779 36780 UBI: Add basic UBI support to U-Boot (Part 8/8) 36781 36782 This patch adds basic UBI (Unsorted Block Image) support to U-Boot. 36783 It's based on the Linux UBI version and basically has a "OS" 36784 translation wrapper that defines most Linux specific calls 36785 (spin_lock() etc.) into no-ops. Some source code parts have been 36786 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare 36787 this version with the Linux version and simplifies future UBI 36788 ports/bug-fixes from the Linux version. 36789 36790 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36791 Signed-off-by: Stefan Roese <sr@denx.de> 36792 36793commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9 36794Author: Kyungmin Park <kyungmin.park@samsung.com> 36795Date: Wed Nov 19 16:36:36 2008 +0100 36796 36797 UBI: Add basic UBI support to U-Boot (Part 7/8) 36798 36799 This patch adds basic UBI (Unsorted Block Image) support to U-Boot. 36800 It's based on the Linux UBI version and basically has a "OS" 36801 translation wrapper that defines most Linux specific calls 36802 (spin_lock() etc.) into no-ops. Some source code parts have been 36803 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare 36804 this version with the Linux version and simplifies future UBI 36805 ports/bug-fixes from the Linux version. 36806 36807 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36808 Signed-off-by: Stefan Roese <sr@denx.de> 36809 36810commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a 36811Author: Kyungmin Park <kyungmin.park@samsung.com> 36812Date: Wed Nov 19 16:32:36 2008 +0100 36813 36814 UBI: Add basic UBI support to U-Boot (Part 6/8) 36815 36816 This patch adds basic UBI (Unsorted Block Image) support to U-Boot. 36817 It's based on the Linux UBI version and basically has a "OS" 36818 translation wrapper that defines most Linux specific calls 36819 (spin_lock() etc.) into no-ops. Some source code parts have been 36820 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare 36821 this version with the Linux version and simplifies future UBI 36822 ports/bug-fixes from the Linux version. 36823 36824 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36825 Signed-off-by: Stefan Roese <sr@denx.de> 36826 36827commit c91a719daa331b5856109313371e4ece5ec06d96 36828Author: Kyungmin Park <kyungmin.park@samsung.com> 36829Date: Wed Nov 19 16:28:06 2008 +0100 36830 36831 UBI: Add basic UBI support to U-Boot (Part 5/8) 36832 36833 This patch adds basic UBI (Unsorted Block Image) support to U-Boot. 36834 It's based on the Linux UBI version and basically has a "OS" 36835 translation wrapper that defines most Linux specific calls 36836 (spin_lock() etc.) into no-ops. Some source code parts have been 36837 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare 36838 this version with the Linux version and simplifies future UBI 36839 ports/bug-fixes from the Linux version. 36840 36841 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36842 Signed-off-by: Stefan Roese <sr@denx.de> 36843 36844commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b 36845Author: Kyungmin Park <kyungmin.park@samsung.com> 36846Date: Wed Nov 19 16:27:23 2008 +0100 36847 36848 UBI: Add basic UBI support to U-Boot (Part 4/8) 36849 36850 This patch adds basic UBI (Unsorted Block Image) support to U-Boot. 36851 It's based on the Linux UBI version and basically has a "OS" 36852 translation wrapper that defines most Linux specific calls 36853 (spin_lock() etc.) into no-ops. Some source code parts have been 36854 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare 36855 this version with the Linux version and simplifies future UBI 36856 ports/bug-fixes from the Linux version. 36857 36858 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36859 Signed-off-by: Stefan Roese <sr@denx.de> 36860 36861commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea 36862Author: Kyungmin Park <kyungmin.park@samsung.com> 36863Date: Wed Nov 19 16:26:54 2008 +0100 36864 36865 UBI: Add basic UBI support to U-Boot (Part 3/8) 36866 36867 This patch adds basic UBI (Unsorted Block Image) support to U-Boot. 36868 It's based on the Linux UBI version and basically has a "OS" 36869 translation wrapper that defines most Linux specific calls 36870 (spin_lock() etc.) into no-ops. Some source code parts have been 36871 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare 36872 this version with the Linux version and simplifies future UBI 36873 ports/bug-fixes from the Linux version. 36874 36875 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36876 Signed-off-by: Stefan Roese <sr@denx.de> 36877 36878commit 961df83361aff9a14f226214224eb8a06e05ba24 36879Author: Kyungmin Park <kyungmin.park@samsung.com> 36880Date: Wed Nov 19 16:25:44 2008 +0100 36881 36882 UBI: Add basic UBI support to U-Boot (Part 2/8) 36883 36884 This patch adds basic UBI (Unsorted Block Image) support to U-Boot. 36885 It's based on the Linux UBI version and basically has a "OS" 36886 translation wrapper that defines most Linux specific calls 36887 (spin_lock() etc.) into no-ops. Some source code parts have been 36888 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare 36889 this version with the Linux version and simplifies future UBI 36890 ports/bug-fixes from the Linux version. 36891 36892 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36893 Signed-off-by: Stefan Roese <sr@denx.de> 36894 36895commit f399d4a281713d5ef2d764f05d545fe61e3bd569 36896Author: Kyungmin Park <kyungmin.park@samsung.com> 36897Date: Wed Nov 19 16:23:06 2008 +0100 36898 36899 UBI: Add basic UBI support to U-Boot (Part 1/8) 36900 36901 This patch adds basic UBI (Unsorted Block Image) support to U-Boot. 36902 It's based on the Linux UBI version and basically has a "OS" 36903 translation wrapper that defines most Linux specific calls 36904 (spin_lock() etc.) into no-ops. Some source code parts have been 36905 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare 36906 this version with the Linux version and simplifies future UBI 36907 ports/bug-fixes from the Linux version. 36908 36909 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36910 Signed-off-by: Stefan Roese <sr@denx.de> 36911 36912commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79 36913Author: Kyungmin Park <kyungmin.park@samsung.com> 36914Date: Wed Nov 19 16:20:36 2008 +0100 36915 36916 MTD: Add MTD paritioning infrastructure 36917 36918 This MTD part infrastructure will be used by the upcoming 36919 UBI support. 36920 36921 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 36922 Signed-off-by: Stefan Roese <sr@denx.de> 36923 36924commit 9b827cf1720acda2473afa516956eab6f7cca9a1 36925Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com> 36926Date: Thu Oct 16 22:54:03 2008 +0530 36927 36928 Align end of bss by 4 bytes 36929 36930 Most of the bss initialization loop increments 4 bytes 36931 at a time. And the loop end is checked for an 'equal' 36932 condition. Make the bss end address aligned by 4, so 36933 that the loop will end as expected. 36934 36935 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com> 36936 Signed-off-by: Wolfgang Denk <wd@denx.de> 36937 36938commit 3f510db522d160179dff3ddcce9b18f6241c2c24 36939Author: Becky Bruce <becky.bruce@freescale.com> 36940Date: Mon Nov 10 19:45:35 2008 -0600 36941 36942 mpc8641: fix address-cells default in old .dts detection 36943 36944 address-cells defaults to 2, not 1; so in the unlikely 36945 event that it isn't specified, this patch is required 36946 for correct operation. 36947 36948 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 36949 36950commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a 36951Author: Becky Bruce <becky.bruce@freescale.com> 36952Date: Fri Oct 31 17:14:39 2008 -0500 36953 36954 lib_ppc: Move trap_init to occur earlier 36955 36956 Doing trap_init immediately once we're running from RAM 36957 means we're no longer dependent on the physical location of 36958 the flash on non-BookE platforms. Before trap_init, those 36959 platforms switch to real mode and go to 0xfff00100 on exception. 36960 After the switch, they go to 0x00000100 This makes it easier to 36961 move the flash location. 36962 36963 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 36964 36965commit d52082b12c6e545705a19433a2f4142526536189 36966Author: Becky Bruce <becky.bruce@freescale.com> 36967Date: Fri Nov 7 13:46:19 2008 -0600 36968 36969 mpc8641: Try to detect old .dts files 36970 36971 Since we've changed the memory map of the board, be nice and 36972 add some checking to try to catch out-of-date .dts files. We do 36973 this by checking the CCSRBAR location in the .dts and comparing 36974 it to the CCSRBAR location in u-boot. If they don't match, a 36975 warning msg is printed. This isn't foolproof, but it's simple and 36976 will catch most of the cases where an out-of-date .dts is present, 36977 including all of the cases where a new u-boot is used with an old 36978 standard MPC8641 .dts file as supplied with Linux. 36979 36980 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 36981 36982commit 8db0400a27839f91c047dcb83f4a0f09e054a180 36983Author: Becky Bruce <becky.bruce@freescale.com> 36984Date: Thu Nov 6 13:04:09 2008 -0600 36985 36986 toplevel Makefile: Add MPC8641HPCN_36BIT target 36987 36988 This will enable CONFIG_PHYS_36BIT for MPC8641HPCN. 36989 36990 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 36991 36992commit 3111d32c494e8251b90917447796a7206b757e1e 36993Author: Becky Bruce <becky.bruce@freescale.com> 36994Date: Thu Nov 6 17:37:35 2008 -0600 36995 36996 mpc8641: Support 36-bit physical addressing 36997 36998 This patch creates a memory map with all the devices 36999 in 36-bit physical space, in addition to the 32-bit map. 37000 The CCSR relocation is moved (again, sorry) to
37001 allow for the physical address to be 36 bits - this 37002 requires translation to be enabled. With 36-bit physical 37003 addressing enabled, we are no longer running with VA=PA 37004 translations. This means we have to distinguish between 37005 the two in the config file. The existing region name is 37006 used to indicate the virtual address, and a _PHYS variety 37007 is created to represent the physical address. 37008 37009 Large physical addressing is not enabled by default. 37010 Set CONFIG_PHYS_64BIT in the config file to turn this on. 37011 37012 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37013 37014commit c759a01a0022de9378a3a761f49786f87684c916 37015Author: Becky Bruce <becky.bruce@freescale.com> 37016Date: Thu Nov 6 17:36:04 2008 -0600 37017 37018 mpc8641: Change 32-bit memory map 37019 37020 The memory map on the 8641hpcn is modified to look more like 37021 the 85xx boards; this is a step towards a more standardized 37022 layout going forward. As part of this change, we now relocate 37023 the flash. 37024 37025 The regions for some of the mappings were far larger than they 37026 needed to be. I have reduced the mappings to match the 37027 actual sizes supported by the hardware. 37028 37029 In addition I have removed the comments at the head 37030 of the BAT blocks in the config file, rather than updating 37031 them. These get horribly out of date, and it's a simple 37032 matter to look at the defines to see what they are set to 37033 since everything is right here in the same file. 37034 37035 Documentation has been changed to reflect the new map, as this 37036 change is user visible, and affects the OS which runs post-uboot. 37037 37038 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37039 37040commit bf9a8c34309ed9276258295db9e9212aabb2531a 37041Author: Becky Bruce <becky.bruce@freescale.com> 37042Date: Wed Nov 5 14:55:35 2008 -0600 37043 37044 mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY 37045 37046 We define CONFIG_MONITOR_BASE_EARLY to define the initial location 37047 of the bootpage in flash. Use this to create an early mapping 37048 definition for the FLASH, and change the early_bats code to use this. 37049 37050 This change facilitates the relocation of the flash since the early 37051 mappings are no longer tied to the final location of the flash. 37052 37053 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37054 37055commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d 37056Author: Becky Bruce <becky.bruce@freescale.com> 37057Date: Wed Nov 5 14:55:34 2008 -0600 37058 37059 mpc86xx: Use SRR0/1/rfi to enable address translation, not blr 37060 37061 Using a mtmsr/blr means that you have to be executing at the 37062 same virtual address once you enable translation. This is 37063 unnecessarily restrictive, and is not really how this is 37064 usually done. Change it to use the more common mtspr SRR0/SRR1 37065 and rfi method. 37066 37067 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37068 37069commit 6bf98b1362f0cb237620355ed3e6762fff82388d 37070Author: Becky Bruce <becky.bruce@freescale.com> 37071Date: Wed Nov 5 14:55:33 2008 -0600 37072 37073 mpc8641: make DIAG_ADDR == FLASH_BASE 37074 37075 Currently, that's what it is, but it's hardcoded. 37076 37077 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37078 37079commit 170deacb1ddc39164bdb68f3963e0c0456a5369b 37080Author: Becky Bruce <becky.bruce@freescale.com> 37081Date: Wed Nov 5 14:55:32 2008 -0600 37082 37083 mpc8641: Drop imaginary second flash bank, map 8MB 37084 37085 There's a lot of setup and foo for the second flash 37086 bank. The problem is, this board doesn't actually have one. 37087 Clean this up. Also, the flash is 8M in size. Get rid 37088 of the confusing aliased overmapping, and just map 8M. 37089 37090 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37091 37092commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4 37093Author: Becky Bruce <becky.bruce@freescale.com> 37094Date: Wed Nov 5 14:55:31 2008 -0600 37095 37096 mpc8641: only define CONFIG_ENV_SIZE once 37097 37098 It's currently defined twice inside in an if/else block, but 37099 both halves set the same value. Move the define outside 37100 the if. 37101 37102 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37103 37104commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93 37105Author: Becky Bruce <becky.bruce@freescale.com> 37106Date: Wed Nov 5 14:55:30 2008 -0600 37107 37108 mpc86xx: Move setup_bats into cpu_init_f 37109 37110 In order to later allow for a physical relocation of the 37111 flash, setup_bats, which sets up the final BAT mapping 37112 for the board, needs to happen *after* init_laws(). 37113 Otherwise, there will be no window programmed for the flash 37114 at the new physical location at the point when we change 37115 the mmu translation. 37116 37117 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37118 37119commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17 37120Author: Becky Bruce <becky.bruce@freescale.com> 37121Date: Wed Nov 5 14:55:29 2008 -0600 37122 37123 mpc8641: Remove extra "0" from BR2 define 37124 37125 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37126 37127commit edf3fe7d39a1ee07353128af5221422ce9ccfad6 37128Author: Richard Retanubun <RichardRetanubun@RuggedCom.com> 37129Date: Thu Oct 23 09:08:18 2008 -0400 37130 37131 drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver. 37132 37133 Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c. 37134 This adds support for PHY-less MAC connections to the UEC. 37135 37136 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 37137 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37138 37139commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6 37140Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37141Date: Thu Oct 23 16:27:24 2008 +0000 37142 37143 ColdFire: Add mii driver in drivers/net 37144 37145 All CF platforms' mii.c are consolidated into one 37146 37147 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37148 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37149 37150commit 25a859066b3af1070eb69f12022113c0a91bd813 37151Author: Ben Warren <biggerbadderben@gmail.com> 37152Date: Mon Oct 27 23:53:17 2008 -0700 37153 37154 Moved initialization of PPC4xx EMAC to cpu_eth_init() 37155 37156 Removed initialization of the driver from net/eth.c 37157 37158 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37159 Acked-by: Stefan Roese <sr@denx.de> 37160 37161commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126 37162Author: Ben Warren <biggerbadderben@gmail.com> 37163Date: Sun Nov 9 21:29:23 2008 -0800 37164 37165 Moved PPC4xx EMAC driver to drivers/net 37166 37167 Also changed path in all linker scripts that reference this driver 37168 37169 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37170 Acked-by: Stefan Roese <sr@denx.de> 37171 37172commit 96e21f86e8266ed40759e5495ee461265d7f6d28 37173Author: Ben Warren <biggerbadderben@gmail.com> 37174Date: Mon Oct 27 23:50:15 2008 -0700 37175 37176 Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC 37177 37178 All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG 37179 37180 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37181 Acked-by: Stefan Roese <sr@denx.de> 37182 37183commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd 37184Author: Ben Warren <biggerbadderben@gmail.com> 37185Date: Thu Oct 23 22:02:49 2008 -0700 37186 37187 Moved initialization of MPC8XX SCC to cpu_eth_init() 37188 37189 Removed initialization of the driver from net/eth.c 37190 37191 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37192 37193commit a9bec96d6359ac9f90a852962bf3040cad9e0256 37194Author: Ben Warren <biggerbadderben@gmail.com> 37195Date: Wed Oct 22 23:47:51 2008 -0700 37196 37197 Moved initialization of MPC8220 FEC to cpu_eth_init() 37198 37199 Removed initialization of the driver from net/eth.c 37200 37201 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37202 37203commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5 37204Author: Ben Warren <biggerbadderben@gmail.com> 37205Date: Wed Oct 22 23:32:48 2008 -0700 37206 37207 Moved initialization of QE Ethernet controller to cpu_eth_init() 37208 37209 Removed initialization of the driver from net/eth.c 37210 37211 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37212 37213commit 3456a148276d5494b53ee40242efb6462d163504 37214Author: Ben Warren <biggerbadderben@gmail.com> 37215Date: Wed Oct 22 23:20:29 2008 -0700 37216 37217 Moved initialization of FCC Ethernet controller to cpu_eth_init 37218 37219 Affected boards: 37220 Several MPC8xx boards 37221 Several MPC8260/MPC8272 boards 37222 Several MPC85xx boards 37223 37224 Removed initialization of the driver from net/eth.c 37225 37226 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37227 37228commit 62e15b497f5c6334c059512678c8db7940ae4c61 37229Author: Ben Warren <biggerbadderben@gmail.com> 37230Date: Thu Oct 30 22:15:35 2008 -0700 37231 37232 Fix typo in cpu/mpc85xx/cpu.c 37233 37234 CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC 37235 37236 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37237 37238commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3 37239Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 37240Date: Sun Oct 19 12:08:50 2008 +0900 37241 37242 net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init 37243 37244 This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init 37245 as a part of ongoing eth_initialize cleanup work. The function ret value 37246 is also fixed as it should be negative on fail. 37247 37248 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 37249 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37250 37251commit cc94074ecac1885d18ddb683eb934b3c0268aa5b 37252Author: Ben Warren <biggerbadderben@gmail.com> 37253Date: Fri Sep 5 01:55:22 2008 -0400 37254 37255 Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init() 37256 37257 Also, removed the driver initialization from net/eth.c 37258 37259 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37260 37261commit f2a7806fc23e82d30c8548911369e0c530607354 37262Author: Clive Stubbings <uboot@xentech.co.uk> 37263Date: Mon Oct 27 15:05:00 2008 +0000 37264 37265 xilinx_emaclite buffer overrun 37266 37267 Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and 37268 PKTSIZE_ALIGN bytes long. 37269 37270 Acked-by: Michal Simek <monstr@monstr.eu> 37271 37272 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37273 37274commit 0115b1953718a2969f6469d3d5da51ba11e12d42 37275Author: richardretanubun <richardretanubun@ruggedcom.com> 37276Date: Fri Sep 26 08:59:12 2008 -0400 37277 37278 NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg. 37279 37280 The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0] 37281 This patch makes these function use the devname argument that is passed in to 37282 allow access to the phy registers of other devices in devlist[]. 37283 37284 Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com> 37285 37286 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37287 37288commit 44dcb7332033db8de2810f2fffcae3084f15c8d4 37289Author: richardretanubun <richardretanubun@ruggedcom.com> 37290Date: Mon Oct 6 15:31:43 2008 -0400 37291 37292 Adds two more ethernet interface to 83xx 37293 37294 Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info. 37295 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com> 37296 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 37297 37298commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3 37299Author: Stelian Pop <stelian@popies.net> 37300Date: Fri Nov 7 13:54:31 2008 +0100 37301 37302 AT91: Replace AT91_BASE_EMAC by the board specific values. 37303 37304 AT91_BASE_EMAC is never used outside the board specific files, 37305 so replace its usage by the board specific AT91xxx_BASE_EMAC. 37306 37307 Signed-off-by: Stelian Pop <stelian@popies.net> 37308 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 37309 37310commit c91e17affa175ce06afa89b04752301eb4a61666 37311Author: Stelian Pop <stelian@popies.net> 37312Date: Fri Nov 7 12:09:21 2008 +0100 37313 37314 AT91: Replace (undefined) AT91_ID_US* by the board specific values. 37315 37316 AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined. 37317 Since they are never used outside the board specific files, they can 37318 be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 / 37319 AT91xxx_ID_US2. 37320 37321 Bug spotted by Jesus Alvarez <jalvarez@micromint.com>. 37322 37323 Signed-off-by: Stelian Pop <stelian@popies.net> 37324 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 37325 37326commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2 37327Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 37328Date: Sat Nov 1 10:47:59 2008 +0100 37329 37330 Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs 37331 37332 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 37333 37334commit 1079432e04ccf71aa3684181186182cd63512f19 37335Author: Sergey Lapin <slapin@ossfans.org> 37336Date: Fri Oct 31 12:28:43 2008 +0100 37337 37338 Custom AFEB9260 board support 37339 37340 This patch provides support for AFEB9260 board, a product of 37341 OpenSource hardware and software. Some commertial projects 37342 are made with this design. A board is basically AT91SAM9260-EK 37343 with some modifications and different peripherals and different 37344 parts used. Main purpose of this project is to gain experience in 37345 hardware design. 37346 More info: http://groups.google.com/group/arm9fpga-evolution-board 37347 (In Russian only, sorry). 37348 Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb 37349 37350 Signed-off-by: Sergey Lapin <slapin@ossfans.org> 37351 37352commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00 37353Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp> 37354Date: Tue Oct 21 13:17:16 2008 +0900 37355 37356 Change to use "do_div" macro 37357 37358 Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp> 37359 37360commit e352495318d8056a00faa21b633b3e4374bfbf52 37361Author: Roman Mashak <romez777@gmail.com> 37362Date: Wed Oct 22 16:00:26 2008 -0400 37363 37364 ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory 37365 37366 OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory. 37367 It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap 37368 37369 Signed-off-by: Roman Mashak <romez777@gmail.com> 37370 37371commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb 37372Author: Roman Mashak <romez777@gmail.com> 37373Date: Tue Oct 21 03:01:41 2008 -0700 37374 37375 ARM/Versatile port: Removed unused functions 37376 37377 Removal of never used functions. 37378 37379 Signed-off-by: Roman Mashak <romez777@gmail.com> 37380 37381commit 1266df887781c779deaf6d05eea2ef90a470cb34 37382Author: Becky Bruce <becky.bruce@freescale.com> 37383Date: Mon Nov 3 15:44:01 2008 -0600 37384 37385 powerpc: change 86xx SMP boot method 37386 37387 We put the bootpg for the secondary cpus into memory and use 37388 BPTR to get to it. This is a step towards converting to the 37389 ePAPR boot methodology. Also, the code is written to 37390 deal properly with more than 4GB of RAM. 37391 37392 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37393 37394commit b5431560682d8f318fbc49db87cfe13ab41d2ee4 37395Author: Becky Bruce <becky.bruce@freescale.com> 37396Date: Fri Oct 31 17:13:49 2008 -0500 37397 37398 8641HPCN: Config file cleanup 37399 37400 There are several items in the config file that were hardcoded 37401 but that should really be based on other config options, since 37402 the regions are contiguous and depend on being so. This cleans 37403 that up a bit. Also, add BR_PHYS_ADDR() macro to convert 37404 addresses into the proper format for BR registers. 37405 37406 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37407 37408commit 4c77de3f144ca088c3867bd6240718c10f5a9d69 37409Author: Becky Bruce <becky.bruce@freescale.com> 37410Date: Fri Oct 31 17:13:32 2008 -0500 37411 37412 86xx: Make dram_size a phys_size_t 37413 37414 It's currently a long and should be phys_size_t. 37415 37416 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37417 37418commit 104992fc541302a6bac74448e01e7fdad20abca0 37419Author: Becky Bruce <becky.bruce@freescale.com> 37420Date: Sun Nov 2 18:19:32 2008 -0600 37421 37422 powerpc 86xx: Handle CCSR relocation earlier 37423 37424 Currently, the CCSR gets relocated while translation is 37425 enabled, meaning we need 2 BAT translations to get to both the 37426 old location and the new location. Also, the DEFAULT 37427 CCSR location has a dependency on the BAT that maps the 37428 FLASH region. Moving the relocation removes this unnecessary 37429 dependency. This makes it easier and more intutive to 37430 modify the board's memory map. 37431 37432 Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same 37433 BAT for CCSR space. 37434 37435 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37436 37437commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf 37438Author: Becky Bruce <becky.bruce@freescale.com> 37439Date: Fri Oct 31 17:14:14 2008 -0500 37440 37441 mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build 37442 37443 You can't actually have both, and with some coming changes to 37444 change the memory map for the board and support 36-bit physical, 37445 we need the extra BAT that is being consumed by having both. 37446 37447 I also make non-PCI configs build cleanly, for the sake of sanity. 37448 37449 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37450 37451commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb 37452Author: Becky Bruce <becky.bruce@freescale.com> 37453Date: Fri Oct 31 17:14:00 2008 -0500 37454 37455 mpc8641: Stop supporting non-PCI_PNP configs 37456 37457 We don't actually ever do this, remove the code so we 37458 can stop maintaining it. 37459 37460 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 37461 37462commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23 37463Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37464Date: Fri Oct 24 12:59:12 2008 +0000 37465 37466 ColdFire: Fix M5329EVB and M5373EVB nand issue 37467 37468 Fix compilation issue caused by a few mismatches. 37469 Provide proper nand chip select enable/disable in 37470 nand_hwcontrol() rather than in board_nand_init() 37471 just enable once. Remove redundant local nand driver 37472 functions - nand_read_byte(), nand_write_byte() and 37473 nand_dev_ready() to use common nand driver. 37474 37475 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37476 37477commit 1b2708442224a551a0b865b52710306333888932 37478Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37479Date: Wed Oct 22 11:55:30 2008 +0000 37480 37481 ColdFire: Fix compilation error 37482 37483 The error was caused by the change for strmhz() in cpu.c. 37484 A few of them were one extra close parenthesis. 37485 37486 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37487 37488commit 536e7dac16769954915a484e682a2efb28699133 37489Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37490Date: Wed Oct 22 11:38:21 2008 +0000 37491 37492 ColdFire: Add MCF5301x CPU and M53017EVB support 37493 37494 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37495 37496commit a21d0c2cc9add8894d971ab791f4032f077db817 37497Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37498Date: Tue Oct 21 15:37:02 2008 +0000 37499 37500 ColdFire: Add SBF support for M52277EVB 37501 37502 Add serial boot support 37503 37504 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37505 37506commit b202816c61042c183fe67d097a5893b0f2dafba0 37507Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37508Date: Tue Oct 21 14:19:26 2008 +0000 37509 37510 ColdFire: Use CFI driver for M5272C3 37511 37512 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37513 37514commit f3962d3f574e5a1cffacd4e9bc48713060a2a314 37515Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37516Date: Tue Oct 21 13:47:54 2008 +0000 37517 37518 ColdFire: Relocate FEC's GPIO and mii functions protocols 37519 37520 Place FEC pin assignments in cpu_init.c from platform's 37521 mii.c 37522 37523 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37524 37525commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802 37526Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37527Date: Tue Oct 21 12:15:44 2008 +0000 37528 37529 ColdFire: Remove platforms mii.c file 37530 37531 Will use mcfmii.c driver in drivers/net rather than 37532 keep creating new mii.c for each future platform. 37533 Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB, 37534 M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB, 37535 M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's 37536 mii.c 37537 37538 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37539 37540commit 012522fef3b382469125beb46a315ab4dee02fb0 37541Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37542Date: Tue Oct 21 10:03:07 2008 +0000 37543 37544 ColdFire: Modules header files cleanup 37545 37546 Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG, 37547 MDHA, SKHA, INTC, and FlexBus structures and 37548 definitions in immap_5xxx.h to more unify modules 37549 header files. Append DSPI support for m547x_8x. 37550 SSI cleanup. Remove USB Host structure from immap_539.h. 37551 Apply changes to use FlexBus structures in mcf52x2's 37552 cpu_init.c and platform configuration files. 37553 37554 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37555 37556commit ac2331aee99ad36be0fcfed8c49922e3c61b576d 37557Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37558Date: Tue Oct 21 08:52:36 2008 +0000 37559 37560 ColdFire: Remove linker file 37561 37562 Each different build for M54455EVB and M5235EVB will 37563 create a u-boot.lds linker file. It is redundant to 37564 keep the u-boot.lds 37565 37566 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 37567 37568commit 0829323073c505556ed5f5073f91adb504584d45 37569Author: Peter Tyser <ptyser@xes-inc.com> 37570Date: Fri Oct 31 11:26:44 2008 -0500 37571 37572 ppc: Fix compile warnings when !CONFIG_OF_LIBFDT 37573 37574 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 37575 37576commit a80b21d5127583171d6e9bc7f722947641898012 37577Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 37578Date: Fri Oct 31 12:12:12 2008 +0100 37579 37580 common/Makefile: create others group for non core, environment and command files 37581 37582 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 37583 37584commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0 37585Author: Wolfgang Denk <wd@denx.de> 37586Date: Fri Oct 31 01:13:37 2008 +0100 37587 37588 TQM8260: use CFI flash driver instead of custom driver. 37589 37590 Signed-off-by: Wolfgang Denk <wd@denx.de> 37591 37592commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f 37593Author: Andy Fleming <afleming@freescale.com> 37594Date: Thu Oct 30 17:35:30 2008 -0500 37595 37596 Consolidate MAX/MIN definitions 37597 37598 There were several, now there is one (two if you count the lower-case 37599 versions). 37600 37601 Signed-off-by: Andy Fleming <afleming@freescale.com> 37602 37603commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a 37604Author: Heiko Schocher <hs@denx.de> 37605Date: Thu Oct 30 09:23:09 2008 +0100 37606 37607 mgsuvd: remove unused defines in config file. 37608 37609 Signed-off-by: Heiko Schocher <hs@denx.de> 37610 37611commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5 37612Author: Wolfgang Denk <wd@denx.de> 37613Date: Sun Nov 2 16:14:22 2008 +0100 37614 37615 Coding Style cleanup, update CHANGELOG 37616 37617 Signed-off-by: Wolfgang Denk <wd@denx.de> 37618 37619commit a47f957ab523019992fdef857af01bd71c58a4da 37620Author: Alessandro Rubini <rubini-list@gnudd.com> 37621Date: Fri Oct 31 22:33:21 2008 +0100 37622 37623 NAND: Allow NAND and OneNAND to coexist 37624 37625 This removes in nand.h code that is verbatim duplicated from bbm.h, 37626 including directly bbm.h in nand.h. The previous state of affairs 37627 prevented compiling code for a board hosting both NAND and OneNAND chips. 37628 37629 Reported-by: Scott Wood <scottwood@freescale.com> 37630 Signed-off-by: Alessandro Rubini <rubini@unipv.it> 37631 Signed-off-by: Scott Wood <scottwood@freescale.com> 37632 37633commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214 37634Author: Scott Wood <scottwood@freescale.com> 37635Date: Fri Oct 31 13:51:12 2008 -0500 37636 37637 JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled. 37638 37639 Reported-by: Alessandro Rubini <rubini-list@gnudd.com> 37640 Signed-off-by: Scott Wood <scottwood@freescale.com> 37641 37642commit c57fc28947e248fb03c49a28b467686299895055 37643Author: Jason Jin <Jason.Jin@freescale.com> 37644Date: Fri Oct 31 05:07:04 2008 -0500 37645 37646 NAND: Add NAND support for MPC8536DS board 37647 37648 This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000 37649 for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file. 37650 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image. 37651 37652 Singed-off-by: Jason Jin <Jason.Jin@freescale.com> 37653 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 37654 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 37655 37656commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b 37657Author: Haiying Wang <Haiying.Wang@freescale.com> 37658Date: Fri Oct 31 05:06:14 2008 -0500 37659 37660 NAND: Fix CONFIG_ENV_ADDR for MPC8572DS 37661 37662 CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE). 37663 37664 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 37665 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 37666 37667commit 51b572a801be57790fe26adaa530210e7fba59cc 37668Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37669Date: Fri Oct 24 10:49:48 2008 +0900 37670 37671 sh: rsk7203: Moved rsk7203 board to board/renesas 37672 37673 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37674 37675commit 58453b00b3ebb26aaa901210023f99504a90bb00 37676Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37677Date: Fri Oct 24 10:48:31 2008 +0900 37678 37679 sh: MigoR: Moved MigoR board to board/renesas 37680 37681 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37682 37683commit c1da2a22817ba85b437afa2f4e715e658b219fd1 37684Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37685Date: Fri Oct 24 10:39:44 2008 +0900 37686 37687 sh: r2dplus: Moved r2dplus board to board/renesas 37688 37689 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37690 37691commit 78385bf2359d828184d0b3649f7ae6b933420000 37692Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37693Date: Fri Oct 24 10:36:13 2008 +0900 37694 37695 sh: sh7763rdp: Moved sh7763rdp board to board/renesas 37696 37697 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37698 37699commit c6525d459c350bfc246ea7826456af77e1e314eb 37700Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37701Date: Fri Oct 24 10:35:19 2008 +0900 37702 37703 sh: sh7785lcr: Moved sh7785lcr board to board/renesas 37704 37705 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37706 37707commit acd3e30d09a73f876222f0d496c4f52ee9d0771d 37708Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37709Date: Fri Oct 24 10:34:21 2008 +0900 37710 37711 sh: r7780mp: Moved r7780mp board to board/renesas 37712 37713 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37714 37715commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0 37716Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37717Date: Fri Oct 24 10:32:14 2008 +0900 37718 37719 sh: ap325rxa: Moved ap325rxa board to board/renesas 37720 37721 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 37722 37723commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad 37724Author: Wolfgang Denk <wd@xpert.denx.de> 37725Date: Fri Oct 31 01:12:28 2008 +0100 37726 37727 CFI Driver: Fix "flash not ready" problem 37728 37729 This patch fixes a problem on systems where the NOR flash is attached 37730 to a 64 bit bus. The toggle bit detection in flash_toggle() is based 37731 on the assumption that the same flash address is read twice without 37732 any other interjacent flash accesses. However, on 32 bit systems the 37733 function flash_read64() [as currently implemented] does not perform 37734 an atomic 64 bit read - instead, this is broken down into two 32 bit 37735 read accesses on addresses "addr" and "addr + 4". So instead of 37736 reading a 64 bit value twice from "addr", we see a sequence of 4 32 37737 bit reads from "addr", "addr + 4", "addr", and "addr + 4". The 37738 consequence is that flash_toggle() fails to work. 37739 37740 This patch implements a simple, but somewhat ugly solution, as it 37741 avoids the use of flash_read64() in this critical place (by breaking 37742 it down manually into 32 bit read operations) instead of rewriting 37743 flash_read64() such to perform atomic 64 bit reads as one could 37744 expect. However, such a rewrite would require the use of floating 37745 point load operations, which becomes pretty complex: 37746 37747 save MSR; 37748 set Floating Point Enable bit in MSR; 37749 use "lfd" instruction to perform atomic 64 bit read; 37750 use "stfd" to store value to temporary variable on stack; 37751 load u64 value from temporary variable; 37752 restore saved MSR; 37753 return u64 value; 37754 37755 The benefit-cost ratio of such an implementation was considered too 37756 bad to actually attempt this, especially as we can expect that such 37757 an implementation would not only have a bigger memory footprint but 37758 also cause a performance degradation. 37759 37760 Signed-off-by: Wolfgang Denk <wd@denx.de> 37761 Signed-off-by: Stefan Roese <sr@denx.de> 37762 37763commit cdd4fe63b094d4b767f12ff241d72566b461ee61 37764Author: Stefan Roese <sr@denx.de> 37765Date: Fri Oct 31 10:48:08 2008 +0100 37766 37767 ppc4xx: Fix spelling error in MAINTAINERS file 37768 37769 Signed-off-by: Stefan Roese <sr@denx.de> 37770 37771commit be270798900b75ad9c47c7b79c72f70441196c56 37772Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37773Date: Tue Oct 28 13:37:00 2008 +0100 37774 37775 ppc4xx: Update PMC440 board support 37776 37777 This patch brings PMC440 board support up to date: 37778 37779 - fix GPIO configuration 37780 - add misc_init_f() 37781 - use better values for usbact variable 37782 - fix USB 2.0 phy reset sequence 37783 - shrink BAR2 to save PCI address space 37784 - add FDT support 37785 37786 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37787 Signed-off-by: Stefan Roese <sr@denx.de> 37788 37789commit 75183b1a7fc04206d9779d13f16e03853d7e965d 37790Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37791Date: Tue Oct 28 13:36:59 2008 +0100 37792 37793 ppc4xx: Fix PMC440 BSP commands 37794 37795 This patch fixes the PMC440 BSP commands painit and selfreset 37796 37797 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37798 Signed-off-by: Stefan Roese <sr@denx.de> 37799 37800commit 76b565b69f886d5ae748db65e44f464b0e70d41a 37801Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37802Date: Tue Oct 28 13:36:58 2008 +0100 37803 37804 ppc4xx: Update PMC440 board configuration 37805 37806 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37807 Signed-off-by: Stefan Roese <sr@denx.de> 37808 37809commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4 37810Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37811Date: Tue Oct 28 13:36:57 2008 +0100 37812 37813 ppc4xx: Fix esd loadpci command 37814 37815 This patch fixes esd's loadpci command when not all 37816 memory on adapter boards is accessable via PCI. 37817 37818 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37819 Signed-off-by: Stefan Roese <sr@denx.de> 37820 37821commit 492aa9ea13791ca4591b5bde895a425e27ae2d10 37822Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37823Date: Tue Oct 28 13:36:56 2008 +0100 37824 37825 ppc4xx: Clean up PMC440 header 37826 37827 -Codingstyle cleanup 37828 -Remove unused GPIO define 37829 37830 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37831 Signed-off-by: Stefan Roese <sr@denx.de> 37832 37833commit 295133258a44f97a57fb2ec339aecfda11f4db95 37834Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37835Date: Tue Oct 28 13:36:55 2008 +0100 37836 37837 ppc4xx: Handle other board variant in PMC440 FPGA code 37838 37839 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 37840 Signed-off-by: Stefan Roese <sr@denx.de> 37841 37842commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0 37843Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 37844Date: Mon Oct 27 12:35:59 2008 +0100 37845 37846 ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg 37847 37848 Xilinx ppc440 and ppc405 have many similarities. This patch merge the 37849 config files of both infrastuctures 37850 37851 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 37852 Signed-off-by: Stefan Roese <sr@denx.de> 37853 37854commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2 37855Author: Stefan Roese <sr@denx.de> 37856Date: Sat Oct 25 06:45:31 2008 +0200 37857 37858 ppc4xx: Correctly configure the GPIO pin muxing on Arches 37859 37860 Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO 37861 pin multiplexing correctly 37862 37863 Signed-off-by: Stefan Roese <sr@denx.de> 37864 37865commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c 37866Author: Bartlomiej Sieka <tur@semihalf.com> 37867Date: Thu Oct 30 23:22:04 2008 +0100 37868 37869 Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX) 37870 37871 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 37872 37873commit 4bc7deee9095f21e243b724ca3d634251c1d5432 37874Author: David Gibson <david@gibson.dropbear.id.au> 37875Date: Wed Oct 29 23:27:45 2008 -0500 37876 37877 libfdt: Fix bug in fdt_subnode_offset_namelen() 37878 37879 There's currently an off-by-one bug in fdt_subnode_offset_namelen() 37880 which causes it to keep searching after it's finished the subnodes of 37881 the given parent, and into the subnodes of siblings of the original 37882 node which come after it in the tree. 37883 37884 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 37885 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 37886 37887commit f242a08871839eac081ba5b599af979f3a148a0d 37888Author: Peter Korsgaard <jacmet@sunsite.dk> 37889Date: Tue Oct 28 08:26:52 2008 +0100 37890 37891 fdt_resize(): ensure minimum padding 37892 37893 fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry 37894 (16 bytes), so make sure that fdt_resize at least adds that much 37895 padding, no matter what the location or size of the fdt is. 37896 37897 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> 37898 Acked-by: Andy Fleming <afleming@freescale.com> 37899 37900commit d685b74c64a38849f1a129b3ab846fbf67dd937e 37901Author: Dave Liu <daveliu@freescale.com> 37902Date: Thu Oct 23 21:59:35 2008 +0800 37903 37904 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache 37905 37906 The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7 37907 37908 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache 37909 37910 This is needed in unlock_ram_in_cache() because it is called from C and 37911 will corrupt the small data area anchor that is kept in R2. 37912 37913 lock_ram_in_cache() is modified similarly as good coding practice, but 37914 is not called from C. 37915 37916 Signed-off-by: Nick Spence <nick.spence@freescale.com> 37917 37918 also, the r2 is used as global data pointer. 37919 37920 Signed-off-by: Dave Liu <daveliu@freescale.com> 37921 37922commit e053ab1903ccae6048ef759025b9f675bba91450 37923Author: Scott Wood <scottwood@freescale.com> 37924Date: Tue Oct 28 11:45:04 2008 -0500 37925 37926 mpc83xx pci: Round up memory size in inbound window. 37927 37928 The current calculation will fail to cover all memory if 37929 its size is not a power of two. 37930 37931 Signed-off-by: Scott Wood <scottwood@freescale.com> 37932 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 37933 37934commit 1c671977dc81359628be27ac99c174e76e8069ba 37935Author: Dave Liu <daveliu@freescale.com> 37936Date: Thu Oct 23 21:19:13 2008 +0800 37937 37938 86xx: remove the unused definition 37939 37940 Signed-off-by: Dave Liu <daveliu@freescale.com> 37941 37942commit eaa44c5dc83756c3067b9e6c9db626facd0b0660 37943Author: Dave Liu <daveliu@freescale.com> 37944Date: Tue Oct 28 17:47:49 2008 +0800 37945 37946 86xx: remove the redundant r2 global data pointer save 37947 37948 The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add 37949 the another global data pointer save, but in fact the 37950 global data pointer will be initialized in the board_init_r, 37951 so remove it such as the 85xx/83xx family. 37952 37953 Signed-off-by: Dave Liu <daveliu@freescale.com> 37954 Acked-by: Kumar Gala <kumar.gala@freescale.com> 37955 37956commit bd888e9544419665334a6f47f81f34011cea38f3 37957Author: Dave Liu <daveliu@freescale.com> 37958Date: Tue Oct 28 17:47:41 2008 +0800 37959 37960 86xx: remove the unused code for 86xx family 37961 37962 I believe these code was copied from 74xx family, but for 37963 86xx, it is unused. 37964 37965 Signed-off-by: Dave Liu <daveliu@freescale.com> 37966 Acked-by: Kumar Gala <kumar.gala@freescale.com> 37967 37968commit 5ba1ef507402bc5e344dc374203792a40f222e8a 37969Author: Dave Liu <daveliu@freescale.com> 37970Date: Tue Oct 28 17:46:35 2008 +0800 37971 37972 86xx: remove the second DDR LAW setting for mpc8641hpcn 37973 37974 The DDR1 LAW will precedence the DDR2 LAW, so remove 37975 the second DDR LAW. 37976 37977 Signed-off-by: Dave Liu <daveliu@freescale.com> 37978 Acked-by: Becky Bruce <becky.bruce@freescale.com> 37979 37980commit 137a2dfd11ac51ae3154f13f323609b33a4a072e 37981Author: Dave Liu <daveliu@freescale.com> 37982Date: Tue Oct 28 17:46:23 2008 +0800 37983 37984 86xx: remove the unused ddr_enable_ecc in the board file 37985 37986 The DDR controller of 86xx processors have the ECC data init 37987 feature, and the new DDR code is using the feature, we don't 37988 need the way with DMA to init memory again. 37989 37990 Signed-off-by: Dave Liu <daveliu@freescale.com> 37991 Acked-by: Kumar Gala <kumar.gala@freescale.com> 37992 37993commit dc2adad85bf580d65916c940683f6e9671e8a5dd 37994Author: Dave Liu <daveliu@freescale.com> 37995Date: Tue Oct 28 17:46:12 2008 +0800 37996 37997 86xx: Move the clear_tlbs before MMU turn on 37998 37999 We must invalidate TLBs before MMU turn on, but 38000 currently the code is not, if there are some stale
38001 TLB entry valid in the TLBs, it will cause strange 38002 issue. 38003 38004 Signed-off-by: Dave Liu <daveliu@freescale.com> 38005 Acked-by: Becky Bruce <becky.bruce@freescale.com> 38006 38007commit 5cdade07b118d07154cb882650f9778cecc8a87c 38008Author: Scott Wood <scottwood@freescale.com> 38009Date: Mon Oct 27 15:57:08 2008 -0500 38010 38011 mpc8313erdb: Document NAND boot. 38012 38013 Previously, the documentation claimed that NAND boot is not supported. 38014 This is no longer true. 38015 38016 Signed-off-by: Scott Wood <scottwood@freescale.com> 38017 38018commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd 38019Author: Scott Wood <scottwood@freescale.com> 38020Date: Wed Oct 29 14:20:26 2008 -0500 38021 38022 NAND: Properly create JFFS2 cleanmarkers. 38023 38024 As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean" 38025 command is currently broken, and among other things causes all blocks 38026 to be marked bad. 38027 38028 This implements it properly using MTD_OOB_AUTO, along with some 38029 indentation fixes. 38030 38031 Signed-off-by: Scott Wood <scottwood@freescale.com> 38032 38033commit f7fe57c09866b44692d18c8cf22828bd137ec58d 38034Author: Scott Wood <scottwood@freescale.com> 38035Date: Wed Oct 29 13:42:41 2008 -0500 38036 38037 NAND fsl elbc: Set FMR[ECCM] based on page size. 38038 38039 Hardware expects ECCM 0 for small page and ECCM 1 for large page 38040 when booting from NAND, so use those defaults. 38041 38042 Signed-off-by: Scott Wood <scottwood@freescale.com> 38043 38044commit c013b74975dab0805ef6d369b013230c4e8a660d 38045Author: Haiying Wang <Haiying.Wang@freescale.com> 38046Date: Wed Oct 29 13:32:59 2008 -0400 38047 38048 NAND: Add support for MPC8572DS board 38049 38050 This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns 38051 0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in 38052 config file. 38053 38054 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to 38055 make room for the increased code size with NAND enabled. 38056 38057 Signed-off-by: Jason Jin <Jason.Jin@freescale.com> 38058 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 38059 Signed-off-by: Scott Wood <scottwood@freescale.com> 38060 38061commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95 38062Author: Haiying Wang <Haiying.Wang@freescale.com> 38063Date: Wed Oct 29 11:05:55 2008 -0400 38064 38065 Make Freescale local bus registers available for both 83xx and 85xx. 38066 38067 - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it 38068 can be shared by both 83xx and 85xx 38069 - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards 38070 files which use lbus83xx_t. 38071 - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that 38072 85xx can share them. 38073 38074 Signed-off-by: Jason Jin <Jason.Jin@freescale.com> 38075 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 38076 Signed-off-by: Scott Wood <scottwood@freescale.com> 38077 38078commit 695c130e4bf75b444720ddfd83aca88f41c046cf 38079Author: Scott Wood <scottwood@freescale.com> 38080Date: Mon Oct 27 15:38:30 2008 -0500 38081 38082 NAND: Align right column of the shorthelp with other commands. 38083 38084 I accidentally broke this in when making consistent the partial 38085 alignment of the longhelp. 38086 38087 Signed-off-by: Scott Wood <scottwood@freescale.com> 38088 38089commit 33efde5ecac91ab118ff00b95a181fd6d75f8645 38090Author: Karl Beldan <karl.beldan@gmail.com> 38091Date: Mon Sep 15 16:08:03 2008 +0200 38092 38093 NAND: Reset chip on power-up 38094 38095 Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx). 38096 The first command sent is NAND_CMD_READID. 38097 Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id. 38098 Tested with an MT29F4G08AAC. 38099 38100 Signed-off-by: Karl Beldan <karl.beldan@gmail.com> 38101 Signed-off-by: Scott Wood <scottwood@freescale.com> 38102 38103commit c45912d8abc52de796b9059a58faf7c4166eab58 38104Author: Scott Wood <scottwood@freescale.com> 38105Date: Fri Oct 24 16:20:43 2008 -0500 38106 38107 NAND: sync with 2.6.27 38108 38109 This brings the core NAND code up to date with the Linux kernel. 38110 38111 Since there were several drivers in Linux as of the last update that are 38112 not in u-boot, I'm not bringing over new drivers that have been added 38113 since in the absence of an interested party. 38114 38115 I did not update OneNAND since it was recently synced by Kyungmin Park, 38116 and I'm not sure exactly what the common ancestor is. 38117 38118 Signed-off-by: Scott Wood <scottwood@freescale.com> 38119 38120commit b1d0db1805c3395149777e507b6da53410abac4e 38121Author: Kumar Gala <galak@kernel.crashing.org> 38122Date: Tue Oct 21 17:25:47 2008 -0500 38123 38124 bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS} 38125 38126 Added the ability to config out bootm support for Linux, NetBSD, RTEMS 38127 38128 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38129 38130commit 5a98127d81a6eefc5a78a704df619bfe362eeb87 38131Author: Kumar Gala <galak@kernel.crashing.org> 38132Date: Tue Oct 21 17:25:46 2008 -0500 38133 38134 bootm: support subcommands in linux ppc bootm 38135 38136 Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm. 38137 38138 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38139 38140commit 49c3a861d11735838f1f1b11999ce433006dc919 38141Author: Kumar Gala <galak@kernel.crashing.org> 38142Date: Tue Oct 21 17:25:45 2008 -0500 38143 38144 bootm: Add subcommands 38145 38146 Add the ability to break the steps of the bootm command into several 38147 subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go. 38148 38149 This allows us to do things like manipulate device trees before 38150 they are passed to a booting kernel or setup memory for a secondary 38151 core in multicore situations. 38152 38153 Not all OS types support all subcommands (currently only start, loados, 38154 ramdisk, fdt, and go are supported). 38155 38156 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38157 38158commit be08315933537f061bc1ce61f33a29c56458bbad 38159Author: Kumar Gala <galak@kernel.crashing.org> 38160Date: Tue Oct 21 17:25:44 2008 -0500 38161 38162 bootm: Move to using a function pointer table for the boot os function 38163 38164 This removes a bit of code and makes it easier for the upcoming sub bootm 38165 command support to call into the proper OS specific handler. 38166 38167 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38168 Signed-off-by: Wolfgang Denk <wd@denx.de> 38169 38170commit a369f4a492fa2805d87775d27380f0eeaca35aa6 38171Author: Graeme Russ <graeme.russ@gmail.com> 38172Date: Mon Sep 29 23:03:14 2008 +1000 38173 38174 i386: Renamed show_boot_progress in assembler code 38175 38176 Renamed show_boot_progress in assembler init phase to 38177 show_boot_progress_asm to avoid link conflicts with C version 38178 38179 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 38180 38181commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d 38182Author: Peter Tyser <ptyser@xes-inc.com> 38183Date: Mon Oct 27 16:42:00 2008 -0500 38184 38185 85xx: Update MPC85xx_PORDEVSR_IO_SEL mask 38186 38187 The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx 38188 processors have a 3-bit wide IO_SEL field but have the most 38189 significant bit is wired to 0 so this change should not affect 38190 them. 38191 38192 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 38193 38194commit cd4251624205cb97104f6e32679dc7754934f711 38195Author: Becky Bruce <becky.bruce@freescale.com> 38196Date: Mon Oct 27 16:09:42 2008 -0500 38197 38198 powerpc: fix pci window initialization to work with > 4GB DRAM 38199 38200 The existing code has a few errors that need to be fixed in 38201 order to support large RAM sizes. Fix those, and add a 38202 comment to make it clearer. 38203 38204 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 38205 Acked-by: Kumar Gala <galak@kernel.crashing.org> 38206 38207commit 219542a1a66ca017b12860920714a9859b18a5d7 38208Author: Kumar Gala <galak@kernel.crashing.org> 38209Date: Mon Oct 27 13:16:20 2008 -0500 38210 38211 pci/fsl_pci_init: Removed a bunch pointless trailing backslashes. 38212 38213 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38214 38215commit 6b59e03e0237a40a2305ea385defdfd92000978b 38216Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38217Date: Mon Sep 1 16:21:22 2008 +0200 38218 38219 lcd: Let the board code show board-specific info 38220 38221 The information displayed when CONFIG_LCD_INFO is set is inherently 38222 board-specific, so it should be done by the board code. The current code 38223 dealing with this only handles two cases, and is already a horrible mess 38224 of #ifdeffery. 38225 38226 Yes, this duplicates some code, but it also allows boards to print more 38227 board-specific information; this used to be very difficult. 38228 38229 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38230 Signed-off-by: Anatolij Gustschin <agust@denx.de> 38231 38232commit 6f93d2b8fca504200a5758f7c6dd2d6852900765 38233Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38234Date: Mon Sep 1 16:21:21 2008 +0200 38235 38236 lcd: Set lcd_is_enabled before clearing the screen 38237 38238 This allows the logo/info rendering routines to use the regular 38239 lcd_putc/lcd_puts/lcd_printf calls. 38240 38241 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38242 Signed-off-by: Anatolij Gustschin <agust@denx.de> 38243 38244commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2 38245Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38246Date: Mon Sep 1 16:21:20 2008 +0200 38247 38248 lcd: Implement lcd_printf() 38249 38250 lcd_printf() has a prototype in include/lcd.h but no implementation. Fix 38251 this by borrowing the lcd_printf() implementation from the cogent board 38252 code (which appears to use its own LCD framework.) 38253 38254 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38255 Signed-off-by: Anatolij Gustschin <agust@denx.de> 38256 38257commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892 38258Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38259Date: Mon Sep 1 16:21:19 2008 +0200 38260 38261 atmel_lcdfb: Straighten out funky vl_sync logic 38262 38263 If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED, 38264 otherwise we don't. WTF? 38265 38266 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38267 Signed-off-by: Anatolij Gustschin <agust@denx.de> 38268 38269commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55 38270Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38271Date: Mon Sep 1 16:21:18 2008 +0200 38272 38273 atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h> 38274 38275 atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It 38276 includes a file that does, asm/arch/gpio.h, but this file doesn't 38277 include <asm/arch/hardware.h> like it's supposed to. 38278 38279 Add the missing include to asm/arch/gpio.h and remove the workaround 38280 from the atmel_lcdfb driver. This makes the driver compile on avr32. 38281 38282 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 38283 Signed-off-by: Anatolij Gustschin <agust@denx.de> 38284 38285commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e 38286Author: Kumar Gala <galak@kernel.crashing.org> 38287Date: Wed Oct 22 14:38:55 2008 -0500 38288 38289 86xx: Convert all fsl_pci_init users to new APIs 38290 38291 Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use 38292 fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup(). 38293 38294 With these changes the board code is a bit smaller and we get dma-ranges 38295 set in the device tree for these boards. 38296 38297 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38298 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38299 Acked-by: Jon Loeliger <jdl@freescale.com> 38300 38301commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98 38302Author: Kumar Gala <galak@kernel.crashing.org> 38303Date: Tue Oct 21 08:28:33 2008 -0500 38304 38305 85xx: Convert all fsl_pci_init users to new APIs 38306 38307 Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS, 38308 MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows() 38309 and ft_fsl_pci_setup(). 38310 38311 With these changes the board code is a bit smaller and we get dma-ranges 38312 set in the device tree for these boards. 38313 38314 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38315 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38316 38317commit a2aab460727e5f674353a83a81000ef794bffcae 38318Author: Kumar Gala <galak@kernel.crashing.org> 38319Date: Thu Oct 23 00:01:06 2008 -0500 38320 38321 pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges 38322 38323 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38324 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38325 38326commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785 38327Author: Kumar Gala <galak@kernel.crashing.org> 38328Date: Wed Oct 22 14:06:24 2008 -0500 38329 38330 pci/fsl_pci_init: Add a common PCI inbound setup function 38331 38332 Add a common setup function that determines the pci_region(s) based 38333 on how much memory we have in the system. 38334 38335 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38336 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38337 38338commit 612ea01018a459234d54ed57ec6a5a244ce75678 38339Author: Kumar Gala <galak@kernel.crashing.org> 38340Date: Tue Oct 21 10:13:14 2008 -0500 38341 38342 pci/fsl_pci_init: Enable larger address and setting inbound windows properly 38343 38344 * PCI Inbound window was setup incorrectly. The PCI address and system 38345 address were swapped. The PCI address should be setting piwar/piwbear 38346 and the system address should be setting pitar. 38347 38348 * Removed masking of addresses to allow for system address to support 38349 system address & PCI address >32-bits 38350 38351 * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses 38352 38353 * Respect the PCI_REGION_PREFETCH for inbound windows 38354 38355 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38356 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38357 38358commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228 38359Author: Kumar Gala <galak@kernel.crashing.org> 38360Date: Wed Oct 22 23:33:56 2008 -0500 38361 38362 fdt: Added helper to set PCI dma-ranges property 38363 38364 Added fdt_pci_dma_ranges() that parses the pci_region info from the 38365 struct pci_controller and populates the dma-ranges based on it. 38366 38367 The max # of windws/dma-ranges we support is 3 since on embedded 38368 PowerPC based systems this is the max number of windows. 38369 38370 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38371 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38372 38373commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f 38374Author: Kumar Gala <galak@kernel.crashing.org> 38375Date: Thu Oct 23 00:05:47 2008 -0500 38376 38377 fdt: Add fdt_getprop_u32_default helpers 38378 38379 Add helper functions to return find a node and return it's property 38380 or a default value. 38381 38382 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38383 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38384 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 38385 38386commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f 38387Author: Kumar Gala <galak@kernel.crashing.org> 38388Date: Tue Oct 21 18:06:15 2008 -0500 38389 38390 86xx: Enable 64-bit PCI resources on all Freescale boards 38391 38392 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38393 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38394 38395commit 0151cbaccf4504821ecfde0217299bd740086bb6 38396Author: Kumar Gala <galak@kernel.crashing.org> 38397Date: Tue Oct 21 11:33:58 2008 -0500 38398 38399 85xx: Enable 64-bit PCI resources on all Freescale boards 38400 38401 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38402 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38403 38404commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8 38405Author: Kumar Gala <galak@kernel.crashing.org> 38406Date: Tue Oct 21 08:36:08 2008 -0500 38407 38408 pci: Allow for PCI addresses to be 64-bit 38409 38410 PCI bus is inherently 64-bit. While not all system require access to 38411 the full 64-bit PCI address range some do. This allows those systems 38412 to enable the full PCI address width via CONFIG_SYS_PCI_64BIT. 38413 38414 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38415 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com> 38416 Acked-by: Wolfgang Denk <wd@denx.de> 38417 38418commit ae5f943ba8ede448a4b1a145fd8911856701ecc5 38419Author: Dave Liu <daveliu@freescale.com> 38420Date: Thu Oct 23 21:18:53 2008 +0800 38421 38422 85xx: Fix the incorrect register used for DDR erratum1 38423 38424 The 8572 DDR erratum1: 38425 DDR controller may enter an illegal state when operating 38426 in 32-bit bus mode with 4-beat bursts. 38427 38428 Description: 38429 When operating with a 32-bit bus, it is recommended that 38430 DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used. 38431 This forces the DDR controller to use 4-beat bursts when 38432 communicating to the DRAMs. However, an issue exists that 38433 could lead to data corruption when the DDR controller is 38434 in 32-bit bus mode while using 4-beat bursts. 38435 38436 Projected Impact: 38437 If the DDR controller is operating in 32-bit bus mode with 38438 4-beat bursts, then the controller may enter into a bad state. 38439 All subsequent reads from memory is corrupted. 38440 Four-beat bursts with a 32-bit bus only is used with DDR2 memories. 38441 Therefore, this erratum does not affect DDR3 mode. 38442 38443 Work Arounds: 38444 To work around this issue, software must set DEBUG_1[31] in 38445 DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1 38446 and CCSRBAR offset + 0x6f00 for DDR_2). 38447 38448 Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2 38449 as condition, but it should be DDR_SDRAM_CFG register. 38450 38451 Signed-off-by: Dave Liu <daveliu@freescale.com> 38452 38453commit d5b693090ed08d24c18491df9d8fc7387b2906f3 38454Author: Dave Liu <daveliu@freescale.com> 38455Date: Thu Oct 23 21:17:19 2008 +0800 38456 38457 85xx: remove unused config definition 38458 38459 Signed-off-by: Dave Liu <daveliu@freescale.com> 38460 38461commit 0f060c3bf82832331a509f2e5d2442539e7aad09 38462Author: Kumar Gala <galak@kernel.crashing.org> 38463Date: Thu Oct 23 01:47:38 2008 -0500 38464 38465 85xx: Add basic e500mc core support 38466 38467 Introduce CONFIG_E500MC to deal with the minor differences between 38468 e500v2 and e500mc. 38469 38470 * Certain fields of HID0/1 don't exist anymore on e500mc 38471 * Cache line size is 64-bytes on e500mc 38472 * reset value of PIR is different 38473 38474 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38475 38476commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677 38477Author: Kumar Gala <galak@kernel.crashing.org> 38478Date: Thu Oct 23 01:47:37 2008 -0500 38479 38480 85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number 38481 38482 Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle 38483 e500mc's 64-byte cacheline properly when it gets added. 38484 38485 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 38486 38487commit 5deb8022c3749faac30e9ad9694691e2442b5c93 38488Author: Georg Schardt <schardt@team-ctech.de> 38489Date: Fri Oct 24 13:51:52 2008 +0200 38490 38491 ppc4xx: New board avnet fx12 minimodul 38492 38493 This patch adds support for the avnet fx12 minimodul. 38494 It needs the "ppc4xx: Generic architecture for xilinx ppc405" 38495 patch from Ricardo. 38496 38497 Signed-off-by: Georg Schardt <schardt@team-ctech.de> 38498 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 38499 Signed-off-by: Stefan Roese <sr@denx.de> 38500 38501commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0 38502Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 38503Date: Tue Oct 21 18:29:46 2008 +0200 38504 38505 ppc4xx: Generic architecture for xilinx ppc405(v3) 38506 38507 As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx 38508 ppc440 boards, this patch presents a common architecture for all the 38509 xilinx ppc405 boards. 38510 38511 Any custom xilinx ppc405 board can be added very easily with no code 38512 duplicity. 38513 38514 This patch also adds a simple generic board, that can be used on almost 38515 any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h 38516 38517 This patch is prepared to work with the latest version of EDK (10.1) 38518 38519 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 38520 Signed-off-by: Stefan Roese <sr@denx.de> 38521 38522commit 485c00a57fab86f72a3769480c66bf1ca22e1459 38523Author: Stefan Roese <sr@denx.de> 38524Date: Fri Oct 24 08:56:09 2008 +0200 38525 38526 ppc4xx: Disable DDR2 autocalibration on Kilauea for now 38527 38528 Since the new autocalibration still has some problems on some Kilauea 38529 boards with 200MHz DDR2 frequency we disable the autocalibration and 38530 use the hardcoded values as done before. This seems to work reliably 38531 on all known DDR2 frequencies. 38532 38533 After the autocalibration issue is fixed we will enable it again. 38534 38535 Signed-off-by: Stefan Roese <sr@denx.de> 38536 38537commit f177f4250c729727b1629fa8d8d6556c999e9b8c 38538Author: Mike Frysinger <vapier@gentoo.org> 38539Date: Wed Apr 9 02:02:07 2008 -0400 38540 38541 Blackfin: fix up UART status bit handling 38542 38543 Some Blackfin UARTs are read-to-clear while others are write-to-clear. 38544 This can cause problems when we poll the LSR and then later try and handle 38545 any errors detected. 38546 38547 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38548 38549commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0 38550Author: Mike Frysinger <vapier@gentoo.org> 38551Date: Sat Oct 11 20:42:17 2008 -0400 38552 38553 Blackfin: bf561-ezkit: drop redundant code 38554 38555 Common Blackfin code already announces CPU information. 38556 38557 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38558 38559commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e 38560Author: Mike Frysinger <vapier@gentoo.org> 38561Date: Sat Oct 11 20:43:10 2008 -0400 38562 38563 Blackfin: bf561-ezkit: drop pointless USB code 38564 38565 The USB/LAN register settings are not actually used/needed in order to 38566 drive things from U-Boot, so drop the code. 38567 38568 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38569 38570commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab 38571Author: Mike Frysinger <vapier@gentoo.org> 38572Date: Sat Oct 11 20:47:58 2008 -0400 38573 38574 Blackfin: linker scripts: force start.o and set initcode boundaries 38575 38576 Make sure that the start.o object is always the first object in our linker 38577 script regardless of configuration settings, and add some linker symbols 38578 so the ldr utility can properly locate the initcode when generating a LDR. 38579 38580 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38581 38582commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0 38583Author: Mike Frysinger <vapier@gentoo.org> 38584Date: Sat Oct 11 21:19:39 2008 -0400 38585 38586 Blackfin: small cpu init optimization while setting interrupt mask 38587 38588 Use the sti instruction to set the initial interrupt mask rather than 38589 banging on the core IMASK MMR to save both space and time. 38590 38591 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38592 38593commit 960922291c9594acb575cec7e47d7bed9b58182c 38594Author: Mike Frysinger <vapier@gentoo.org> 38595Date: Sat Oct 11 21:18:10 2008 -0400 38596 38597 Blackfin: set initial stack correctly according to Blackfin ABI 38598 38599 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38600 38601commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b 38602Author: Mike Frysinger <vapier@gentoo.org> 38603Date: Sun Apr 20 03:11:53 2008 -0400 38604 38605 Blackfin: make baud calculation more accurate 38606 38607 We should use the algorithm in the Linux kernel so that the UART divisor 38608 calculation is more accurate. It also fixes problems on some picky UARTs 38609 that have sampling anomalies. 38610 38611 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38612 38613commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06 38614Author: Mike Frysinger <vapier@gentoo.org> 38615Date: Mon Oct 6 04:21:41 2008 -0400 38616 38617 Blackfin: decode hwerrcause/excause when crashing 38618 38619 Having to decode hwerrcause/excause values is a pain, so automate it. 38620 38621 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38622 38623commit 2de95bb20c488f20298df6881b700a5a757ee780 38624Author: Mike Frysinger <vapier@gentoo.org> 38625Date: Mon Oct 6 04:20:54 2008 -0400 38626 38627 Blackfin: fix register dump messages 38628 38629 Make sure we report RETI/IPEND correctly. 38630 38631 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38632 38633commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b 38634Author: Mike Frysinger <vapier@gentoo.org> 38635Date: Mon Oct 6 04:19:34 2008 -0400 38636 38637 Blackfin: don't bother displaying reboot msg when crashing 38638 38639 The hang function already tells you to reboot, so no point in showing it 38640 twice. 38641 38642 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38643 38644commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95 38645Author: Mike Frysinger <vapier@gentoo.org> 38646Date: Sun Jun 1 01:23:48 2008 -0400 38647 38648 Blackfin: enable support for nested interrupts 38649 38650 During cpu init, make sure we initialize the CEC properly so that 38651 interrupts can fire and be handled while U-Boot is running. 38652 38653 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38654 38655commit 39782727e185860faa4884c2b04e84cb33d1c6cf 38656Author: Mike Frysinger <vapier@gentoo.org> 38657Date: Mon Oct 6 03:55:25 2008 -0400 38658 38659 Blackfin: init NAND before relocating env 38660 38661 If booting out of NAND, we need to make sure we initialize it properly 38662 before attempting to relocate the environment. 38663 38664 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38665 38666commit 0f9a8819416ba40a53de50af148847a0e508f84d 38667Author: Mike Frysinger <vapier@gentoo.org> 38668Date: Thu Aug 7 18:40:13 2008 -0400 38669 38670 Blackfin: check cache bits, not cplb bits 38671 38672 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38673 38674commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76 38675Author: Mike Frysinger <vapier@gentoo.org> 38676Date: Thu Aug 7 17:52:59 2008 -0400 38677 38678 Blackfin: drop unused cache flush code 38679 38680 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38681 38682commit 50f0d211912a648e31aa9123b4665a0444bb8ca9 38683Author: Mike Frysinger <vapier@gentoo.org> 38684Date: Thu Aug 7 15:21:47 2008 -0400 38685 38686 Blackfin: unify cache handling code 38687 38688 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38689 38690commit 3c8798983403cb68a827d7a0d09b1134524a1b7d 38691Author: Mike Frysinger <vapier@gentoo.org> 38692Date: Mon Oct 6 03:39:07 2008 -0400 38693 38694 Blackfin: only initialize the RTC when actually used 38695 38696 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38697 38698commit 621e579b812dd1a2e6777f7cbf6e55e736505823 38699Author: Mike Frysinger <vapier@gentoo.org> 38700Date: Mon Oct 6 03:44:33 2008 -0400 38701 38702 Blackfin: fix SWRST register definition 38703 38704 The SWRST register is a 16bit, not 32bit, register. 38705 38706 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38707 38708commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b 38709Author: Mike Frysinger <vapier@gentoo.org> 38710Date: Thu Aug 7 18:54:57 2008 -0400 38711 38712 Blackfin: build with -fomit-frame-pointer 38713 38714 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38715 38716commit adbfeeb7b32f737a9738daa583350d2bb9ed017a 38717Author: Mike Frysinger <vapier@gentoo.org> 38718Date: Thu Aug 7 17:50:26 2008 -0400 38719 38720 Blackfin: document some of the blackfin directories 38721 38722 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38723 38724commit e4337968e43698a68ba608369f46d4a4114111ca 38725Author: Mike Frysinger <vapier@gentoo.org> 38726Date: Thu Aug 7 15:16:56 2008 -0400 38727 38728 Blackfin: only enable hardware error irq by default 38729 38730 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38731 38732commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4 38733Author: Mike Frysinger <vapier@gentoo.org> 38734Date: Thu Aug 7 13:36:43 2008 -0400 38735 38736 Blackfin: punt old unused mem_init.h header 38737 38738 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38739 38740commit bcc121a01608042066a19ab5bff5bcfb805bf406 38741Author: Mike Frysinger <vapier@gentoo.org> 38742Date: Thu Aug 7 13:18:55 2008 -0400 38743 38744 Blackfin: delete unused page_descriptor_table_size define 38745 38746 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38747 38748commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc 38749Author: Mike Frysinger <vapier@gentoo.org> 38750Date: Thu Aug 7 13:17:03 2008 -0400 38751 38752 Blackfin: fix typo in boot mode comment and add NAND define 38753 38754 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38755 38756commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c 38757Author: Ben Maan <moo@cow> 38758Date: Thu Aug 7 13:14:21 2008 -0400 38759 38760 Blackfin: fix port mux defines for BF54x 38761 38762 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38763 38764commit 0656ef2ba274910d31364fe022f6c7db0051660d 38765Author: Mike Frysinger <vapier@gentoo.org> 38766Date: Thu Aug 7 13:09:50 2008 -0400 38767 38768 Blackfin: update anomaly lists 38769 38770 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38771 38772commit 50ca95402876cf7bac4e2d4f7855f616a038763f 38773Author: Mike Frysinger <vapier@gentoo.org> 38774Date: Thu Aug 7 13:08:54 2008 -0400 38775 38776 Blackfin: unify DSPID/DBGSTAT MMR definitions 38777 38778 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 38779 38780commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e 38781Author: Wolfgang Denk <wd@denx.de> 38782Date: Tue Oct 21 15:53:51 2008 +0200 38783 38784 Fix strmhz(): avoid printing negative fractions 38785 38786 Signed-off-by: Wolfgang Denk <wd@denx.de> 38787 38788commit 4a7f6b750d8de543fdf8e58acd86745010054571 38789Author: Richard Retanubun <RichardRetanubun@ruggedcom.com> 38790Date: Fri Oct 17 08:55:51 2008 -0400 38791 38792 mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function 38793 38794 This is done to allow other 83XX based platforms which also have UPM 38795 (e.g. 8360) to configure and use their UPM in u-boot. 38796 38797 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com> 38798 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 38799 38800commit 3bf1be3c0cfb1129b68cc1474119e5f323536488 38801Author: Anton Vorontsov <avorontsov@ru.mvista.com> 38802Date: Tue Oct 14 22:58:53 2008 +0400 38803 38804 mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS 38805 38806 With this patch u-boot can fixup the dr_mode and phy_type properties 38807 for the Dual-Role USB controller. 38808 38809 While at it, also remove #ifdefs around includes, they are not needed. 38810 38811 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 38812 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 38813 38814commit b3379f3fd13969934c00097c05754e7a8990fd39 38815Author: Anton Vorontsov <avorontsov@ru.mvista.com> 38816Date: Wed Oct 8 20:52:54 2008 +0400 38817 38818 mpc83xx: add ELBC NAND support for the MPC837XEMDS boards 38819 38820 Though NAND chip is replaceable on the MPC837XE-MDS boards, the 38821 current settings don't work with the default chip on the board. 38822 Nevertheless Freescale's U-Boot sets the option register correctly, 38823 so I just dumped the register from the working u-boot. My guess is 38824 that the old settings were applicable for some pilot boards, not 38825 found in the production. 38826 38827 This patch also enables FSL ELBC driver so that we could access 38828 the NAND storage in the u-boot. 38829 38830 The NAND support costs about 45KB, so the u-boot no longer fits 38831 into two 128KB NOR flash sectors, thus we also have to adjust 38832 environment location: add another 128KB to the monitor length. 38833 38834 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 38835 38836 It is due to hardware design and logic defect, that is the 38837 I/O[0:7] of NAND chip is connected to LAD[7:0], so when 38838 the NAND chip connected to nLCS3, you have to set up the 38839 OR3[BCTLD] = '1' for normal operation, otherwise it will have 38840 bus contention due to the pin 48/25 of U60 is enabled. 38841 38842 Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not 38843 asserted upon access to the NAND chip, keep the default state. 38844 38845 Acked-by: Dave Liu <daveliu@freescale.com> 38846 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 38847 38848commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7 38849Author: Anton Vorontsov <avorontsov@ru.mvista.com> 38850Date: Thu Oct 2 19:17:33 2008 +0400 38851 38852 mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards 38853 38854 The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB, 38855 standalone or acting as a PCI agent. User's Guide says: 38856 38857 - When the CPLD recognizes its location on the PIB it automatically 38858 configures RCW to the PCI Host. 38859 - If the CPLD fails to recognize its location then it is automatically 38860 configured as an Agent and the PCI is configured to an external arbiter. 38861 38862 This sounds good. Though in the standalone setup the CPLD sets PCI_HOST 38863 flag (it's ok, we can't act as PCI agents since we receive CLKIN, not 38864 PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without 38865 any arbiter bad things will happen (here the board hangs during any config 38866 space reads). 38867 38868 In this situation we must disable the PCI. And in case of anybody really 38869 want to use an external arbiter, we provide "pci_external_aribter" 38870 environment variable. 38871 38872 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 38873 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 38874 38875commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3 38876Author: Anton Vorontsov <avorontsov@ru.mvista.com> 38877Date: Thu Oct 2 18:32:25 2008 +0400 38878 38879 mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards 38880 38881 This involves configuring the SerDes and fixing up the flags and 38882 PHY addresses for the TSECs. 38883 38884 For Linux we also fix up the device tree. 38885 38886 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 38887 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 38888 38889commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8 38890Author: Anton Vorontsov <avorontsov@ru.mvista.com> 38891Date: Thu Oct 2 18:31:59 2008 +0400 38892 38893 mpc83xx: add TSECs' HRCWH masks for MPC837x processors 38894 38895 We'll use these masks to parse TSEC modes out of HRCWH. 38896 38897 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 38898 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 38899 38900commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff 38901Author: Anton Vorontsov <avorontsov@ru.mvista.com> 38902Date: Thu Oct 2 18:31:56 2008 +0400 38903 38904 mpc83xx: serdes: add forgotten shifts for rfcks 38905 38906 The rfcks should be shifted by 28 bits left. We didn't notice the bug 38907 because we were using only 100MHz clocks (for which rfcks == 0). 38908 38909 Though, for SGMII we'll need 125MHz clocks. 38910 38911 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 38912 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 38913 38914commit 55c531984dcf933e4cd13a187a7e08e873b7ced1 38915Author: Anton Vorontsov <avorontsov@ru.mvista.com> 38916Date: Thu Oct 2 18:31:53 2008 +0400 38917 38918 mpc83xx: fix serdes setup for the MPC8378E boards 38919 38920 MPC837xE specs says that SerDes1 has: 38921 38922 — Two lanes running x1 SGMII at 1.25 Gbps; 38923 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps. 38924 38925 And for SerDes2: 38926 38927 — Two lanes running x1 PCI Express at 2.5 Gbps; 38928 — One lane running x2 PCI Express at 2.5 Gbps; 38929 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps. 38930 38931 The spec also explicitly states that PEX options are not valid for 38932 the SD1. 38933 38934 Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX, 38935 which is wrong to do. 38936 38937 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 38938 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 38939 38940commit 5c2ff323a94e27e481f70c44838d43fcd844dd46 38941Author: Anton Vorontsov <avorontsov@ru.mvista.com> 38942Date: Wed Sep 10 18:12:37 2008 +0400 38943 38944 mpc83xx: mpc8360emds: rework LBC SDRAM setup 38945 38946 Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes 38947 it difficult to use (b/c then the memory is discontinuous and 38948 there is quite big memory hole between the DDR/SDRAM regions). 38949 38950 This patch reworks LBC SDRAM setup so that now we dynamically 38951 place the LBC SDRAM near the DDR (or at 0x0 if there isn't any 38952 DDR memory). 38953 38954 With this patch we're able to: 38955 38956 - Boot without external DDR memory; 38957 - Use most "DDR + SDRAM" setups without need to support for 38958 sparse/discontinuous memory model in the software. 38959 38960 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 38961 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 38962 38963commit def0819e920b05b34b56d8b42e1e43d9b89a52d6 38964Author: Wolfgang Denk <wd@xpert.denx.de> 38965Date: Tue Oct 21 11:23:56 2008 +0200 38966 38967 FDT: don't use private kernel header files 38968 38969 On some systems (for example Fedora Core 4) U-Boot builds with the 38970 following wanrings only: 38971 38972 ... 38973 In file included from /home/wd/git/u-boot/include/libfdt_env.h:33, 38974 from fdt.c:51: 38975 /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead! 38976 38977 This patch fixes this problem. 38978 38979 Signed-off-by: Wolfgang Denk <wd@denx.de> 38980 38981commit f4d14c55504ce40287321bd63ee269e3233ee4ae 38982Author: Stefan Roese <sr@denx.de> 38983Date: Mon Oct 13 15:15:31 2008 +0200 38984 38985 ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup 38986 38987 Signed-off-by: Stefan Roese <sr@denx.de> 38988 38989commit 43cbce69d48d052574d71f50724be546d90a46a4 38990Author: Stefan Roese <sr@denx.de> 38991Date: Mon Oct 13 10:45:14 2008 +0200 38992 38993 ppc4xx: Correctly setup ranges property in ebc node 38994 38995 Previously only the NOR flash mapping was written into the ranges 38996 property of the ebc node. This patch now writes all enabled chip 38997 select areas into the ranges property. 38998 38999 Signed-off-by: Stefan Roese <sr@denx.de> 39000
39001commit d7b26d58328f137471ea97de382bfa63f7239931 39002Author: Dirk Eibach <eibach@gdsys.de> 39003Date: Wed Oct 8 15:37:50 2008 +0200 39004 39005 ppc4xx: Add GDSys neo 405EP board support 39006 39007 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 39008 Signed-off-by: Stefan Roese <sr@denx.de> 39009 39010commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c 39011Author: Niklaus Giger <niklaus.giger@netstal.com> 39012Date: Wed Oct 1 14:46:13 2008 +0200 39013 39014 ppc4xx: Update configs for Netstal boards 39015 39016 I reorganized my config files, putting the common stuff into netstal-common.h 39017 (got the idea by looking a amcc-common.h from Stefan). 39018 39019 Added stuff to boot the new powerpc linux via NFS (only tested with HCU4). 39020 39021 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 39022 Signed-off-by: Stefan Roese <sr@denx.de> 39023 39024commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15 39025Author: Adam Graham <agraham@amcc.com> 39026Date: Wed Oct 8 10:13:19 2008 -0700 39027 39028 ppc4xx: Add routine to retrieve CPU number 39029 39030 Provide a weak defined routine to retrieve the CPU number for 39031 reference boards that have multiple CPU's. Default behavior 39032 is the existing single CPU print output. Reference boards with 39033 multiple CPU's need to provide a board specific routine. 39034 See board/amcc/arches/arches.c for an example. 39035 39036 Signed-off-by: Adam Graham <agraham@amcc.com> 39037 Signed-off-by: Victor Gallardo <vgallardo@amcc.com> 39038 Signed-off-by: Stefan Roese <sr@denx.de> 39039 39040commit 59217bae40e90982ab5400d849c08af683ace036 39041Author: Adam Graham <agraham@amcc.com> 39042Date: Wed Oct 8 10:13:14 2008 -0700 39043 39044 ppc4xx: Add static support for 44x IBM SDRAM Controller 39045 39046 This patch add the capability to configure a PPC440 based IBM SDRAM 39047 Controller with static, compiled-in, values. PPC440 memory subsystem 39048 includes a Memory Queue core. 39049 39050 Signed-off-by: Adam Graham <agraham@amcc.com> 39051 Signed-off-by: Victor Gallardo <vgallardo@amcc.com> 39052 Signed-off-by: Stefan Roese <sr@denx.de> 39053 39054commit f09f09d3899017aaaa2b031bba63c271e9c48e4d 39055Author: Adam Graham <agraham@amcc.com> 39056Date: Wed Oct 8 10:12:53 2008 -0700 39057 39058 ppc4xx: Add AMCC Arches board support (dual 460GT) 39059 39060 The Arches Evaluation board is based on the AMCC 460GT SoC chip. 39061 This board is a dual processor board with each processor providing 39062 independent resources for Rapid IO, Gigabit Ethernet, and serial 39063 communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR 39064 FLASH, UART, EEPROM and temperature sensor, along with a shared debug 39065 port. The two 460GT's will communicate with each other via shared 39066 memory, Gigabit Ethernet and x1 PCI-Express. 39067 39068 Signed-off-by: Adam Graham <agraham@amcc.com> 39069 Signed-off-by: Victor Gallardo <vgallardo@amcc.com> 39070 Signed-off-by: Stefan Roese <sr@denx.de> 39071 39072commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3 39073Author: Wolfgang Denk <wd@xpert.denx.de> 39074Date: Sun Oct 19 21:54:30 2008 +0200 39075 39076 TQM8260: environment in flash instead EEPROM, baudrate 115k 39077 39078 Several customers have reported problems with the environment in 39079 EEPROM, including corrupted content after board reset. Probably the 39080 code to prevent I2C Enge Conditions is not working sufficiently. 39081 39082 We move the environment to flash now, which allows to have a backup 39083 copy plus gives much faster boot times. 39084 39085 Also, change the default console initialization to 115200 bps as used 39086 on most other boards. 39087 39088 Signed-off-by: Wolfgang Denk <wd@denx.de> 39089 39090commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8 39091Author: Kumar Gala <galak@kernel.crashing.org> 39092Date: Sun Oct 19 12:49:19 2008 -0500 39093 39094 85xx: Fix compile warning in mpc8536ds.c 39095 39096 mpc8536ds.c: In function 'is_sata_supported': 39097 mpc8536ds.c:615: warning: unused variable 'devdisr' 39098 39099 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39100 39101commit 8ed44d91c8122d00368523b0b746691c895d3b3c 39102Author: Wolfgang Denk <wd@denx.de> 39103Date: Sun Oct 19 02:35:50 2008 +0200 39104 39105 Cleanup: fix "MHz" spelling 39106 39107 Signed-off-by: Wolfgang Denk <wd@denx.de> 39108 39109commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b 39110Author: Wolfgang Denk <wd@denx.de> 39111Date: Sun Oct 19 02:35:49 2008 +0200 39112 39113 Use strmhz() to format clock frequencies 39114 39115 Signed-off-by: Wolfgang Denk <wd@denx.de> 39116 39117commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9 39118Author: Wolfgang Denk <wd@denx.de> 39119Date: Sun Oct 19 02:35:48 2008 +0200 39120 39121 strmhz(): Round numbers when printing clock frequencies 39122 39123 Round clock frequencies for printing. 39124 39125 Many boards printed off clock frequencies like 399 MHz instead of the 39126 exact 400 MHz because numberes were not rounded. This is fixed now. 39127 39128 Signed-off-by: Wolfgang Denk <wd@denx.de> 39129 39130commit 681c02d05b29c6d46093525052c74b9c4ddc8b08 39131Author: Timur Tabi <timur@freescale.com> 39132Date: Mon Oct 20 15:16:47 2008 -0500 39133 39134 85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG 39135 39136 Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot 39137 to add a comment that the correct value disagrees with the 8544 reference 39138 manual. The changelog for that commit is also wrong, as it says "bit 28" 39139 when it should be "bit 24". 39140 39141 Signed-off-by: Timur Tabi <timur@freescale.com> 39142 39143commit 360fe71e82b83e264c964c9447c537e9a1f643c8 39144Author: Heiko Schocher <hs@denx.de> 39145Date: Fri Oct 17 18:24:06 2008 +0200 39146 39147 mgcoge: add redundant environment sector 39148 39149 Signed-off-by: Heiko Schocher <hs@denx.de> 39150 39151commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a 39152Author: Heiko Schocher <hs@denx.de> 39153Date: Fri Oct 17 18:23:27 2008 +0200 39154 39155 mgsuvd: update size of environment 39156 39157 Signed-off-by: Heiko Schocher <hs@denx.de> 39158 39159commit 2e26d837f11460c0e6dede7d65424a31e0183d09 39160Author: Jason Jin <Jason.jin@freescale.com> 39161Date: Fri Oct 10 11:41:00 2008 +0800 39162 39163 Enabled the Freescale SGMII riser card on 8536DS 39164 39165 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 39166 39167commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55 39168Author: Liu Yu <yu.liu@freescale.com> 39169Date: Fri Oct 10 11:40:59 2008 +0800 39170 39171 Enabled the Freescale SGMII riser card on 8572DS 39172 39173 This patch based on Andy's work. 39174 Including command 'pixis_set_sgmii' support. 39175 39176 Signed-off-by: Liu Yu <yu.liu@freescale.com> 39177 39178commit bff188baf9427c35745356439435acf3864d4c65 39179Author: Liu Yu <yu.liu@freescale.com> 39180Date: Fri Oct 10 11:40:58 2008 +0800 39181 39182 Make pixis_set_sgmii more general to support MPC85xx boards. 39183 39184 The pixis sgmii command depend on the FPGA support on the board, some 85xx 39185 boards support SGMII riser card but did not support this command, define 39186 CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command. 39187 39188 Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits 39189 are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and 39190 PIXIS_VCFGEN1_MASK in header file for both boards. 39191 39192 Signed-off-by: Liu Yu <yu.liu@freescale.com> 39193 39194commit 5e981d683d2363204c76773941c2e9c2044c808f 39195Author: Ed Swarthout <Ed.Swarthout@freescale.com> 39196Date: Wed Oct 8 23:38:02 2008 -0500 39197 39198 Add cpu/8xxx to TAGS_SUBDIRS 39199 39200 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 39201 39202commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63 39203Author: Ed Swarthout <Ed.Swarthout@freescale.com> 39204Date: Thu Oct 9 01:25:55 2008 -0500 39205 39206 fsl_law clear enable before changing. 39207 39208 Debug sessions may have left enabled laws. 39209 Changing lawbar with an unkown enabled tgtid could cause problems. 39210 39211 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 39212 39213commit 86be510f7b5443e7e937f696bfbe037fdc740b15 39214Author: Ed Swarthout <Ed.Swarthout@freescale.com> 39215Date: Thu Oct 9 00:29:27 2008 -0500 39216 39217 mpc8572 additional end-point mode 39218 39219 mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0. 39220 Include host_agent == 0 decode for end-point determination. 39221 39222 This is not needed for the ds reference board since pcie3 will be a host 39223 in order to connect to the uli chip. Include it here as a reference for 39224 other mpc8572 boards. 39225 39226 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 39227 39228commit 6856b3d0221a838580e6bb06f61425fd7529ba93 39229Author: Ed Swarthout <Ed.Swarthout@freescale.com> 39230Date: Wed Oct 8 23:37:59 2008 -0500 39231 39232 85xx if NUM_CPUS>1, print cpu number 39233 39234 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 39235 39236commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0 39237Author: Ed Swarthout <Ed.Swarthout@freescale.com> 39238Date: Wed Oct 8 23:38:01 2008 -0500 39239 39240 pixis do not print long help if not configured 39241 39242 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 39243 39244commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5 39245Author: Andy Fleming <afleming@freescale.com> 39246Date: Tue Oct 7 08:09:50 2008 -0500 39247 39248 Have u-boot pass stashing parameters into device tree 39249 39250 Some cores don't support ethernet stashing at all, and some 39251 instances have errata. Adds 3 properties to gianfar nodes 39252 which support stashing. For now, just add this support to 39253 85xx SoCs. 39254 39255 Signed-off-by: Andy Fleming <afleming@freescale.com> 39256 39257commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7 39258Author: Haiying Wang <Haiying.Wang@freescale.com> 39259Date: Fri Oct 3 12:37:57 2008 -0400 39260 39261 Add DDR options setting on MPC8641HPCN board 39262 39263 * Add board specific parameter table to choose correct cpo, clk_adjust, 39264 write_data_delay based on board ddr frequency and n_ranks. 39265 39266 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#. 39267 39268 Signed-off-by: James Yang <James.Yang@freescale.com> 39269 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 39270 39271commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111 39272Author: Haiying Wang <Haiying.Wang@freescale.com> 39273Date: Fri Oct 3 12:37:41 2008 -0400 39274 39275 Add ddr interleaving suppport for MPC8572DS board 39276 39277 * Add board specific parameter table to choose correct cpo, clk_adjust, 39278 write_data_delay, 2T based on board ddr frequency and n_ranks. 39279 39280 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#. 39281 39282 * Set memory controller interleaving mode to bank interleaving, and disable 39283 bank(chip select) interleaving mode by default, because the default on-board 39284 DDR DIMMs are 2x512MB single-rank. 39285 39286 * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000. 39287 39288 Signed-off-by: James Yang <James.Yang@freescale.com> 39289 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 39290 39291commit 1f293b417ac6ab8e317ca2b770377ca93edf2370 39292Author: Haiying Wang <Haiying.Wang@freescale.com> 39293Date: Fri Oct 3 12:37:26 2008 -0400 39294 39295 Add debug information for DDR controller registers 39296 39297 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 39298 39299commit c9ffd839b1ada502c86f88edaf1534426b6688ce 39300Author: Haiying Wang <Haiying.Wang@freescale.com> 39301Date: Fri Oct 3 12:37:10 2008 -0400 39302 39303 Check DDR interleaving mode 39304 39305 * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and 39306 ba_intlv_ctl. 39307 * Print DDR interleaving mode information 39308 * Add doc/README.fsl-ddr to describe the interleaving setting 39309 39310 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 39311 39312commit dfb49108e4f86c2224e1f30124328b0de66ef72e 39313Author: Haiying Wang <Haiying.Wang@freescale.com> 39314Date: Fri Oct 3 12:36:55 2008 -0400 39315 39316 Pass dimm parameters to populate populate controller options 39317 39318 Because some dimm parameters like n_ranks needs to be used with the board 39319 frequency to choose the board parameters like clk_adjust etc. in the 39320 board_specific_paramesters table of the board ddr file, we need to pass 39321 the dimm parameters to the board file. 39322 39323 * move ddr dimm parameters header file from /cpu to /include directory. 39324 * add ddr dimm parameters to populate board specific options. 39325 * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function. 39326 39327 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 39328 39329commit dbbbb3abeff325855cae76e33d69d5665631443f 39330Author: Haiying Wang <Haiying.Wang@freescale.com> 39331Date: Fri Oct 3 12:36:39 2008 -0400 39332 39333 Make DDR interleaving mode work correctly 39334 39335 Fix some bugs: 39336 1. Correctly set intlv_ctl in cs_config. 39337 2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled. 39338 3. Set base_address and total memory for each ddr controller in memory 39339 controller interleaving mode. 39340 39341 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 39342 39343commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6 39344Author: Kumar Gala <galak@kernel.crashing.org> 39345Date: Mon Sep 22 23:40:42 2008 -0500 39346 39347 85xx: Enable interrupt and setexpr commands on Freescale 85xx boards 39348 39349 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39350 39351commit 7c0d4a7508d252d2d7c137eeb376814132dda30f 39352Author: Kumar Gala <galak@kernel.crashing.org> 39353Date: Mon Sep 22 14:11:11 2008 -0500 39354 39355 85xx: Improve flash remapping on MPC8572DS & MPC8536DS 39356 39357 Changing the flash from cacheable to cache-inhibited was taking a significant 39358 amount of time due to the fact that we were iterating over the full 256M of 39359 flash. Instead we can just flush the L1 d-cache and invalidate the i-cache. 39360 39361 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39362 39363commit 54e091d3b603a3332c619199ca83a07e95960da4 39364Author: Kumar Gala <galak@kernel.crashing.org> 39365Date: Mon Sep 22 14:11:10 2008 -0500 39366 39367 85xx: Export invalidate_{i,d}cache and add flush_dcache 39368 39369 Added the ability for C code to invalidate the i/d-cache's and 39370 to flush the d-cache. This allows us to more efficient change mappings 39371 from cache-able to cache-inhibited. 39372 39373 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39374 39375commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da 39376Author: Heiko Schocher <hs@denx.de> 39377Date: Fri Oct 17 16:11:52 2008 +0200 39378 39379 mgcoge, mgsuvd: extract more common code 39380 39381 in ft_blob_update () for both boards was an unneccessary 39382 repetition of code, which this patch moves in a common 39383 function for this boards. 39384 39385 Signed-off-by: Heiko Schocher <hs@denx.de> 39386 39387commit 9e299192ca9850cf725456388042a5aa5a6f3ec7 39388Author: Heiko Schocher <hs@denx.de> 39389Date: Fri Oct 17 12:15:55 2008 +0200 39390 39391 mgcoge, mgsuvd: use in_*/out_* accesors 39392 39393 Signed-off-by: Heiko Schocher <hs@denx.de> 39394 39395commit a21ca95f8b9dca22714952b348e4905ac157b5cd 39396Author: Heiko Schocher <hs@denx.de> 39397Date: Fri Oct 17 13:52:51 2008 +0200 39398 39399 mgsuvd: fix compiler warning when using soft_i2c driver 39400 39401 Signed-off-by: Heiko Schocher <hs@denx.de> 39402 39403commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b 39404Author: Heiko Schocher <hs@denx.de> 39405Date: Fri Oct 17 12:15:05 2008 +0200 39406 39407 mgsuvd: fix coding style 39408 39409 Signed-off-by: Heiko Schocher <hs@denx.de> 39410 39411commit 5f4c3137f4f051787707c548133823f1656eb508 39412Author: Heiko Schocher <hs@denx.de> 39413Date: Fri Oct 17 12:13:30 2008 +0200 39414 39415 mgcoge: Second Flash on CS5 not on CS1 39416 39417 Signed-off-by: Heiko Schocher <hs@denx.de> 39418 39419commit 76da19df5b8e186d269f29190696bd31fb6c836b 39420Author: Kumar Gala <galak@kernel.crashing.org> 39421Date: Thu Oct 16 21:52:08 2008 -0500 39422 39423 Added arch_lmb_reserve to allow arch specific memory regions protection 39424 39425 Each architecture has different ways of determine what regions of memory 39426 might not be valid to get overwritten when we boot. This provides a 39427 hook to allow them to reserve any regions they care about. Currently 39428 only ppc, m68k and sparc need/use this. 39429 39430 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39431 39432commit e02d4a9904c8f36395994c0c81469d552b82f5ea 39433Author: Heiko Schocher <hs@denx.de> 39434Date: Thu Oct 16 16:32:35 2008 +0200 39435 39436 mgcoge: added CONFIG_FIT to support the new u-boot image format 39437 39438 Signed-off-by: Heiko Schocher <hs@denx.de> 39439 39440commit 6d0f6bcf337c5261c08fabe12982178c2c489d76 39441Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 39442Date: Thu Oct 16 15:01:15 2008 +0200 39443 39444 rename CFG_ macros to CONFIG_SYS 39445 39446 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 39447 39448commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e 39449Author: Kumar Gala <galak@kernel.crashing.org> 39450Date: Mon Oct 13 14:12:55 2008 -0500 39451 39452 74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version 39453 39454 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39455 39456commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3 39457Author: Kumar Gala <galak@kernel.crashing.org> 39458Date: Tue Sep 23 10:05:02 2008 -0500 39459 39460 Expose command table search for sub-commands 39461 39462 Sub-command can benefit from using the same table and search functions 39463 that top level commands have. Expose this functionality by refactoring 39464 find_cmd() and introducing find_cmd_tbl() that sub-command processing 39465 can call. 39466 39467 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39468 39469commit f7e51b27508446f8cae3927975817137979ad5e8 39470Author: Heiko Schocher <hs@denx.de> 39471Date: Wed Oct 15 09:41:33 2008 +0200 39472 39473 mgsuvd, mgcoge: added BOOTCOUNT feature. 39474 39475 Signed-off-by: Heiko Schocher <hs@denx.de> 39476 39477commit 8f64da7f83b553889bc08400c97047998382e9d2 39478Author: Heiko Schocher <hs@denx.de> 39479Date: Wed Oct 15 09:41:00 2008 +0200 39480 39481 mgcoge, mgsuvd: added support for the IVM EEprom. 39482 39483 The EEprom contains some Manufacturerinformation, 39484 which are read from u-boot at boot time, and saved 39485 in same hush shell variables. 39486 39487 Signed-off-by: Heiko Schocher <hs@denx.de> 39488 39489commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983 39490Author: Heiko Schocher <hs@denx.de> 39491Date: Wed Oct 15 09:40:28 2008 +0200 39492 39493 hush: add showvar command for hush shell. 39494 39495 This new command shows the local variables defined in 39496 the hush shell: 39497 39498 => help showvar 39499 showvar 39500 - print values of all hushshell variables 39501 showvar name ... 39502 - print value of hushshell variable 'name' 39503 39504 Also make the set_local_var() and unset_local_var () 39505 no longer static, so it is possible to define local 39506 hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR 39507 is defined, u-boot calls hush_init_var (), where 39508 boardspecific code can define local hush shell 39509 variables at boottime. 39510 39511 Signed-off-by: Heiko Schocher <hs@denx.de> 39512 39513commit 67b23a322848d828a5e45c0567b72762bfde7abf 39514Author: Heiko Schocher <hs@denx.de> 39515Date: Wed Oct 15 09:39:47 2008 +0200 39516 39517 I2C: adding new "i2c bus" Command to the I2C Subsystem. 39518 39519 With this Command it is possible to add new I2C Busses, 39520 which are behind 1 .. n I2C Muxes. Details see README. 39521 39522 Signed-off-by: Heiko Schocher <hs@denx.de> 39523 39524commit c24853644ddd2dd2e4246b5854a93e6254a14092 39525Author: Heiko Schocher <hs@denx.de> 39526Date: Wed Oct 15 09:39:08 2008 +0200 39527 39528 mgcoge, mgsuvd: add board specific I2C deblocking mechanism. 39529 39530 As documented in doc/I2C_Edge_Conditions, adding a 39531 board specific deblocking mechanism via CFG_I2C_INIT_BOARD 39532 for the mgcoge and mgsuvd board. 39533 39534 This code was originally written by Keymile in association 39535 with Anatech and Atmel in 1998. The Code toggels the SCL 39536 until the SCA line goes to HIGH (max. 16 times). 39537 And after this, a start condition is sent. 39538 39539 This is another approach to deblock the I2C Bus. The 39540 soft I2C driver actually sends 9 clocks with SDA High, 39541 and then a stop at the end, to deblock the I2C Bus. 39542 39543 Maybe we should use the approach from Keymile as 39544 the new standard? 39545 39546 Signed-off-by: Heiko Schocher <hs@denx.de> 39547 39548commit 4ca107effebfbabac1057c39632105dacef95957 39549Author: Heiko Schocher <hs@denx.de> 39550Date: Wed Oct 15 09:38:38 2008 +0200 39551 39552 soft_i2c: Add CFG_I2C_INIT_BOARD option 39553 39554 This patch adds the option for a boardspecific 39555 I2C deblocking mechanism for the soft i2c driver. 39556 39557 Signed-off-by: Heiko Schocher <hs@denx.de> 39558 39559commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1 39560Author: Heiko Schocher <hs@denx.de> 39561Date: Wed Oct 15 09:38:07 2008 +0200 39562 39563 mgcoge, mgsuvd: add DTT (LM75) support. 39564 39565 Signed-off-by: Heiko Schocher <hs@denx.de> 39566 39567commit 8e442df438ab677057571e3ac01846bff7719bce 39568Author: Heiko Schocher <hs@denx.de> 39569Date: Wed Oct 15 09:37:34 2008 +0200 39570 39571 lm75: Make the LM75 MULTI_BUS compatible. 39572 39573 Signed-off-by: Heiko Schocher <hs@denx.de> 39574 39575commit 12f1678127c1df2b2878ba93c88948bedc060775 39576Author: Heiko Schocher <hs@denx.de> 39577Date: Wed Oct 15 09:37:04 2008 +0200 39578 39579 lm75: fix Codingstyle issues. 39580 39581 Signed-off-by: Heiko Schocher <hs@denx.de> 39582 39583commit f2202450c75ba6934b356024101500ddcde6e2a6 39584Author: Heiko Schocher <hs@denx.de> 39585Date: Wed Oct 15 09:36:33 2008 +0200 39586 39587 mgcoge, mgsuvd: added EEprom support. 39588 39589 Signed-off-by: Heiko Schocher <hs@denx.de> 39590 39591commit 9661bf9d120f760238b2a073b84f2baf05010057 39592Author: Heiko Schocher <hs@denx.de> 39593Date: Wed Oct 15 09:36:03 2008 +0200 39594 39595 mgcoge, mgsuvd: add I2C support. 39596 39597 Signed-off-by: Heiko Schocher <hs@denx.de> 39598 39599commit 98aed379586a155292efbf3209356836584b601c 39600Author: Heiko Schocher <hs@denx.de> 39601Date: Wed Oct 15 09:35:26 2008 +0200 39602 39603 soft_i2c: prevent compiler warnings if driver does not use CPU Pins. 39604 39605 This patch fixes the following warnings, when using 39606 the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx 39607 systems: 39608 39609 soft_i2c.c: In function 'send_reset': 39610 soft_i2c.c:93: warning: unused variable 'immr' 39611 soft_i2c.c: In function 'send_start': 39612 soft_i2c.c:124: warning: unused variable 'immr' 39613 soft_i2c.c: In function 'send_stop': 39614 soft_i2c.c:146: warning: unused variable 'immr' 39615 soft_i2c.c: In function 'send_ack': 39616 soft_i2c.c:171: warning: unused variable 'immr' 39617 soft_i2c.c: In function 'write_byte': 39618 soft_i2c.c:196: warning: unused variable 'immr' 39619 soft_i2c.c: In function 'read_byte': 39620 soft_i2c.c:244: warning: unused variable 'immr' 39621 39622 Signed-off-by: Heiko Schocher <hs@denx.de> 39623 39624commit 799b784aa00cb03a352847ab9f9acdde79b72d21 39625Author: Heiko Schocher <hs@denx.de> 39626Date: Wed Oct 15 09:34:45 2008 +0200 39627 39628 i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver. 39629 39630 Signed-off-by: Heiko Schocher <hs@denx.de> 39631 39632commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd 39633Author: Heiko Schocher <hs@denx.de> 39634Date: Wed Oct 15 09:34:05 2008 +0200 39635 39636 mgcoge: fix Coding Style issues. 39637 39638 Signed-off-by: Heiko Schocher <hs@denx.de> 39639 39640commit e43a27c49712203fe8848a17714330623edfb2eb 39641Author: Heiko Schocher <hs@denx.de> 39642Date: Wed Oct 15 09:33:30 2008 +0200 39643 39644 I2C: add new command i2c reset. 39645 39646 If I2C Bus is blocked (see doc/I2C_Edge_Conditions), 39647 it is not possible to get out of this, until the 39648 complete Hardware gets a reset. This new commando 39649 calls again i2c_init (and that calls i2c_init_board 39650 if defined), which will deblock the I2C Bus. 39651 39652 Signed-off-by: Heiko Schocher <hs@denx.de> 39653 Signed-off-by: Wolfgang Denk <wd@denx.de> 39654 39655commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686 39656Author: Heiko Schocher <hs@denx.de> 39657Date: Wed Oct 15 09:32:25 2008 +0200 39658 39659 mgsuvd, mgcoge: move this 2 boards in one dir. 39660 39661 There are some more extensions, which are for both boards 39662 and some more boards from this manufacturer will follow soon. 39663 39664 Signed-off-by: Heiko Schocher <hs@denx.de> 39665 Signed-off-by: Wolfgang Denk <wd@denx.de> 39666 39667commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b 39668Author: Dirk Eibach <eibach@gdsys.de> 39669Date: Wed Oct 8 13:44:27 2008 +0200 39670 39671 hwmon: Add LM63 support 39672 39673 This patch adds support for the National LM63 temperature 39674 sensor with integrated fan control. It's used on the GDSys 39675 Neo board (405EP) which will be submitted later. 39676 39677 Signed-off-by: Dirk Eibach <eibach@gdsys.de> 39678 Acked-by: Stefan Roese <sr@denx.de> 39679 39680commit 7ba890bf2f2b92831420243c058951aa831119fd 39681Author: Kyungmin Park <kmpark@infradead.org> 39682Date: Wed Oct 8 11:01:17 2008 +0900 39683 39684 Add Red Black Tree support 39685 39686 Now it's used at UBI module. Of course other modules can use it. 39687 If you want to use it, please define CONFIG_RBTREE 39688 39689 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 39690 39691commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794 39692Author: richardretanubun <richardretanubun@ruggedcom.com> 39693Date: Mon Oct 6 16:10:53 2008 -0400 39694 39695 CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c 39696 39697 Added support for CONFIG_EFI_PARTITION to ext2 commands. 39698 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com> 39699 39700commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567 39701Author: richardretanubun <richardretanubun@ruggedcom.com> 39702Date: Fri Sep 26 11:13:22 2008 -0400 39703 39704 Add support for CONFIG_EFI_PARTITION (GUID Partition Table) 39705 39706 The GUID (Globally Unique Identifier) Partition Table (GPT) is a part 39707 of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table 39708 39709 Based on linux/fs/partitions/efi.[ch] 39710 39711 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com> 39712 39713commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374 39714Author: Bartlomiej Sieka <tur@semihalf.com> 39715Date: Wed Oct 1 15:26:32 2008 +0200 39716 39717 FIT: output image load address for type 'firmware', fix message while there 39718 39719 Now that the auto-update feature uses the 'firmware' type for updates, it is 39720 useful to inspect the load address of such images. 39721 39722 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 39723 39724commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275 39725Author: Bartlomiej Sieka <tur@semihalf.com> 39726Date: Wed Oct 1 15:26:31 2008 +0200 39727 39728 Automatic software update from TFTP server 39729 39730 The auto-update feature allows to automatically download software updates 39731 from a TFTP server and store them in Flash memory during boot. Updates are 39732 contained in a FIT file and protected with SHA-1 checksum. 39733 39734 More detailed description can be found in doc/README.update. 39735 39736 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 39737 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 39738 39739commit 3f0cf51dabacc2724731c5079a60ea989103bb8f 39740Author: Bartlomiej Sieka <tur@semihalf.com> 39741Date: Wed Oct 1 15:26:27 2008 +0200 39742 39743 flash: factor out adjusting of Flash address to the end of sector 39744 39745 The upcoming automatic update feature needs the ability to adjust an 39746 address within Flash to the end of its respective sector. Factor out 39747 this functionality to a new function flash_sect_roundb(). 39748 39749 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 39750 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 39751 Signed-off-by: Stefan Roese <sr@denx.de> 39752 39753commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5 39754Author: Bartlomiej Sieka <tur@semihalf.com> 39755Date: Wed Oct 1 15:26:29 2008 +0200 39756 39757 net: Make TFTP server timeout configurable 39758 39759 There are two aspects of a TFTP transfer involving timeouts: 39760 1. timeout waiting for initial server reply after sending RRQ 39761 2. timeouts while transferring actual data from the server 39762 39763 Since the upcoming auto-update feature attempts a TFTP download during each 39764 boot, it is undesirable to have a long delay when the TFTP server is not 39765 available. Thus, this commit makes the server timeout (1.) configurable by two 39766 global variables: 39767 39768 TftpRRQTimeoutMSecs 39769 TftpRRQTimeoutCountMax 39770 39771 TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP 39772 server, TftpRRQTimeoutCountMax overrides default number of connection retries. 39773 The total delay when trying to download a file from a non-existing TFTP server 39774 is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds. 39775 39776 Timeouts during file transfers (2.) are unaffected. 39777 39778 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 39779 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 39780 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 39781 39782commit 49f3bdbba8071f56d950a9498b6cdb998b35340a 39783Author: Bartlomiej Sieka <tur@semihalf.com> 39784Date: Wed Oct 1 15:26:28 2008 +0200 39785 39786 net: express the first argument to NetSetTimeout() in milliseconds 39787 39788 Enforce millisecond semantics of the first argument to NetSetTimeout() -- 39789 the change is transparent for well-behaving boards (CFG_HZ == 1000 and 39790 get_timer() countiing in milliseconds). 39791 39792 Rationale for this patch is to enable millisecond granularity for 39793 network-related timeouts, which is needed for the upcoming automatic 39794 software update feature. 39795 39796 Summary of changes: 39797 - do not scale the first argument to NetSetTimeout() by CFG_HZ 39798 - change timeout values used in the networking code to milliseconds 39799 39800 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 39801 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 39802 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 39803 39804commit c68a05feeb88de9fcf158e67ff6423c4cc988f88 39805Author: richardretanubun <richardretanubun@ruggedcom.com> 39806Date: Mon Sep 29 18:28:23 2008 -0400 39807 39808 Adds two more ethernet interface to 83xx 39809 39810 Added as a convenience for other platforms that uses MPC8360 (has 8 UCC). 39811 Six eth interface is chosen because the platform I am using combines 39812 UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth. 39813 39814 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com> 39815 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 39816 39817commit 41410eee472b0f42e03a77f961bbc55ef58f3c01 39818Author: Haiying Wang <Haiying.Wang@freescale.com> 39819Date: Wed Sep 24 11:42:12 2008 -0500 39820 39821 Change UEC PHY interface to RGMII on MPC8568MDS 39822 39823 Change UEC phy interface from GMII to RGMII on MPC8568MDS board 39824 39825 Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed, 39826 but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable. 39827 39828 Now both UEC1 and UEC2 can work properly under u-boot. 39829 39830 It is also in consistent with the kernel setting for 8568 UEC phy interface. 39831 39832 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 39833 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 39834 39835commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192 39836Author: Wolfgang Denk <wd@denx.de> 39837Date: Sat Oct 18 21:30:31 2008 +0200 39838 39839 Prepare v2008.10 release: update CHANGELOG & Makefile 39840 39841 Signed-off-by: Wolfgang Denk <wd@denx.de> 39842 39843commit f7a35a60cf45491871a5c28e9ad24db005487857 39844Author: Heiko Schocher <hs@denx.de> 39845Date: Fri Oct 17 18:24:06 2008 +0200 39846 39847 mgcoge: add redundant environment sector 39848 39849 Signed-off-by: Heiko Schocher <hs@denx.de> 39850 Signed-off-by: Wolfgang Denk <wd@denx.de> 39851 39852commit c2537ee85954af9d036b18b644f3e18d837bf4a5 39853Author: Heiko Schocher <hs@denx.de> 39854Date: Fri Oct 17 18:23:27 2008 +0200 39855 39856 mgsuvd: update size of environment 39857 39858 Signed-off-by: Heiko Schocher <hs@denx.de> 39859 39860commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d 39861Author: Lepcha Suchit <Suchit.Lepcha@freescale.com> 39862Date: Thu Oct 16 13:38:00 2008 -0500 39863 39864 83xx NAND boot: wait for LTESR[CC] 39865 39866 At least some revisions of the 8313, and possibly other chips, do not 39867 wait for all pages of the initial 4K NAND region to be loaded before 39868 beginning execution; thus, we wait for it before branching out of the 39869 first NAND page. 39870 39871 This fixes warm reset problems when booting from NAND on 8313erdb. 39872 39873 Signed-off-by: Scott Wood <scottwood@freescale.com> 39874 Acked-by: Kim Phillips <kim.phillips@freescale.com> 39875 39876commit bf29e0ea0af03d593c64614136acc723a7a022a2 39877Author: Yuri Tikhonov <yur@emcraft.com> 39878Date: Fri Oct 17 12:54:18 2008 +0200 39879 39880 ppc4xx: PPC44x MQ initialization 39881 39882 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC 39883 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's 39884 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver). 39885 39886 Previously the appropriate initialization had been made in Linux, by the 39887 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration 39888 registers after normal operation has begun is not supported and could 39889 have unpredictable results. 39890 39891 Comment from Stefan: This patch doesn't change the resulting value of the 39892 MQ registers. It explicitly sets/clears all bits to the desired state which 39893 better documents the resulting register value instead of relying on pre-set 39894 default values. 39895 39896 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 39897 Signed-off-by: Stefan Roese <sr@denx.de> 39898 39899commit ec081c2c190148b374e86a795fb6b1c49caeb549 39900Author: Stefan Roese <sr@denx.de> 39901Date: Fri Oct 17 12:51:46 2008 +0200 39902 39903 ppc4xx: PPC44x MQ initialization 39904 39905 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC 39906 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's 39907 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver). 39908 39909 Previously the appropriate initialization had been made in Linux, by the 39910 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration 39911 registers after normal operation has begun is not supported and could 39912 have unpredictable results. 39913 39914 Comment from Stefan: This patch doesn't change the resulting value of the 39915 MQ registers. It explicitly sets/clears all bits to the desired state which 39916 better documents the resulting register value instead of relying on pre-set 39917 default values. 39918 39919 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 39920 Signed-off-by: Stefan Roese <sr@denx.de> 39921 39922commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff 39923Author: Kumar Gala <galak@kernel.crashing.org> 39924Date: Thu Oct 16 21:58:50 2008 -0500 39925 39926 85xx: Using proper I2C source clock divider for MPC8544 39927 39928 The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being 39929 bit 26, instead it should be bit 28. This caused in incorrect 39930 interpretation of the i2c_clk which is the same as the SEC clk on 39931 MPC8544. The SEC clk is controlled by cfg_sec_freq that is reported 39932 in PORDEVSR2. 39933 39934 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39935 39936commit 42653b826adb319a1df06e24ef26096b2a5d9d2a 39937Author: Kumar Gala <galak@kernel.crashing.org> 39938Date: Thu Oct 16 21:58:49 2008 -0500 39939 39940 Revert "85xx: Using proper I2C source clock divider for MPC8544" 39941 39942 This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159. 39943 39944 The fix introduced by this patch is not correct. The problem is 39945 that the documentation is not correct for the MPC8544 with regards 39946 to which bit in PORDEVSR2 is for the SEC_CFG. 39947 39948 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39949 39950commit 2179c4766bffeece98e5e92040629a96c97e230c 39951Author: Kumar Gala <galak@kernel.crashing.org> 39952Date: Wed Oct 15 10:19:41 2008 -0500 39953 39954 85xx: Fix compile warning 39955 39956 mpc8536ds.c: In function 'is_sata_supported': 39957 mpc8536ds.c:614: warning: unused variable 'devdisr' 39958 39959 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 39960 39961commit 9029b68f3f81b3013044f167ea025e836e6c8c0e 39962Author: Jason Jin <Jason.jin@freescale.com> 39963Date: Wed Oct 15 10:40:24 2008 +0800 39964 39965 Fix the function conflict in x86emu when DEBUG is on 39966 39967 The function parse_line() in common/main.c was exposed globally by commit 39968 6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same 39969 name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG. 39970 This patch fix this by renaming the function in the debug.c file. 39971 39972 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 39973 39974commit b4dbacf69a669a17487054552fc2761149dd6767 39975Author: Wolfgang Denk <wd@denx.de> 39976Date: Wed Oct 15 15:50:45 2008 +0200 39977 39978 Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3 39979 39980 Signed-off-by: Wolfgang Denk <wd@denx.de> 39981 39982commit 374b9038293d01d8744a46af9b7854a6fd99b228 39983Author: Heiko Schocher <hs@denx.de> 39984Date: Wed Oct 15 09:51:19 2008 +0200 39985 39986 Fix compiler warning in lib_ppc/board.c 39987 39988 Fix compiler warning introduced by commit 0f8cbc18 39989 39990 Signed-off-by: Heiko Schocher <hs@denx.de> 39991 Signed-off-by: Wolfgang Denk <wd@denx.de> 39992 39993commit 9724555755a6f1066636481b41f7094e0ce93a69 39994Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com> 39995Date: Thu Oct 9 10:29:14 2008 +0530 39996 39997 mpc83xx: wait till UPM completes the write to array 39998 39999 Reference manual states that MxMR[MAD] increment is the indication 40000 of write to UPM array is complete. Honour that. Also, make the dummy
40001 write explicit. 40002 40003 also fix the comment. 40004 40005 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com> 40006 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 40007 40008commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51 40009Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com> 40010Date: Wed Oct 8 18:12:20 2008 -0500 40011 40012 Remove unwanted ';' at end of define. 40013 40014 Currently this is not creating any problem. But it will result 40015 in compilation error when used as below. 40016 40017 printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2); 40018 40019 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com> 40020 40021 continuation of the theme based on git grep "^#define CFG_.*;$" include/ 40022 40023 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 40024 40025commit b2934a56650e9a6c54432f9ce6dc36757967385e 40026Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 40027Date: Mon Oct 6 10:53:59 2008 -0400 40028 40029 ARM DaVinci: Add maintainer information for SFFSDR board. 40030 40031 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 40032 40033commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc 40034Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40035Date: Sat Oct 4 19:26:16 2008 +0200 40036 40037 api: fix type mismatch 40038 40039 This patch fixes a type mismatch and thus removes a compiler 40040 warning when compiling with CONFIG_API on powerpc. 40041 40042 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40043 40044commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141 40045Author: Peter Tyser <ptyser@xes-inc.com> 40046Date: Wed Oct 1 12:25:04 2008 -0500 40047 40048 cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS 40049 40050 Original code displayed: 40051 => help i2c 40052 i2c i2c speed [speed] - show or set I2C bus speed 40053 i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device 40054 ... 40055 40056 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 40057 40058commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1 40059Author: Wolfgang Denk <wd@denx.de> 40060Date: Tue Oct 14 22:13:41 2008 +0200 40061 40062 Update CHANGELOG 40063 40064 Signed-off-by: Wolfgang Denk <wd@denx.de> 40065 40066commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd 40067Author: Jason Jin <Jason.jin@freescale.com> 40068Date: Fri Oct 10 11:41:01 2008 +0800 40069 40070 Do not init SATA when disabled on 8536DS. 40071 40072 SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the 40073 driver still try to access the SATA registers, the cpu will hangup. 40074 This patch try to fix this by reading the serdes status before the SATA 40075 initialize. 40076 40077 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 40078 Acked-by: Andy Fleming <afleming@freescale.com> 40079 40080commit 9dbc366744960013965fce8851035b6141f3b3ae 40081Author: Remy Bohmer <linux@bohmer.net> 40082Date: Fri Oct 10 10:23:22 2008 +0200 40083 40084 The PIPE_INTERRUPT flag is used wrong 40085 40086 At a lot of places in the code the PIPE_INTERRUPT flags and friends 40087 are used wrong. The wrong bits are compared to this flag resulting 40088 in wrong conditions. Also there are macros that should be used for 40089 PIPE_* flags. 40090 This patch tries to fix them all, however, I was not able to test the 40091 changes, because I do not have any of these boards. 40092 40093 Review required! 40094 40095 Signed-off-by: Remy Bohmer <linux@bohmer.net> 40096 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 40097 40098commit 48867208444cb2a82e2af9c3249e90b7ed4a1751 40099Author: Remy Bohmer <linux@bohmer.net> 40100Date: Fri Oct 10 10:23:21 2008 +0200 40101 40102 fix USB initialisation procedure 40103 40104 The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes. 40105 At some places directly 8,16,32,64 was used instead of the encoded 40106 value. Made a enum for the options to make this more clear and to help 40107 preventing similar errors in the future. 40108 40109 After fixing this bug it became clear that another bug existed where 40110 the 'pipe' is and-ed with PIPE_* flags, where it should have been 40111 'usb_pipetype(pipe)', or even better usb_pipeint(pipe). 40112 40113 Also removed the triple 'get_device_descriptor' sequence, it has no use, 40114 and Windows nor Linux behaves that way. 40115 There is also a poll going on with a timeout when usb_control_msg() fails. 40116 However, the poll is useless, because the flag will never be set on a error, 40117 because there is no code that runs in a parallel that can set this flag. 40118 Changed this to something more logical. 40119 40120 Tested on AT91SAM9261ek and compared the flow on the USB bus to what 40121 Linux is doing. There is no difference anymore in the early initialisation 40122 sequence. 40123 40124 Signed-off-by: Remy Bohmer <linux@bohmer.net> 40125 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 40126 40127commit ec4d8c1c1d94a790c1473ae8aace282b817c3123 40128Author: Nikita V. Youshchenko <yoush@cs.msu.su> 40129Date: Fri Oct 3 00:03:55 2008 +0400 40130 40131 fsl_diu: fix alignment error that caused malloc corruption 40132 40133 When aligning malloc()ed screen_base, invalid offset was added. 40134 This not only caused misaligned result (which did not cause hardware 40135 misbehaviour), but - worse - caused screen_base + smem_len to 40136 be out of malloc()ed space, which in turn caused breakage of 40137 futher malloc()/free() operation. 40138 40139 This patch fixes screen_base alignment. 40140 40141 Also this patch makes memset() that cleans framebuffer to be executed 40142 on first initialization of diu, not only on re-initialization. It looks 40143 correct to clean the framebuffer instead of displaying random garbage; 40144 I believe that was disabled only because that memset caused breakage 40145 of malloc/free described above - which no longer happens with the fix 40146 described above. 40147 40148 Signed-off-by: Nikita V. Youshchenko <yoush@debian.org> 40149 40150commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9 40151Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40152Date: Wed Sep 24 10:29:37 2008 +0200 40153 40154 api: Fix building with CONFIG_API 40155 40156 This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE. 40157 40158 USB_MAX_STOR_DEV is defined in include/usb.h, but 40159 needed in api/api_storage.c. 40160 40161 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40162 40163commit abbb90666d5ef2f500ebbedbb80ff60adc56b043 40164Author: Peter Tyser <ptyser@xes-inc.com> 40165Date: Tue Sep 23 12:39:40 2008 -0500 40166 40167 Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references 40168 40169 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 40170 40171commit 81e612014c40c922ec35488d17c504d4e9286f06 40172Author: Peter Tyser <ptyser@xes-inc.com> 40173Date: Tue Sep 23 12:38:42 2008 -0500 40174 40175 Remove CFG_EEPROM_PAGE* dependencies for temperature sensors 40176 40177 The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and 40178 CFG_EEPROM_PAGE_WRITE_BITS in various temperature 40179 sensor drivers are not necessary 40180 40181 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 40182 40183commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a 40184Author: Mike Frysinger <vapier@gentoo.org> 40185Date: Tue Oct 14 07:04:38 2008 -0400 40186 40187 cmd_spi: remove broken signed casting for display 40188 40189 Since we're working with unsigned data, you can't apply a signed pointer 40190 cast and then attempt to print the result. Otherwise you get wrong output 40191 when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF". 40192 40193 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 40194 40195commit d5fd0b49210c941de8a1fce3947ace92243ab5ca 40196Author: Mike Frysinger <vapier@gentoo.org> 40197Date: Tue Oct 14 07:05:24 2008 -0400 40198 40199 strings cmd: drop old CONFIG_CFG_STRINGS define 40200 40201 We don't need CONFIG_CFG_STRINGS anymore now that we have the define 40202 CONFIG_CMD_STRINGS and Makefile control. 40203 40204 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 40205 40206commit fecb5ade3b37f62981f2b05b621005850173aaa9 40207Author: Jason Jin <Jason.jin@freescale.com> 40208Date: Fri Sep 19 17:32:49 2008 +0800 40209 40210 Fix the NAND size overflow issue. 40211 40212 When the total size of all NAND devices exceeds 4 GiB, the size will 40213 overflow. This patch tries to fix this. 40214 40215 Note that we still have a problem when a single NAND device is bigger 40216 than 4 GiB: then the overflow would actually happen earlier, i. e. 40217 when storing the size in nand_info[].size, as nand_info[].size is an 40218 "u_int32_t". 40219 40220 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 40221 Signed-off-by: Wolfgang Denk <wd@denx.de> 40222 40223commit 30f574717277238b9014b8136c90eea77196490f 40224Author: Louis Su <louis@asix.com.tw> 40225Date: Wed Jul 9 11:01:37 2008 +0800 40226 40227 AX88180: new gigabit network driver 40228 40229 Signed-off-by: Louis Su <louis@asix.com.tw> 40230 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 40231 40232commit c9d6b6925344740ca1db2f8a6bab7921ff820de3 40233Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 40234Date: Tue Aug 19 16:07:03 2008 +0200 40235 40236 enable 10/100M at VSC8601 at tsec driver 40237 40238 Currently VSC8601 doesn't link with 10/100M partners if the 40239 EEPROM/Strapping is not set up. 40240 Setting the auto-neg register fixes this. 40241 40242 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 40243 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 40244 40245commit 702c85b0e876d587c11acdbb55738ee52acd54f4 40246Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40247Date: Tue Sep 30 15:02:53 2008 +0900 40248 40249 net: ne2000: Divided a function of NE2000 driver 40250 40251 get_prom function was used __attriute__ , but it is not enable. 40252 ax88796.o does not do link besides ne2000.o. When ld is carried 40253 out, get_prom function of ax88796.c is ignored. 40254 This problem is a thing by specifications of ld. 40255 I checked and test this patch on SuperH and MIPS. 40256 40257 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40258 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 40259 40260commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393 40261Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40262Date: Tue Oct 14 11:10:59 2008 +0900 40263 40264 sh: rsk7203: Add smc911x driver support to board config file 40265 40266 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40267 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40268 40269commit cae6f909baf86357b3c0bd01acfc414348c4d175 40270Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40271Date: Thu Oct 9 13:54:33 2008 +0900 40272 40273 sh: Fix cannot execute a stand-alone application 40274 40275 Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it. 40276 40277 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40278 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40279 40280commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef 40281Author: Ed Swarthout <Ed.Swarthout@freescale.com> 40282Date: Wed Oct 8 23:38:00 2008 -0500 40283 40284 fsl_pci_init do not scan bus when configured as an end-point 40285 40286 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 40287 Acked-by: Andy Fleming <afleming@freescale.com> 40288 40289commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5 40290Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 40291Date: Tue Sep 16 17:07:53 2008 -0400 40292 40293 ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board. 40294 40295 This is no longer necessary now that the GD_FLG_RELOC flag is set for 40296 all ARM boards. 40297 40298 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 40299 40300commit d977a57356657ba241256231efca32828a5822f9 40301Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 40302Date: Sat Sep 13 10:04:32 2008 +0200 40303 40304 Fix lzma uncompress call (image_start wrongly used instead image_len) 40305 40306 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 40307 40308commit 392438406041415fe64ab8748ec5ab5ad01d1cf7 40309Author: Nick Spence <nick.spence@freescale.com> 40310Date: Thu Aug 28 14:09:15 2008 -0700 40311 40312 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache 40313 40314 This is needed in unlock_ram_in_cache() because it is called from C and 40315 will corrupt the small data area anchor that is kept in R2. 40316 40317 lock_ram_in_cache() is modified similarly as good coding practice, but 40318 is not called from C. 40319 40320 Signed-off-by: Nick Spence <nick.spence@freescale.com> 40321 40322commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c 40323Author: Kumar Gala <galak@kernel.crashing.org> 40324Date: Tue Aug 19 15:05:34 2008 -0500 40325 40326 86xx: remove redudant code with lib_ppc/interrupts.c 40327 40328 For some reason we duplicated the majority of code in lib_ppc/interrupts.c 40329 Not know how that happened, but there is no good reason for it. 40330 40331 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why 40332 they exist. 40333 40334 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 40335 40336commit 0d01f66d235118515b5086b88f82498bc0695d6a 40337Author: Ed Swarthout <Ed.Swarthout@freescale.com> 40338Date: Thu Oct 9 01:26:36 2008 -0500 40339 40340 CFI: cfi_flash write fix for AMD legacy 40341 40342 The flash_unlock_seq requires a sector for AMD_LEGACY. 40343 Fix a retcode check typeo. 40344 40345 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 40346 Signed-off-by: Stefan Roese <sr@denx.de> 40347 40348commit 542b385a620a1783454a00424930e51895f45073 40349Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40350Date: Tue Oct 7 13:13:10 2008 +0200 40351 40352 ppc4xx: Fix USB 2.0 phy reset sequence 40353 40354 This patch fixes USB 2.0 communication issues on some DU440 boards. 40355 40356 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40357 Signed-off-by: Stefan Roese <sr@denx.de> 40358 40359commit df8c1ce11114c2260dedb5547281945f7db8fa5c 40360Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40361Date: Tue Oct 7 13:13:09 2008 +0200 40362 40363 ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board 40364 40365 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40366 Signed-off-by: Stefan Roese <sr@denx.de> 40367 40368commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2 40369Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40370Date: Tue Oct 7 13:13:08 2008 +0200 40371 40372 ppc4xx: Fix DU440 GPIO configuration 40373 40374 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40375 Signed-off-by: Stefan Roese <sr@denx.de> 40376 40377commit 35dd025c70fcc4389317db2f2a9d14795172137d 40378Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40379Date: Tue Oct 7 13:13:07 2008 +0200 40380 40381 ppc4xx: Update DU440 config 40382 40383 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 40384 Signed-off-by: Stefan Roese <sr@denx.de> 40385 40386commit f3bf9273939ffe1a60a32a2eef909097f15df56b 40387Author: Kumar Gala <galak@kernel.crashing.org> 40388Date: Wed Oct 8 15:36:39 2008 -0500 40389 40390 MPC8572DS: Fix compile warnings 40391 40392 Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following 40393 compile warnings: 40394 40395 cmd_i2c.c:112: warning: missing braces around initializer 40396 cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]') 40397 40398 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 40399 40400commit dffd2446fb041f38ef034b0fcf41e51e5e489159 40401Author: Wolfgang Grandegger <wg@grandegger.com> 40402Date: Tue Sep 30 10:55:57 2008 +0200 40403 40404 85xx: Using proper I2C source clock divider for MPC8544 40405 40406 Measurements with our MPC8544 board showed that the I2C bus frequency 40407 is wrong by a factor of 1.5. Obviously, the interpretation of the 40408 MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not 40409 correct. There seems to be an error in the 8544 RM. 40410 40411 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 40412 40413commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17 40414Author: Rafal Czubak <rcz@semihalf.com> 40415Date: Wed Oct 8 13:41:30 2008 +0200 40416 40417 FSL: Fix get_cpu_board_revision() return value. 40418 40419 get_cpu_board_revision() returned board revision based on information stored 40420 in global static struct eeprom. It should instead use one from local struct 40421 board_eeprom, to which the data is actually read from EEPROM. The bug led to 40422 system hang after printing L1 cache information on U-Boot startup. The problem 40423 was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx 40424 boards using CFG_I2C_EEPROM_CCID. 40425 40426 The change has been successfully tested on MPC8555CDS system. 40427 40428 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 40429 40430commit 747f316cca484ed627a97dd3391febabce384186 40431Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 40432Date: Tue Sep 30 20:08:49 2008 +0200 40433 40434 update uImage FIT multi documentation 40435 40436 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 40437 40438commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0 40439Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 40440Date: Tue Sep 30 20:08:36 2008 +0200 40441 40442 move README.imx31 to doc/ and merge with README.mx31 40443 40444 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 40445 40446commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96 40447Author: Guennadi Liakhovetski <lg@denx.de> 40448Date: Thu Sep 25 20:54:37 2008 +0200 40449 40450 i.MX31: switch to CFG_HZ=1000 40451 40452 Switch to the standard CFG_HZ=1000 value, while at it, minor white-space 40453 cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads, 40454 provides 2% or 0.4% precision depending on the 40455 CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s 40456 boot-delay. 40457 40458 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 40459 40460commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2 40461Author: gnusercn <gnusercn@gmail.com> 40462Date: Wed Oct 8 18:58:58 2008 +0200 40463 40464 Fix bug: in arch-arm, env_get_char dose not work fine 40465 40466 due to the arm implementation which supposed that U-Boot is in RAM 40467 when we jump to start_armboot 40468 40469 Signed-off-by: gnusercn <gnusercn@gmail.com> 40470 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 40471 40472commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f 40473Author: Adam Graham <agraham@amcc.com> 40474Date: Mon Oct 6 10:16:13 2008 -0700 40475 40476 ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change 40477 40478 After changing SDRAM_CLKTR phase value rerun the memory preload 40479 initialization sequence (INITPLR) to reset and relock the memory 40480 DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing 40481 adjustment effects the phase relationship of the internal, to the 40482 PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT. 40483 40484 Signed-off-by: Adam Graham <agraham@amcc.com> 40485 Signed-off-by: Victor Gallardo <vgallardo@amcc.com> 40486 Signed-off-by: Stefan Roese <sr@denx.de> 40487 40488commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e 40489Author: Haiying Wang <Haiying.Wang@freescale.com> 40490Date: Fri Oct 3 11:48:03 2008 -0400 40491 40492 Remove redundant #define for MPC8536DS 40493 40494 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 40495 40496commit 445a7b38308eb05b41de74165b20855db58c7ee5 40497Author: Haiying Wang <Haiying.Wang@freescale.com> 40498Date: Fri Oct 3 11:47:30 2008 -0400 40499 40500 Add ID EEPROM support for MPC8572DS 40501 40502 The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for 40503 system information like mac addresses etc. This patch enables it. 40504 40505 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 40506 40507commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540 40508Author: Haiying Wang <Haiying.Wang@freescale.com> 40509Date: Fri Oct 3 11:46:59 2008 -0400 40510 40511 Minor fixes for I2C address on MPC8572DS 40512 40513 MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1 40514 according to the board spec, and adds the 2nd i2c bus offset. 40515 40516 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 40517 40518commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c 40519Author: Jason Jin <Jason.jin@freescale.com> 40520Date: Sat Sep 27 14:40:57 2008 +0800 40521 40522 Fix the incorrect DDR clk freq reporting on 8536DS 40523 40524 On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111), 40525 The display is still sync mode DDR freq. This patch try to fix 40526 this. The display DDR freq is now the actual freq in both 40527 sync and async mode. 40528 40529 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 40530 40531commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4 40532Author: Kumar Gala <galak@kernel.crashing.org> 40533Date: Tue Oct 7 10:28:46 2008 -0500 40534 40535 85xx: Remove setting of *cache-line-size in device trees 40536 40537 ePAPR says if the *cache-block-size is the same as *cache-line-size 40538 than we don't need the *cache-line-size property. 40539 40540 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 40541 40542commit a69a42338dd25408f9fd5390a83bc501749c7e1b 40543Author: Mark Jackson <mpfj@mimc.co.uk> 40544Date: Fri Oct 3 11:48:57 2008 +0100 40545 40546 MIMC200 board now uses CONFIG_DISABLE_CONSOLE 40547 40548 Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE. 40549 Also fixed default uImage location. 40550 40551 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 40552 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 40553 40554commit cd3cb0d9269d155276b00207e3816a9347fd1c92 40555Author: Gerald Van Baren <vanbaren@cideas.com> 40556Date: Sat Oct 4 07:56:06 2008 -0400 40557 40558 libfdt: Fix error in documentation for fdt_get_alias_namelen() 40559 40560 Oops, screwed up the function name in the documenting comment for this 40561 function. Trivial correction in this patch. 40562 40563 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 40564 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 40565 40566commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c 40567Author: David Gibson <david@gibson.dropbear.id.au> 40568Date: Wed Aug 20 16:55:14 2008 +1000 40569 40570 libfdt: Add function to explicitly expand aliases 40571 40572 Kumar has already added alias expansion to fdt_path_offset(). 40573 However, in some circumstances it may be convenient for the user of 40574 libfdt to explicitly get the string expansion of an alias. This patch 40575 adds a function to do this, fdt_get_alias(), and uses it to implement 40576 fdt_path_offset(). 40577 40578 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 40579 40580commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737 40581Author: Mike Frysinger <vapier@gentoo.org> 40582Date: Thu Oct 2 01:55:38 2008 -0400 40583 40584 cfi_flash: do not reset flash when probe fails 40585 40586 The CFI flash driver starts at flash_init() which calls down into 40587 flash_get_size(). This starts by calling flash_detect_cfi(). If said 40588 function fails, flash_get_size() finishes by attempting to reset the 40589 flash. Unfortunately, it does this with an info->portwidth set to 0x10 40590 which filters down into flash_make_cmd() and that happily smashes the 40591 stack by sticking info->portwidth bytes into a cfiword_t variable that 40592 lives on the stack. On a 64bit system you probably won't notice, but 40593 killing the last 8 bytes on a 32bit system usually leads to a corrupt 40594 return address. Which is what happens on a Blackfin system. 40595 40596 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 40597 Signed-off-by: Stefan Roese <sr@denx.de> 40598 40599commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3 40600Author: Stefan Roese <sr@denx.de> 40601Date: Fri Sep 26 17:03:26 2008 +0200 40602 40603 fdt: Overwrite /chosen node in bootm if it already exists in the dtb 40604 40605 Set force parameter in fdt_chosen() call in do_bootm_linux() call. 40606 Without this, the chosen node is not overwritten if it already 40607 exists. 40608 40609 Signed-off-by: Stefan Roese <sr@denx.de> 40610 40611commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d 40612Author: Jon Loeliger <jdl@freescale.com> 40613Date: Thu Sep 25 11:02:17 2008 -0500 40614 40615 Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3. 40616 40617 Using Gcc 4.3 detected this problem: 40618 40619 ../dtc/libfdt/fdt.c: In function 'fdt_next_tag': 40620 ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not 40621 occur when assuming that (X + c) < X is always false 40622 40623 To fix the problem, treat the offset as an unsigned int. 40624 40625 The problem report and proposed fix were provided 40626 by Steve Papacharalambous <stevep@freescale.com>. 40627 40628 Signed-off-by: Jon Loeliger <jdl@freescale.com> 40629 40630commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d 40631Author: David Gibson <david@gibson.dropbear.id.au> 40632Date: Fri Aug 29 14:19:13 2008 +1000 40633 40634 libfdt: Fix bugs in fdt_get_path() 40635 40636 The current implementation of fdt_get_path() has a couple of bugs, 40637 fixed by this patch. 40638 40639 First, contrary to its documentation, on success it returns the length 40640 of the node's path, rather than 0. The testcase is correspondingly 40641 wrong, and the patch fixes this as well. 40642 40643 Second, in some circumstances, it will return -FDT_ERR_BADOFFSET 40644 instead of -FDT_ERR_NOSPACE when given insufficient buffer space. 40645 Specifically this happens when there is insufficient space even to 40646 hold the path's second last component. This behaviour is corrected, 40647 and the testcase updated to check it. 40648 40649 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 40650 40651commit 33af3e6656e84660d397b5dd95abab2dccc36f83 40652Author: Wolfgang Denk <wd@denx.de> 40653Date: Wed Oct 1 12:34:58 2008 +0200 40654 40655 TQM5200: enable support for ATAPI devices 40656 40657 Signed-off-by: Wolfgang Denk <wd@denx.de> 40658 40659commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6 40660Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 40661Date: Mon Sep 15 05:48:25 2008 +0200 40662 40663 Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM" 40664 40665 we need this due to the arm implementation which supposed that U-Boot 40666 is in RAM when we jump to start_armboot 40667 40668 This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d. 40669 in order to do it for all arm board 40670 40671 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 40672 40673commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2 40674Author: Kim Phillips <kim.phillips@freescale.com> 40675Date: Wed Sep 24 08:46:25 2008 -0500 40676 40677 mpc83xx: don't disable autoboot 40678 40679 bootdelay set to -1 'permanently' disables autobooting, even if 40680 bootcmd is specified. Change to a positive value to allow 40681 autobooting when a bootcmd is set. 40682 40683 Reported-by: Coray Tate <Coray.Tate@freescale.com> 40684 Cc: Scott Wood <scottwood@freescale.com> 40685 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 40686 40687commit 2fb29c520c42b7bfef33ea3fd1527eba64099164 40688Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40689Date: Wed Sep 24 10:42:15 2008 +0900 40690 40691 mpc83xx: Fix typo in include/mpc83xx.h 40692 40693 Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X 40694 40695 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40696 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 40697 40698commit 162c41c03179727a1d14262f703c9a8bc40231fa 40699Author: Kim Phillips <kim.phillips@freescale.com> 40700Date: Tue Sep 23 09:38:49 2008 -0500 40701 40702 mpc83xx: add h/w flash protection to board configs 40703 40704 the operating system may leave flash in a h/w locked state after writing. 40705 This allows u-boot to continue to write flash by enabling h/w unlocking 40706 by default. 40707 40708 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 40709 40710commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70 40711Author: Anton Vorontsov <avorontsov@ru.mvista.com> 40712Date: Thu Sep 11 21:35:36 2008 +0400 40713 40714 mpc83xx: spd_sdram: fix ddr sdram base address assignment bug 40715 40716 The spd_dram code shifts the base address, then masks 20 bits, but 40717 forgets to shift the base address back. Fix this by just masking the 40718 base address correctly. 40719 40720 Found this bug while trying to relocate a DDR memory at the base != 0. 40721 40722 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 40723 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 40724 40725commit 8fd4166c467a46773f80208bda1ec3b4757747bc 40726Author: Stefan Roese <sr@denx.de> 40727Date: Mon Sep 22 16:10:43 2008 +0200 40728 40729 ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup 40730 40731 Depending on the configuration jumper "SATA SELECT", U-Boot disabled 40732 either one PCIe node or the SATA node in the device tree blob. This 40733 patch removes the unnecessary and even confusing warning, when the node 40734 is not found at all. 40735 40736 Signed-off-by: Stefan Roese <sr@denx.de> 40737 40738commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9 40739Author: Remy Bohmer <linux@bohmer.net> 40740Date: Fri Sep 19 13:30:06 2008 +0200 40741 40742 Add missing device types to dev_print() in part.c 40743 40744 Signed-off-by: Remy Bohmer <linux@bohmer.net> 40745 40746commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed 40747Author: Wolfgang Denk <wd@denx.de> 40748Date: Mon Sep 22 22:23:06 2008 +0200 40749 40750 Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which 40751 eventually leads to a machine check. This change assures that DPRAM 40752 is allocated only once in that case. 40753 40754 Signed-off-by: Gary Jennejohn <garyj@denx.de> 40755 Signed-off-by: Wolfgang Denk <wd@denx.de> 40756 40757commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23 40758Author: Laurent Pinchart <laurentp@cse-semaphore.com> 40759Date: Wed Sep 17 17:57:34 2008 +0200 40760 40761 Fix Spartan-3 definitions. 40762 40763 A few Spartan-3 definitions erroneously use Spartan-3E size 40764 constants. This patch fixes them. 40765 40766 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com> 40767 40768commit 28113e1f0da4146b823ffce37680d31d5685a60b 40769Author: Laurent Pinchart <laurentp@cse-semaphore.com> 40770Date: Wed Sep 17 17:41:58 2008 +0200 40771 40772 Remove duplicate Spartan-3E definition. 40773 40774 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com> 40775 Signed-off-by: Wolfgang Denk <wd@denx.de> 40776 40777commit 5c65ecf7cd94df250b295621f3b24135cbcfe579 40778Author: Anatolij Gustschin <agust@denx.de> 40779Date: Wed Sep 17 13:46:17 2008 +0200 40780 40781 socrates: change default mtest address range 40782 40783 Running mtest command on socrates without specifying 40784 an address range crashes the board. This patch changes 40785 default mtest address range to prevent this behavior. 40786 40787 Signed-off-by: Anatolij Gustschin <agust@denx.de> 40788 40789commit d666b2d59674b5e002c0821b7ab83ec3ff90d670 40790Author: Anatolij Gustschin <agust@denx.de> 40791Date: Wed Sep 17 12:34:45 2008 +0200 40792 40793 socrates: fix crash after relocation 40794 40795 Currently U-Boot crashes after relocation to RAM. 40796 Changing the CPO value of the DDR SDRAM TIMING_CFG_2 40797 register to READ_LAT + 1 (to the value it was before 40798 conversion of socrates to new DDR code) fixes the 40799 problem. 40800 40801 Signed-off-by: Anatolij Gustschin <agust@denx.de> 40802 40803commit 562788b0a303f3528b920d81f547f5ca77ba528e 40804Author: Anatolij Gustschin <agust@denx.de> 40805Date: Wed Sep 17 11:45:51 2008 +0200 40806 40807 socrates: fix SPD EEPROM address 40808 40809 Commit be0bd8234b9777ecd63c4c686f72af070d886517 40810 changed SPD EEPROM address to 0x51 and DDR SDRAM 40811 detection stopped working. Change this address 40812 back to 0x50. 40813 40814 Signed-off-by: Anatolij Gustschin <agust@denx.de> 40815 40816commit 023824549a370bd185d7129d9a6c86f9be7b86a8 40817Author: Stefan Roese <sr@denx.de> 40818Date: Mon Sep 22 11:06:50 2008 +0200 40819 40820 Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)" 40821 40822 This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8. 40823 40824 Signed-off-by: Stefan Roese <sr@denx.de> 40825 40826commit e58c41e26cf3c8accd60311be579f452e368e97e 40827Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40828Date: Thu Sep 18 20:13:08 2008 +0900 40829 40830 usb: Fix compile warning of r8a66597-hcd 40831 40832 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40833 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 40834 40835commit b5d10a13525c07ec6374adf840d7c87553b5f189 40836Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40837Date: Thu Sep 18 19:34:36 2008 +0900 40838 40839 sh: Fix compile warning 40840 40841 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40842 40843commit 4a065abf926f128beb36d93449defa0d690e7fef 40844Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40845Date: Thu Sep 18 19:04:26 2008 +0900 40846 40847 sh: Add support watchdog for SH4A core 40848 40849 Add support watchdog for SH4A core (SH7763, SH7780 and SH7785). 40850 And fix some compile warning. 40851 40852 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40853 40854commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57 40855Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40856Date: Wed Sep 17 11:45:26 2008 +0900 40857 40858 sh: Fix typo in SH serial driver 40859 40860 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40861 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40862 40863commit 6b44a439215ba7c63f666f8099213ea4f05f2b07 40864Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40865Date: Wed Sep 17 11:08:36 2008 +0900 40866 40867 sh: Add support any page size and empty_zero_page to SH Linux uImage 40868 40869 Old U-Boot supported 4KB page size only. If this version, Linux 40870 kernel can not get command line from U-Boot. 40871 SH Linux kernel can change page size and empty_zero_page. 40872 This patch support this function and fix promlem. 40873 40874 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40875 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40876 40877commit ce9f99ddb59628f41dc534e892368a7d66dfc774 40878Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40879Date: Thu Aug 28 13:40:52 2008 +0900 40880 40881 sh: rsk7203: Add support pkt_data_pull and pkt_data_push function 40882 40883 Add function of smc911x, pkt_data_pull and pkt_data_push. 40884 40885 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 40886 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 40887 40888commit dd820b03a2f45e86e7960e26729a3b58e3dda44a 40889Author: Wolfgang Denk <wd@denx.de> 40890Date: Thu Sep 18 13:57:32 2008 +0200 40891 40892 ADS5121: fix typo in "rootpath" default setting 40893 40894 Signed-off-by: Wolfgang Denk <wd@denx.de> 40895 40896commit c9e8436b10cca53fca4904ecbadcd6231ad72c38 40897Author: Remy Bohmer <linux@bohmer.net> 40898Date: Tue Sep 16 14:55:44 2008 +0200 40899 40900 USB layer of U-Boot causes USB protocol errors while using USB memory sticks 40901 40902 There are several differences between Linux, Windows and U-boot for initialising the 40903 USB devices. While analysing the behaviour of U-boot it turned out that U-boot does 40904 things really different, and some are wrong (compared to the USB standard). 40905 40906 This patch fixes some errors: 40907 * The NEW_init procedure that was already in the code is good, while the old procedure 40908 is wrong. See code comments for more info. 40909 * On a Control request the data returned by the device can be more than 8 bytes, while 40910 the host limits it to 8 bytes. This caused the host to generate a DataOverrun error. 40911 This results in a lot of USB sticks not being recognised, and the transmission ended 40912 frequently with a CTL:TIMEOUT Error. 40913 * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure. 40914 40915 Signed-off-by: Remy Bohmer <linux@bohmer.net> 40916 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 40917 40918commit 6f5794a6f78b313231256958fd73673c6aacc116 40919Author: Remy Bohmer <linux@bohmer.net> 40920Date: Tue Sep 16 14:55:43 2008 +0200 40921 40922 Refactoring parts of the common USB OHCI code 40923 40924 This patch refactors some large routines of the USB OHCI code by 40925 making some routines smaller and more readable which helps 40926 debugging and understanding the code. (Makes the code looks 40927 somewhat more like the Linux implementation.) 40928 40929 Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant) 40930 40931 Signed-off-by: Remy Bohmer <linux@bohmer.net> 40932 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 40933 40934commit be19d324edc1a1d7f393d24e10d164cd94c91a00 40935Author: Remy Bohmer <linux@bohmer.net> 40936Date: Tue Sep 16 14:55:42 2008 +0200 40937 40938 Fix for USB sticks not working on ARM while using GCC 4.x compilers 40939 40940 The GCC-compiler makes an optimisation error while optimising the routine 40941 usb_set_maxpacket(). This should be fixed in the compiler in the first place, 40942 but there lots of compilers out there that makes this error, that it is 40943 probably wiser to workaround it in U-boot itself. 40944 40945 What happens is that the register r3 is used as loop-counter 'i', but gets 40946 overwritten later on. From there it starts using register r3 for several other 40947 things and the assembler code is becoming a big mess. This is clearly a compiler bug. 40948 40949 This error occurs on at least several versions of Code Sourcery Lite compilers 40950 for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other 40951 compilers, while compiling for armv4t, or armv5te with Os, O1 and O2. 40952 40953 We work around it by splitting up this routine in 2 parts, and making sure that 40954 the split out part is NOT inlined any longer. This will make GCC spit out assembler 40955 that do not show this problem. Another possibility is to adapt the Makefile to stop 40956 optimisation for the complete file. I think this solution is nicer. 40957 40958 Signed-off-by: Remy Bohmer <linux@bohmer.net> 40959 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 40960 40961commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670 40962Author: Wolfgang Denk <wd@denx.de> 40963Date: Wed Sep 17 10:17:55 2008 +0200 40964 40965 Coding style cleanup; update CHANEGLOG 40966 40967 Signed-off-by: Wolfgang Denk <wd@denx.de> 40968 40969commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8 40970Author: Victor Gallardo <vgallardo@amcc.com> 40971Date: Tue Sep 16 06:59:13 2008 -0700 40972 40973 ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB) 40974 40975 Signed-off-by: Victor Gallardo <vgallardo@amcc.com> 40976 Signed-off-by: Adam Graham <agraham@amcc.com> 40977 Signed-off-by: Stefan Roese <sr@denx.de> 40978 40979commit ce47eb402c5e29a025399dc282246414fc492940 40980Author: Peter Tyser <ptyser@xes-inc.com> 40981Date: Tue Sep 16 10:04:47 2008 -0500 40982 40983 Support for multiple SGMII/TBI interfaces for TSEC ethernet 40984 40985 Fix TBI PHY accesses to use the proper offset in CPU register space. The 40986 previous code would incorrectly access the TBI PHY by reading/writing to CPU 40987 register space at the same location as would be used to access external PHYs. 40988 40989 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 40990 Acked-by: Andy Fleming <afleming@freescale.com> 40991 40992commit 7c803be2eb3cae245dedda438776e08fb122250f 40993Author: Wolfgang Denk <wd@denx.de> 40994Date: Tue Sep 16 18:02:19 2008 +0200 40995 40996 TQM8xx: Fix CFI flash driver support for all TQM8xx based boards 40997 40998 After switching to using the CFI flash driver, the correct remapping 40999 of the flash banks was forgotten. 41000
41001 Also, some boards were not adapted, and the old legacy flash driver 41002 was not removed yet. 41003 41004 Signed-off-by: Wolfgang Denk <wd@denx.de> 41005 41006commit c0d2f87d6c450128b88e73eea715fa3654f65b6c 41007Author: Wolfgang Denk <wd@denx.de> 41008Date: Sun Sep 14 00:59:35 2008 +0200 41009 41010 Prepare v2008.10-rc2 41011 41012 Signed-off-by: Wolfgang Denk <wd@denx.de> 41013 41014commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7 41015Author: Wolfgang Denk <wd@denx.de> 41016Date: Sat Sep 13 02:23:05 2008 +0200 41017 41018 Coding style cleanup, update CHANGELOG 41019 41020 Signed-off-by: Wolfgang Denk <wd@denx.de> 41021 41022commit 0c32565f536609d78feef35c88bbc39d3ac53a73 41023Author: Peter Tyser <ptyser@xes-inc.com> 41024Date: Wed Sep 10 09:18:34 2008 -0500 41025 41026 Update mailing list email and archive addresses 41027 41028 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 41029 41030commit fb661ea444ae61de60520f66ae84cdb5dd5a3246 41031Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de> 41032Date: Thu Sep 11 15:40:01 2008 +0200 41033 41034 85xx: socrates: autoprobe Lime chip 41035 41036 This patch is an attempt to implement autoprobing for the Lime 41037 presence on the bus. 41038 Configure GPCM for Lime CS2 and try to access chip ID registers. 41039 Second read atempt delivers register values if the chip is present. 41040 41041 Signed-off-by: Anatolij Gustschin <agust@denx.de> 41042 41043commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5 41044Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de> 41045Date: Thu Sep 11 15:40:01 2008 +0200 41046 41047 85xx: socrates: Add support for new image format. 41048 41049 Signed-off-by: Detlev Zundel <dzu@denx.de> 41050 41051commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8 41052Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 41053Date: Thu Sep 11 17:28:18 2008 +0900 41054 41055 sh: Fix compile error for r2dplus 41056 41057 netdev.h was not include by r2dplus. 41058 41059 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 41060 41061commit 56844a22b76c719e600047e23b80465a44d76abd 41062Author: Heiko Schocher <hs@denx.de> 41063Date: Thu Sep 11 08:11:23 2008 +0200 41064 41065 powerpc: Fix bootm to boot up again with a Ramdisk 41066 41067 Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen, 41068 and this stopped Linux from booting with a Ramdisk. This patch fixes 41069 this, by deleting the useless dummy mem reservation. 41070 41071 When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now 41072 added to of_size, so we dont need anymore a dummy mem reservation. 41073 41074 I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based 41075 system (=0x44 bytes) and rounded it up to 0x80). 41076 41077 Signed-off-by: Heiko Schocher <hs@denx.de> 41078 Acked-by: Kumar Gala <galak@kernel.crashing.org> 41079 41080commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7 41081Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 41082Date: Mon Sep 8 02:46:13 2008 +0200 41083 41084 Add support for LZMA uncompression algorithm. 41085 41086 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 41087 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41088 41089commit 0008b6d968160abe2bfd936493f3a516a7c8da20 41090Author: Anton Vorontsov <avorontsov@ru.mvista.com> 41091Date: Fri Jun 27 23:04:20 2008 +0400 41092 41093 fsl_elbc_nand: ecclayout cleanups 41094 41095 This patch deletes oobavail assignments, they're calculated by the nand 41096 core code in nand_scan_tail, plus current oobavail values are wrong for 41097 the LP NANDs. 41098 41099 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 41100 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com> 41101 Signed-off-by: Scott Wood <scottwood@freescale.com> 41102 41103commit 8f42bf1c393d53a70c2545e9f329d11c46d74794 41104Author: Anton Vorontsov <avorontsov@ru.mvista.com> 41105Date: Fri Jun 27 23:04:13 2008 +0400 41106 41107 fsl_elbc_nand: implement support for flash-based BBT 41108 41109 This patch implements support for flash-based BBT for chips working 41110 through ELBC NAND controller, so that NAND core will not have to re-scan 41111 for bad blocks on every boot. 41112 41113 Because ELBC controller may provide HW-generated ECCs we should adjust 41114 bbt pattern and bbt version positions in the OOB free area. 41115 41116 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 41117 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com> 41118 Signed-off-by: Scott Wood <scottwood@freescale.com> 41119 41120commit 97ae023648e764f794ffb9c52da109d6caf09c47 41121Author: Anton Vorontsov <avorontsov@ru.mvista.com> 41122Date: Fri Jun 27 23:04:04 2008 +0400 41123 41124 fsl_elbc_nand: fix OOB workability for large page NAND chips 41125 41126 For large page chips, nand_bbt is looking into OOB area, and checking 41127 for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be 41128 reserved for bbt means. 41129 41130 But ELBC driver is specifying ecclayout so that oobfree area starts at 41131 offset 1, so only one byte left for the bbt purposes. 41132 41133 This causes problems with any OOB users, namely JFFS2: after first mount 41134 JFFS2 will fill all OOBs with "erased marker", so OOBs will contain: 41135 41136 OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff 41137 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 41138 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 41139 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 41140 41141 And on the next boot, NAND core will rescan for bad blocks, then will 41142 see "0xff 0x19" pattern, and will mark all blocks as bad ones. 41143 41144 To fix the issue we should implement our own bad block pattern: just one 41145 byte at OOB start. Though, this will work only for x8 chips. For x16 41146 chips two bytes must be checked. Since ELBC driver does not support x16 41147 NANDs (yet), we're safe for now. 41148 41149 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 41150 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com> 41151 Signed-off-by: Scott Wood <scottwood@freescale.com> 41152 41153commit 7238ada313057a85409485b8ee21515dc10c07a5 41154Author: Wolfgang Denk <wd@denx.de> 41155Date: Fri Sep 12 13:52:21 2008 +0200 41156 41157 MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s 41158 41159 Signed-off-by: Wolfgang Denk <wd@denx.de> 41160 41161commit b18410e508a12ba0a177dfc2a386857c806fa96d 41162Author: Stefan Roese <sr@denx.de> 41163Date: Thu Sep 11 13:05:56 2008 +0200 41164 41165 ppc4xx: Enable device tree (FDT) support in zeus board port 41166 41167 Signed-off-by: Stefan Roese <sr@denx.de> 41168 41169commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b 41170Author: Stefan Roese <sr@denx.de> 41171Date: Wed Sep 10 16:53:47 2008 +0200 41172 41173 ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports 41174 41175 This patch fixes a problem introdiced with patch 41176 bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by 41177 initdram()]. 41178 41179 The boards affected are: 41180 - PCI405 41181 - PPChameleonEVB 41182 - quad100hd 41183 - taihu 41184 - zeus 41185 41186 Signed-off-by: Stefan Roese <sr@denx.de> 41187 41188commit 61737c59a3285f6fadf96a5836879898c04ec28d 41189Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41190Date: Thu Sep 11 19:41:26 2008 -0400 41191 41192 ppc4xx: Add .gitignore file to xilinx-ppc440 boards 41193 41194 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41195 Signed-off-by: Stefan Roese <sr@denx.de> 41196 41197commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf 41198Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41199Date: Thu Sep 11 19:41:25 2008 -0400 41200 41201 ppc4xx: Fix compilation of v5fx30teval_flash 41202 41203 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41204 Signed-off-by: Stefan Roese <sr@denx.de> 41205 41206commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404 41207Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41208Date: Wed Sep 10 17:44:30 2008 -0400 41209 41210 ppc4xx: Fix in-tree build for ppc440-generic boards 41211 41212 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41213 Signed-off-by: Stefan Roese <sr@denx.de> 41214 41215commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416 41216Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41217Date: Fri Sep 12 02:20:47 2008 +0200 41218 41219 ARM: synchronize mach-types.h with linux 2.6.27-rc6 41220 41221 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41222 41223commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c 41224Author: Jens Scharsig <esw@bus-elektronik.de> 41225Date: Fri Sep 12 02:20:47 2008 +0200 41226 41227 at91rm9200: fix errors with CONFIG_CMD_I2C_TREE 41228 41229 This patch prevents linker error on AT91RM9200 boards, if 41230 CONFIG_CMD_I2_TREE is set. 41231 It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function. 41232 41233 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de> 41234 41235commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4 41236Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 41237Date: Fri Sep 12 02:20:47 2008 +0200 41238 41239 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c 41240 41241 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c 41242 41243 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 41244 41245commit 03db53335c8eba656a7c44d1555b1a4514383e33 41246Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 41247Date: Fri Sep 12 02:20:46 2008 +0200 41248 41249 make: Remove redundant __ARM__ addition when cross-compiling on *BSD 41250 41251 __ARM__ is given by arm_config.mk automatically. 41252 41253 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 41254 41255commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4 41256Author: Claudio Scordino <claudio@evidence.eu.com> 41257Date: Fri Sep 12 02:20:46 2008 +0200 41258 41259 Fix MACH_TYPE for the AT91RM9200DK board. 41260 41261 Signed-off-by: Claudio Scordino <claudio@evidence.eu.com> 41262 41263commit 274737e5eb25b2bcd3af3a96da923effd543284f 41264Author: Andrew Dyer <adyer@righthandtech.com> 41265Date: Fri Sep 12 02:20:46 2008 +0200 41266 41267 i.mx change get_timer(base) to return time since base 41268 41269 This patch changes get_timer() for i.MX to return the time since 41270 'base' instead of the time since the counter was at zero. 41271 41272 Symptom seen is flash timeout errors when erasing or programming a 41273 sector using the common cfi flash code. 41274 41275 Signed-off-by: Andrew Dyer <adyer@righthandtech.com> 41276 41277commit 48fed40575b3e8eae960eb0141509ddd9a73012a 41278Author: Andrew Dyer <adyer@righthandtech.com> 41279Date: Fri Sep 12 02:20:46 2008 +0200 41280 41281 i.MX use u-boot baud rate and don't assume UART master clock 41282 41283 1) Change the i.MX serial driver to use the baud rate set in the 41284 u-boot environment 41285 41286 2) don't assume a 16MHz value for PERCLK1 in baud rate calculations 41287 41288 3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write 41289 one to clear" like other status bits in the reg.) 41290 41291 Signed-off-by: Andrew Dyer <adyer@righthandtech.com> 41292 41293commit 6e1551a870d360805b9d172dc56d935064abe71d 41294Author: Andrew Dyer <adyer@righthandtech.com> 41295Date: Fri Sep 12 02:20:46 2008 +0200 41296 41297 arm920t fix constant error in start.S 41298 41299 Code in cpu/arm920t/start.S will die with a compilation error if 41300 CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for 41301 the ARM sub instruction. Change the code so that each is subtracted 41302 independently to avoid the error. 41303 41304 Signed-off-by: Andrew Dyer <adyer@righthandtech.com> 41305 41306commit b23253835f871cd9bd8e955b9a971d18a7d4ff56 41307Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 41308Date: Fri Sep 12 02:20:40 2008 +0200 41309 41310 ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h 41311 41312 - Correct Invalid #define of MPUTIM_PTV_MASK for 41313 omap1510 & omap730 register definition 41314 41315 MPUTIM_PTV_MASK is defined as 41316 #define MPUTIM_PTV_MASK (0x7<<PTV_BIT) 41317 41318 while it should have been 41319 #define MPUTIM_PTV_MASK (0x7<<MPUTIM_PTV_BIT) 41320 41321 - Below Patch corrects the same 41322 41323 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in> 41324 41325commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf 41326Author: Adrian Filipi <adrian.filipi@eurotech.com> 41327Date: Fri Jul 18 11:52:02 2008 -0400 41328 41329 Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v. 41330 41331 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com> 41332 41333commit eb16135df20535b0d19969f50fb5bd17f95e9c25 41334Author: Guennadi Liakhovetski <lg@denx.de> 41335Date: Thu Aug 28 12:25:11 2008 +0200 41336 41337 i.MX31: document timer precision option 41338 41339 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 41340 41341commit 1a6337b01351b82a45b0defa76f08744511c580b 41342Author: Magnus Lilja <lilja.magnus@gmail.com> 41343Date: Fri Aug 29 10:36:18 2008 +0200 41344 41345 i.MX31: Make the SPI bus and chip select configurable for MC13783 41346 41347 The i.MX31 has three SPI buses and each bus has several chip selects 41348 and the MC13783 chip can be connected to any of these. The current 41349 RTC driver for MC13783 is hardcoded for CSPI2/SS2. 41350 41351 This patch makes make MC13783 SPI bus and chip select configurable 41352 via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS. 41353 41354 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 41355 41356commit 8c4ebec25b21e355b8488698ec1594da9701fff4 41357Author: Magnus Lilja <lilja.magnus@gmail.com> 41358Date: Fri Aug 29 10:36:17 2008 +0200 41359 41360 i.MX31: Add reset_timer() and modify get_timer_masked(). 41361 41362 This patch adds the reset_timer() function (needed by nand_base.c) and 41363 modifies the get_timer_masked() to work in the same way as the omap24xx 41364 function. 41365 41366 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 41367 41368commit deeec4991a55de243787002ede24d2331d234fc8 41369Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41370Date: Wed Sep 10 22:48:09 2008 +0200 41371 41372 ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER 41373 41374 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41375 41376commit a3a08c0cedd329edf5256e1d6b2bad0fca002725 41377Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41378Date: Wed Sep 10 22:48:09 2008 +0200 41379 41380 bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label 41381 41382 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41383 41384commit 0e8d158664a913392cb01fb11a948d83f72e105e 41385Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41386Date: Wed Sep 10 22:48:06 2008 +0200 41387 41388 rename CFG_ENV macros to CONFIG_ENV 41389 41390 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41391 41392commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df 41393Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41394Date: Wed Sep 10 22:48:05 2008 +0200 41395 41396 nvedit: rename error comment to CONFIG_ENV_IS_IN_ 41397 41398 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41399 41400commit b64b775e7546ed138df360ceb3a71ee358cb9a01 41401Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41402Date: Wed Sep 10 22:48:05 2008 +0200 41403 41404 cmd_mem: Move conditional compilation to Makefile 41405 41406 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41407 41408commit 8a40fb148efa442d6526eac46a2001e4c64d28ff 41409Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41410Date: Wed Sep 10 22:48:05 2008 +0200 41411 41412 move cmd_get_data_size to command.c 41413 41414 add CMD_DATA_SIZE macro to enable it 41415 41416 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41417 41418commit 507641d2491980531932b9f25dab37fe5e6c3a1a 41419Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41420Date: Wed Sep 10 22:48:04 2008 +0200 41421 41422 env_flash: Move conditional compilation to Makefile 41423 41424 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41425 41426commit 5a1aceb0689e2f731491838970884a673ef7e7d3 41427Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41428Date: Wed Sep 10 22:48:04 2008 +0200 41429 41430 rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH 41431 41432 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41433 41434commit 7d9b5bae5ba558c7464d89d033aca04acaf01172 41435Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41436Date: Wed Sep 10 22:48:03 2008 +0200 41437 41438 cleanup use of CFG_ENV_IS_IN_FLASH 41439 41440 - #if CFG_ENV_IS_IN_FLASH 41441 - #if (CFG_ENV_IS_IN_FLASH == 1) 41442 - #define CFG_ENV_IS_IN_FLASH 0 41443 41444 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41445 41446commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46 41447Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41448Date: Wed Sep 10 22:48:01 2008 +0200 41449 41450 rename environment.c in env_embedded.c to reflect is functionality 41451 41452 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41453 41454commit c0878af6e32f0fd8e13a6ca315b9add64441115a 41455Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41456Date: Wed Sep 10 22:48:01 2008 +0200 41457 41458 env_nowhere: Move conditional compilation to Makefile 41459 41460 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41461 41462commit 93f6d72544da4510a146bc4c93d609b0116cde37 41463Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41464Date: Wed Sep 10 22:48:00 2008 +0200 41465 41466 rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE 41467 41468 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41469 41470commit 2556ef78113b5f089dfcac5da90bf31dd568397b 41471Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41472Date: Wed Sep 10 22:48:00 2008 +0200 41473 41474 env_sf: Move conditional compilation to Makefile 41475 41476 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41477 41478commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3 41479Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41480Date: Wed Sep 10 22:48:00 2008 +0200 41481 41482 rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH 41483 41484 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41485 41486commit 55c5f49910ec8225347aa1d211352a84de6649b4 41487Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41488Date: Wed Sep 10 22:48:00 2008 +0200 41489 41490 env_onenand: Move conditional compilation to Makefile 41491 41492 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41493 41494commit 9656138ff1a34d4c4768db6b490deffc40ee674b 41495Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41496Date: Wed Sep 10 22:47:59 2008 +0200 41497 41498 rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND 41499 41500 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41501 41502commit 957a0e69575683efd70ace147746bbb3d8e7c501 41503Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41504Date: Wed Sep 10 22:47:59 2008 +0200 41505 41506 env_nvram: Move conditional compilation to Makefile 41507 41508 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41509 41510commit 9314cee6917444ab88bd4e758da7a30975120187 41511Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41512Date: Wed Sep 10 22:47:59 2008 +0200 41513 41514 rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM 41515 41516 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41517 41518commit 06f61354397911a4c121dfa51b6ccbf7e300d48b 41519Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41520Date: Wed Sep 10 22:47:59 2008 +0200 41521 41522 env_nand: Move conditional compilation to Makefile 41523 41524 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41525 41526commit 51bfee192099206a4397f15f3b93516e01f58ab0 41527Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41528Date: Wed Sep 10 22:47:58 2008 +0200 41529 41530 rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND 41531 41532 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41533 41534commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9 41535Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41536Date: Wed Sep 10 22:47:58 2008 +0200 41537 41538 env_dataflash: Move conditional compilation to Makefile 41539 41540 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41541 41542commit 057c849c45b9ee19df8ff3acdeee66be52819962 41543Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41544Date: Wed Sep 10 22:47:58 2008 +0200 41545 41546 rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH 41547 41548 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41549 41550commit d1034bc8db60fa6bd419328baf6a75cb0645cee8 41551Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41552Date: Wed Sep 10 22:47:52 2008 +0200 41553 41554 cmd_eeprom: Move conditional compilation to Makefile 41555 41556 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41557 41558commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb 41559Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41560Date: Fri Sep 5 09:19:54 2008 +0200 41561 41562 env_eeprom: Move conditional compilation to Makefile 41563 41564 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41565 41566commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3 41567Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41568Date: Fri Sep 5 09:19:30 2008 +0200 41569 41570 rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM 41571 41572 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41573 41574commit 32628c5008105a732212003d83b75f05e5243bb2 41575Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41576Date: Sat Aug 30 23:54:58 2008 +0200 41577 41578 cmd_mac: Move conditional compilation to Makefile 41579 41580 finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM 41581 start in commit ad8f8687b78c3e917b173f038926695383c55555 41582 41583 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41584 41585commit e5648acab153f0f429bfc714902c5aaa7879f71b 41586Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41587Date: Sat Aug 30 23:47:41 2008 +0200 41588 41589 cmd_fdc: Move conditional compilation to Makefile 41590 41591 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41592 41593commit 2d02d91d530e831f2dab228085963fc1d5b71cb0 41594Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41595Date: Sat Aug 30 23:47:38 2008 +0200 41596 41597 common/Makefile: add core command section 41598 41599 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41600 41601commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e 41602Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41603Date: Sat Aug 30 23:29:57 2008 +0200 41604 41605 cmd_vfd: Move conditional compilation to Makefile 41606 41607 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41608 41609commit 6644641d072aee3087da129d8443187196a4d8a9 41610Author: Scott Wood <scottwood@freescale.com> 41611Date: Wed Sep 10 11:48:49 2008 -0500 41612 41613 delta, zylonite: Update nand_oobinfo to nand_ecclayout. 41614 41615 This is part of the switch to newer upstream MTD code. 41616 41617 Signed-off-by: Scott Wood <scottwood@freescale.com> 41618 41619commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4 41620Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 41621Date: Sat Aug 30 17:06:55 2008 -0400 41622 41623 ARM DaVinci: Fix broken HW ECC for large page NAND. 41624 41625 Based on original patch by Bernard Blackham <bernard@largestprime.net> 41626 41627 U-boot's HW ECC support for large page NAND on Davinci is completely 41628 broken. Some kernels, such as the 2.6.10 one supported by 41629 MontaVista for DaVinci, rely upon this broken behaviour as they 41630 share the same code for ECCs. In the existing scheme, error 41631 detection *might* work on large page, but error correction 41632 definitely does not. Small page ECC correction works, but the 41633 format is not compatible with the mainline git kernel. 41634 41635 This patch adds ECC code that matches what is currently in the 41636 Davinci git repository (since NAND support was added in 2.6.24). 41637 This makes the ECC and OOB layout written by u-boot compatible with 41638 Linux for both small page and large page devices and fixes ECC 41639 correction for large page devices. 41640 41641 The old behaviour can be restored by defining the macro 41642 CFG_DAVINCI_BROKEN_ECC, which is undefined by default. 41643 41644 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 41645 Acked-by: Sergey Kubushyn <ksi@koi8.net> 41646 Signed-off-by: Scott Wood <scottwood@freescale.com> 41647 41648commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836 41649Author: Heiko Schocher <hs@denx.de> 41650Date: Wed Sep 10 11:15:28 2008 +0200 41651 41652 muas3001: update BR4 settings 41653 41654 Also set up the port pins for using I2C. 41655 41656 Signed-off-by: Heiko Schocher <hs@denx.de> 41657 41658commit 3591293509e0c0bcf244b0f974775bff2e25697e 41659Author: Petri Lehtinen <petri.lehtinen@inoi.fi> 41660Date: Wed Sep 10 09:43:49 2008 +0300 41661 41662 autoscr: Fix one-character lines and non-newline terminated scripts 41663 41664 When not using hush, the autoscr command now executes lines that are 41665 only one character long. It also runs the last line of scripts even if 41666 it does not end in a newline. 41667 41668 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi> 41669 41670commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985 41671Author: Victor Gallardo <vgallardo@amcc.com> 41672Date: Tue Sep 9 15:13:29 2008 -0700 41673 41674 ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR 41675 41676 On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands 41677 and glacier. 41678 41679 Signed-off-by: Victor Gallardo <vgallardo@amcc.com> 41680 41681commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03 41682Author: Heiko Schocher <hs@denx.de> 41683Date: Mon Sep 8 10:21:11 2008 +0200 41684 41685 muas3001: added support for the LM75 sensor. 41686 41687 Signed-off-by: Heiko Schocher <hs@denx.de> 41688 41689commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb 41690Author: Heiko Schocher <hs@denx.de> 41691Date: Mon Sep 8 10:20:19 2008 +0200 41692 41693 muas3001: activate WDT for the muas3001 board. 41694 41695 Signed-off-by: Heiko Schocher <hs@denx.de> 41696 41697commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e 41698Author: Heiko Schocher <hs@denx.de> 41699Date: Mon Sep 8 10:19:36 2008 +0200 41700 41701 muas3001: added 64MB SDRAM autodetection. 41702 41703 Signed-off-by: Heiko Schocher <hs@denx.de> 41704 41705commit 5251469943895de4bb9a04d5053352cc22acb7d5 41706Author: Andrew Klossner <andrew@cesa.opbu.xerox.com> 41707Date: Thu Aug 21 07:12:26 2008 -0700 41708 41709 Fix printf errors under -DDEBUG 41710 41711 Fix printf format-string/arg mismatches under -DDEBUG. 41712 41713 These warnings occur with DEBUG defined for a platform using 41714 cpu/mpc85xx. Users of other architectures can unearth similar 41715 problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right 41716 after "CFLAGS += $(call cc-option,-fno-stack-protector)". 41717 41718 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com> 41719 Signed-off-by: Andy Fleming <afleming@freescale.com> 41720 41721commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7 41722Author: Wolfgang Denk <wd@denx.de> 41723Date: Tue Sep 9 23:55:18 2008 +0200 41724 41725 Update CHANGELOG, prepare 2008-10-rc1 release 41726 41727 Signed-off-by: Wolfgang Denk <wd@denx.de> 41728 41729commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676 41730Author: Kumar Gala <galak@kernel.crashing.org> 41731Date: Mon Sep 8 08:51:29 2008 -0500 41732 41733 85xx: Ensure timebase is zero on secondary cores 41734 41735 The e500um says the timebase is volatile out of reset. To ensure 41736 TB sync works we need to make sure its zero. 41737 41738 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 41739 41740commit 54b4ab3c961a2012a1c2a09c259a6343323ec551 41741Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41742Date: Tue Sep 9 22:18:24 2008 +0200 41743 41744 bootm_load_os: fix load_end debug message 41745 41746 print load_end value not pointer 41747 41748 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41749 41750commit 1d9af0be764960e6cc1c093e97176c3542796820 41751Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41752Date: Tue Sep 9 22:18:23 2008 +0200 41753 41754 bootm: enable fdt support only on ppc, m68k and sparc 41755 41756 ...as done in image.c 41757 41758 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41759 41760commit 748b5274e76f81df85cfcffaffedc323678d0623 41761Author: Markus Heidelberg <markus.heidelberg@web.de> 41762Date: Tue Sep 9 18:51:05 2008 +0200 41763 41764 common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY) 41765 41766 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de> 41767 41768commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c 41769Author: Markus Heidelberg <markus.heidelberg@web.de> 41770Date: Tue Sep 9 17:31:46 2008 +0200 41771 41772 gitignore: add tags files and Vim swap file 41773 41774 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de> 41775 41776commit 1d9b67b23fca6a25154333733204339802510720 41777Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 41778Date: Tue Sep 9 17:52:47 2008 +0900 41779 41780 add board_eth_init() for sh7785lcr board 41781 41782 Fix the problem that cannot work RTL8169 on sh7785lcr board. 41783 41784 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 41785 41786commit 7b7a869a8ba3bd6d9bffb748c91232141330f514 41787Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 41788Date: Wed Aug 6 16:08:41 2008 -0500 41789 41790 mtd: SPI Flash: Support the STMicro Flash 41791 41792 Add MTD SPI Flash support for M25P16, M25P20, M25P32, 41793 M25P40, M25P64, M25P80, M25P128. 41794 41795 Signed-off-by: Jason McMullan <mcmullan@netapp.com> 41796 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 41797 41798commit 4bc07c368076560ed7fa4c9f987c71a8521488a9 41799Author: Wolfgang Denk <wd@denx.de> 41800Date: Tue Sep 9 17:55:31 2008 +0200 41801 41802 trab: fix build problem after change to use do_div() 41803 41804 We must link with libgeneric now. 41805 41806 Signed-off-by: Wolfgang Denk <wd@denx.de> 41807 41808commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011 41809Author: Ryan CHEN <ryan.chen@st.com> 41810Date: Wed Aug 20 13:00:17 2008 -0400 41811 41812 Correct drv_usb_kbd_init function 41813 41814 The patch is that check if usb_get_dev_index() function return valid 41815 pointer. If valid, continue. Otherwise return -1. 41816 41817 Signed-off-by: Ryan Chen <ryan.chen@st.com> 41818 Acked-by: Markus Klotzbuecher <mk@denx.de> 41819 41820commit eba1f2fc75f128a9a6c1328d786996a93fd7a707 41821Author: Remy Bohmer <linux@bohmer.net> 41822Date: Wed Aug 20 11:22:02 2008 +0200 41823 41824 Make usb-stop() safe to call multiple times in a row. 41825 41826 A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38) 41827 enabled the usb_stop() command in common/cmd_bootm.c which was 41828 not enabled for some time, because no board did actually set the 41829 CFG_CMD_USB flag. So, now the usb_stop() is executed before 41830 loading the linux kernel. 41831 41832 However, the usb_ohci driver hangs up (at least on AT91SAM) if the 41833 driver is stopped twice (e.g. the peripheral clock is stopped on AT91). 41834 If some other piece of code calls usb_stop() before the bootm command, 41835 this command will hangup the system during boot. 41836 (usb start and stop is typically used while booting from usb memory stick) 41837 41838 But, stopping the usb stack twice is useless anyway, and a flag already 41839 existed that kept track on the usb_init()/usb_stop() calls. 41840 So, we now check if the usb stack is really started before we stop it. 41841 41842 This problem is now fixed in both the upper as low-level layer. 41843 41844 Signed-off-by: Remy Bohmer <linux@bohmer.net> 41845 Acked-by: Markus Klotzbuecher <mk@denx.de> 41846 41847commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67 41848Author: Wolfgang Denk <wd@denx.de> 41849Date: Tue Sep 9 16:55:47 2008 +0200 41850 41851 Makefile: fix bug introduced by commit 47ffd6c2 41852 41853commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0 41854Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41855Date: Tue Sep 9 10:00:33 2008 -0400 41856 41857 ppc4xx: ppc440-generic-ALL: Fix out of tree build v2 41858 41859 This patch solves the problems compiling ml507, v5fx30teval and 41860 ppc440-generic out of tree. 41861 41862 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41863 41864commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb 41865Author: NÃcolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br> 41866Date: Thu Sep 4 15:35:46 2008 -0300 41867 41868 Fix dev_print when called from usb_stor_info (usb storage command) 41869 41870 Fix output of the usb storage command. It was printing "Device 0: not 41871 available" because IF_TYPE_USB was not included into the switch 41872 statement. 41873 41874 Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br> 41875 41876commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de 41877Author: Bartlomiej Sieka <tur@semihalf.com> 41878Date: Tue Sep 9 12:58:16 2008 +0200 41879 41880 FIT: make iminfo check hashes of all images in FIT, return 1 on failed check 41881 41882 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 41883 41884commit 919f550dc11a13abf01c6bc713c968de790b8d7c 41885Author: Bartlomiej Sieka <tur@semihalf.com> 41886Date: Tue Sep 9 12:58:15 2008 +0200 41887 41888 FIT: add ability to check hashes of all images in FIT, improve output 41889 41890 - add function fit_all_image_check_hashes() that verifies if all 41891 hashes of all images in the FIT are valid 41892 - improve output of fit_image_check_hashes() when the hash check fails 41893 41894 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 41895 41896commit 1de1fa408967cef6804bb046b904114519bb36f0 41897Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41898Date: Mon Sep 8 20:54:39 2008 +0200 41899 41900 qemu_mips: Update linux bootm to support dynamic cmdline 41901 41902 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41903 41904commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764 41905Author: Peter Tyser <ptyser@xes-inc.com> 41906Date: Mon Sep 8 14:56:49 2008 -0500 41907 41908 Add support for booting of INTEGRITY operating system uImages 41909 41910 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 41911 41912commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a 41913Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41914Date: Mon Sep 8 21:01:29 2008 +0200 41915 41916 mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start" 41917 41918 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 41919 41920commit 9ba2e2c8191353d75b2d535e672a125be7b84c03 41921Author: Kumar Gala <galak@kernel.crashing.org> 41922Date: Mon Sep 8 13:57:12 2008 -0500 41923 41924 Remove support for booting ARTOS images 41925 41926 Pantelis Antoniou stated: 41927 AFAIK, it is still used but the products using PPC are long gone. 41928 Nuke it plz (from orbit). 41929 41930 So remove it since it cleans up a usage of env_get_char outside of 41931 the environment code. 41932 41933 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 41934 41935commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1 41936Author: Wolfgang Denk <wd@denx.de> 41937Date: Tue Sep 9 15:45:18 2008 +0200 41938 41939 Makefile: compile and link each module just once 41940 41941 Several source files need to be compiled and linked when one or more 41942 config options are selected. To allow for easy selection in the 41943 Makefiles yet to avoild multiple compilation (which costs build time) 41944 and especially multiple linking (which causes errors), we use 41945 "COBJS = $(sort COBJS-y)" which eliminates duplicates. 41946 41947 By courtesy of Detlev Zundel who suggested this approach. 41948 41949 Signed-off-by: Wolfgang Denk <wd@denx.de> 41950 41951commit 48d0192fe869948fef14b460b5f0c85bca933693 41952Author: Andreas Engel <andreas.engel@ericsson.com> 41953Date: Mon Sep 8 14:30:53 2008 +0200 41954 41955 Moved conditional compile into Makefile 41956 41957 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com> 41958 41959commit 20c9226cb8cab08a111ee73db04e62d943ee0c97 41960Author: Andreas Engel <andreas.engel@ericsson.com> 41961Date: Mon Sep 8 10:17:31 2008 +0200 41962 41963 Merged serial_pl010.c and serial_pl011.c. 41964 41965 They only differ in the init function. 41966 This also adds the missing watchdog support for the PL011. 41967 41968 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com> 41969 41970commit 0817d688f307ee2c0598e79175c94a40ce90337b 41971Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41972Date: Sun Sep 7 17:10:27 2008 -0400 41973 41974 Remove gap fill in srec object v2 41975 41976 SREC files do not need gap fill: The load address is specified in the 41977 file. On the other hand, it can't be avoided in a .bin object. It has 41978 no information about memory location. 41979 41980 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 41981 41982commit 1dc306931ca5ce87f13916fa7165b052d3aa714f 41983Author: Markus Heidelberg <markus.heidelberg@web.de> 41984Date: Sun Sep 7 20:18:27 2008 +0200 41985 41986 README: fix missing subdirectory in the documentation 41987 41988 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de> 41989 41990commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd 41991Author: Graeme Russ <graeme.russ@gmail.com> 41992Date: Sun Sep 7 07:08:42 2008 +1000 41993 41994 Update i386 code (sc520_cdp) 41995 41996 Attempt to bring i386 / sc520 inline with master 41997 41998 Signed-off-by: Graeme Russ <graeme.russ@gmail.com> 41999 42000commit 5608692104efa8d56df803dc79ea41ac3607eee5
42001Author: Guennadi Liakhovetski <lg@denx.de> 42002Date: Thu Sep 4 13:01:49 2008 +0200 42003 42004 fw_env: add NAND support 42005 42006 Add support for environment in NAND with automatic NOR / NAND recognition, 42007 including unaligned environment, bad-block skipping, redundant environment 42008 copy. 42009 42010 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 42011 42012commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca 42013Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42014Date: Tue Sep 9 09:50:24 2008 +0200 42015 42016 ppc4xx: Fix out-of-tree building of CPCI405 variants 42017 42018 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42019 Acked-by: Stefan Roese <sr@denx.de> 42020 42021commit 59f630588e3fdbd698a0a2798e52a8924e899563 42022Author: Sergei Poselenov <sposelenov@emcraft.com> 42023Date: Fri Aug 15 15:42:11 2008 +0200 42024 42025 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx. 42026 42027 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 42028 42029commit e64987a892353f3d49eb242d997820ef8f538912 42030Author: Anatolij Gustschin <agust@denx.de> 42031Date: Fri Aug 15 15:42:13 2008 +0200 42032 42033 85xx: socrates: Enable Lime support. 42034 42035 This patch adds Lime GDC support together with support for the PWM 42036 backlight control through the w83782d chip. The reset pin of the 42037 latter is attached to GPIO, so we need to reset it in 42038 early_board_init_r. 42039 42040 Signed-off-by: Anatolij Gustschin <agust@denx.de> 42041 42042commit 3e79b588b5199f35016f178fc0d5d1266382097f 42043Author: Detlev Zundel <dzu@denx.de> 42044Date: Fri Aug 15 15:42:12 2008 +0200 42045 42046 85xx: Socrates: Major code update. 42047 42048 - Update the local bus ranges in the FDT for Linux for the various 42049 devices connected to the local bus via chip-select. 42050 42051 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies 42052 lower than 66 MHz and uses I/O accessor functions consequently. 42053 42054 - UPM data update. 42055 42056 - Update of default environment and configuration. Use I2C multibus 42057 as we do have two I2C buses. Also enable sdram and ext2 commands. 42058 42059 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 42060 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 42061 Signed-off-by: Detlev Zundel <dzu@denx.de> 42062 42063commit e8d18541c6ceab821f75faab031740b33fdbfa4b 42064Author: Timur Tabi <timur@freescale.com> 42065Date: Fri Jul 18 16:52:23 2008 +0200 42066 42067 Update Freescale 85xx boards to sys_eeprom.c 42068 42069 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID 42070 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale 42071 86xx boards already use sys_eeprom.c, so this patch migrates the remaining 42072 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted. 42073 42074 Signed-off-by: Timur Tabi <timur@freescale.com> 42075 42076commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af 42077Author: Wolfgang Denk <wd@denx.de> 42078Date: Tue Sep 9 10:08:02 2008 +0200 42079 42080 lib_ppc/interrupts.c: make board_show_activity() a weak function 42081 42082 This allows to use show_activity() without having to 42083 define an empty board_show_activity() function. 42084 42085 Signed-off-by: Wolfgang Denk <wd@denx.de> 42086 42087commit fe876787f8743883ce58fed61525eaa2f34da4c5 42088Author: Wolfgang Denk <wd@denx.de> 42089Date: Tue Sep 9 10:06:44 2008 +0200 42090 42091 stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions 42092 42093 Signed-off-by: Wolfgang Denk <wd@denx.de> 42094 42095commit 965de106ba8900372c8b16dc60d5acab7f925e38 42096Author: Wolfgang Denk <wd@denx.de> 42097Date: Tue Sep 9 10:03:47 2008 +0200 42098 42099 NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions 42100 42101 Signed-off-by: Wolfgang Denk <wd@denx.de> 42102 42103commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9 42104Author: Sergei Poselenov <sposelenov@emcraft.com> 42105Date: Fri Aug 15 15:42:11 2008 +0200 42106 42107 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx. 42108 42109 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 42110 42111commit 36241ca29d4804a1006fb3f26069effda5202581 42112Author: Anatolij Gustschin <agust@denx.de> 42113Date: Fri Aug 15 15:42:13 2008 +0200 42114 42115 85xx: socrates: Enable Lime support. 42116 42117 This patch adds Lime GDC support together with support for the PWM 42118 backlight control through the w83782d chip. The reset pin of the 42119 latter is attached to GPIO, so we need to reset it in 42120 early_board_init_r. 42121 42122 Signed-off-by: Anatolij Gustschin <agust@denx.de> 42123 42124commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb 42125Author: Detlev Zundel <dzu@denx.de> 42126Date: Fri Aug 15 15:42:12 2008 +0200 42127 42128 85xx: Socrates: Major code update. 42129 42130 - Update the local bus ranges in the FDT for Linux for the various 42131 devices connected to the local bus via chip-select. 42132 42133 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies 42134 lower than 66 MHz and uses I/O accessor functions consequently. 42135 42136 - UPM data update. 42137 42138 - Update of default environment and configuration. Use I2C multibus 42139 as we do have two I2C buses. Also enable sdram and ext2 commands. 42140 42141 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 42142 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 42143 Signed-off-by: Detlev Zundel <dzu@denx.de> 42144 42145commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c 42146Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42147Date: Tue Sep 9 01:22:39 2008 +0200 42148 42149 disk-on-chip: remove duplicate doc_probe declaration 42150 42151 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42152 42153commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819 42154Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42155Date: Tue Sep 9 00:59:40 2008 +0200 42156 42157 onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list 42158 42159 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42160 42161commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75 42162Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42163Date: Tue Sep 9 00:59:39 2008 +0200 42164 42165 rs5c372: fix rtc_set prototype 42166 42167 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42168 42169commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7 42170Author: Sergei Poselenov <sposelenov@emcraft.com> 42171Date: Thu Aug 14 14:08:28 2008 +0200 42172 42173 ARM: fix warning: target CPU does not support interworking 42174 42175 This patch fixes warnings like this: 42176 42177 start.S:0: warning: target CPU does not support interworking 42178 42179 which come from some ARM cross compilers and are caused by hard-coded 42180 (with "--with-cpu=arm9" configuration option) ARM targets (which 42181 support ARM Thumb instructions), while the ARM target selected from 42182 the command line (with "-march=armv4") doesn't support Thumb 42183 instructions. 42184 42185 This warning is issued by the compiler regardless of the real use of 42186 the Thumb instructions in code. 42187 42188 To fix this problem, we use options according to compiler version 42189 being used. 42190 42191 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 42192 Signed-off-by: Wolfgang Denk <wd@denx.de> 42193 42194commit 4265c35fbcb248e58179007621d61d32d0b3b82a 42195Author: Sergei Poselenov <sposelenov@emcraft.com> 42196Date: Thu Aug 14 14:08:28 2008 +0200 42197 42198 ARM: Use do_div() instead of division for "long long". 42199 42200 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 42201 Signed-off-by: Wolfgang Denk <wd@denx.de> 42202 42203commit 8febd13c69cb68652577d1a9fcbde954bf784155 42204Author: Timur Tabi <timur@freescale.com> 42205Date: Fri Jul 18 16:52:23 2008 +0200 42206 42207 Update Freescale 85xx boards to sys_eeprom.c 42208 42209 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID 42210 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale 42211 86xx boards already use sys_eeprom.c, so this patch migrates the remaining 42212 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted. 42213 42214 Signed-off-by: Timur Tabi <timur@freescale.com> 42215 42216commit 1055171ed05b7c4885737463d52b8d6c013bcb5d 42217Author: Wolfgang Denk <wd@denx.de> 42218Date: Mon Sep 8 23:26:22 2008 +0200 42219 42220 lib_arm/bootm.c: fix compile warnings 42221 42222 bootm.c:128: warning: label 'error' defined but not used 42223 bootm.c:65: warning: unused variable 'ret' 42224 42225 Signed-off-by: Wolfgang Denk <wd@denx.de> 42226 42227commit 2e3c867d0a63c563a51e65b776973b008f16cec5 42228Author: Wolfgang Denk <wd@denx.de> 42229Date: Mon Sep 8 22:46:42 2008 +0200 42230 42231 ml507: fix out of tree build problem 42232 42233 Signed-off-by: Wolfgang Denk <wd@denx.de> 42234 42235commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d 42236Author: Wolfgang Denk <wd@denx.de> 42237Date: Mon Sep 8 22:10:28 2008 +0200 42238 42239 common/cmd_bootm.c: fix printf() format warnings 42240 42241 Signed-off-by: Wolfgang Denk <wd@denx.de> 42242 42243commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726 42244Author: Wolfgang Denk <wd@denx.de> 42245Date: Mon Sep 8 22:37:45 2008 +0200 42246 42247 BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings 42248 42249 missing doc_probe() prototype. 42250 42251 Signed-off-by: Wolfgang Denk <wd@denx.de> 42252 42253commit 2c5e3cc4994897d364b148942ff23e47783198f6 42254Author: Wolfgang Denk <wd@denx.de> 42255Date: Mon Sep 8 21:28:14 2008 +0200 42256 42257 mk48t59: fix compile problem introduced by commit d1e23194 42258 42259 Signed-off-by: Wolfgang Denk <wd@denx.de> 42260 42261commit 5ff889349d2ace13f10c9335e09365fcec8247cc 42262Author: Stefan Roese <sr@denx.de> 42263Date: Mon Sep 8 14:11:12 2008 +0200 42264 42265 ppc4xx: Move ppc4xx specific prototypes to ppc4xx header 42266 42267 This patch moves some 4xx specific prototypes out of include common.h 42268 to a ppc4xx specific header. 42269 42270 Signed-off-by: Stefan Roese <sr@denx.de> 42271 42272commit ac53ee8318678190bf3c68da477a84a657d86fb0 42273Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42274Date: Fri Sep 5 15:34:04 2008 +0200 42275 42276 ppc4xx: Update CPCI405(AB) configuration 42277 42278 This patch add FDT support and command line editing capabilities 42279 for CPCI405 and CPCI405AB boards. 42280 42281 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42282 Signed-off-by: Stefan Roese <sr@denx.de> 42283 42284commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94 42285Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42286Date: Fri Sep 5 15:34:03 2008 +0200 42287 42288 ppc4xx: Cleanup CPCI405 linker script 42289 42290 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42291 Signed-off-by: Stefan Roese <sr@denx.de> 42292 42293commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf 42294Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42295Date: Fri Sep 5 15:34:02 2008 +0200 42296 42297 ppc4xx: Update CPCI405 variants handling 42298 42299 This patch replaces the BOARD_REVISION variable in include/config.mk 42300 by a using a temporary include file in the platform directory. 42301 42302 The former way does not work anymore and the latter is also used by 42303 some other boards. 42304 42305 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42306 Signed-off-by: Stefan Roese <sr@denx.de> 42307 42308commit f071f01fd09e9bf1cf09de37a7416aacce71bae1 42309Author: Stefan Roese <sr@denx.de> 42310Date: Mon Sep 8 10:01:48 2008 +0200 42311 42312 ppc4xx: Remove CONFIG_CS8952_PHY define 42313 42314 Since this define is only used on one board that was never really in 42315 production, removing this compile time option doesn't hurt and makes 42316 the code more readable. 42317 42318 Signed-off-by: Stefan Roese <sr@denx.de> 42319 42320commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5 42321Author: Stefan Roese <sr@denx.de> 42322Date: Fri Sep 5 14:11:40 2008 +0200 42323 42324 ppc4xx: Fix compilation warning for PIP405 42325 42326 This patch fixes a compilation warning for the PIP405 board. It moves the 42327 #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't 42328 occur anymore. I am a little unsure if this #ifdef is at the correct 42329 place now or if it could be removed completely. This needs to get 42330 tested on the PIP405 board. 42331 42332 Signed-off-by: Stefan Roese <sr@denx.de> 42333 42334commit 725b53ac61f4df3026b8f6489ef0080fd27d3816 42335Author: Stefan Roese <sr@denx.de> 42336Date: Fri Sep 5 14:09:09 2008 +0200 42337 42338 ppc4xx: Fix compilation warning for canyonlands & glacier 42339 42340 Signed-off-by: Stefan Roese <sr@denx.de> 42341 42342commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5 42343Author: Kumar Gala <galak@kernel.crashing.org> 42344Date: Fri Sep 5 14:40:29 2008 -0500 42345 42346 Fix compiler warning in mpc8xxx ddr code 42347 42348 ctrl_regs.c: In function 'compute_fsl_memctl_config_regs': 42349 ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function 42350 ctrl_regs.c:523: note: 'caslat' was declared here 42351 42352 Add a warning in DDR1 case if cas_latency isn't a value we know about. 42353 42354 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 42355 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42356 42357commit d1e2319414ea5218ba801163e4530ecf2dfcbf36 42358Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42359Date: Mon Sep 1 23:06:23 2008 +0200 42360 42361 rtc: allow rtc_set to return an error and use it in cmd_date 42362 42363 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42364 42365commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2 42366Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42367Date: Mon Sep 1 01:16:33 2008 +0200 42368 42369 ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER 42370 42371 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42372 42373commit 6b971c73f182248ce103503d74fbc0100bb8c8b7 42374Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 42375Date: Sun Aug 31 05:37:04 2008 +0900 42376 42377 config.mk: Move arch-specific condition to $(ARCH)_config.mk 42378 42379 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 42380 42381commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1 42382Author: Kumar Gala <galak@kernel.crashing.org> 42383Date: Fri Aug 29 19:08:29 2008 -0500 42384 42385 Prevent crash if random/invalid ramdisks are passed to bootm 42386 42387 Adds returning an error from the ramdisk detection code if 42388 its not a real ramdisk (invalid). There is no reason we can't 42389 just return back to the console if we detect an invalid 42390 ramdisk or CRC error. 42391 42392 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 42393 42394commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef 42395Author: Anatolij Gustschin <agust@denx.de> 42396Date: Fri Aug 29 21:04:45 2008 +0200 42397 42398 Prevent crash if random DTB address is passed to bootm 42399 42400 This patch adds bootm_start() return value check. If 42401 error status is returned, we do not proceed further to 42402 prevent board reset or crash as we still can recover 42403 at this point. 42404 42405 Signed-off-by: Anatolij Gustschin <agust@denx.de> 42406 42407commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8 42408Author: Andrew Dyer <adyer@righthandtech.com> 42409Date: Fri Aug 29 12:30:39 2008 -0500 42410 42411 clean up some #if !defined() in drivers/video/cfb_console.c 42412 42413 rearrange some #if !defined() / #else / #endif statements to remove 42414 the negative logic. 42415 42416 Signed-off-by: Andrew Dyer <adyer@righthandtech.com> 42417 42418commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33 42419Author: Kyungmin Park <kmpark@infradead.org> 42420Date: Fri Aug 29 09:02:20 2008 +0900 42421 42422 apollon: use the last memory area for u-boot 42423 42424 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 42425 42426commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07 42427Author: Heiko Schocher <hs@denx.de> 42428Date: Thu Aug 28 13:50:42 2008 +0200 42429 42430 TQM8272: move NAND part in seperate File 42431 42432 I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver, 42433 because I have no longer access to the hardware. 42434 42435 Signed-off-by: Heiko Schocher <hs@denx.de> 42436 42437commit 584f979f7ee914e32d408739cbdd2c4457ec18b8 42438Author: Heiko Schocher <hs@denx.de> 42439Date: Thu Aug 28 13:48:36 2008 +0200 42440 42441 TQM8272: Fix compiling error for the TQM8272 board. 42442 42443 Fix compile problems caused by 42444 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b 42445 42446 Signed-off-by: Heiko Schocher <hs@denx.de> 42447 42448commit 1a7f8ccec981648ccd38fca2535490582eee08e6 42449Author: Kyungmin Park <kmpark@infradead.org> 42450Date: Wed Aug 27 14:45:20 2008 +0900 42451 42452 Add JFFS2 command support on OneNAND 42453 42454 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 42455 42456commit f5c3ba79788b0e39baab7026d374fe375dd1a43f 42457Author: Mark Jackson <mpfj@mimc.co.uk> 42458Date: Mon Aug 25 19:21:30 2008 +0100 42459 42460 Allow console input to be disabled 42461 42462 Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE. 42463 42464 When CONFIG_DISABLE_CONSOLE is defined, setting 42465 GD_FLG_DISABLE_CONSOLE disables all console input and output. 42466 42467 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 42468 42469commit 2b22d608f370565c87f55928b524207031419c11 42470Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 42471Date: Wed Jul 30 12:39:29 2008 +0200 42472 42473 loads: allow negative offsets 42474 42475 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 42476 42477commit e90fb6afab2c0c074dfb67bacb4de179eb188a24 42478Author: Yuri Tikhonov <yur@emcraft.com> 42479Date: Thu Sep 4 11:19:05 2008 +0200 42480 42481 USB EHCI: reset root hub 42482 42483 Some of multi-function USB controllers (e.g. ISP1562) allow root hub 42484 resetting only via EHCI registers. So, this patch adds the 42485 corresponding kind of reset to OHCI's hc_reset() if the newly 42486 introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates 42487 board). 42488 42489 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 42490 Acked-by: Markus Klotzbuecher <mk@denx.de> 42491 42492commit 5875d358f025c1b042d8a0f08384b756de7256c9 42493Author: Yuri Tikhonov <yur@emcraft.com> 42494Date: Fri Aug 15 15:42:09 2008 +0200 42495 42496 RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get(). 42497 42498 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 42499 42500commit 3e3c026ed746a284c6f0ef139b26d859939de7e9 42501Author: Stefan Roese <sr@denx.de> 42502Date: Fri Sep 5 10:47:46 2008 +0200 42503 42504 devices: Use list_add_tail() instead of list_add() to register a device 42505 42506 This patch fixes a problem spotted on Glacier/Canyonlands (and most 42507 likely lots of other board ports), that no serial output was seen 42508 after console initialization in console_init_r(). This is because the 42509 last added console device was used instead of the first added. 42510 42511 This patch fixes this problem by using list_add_tail() instead of 42512 list_add() to register a device. This way the first added console 42513 is used again. 42514 42515 Signed-off-by: Stefan Roese <sr@denx.de> 42516 42517commit 78d78236896d62bb8ca7302af38d8f1493eb2651 42518Author: Victor Gallardo <vgallardo@amcc.com> 42519Date: Thu Sep 4 23:49:36 2008 -0700 42520 42521 ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY 42522 42523 This patch adds GPCS, SGMII and M88E1112 PHY support 42524 for the AMCC PPC460GT/EX processors. 42525 42526 Signed-off-by: Victor Gallardo <vgallardo@amcc.com> 42527 Signed-off-by: Stefan Roese <sr@denx.de> 42528 42529commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765 42530Author: Adam Graham <agraham@amcc.com> 42531Date: Wed Sep 3 12:26:59 2008 -0700 42532 42533 ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines 42534 42535 Signed-off-by: Adam Graham <agraham@amcc.com> 42536 Signed-off-by: Stefan Roese <sr@denx.de> 42537 42538commit 075d0b81e896e8735ae26372cd384f87cbd24e41 42539Author: Adam Graham <agraham@amcc.com> 42540Date: Wed Sep 3 12:26:28 2008 -0700 42541 42542 ppc4xx: IBM Memory Controller DDR autocalibration routines 42543 42544 Alternate SDRAM DDR autocalibration routine that can be generically used 42545 for any PPC4xx chips that have the IBM SDRAM Controller core allowing for 42546 support of more DIMM/memory chip vendors and gets the DDR autocalibration 42547 values which give the best read latency performance (SDRAM0_RDCC.[RDSS]). 42548 42549 Two alternate SDRAM DDR autocalibration algoritm are provided in this patch, 42550 "Method_A" and "Method_B". DDR autocalibration Method_A scans the full range 42551 of possible PPC4xx SDRAM Controller DDR autocalibration values and takes a 42552 lot longer to run than Method_B. Method_B executes in the same amount of time 42553 as the currently existing DDR autocalibration routine, i.e. 1 second or so. 42554 Normally Method_B is used and it is set as the default method. 42555 42556 The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM 42557 Controller registers.[bit-field]: 42558 1) SDRAM0_RQDC.[RQFD] 42559 2) SDRAM0_RFDC.[RFFD] 42560 42561 This alternate PPC4xx DDR autocalibration code calibrates the following 42562 IBM SDRAM Controller registers.[bit-field]: 42563 42564 1) SDRAM0_WRDTR.[WDTR] 42565 2) SDRAM0_CLKTR.[CKTR] 42566 3) SDRAM0_RQDC.[RQFD] 42567 4) SDRAM0_RFDC.[RFFD] 42568 42569 and will also use the calibrated settings of the above four registers that 42570 produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS] 42571 register.[bit-field]. 42572 42573 Signed-off-by: Adam Graham <agraham@amcc.com> 42574 Signed-off-by: Stefan Roese <sr@denx.de> 42575 42576commit e07f4a8033b6270b8103049adb6456f660ff4a89 42577Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 42578Date: Mon Sep 1 13:09:39 2008 -0400 42579 42580 ppc44x: Unification of virtex5 pp440 boards 42581 42582 This patch provides an unificated way of handling xilinx v5 ppc440 boards. 42583 42584 It unificates 3 different things: 42585 42586 1) Source code 42587 A new board called ppc440-generic has been created. This board includes 42588 a generic tlb initialization (Maps the whole memory into virtual) and 42589 defines board_pre_init, checkboard, initdram and get_sys_info weakly, 42590 so, they can be replaced by specific functions. 42591 42592 If a new board needs to redefine any of the previous functions 42593 (specific initialization) it can create a new directory with the 42594 specific initializations needed. (see the example ml507 board). 42595 42596 2) Configuration file 42597 Common configurations are located under configs/xilinx-ppc440.h, this 42598 header file interpretes the xparameters file generated by EDK and 42599 configurates u-boot in correspondence. Example: if there is a Temac, 42600 allows CMD_CONFIG_NET 42601 Specific configuration are located under specific configuration file. 42602 (see the example ml507 board) 42603 42604 3) Makefile 42605 Some work has been done in order to not duplicate work in the Main 42606 Makefile. Please see the attached code. 42607 42608 In order to support new boards they can be implemented in the next way: 42609 42610 a) Simple Generic Board (90% of the time) 42611 Using EDK generates a new xparameters.h file, replace 42612 ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config 42613 && make 42614 42615 b) Simple Boards with special u-boot parameters (9 % of the time) 42616 Create a new file under configs for it (use ml507.h as example) and 42617 change your paramaters. Create a new Makefile paragraph and compile 42618 42619 c) Complex boards (1% of the time) 42620 Create a new folder for the board, like the ml507 42621 42622 Finally, it adds support for the Avnet FX30T Evaluation board, following 42623 the new generic structure: 42624 42625 Cheap board by Avnet for evaluating the Virtex5 FX technology. 42626 42627 This patch adds support for: 42628 - UartLite 42629 - 16MB Flash 42630 - 64MB RAM 42631 42632 Prior using U-boot in this board, read carefully the ERRATA by Avnet 42633 to solve some memory initialization issues. 42634 42635 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 42636 Signed-off-by: Stefan Roese <sr@denx.de> 42637 42638commit 64ac1eb5afafced49b327425ad1814b2dc422d6e 42639Author: Nick Spence <nick.spence@freescale.com> 42640Date: Tue Sep 2 15:21:16 2008 -0500 42641 42642 mpc83xx: fix mpc8313 in-tree building with NAND 42643 42644 and add mpc8313 NAND build to MAKEALL 42645 42646 Signed-off-by: Nick Spence <nick.spence@freescale.com> 42647 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 42648 42649commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3 42650Author: Nick Spence <nick.spence@freescale.com> 42651Date: Thu Aug 28 14:09:25 2008 -0700 42652 42653 mpc83xx: clean up cache operations and unlock_ram_in_cache() functions 42654 42655 Cleans up some latent issues with the data cache control so that 42656 dcache_enable() and dcache_disable() will work reliably (after 42657 unlock_ram_in_cache() has been called) 42658 42659 Signed-off-by: Nick Spence <nick.spence@freescale.com> 42660 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 42661 42662commit 46497056ae3b1e81e736e9cf3a170472c5d9719f 42663Author: Nick Spence <nick.spence@freescale.com> 42664Date: Thu Aug 28 14:09:19 2008 -0700 42665 42666 mpc83xx: Store and display Arbiter Event Register values 42667 42668 Record the Arbiter Event Register values and optionally display them. 42669 42670 The Arbiter Event Register can record the type and effective address of 42671 an arbiter error, even through an HRESET. This patch stores the values in 42672 the global data structure. 42673 42674 Display of the Arbiter Event registers immediately after the RSR value 42675 can be enabled with defines. The Arbiter values will only be displayed 42676 if an arbiter event has occured since the last Power On Reset, and either 42677 of the following defines exist: 42678 #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and 42679 and type register values 42680 #define CONFIG_DISPLAY_AER_FULL - display and interpret the arbiter 42681 event register values 42682 42683 Address Only transactions are one of the trapped events that can register 42684 as an arbiter event. They occur with some cache manipulation instructions 42685 if the HID0_ABE (Address Broadcast Enable) is set and the memory region 42686 has the MEMORY_COHERENCE WIMG bit set. Setting: 42687 #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address 42688 only events, so that it can still capture 42689 other real problems. 42690 42691 Signed-off-by: Nick Spence <nick.spence@freescale.com> 42692 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 42693 42694commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605 42695Author: Nick Spence <nick.spence@freescale.com> 42696Date: Thu Aug 28 14:09:11 2008 -0700 42697 42698 mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache 42699 42700 This is needed in unlock_ram_in_cache() because it is called from C and 42701 will corrupt the small data area anchor that is kept in R2. 42702 42703 lock_ram_in_cache() is modified similarly as good coding practice, but 42704 is not called from C. 42705 42706 Signed-off-by: Nick Spence <nick.spence@freescale.com> 42707 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 42708 42709commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9 42710Author: Nick Spence <nick.spence@freescale.com> 42711Date: Fri Aug 22 23:52:50 2008 -0700 42712 42713 MPC83XX: Fix GPIO configuration - set gpio level before direction 42714 42715 Set DAT value before DIR values to avoid creating glitches on the 42716 GPIO signals. 42717 42718 Set gpio level register before direction register to inhibit 42719 glitches on high level output pins. 42720 42721 Dir and data gets cleared at powerup, so high level output lines see 42722 a short low pulse between setting the direction and level registers. 42723 42724 Issue was seen on a new board with the nReset line of the NOR flash 42725 connected to a GPIO. Setting the direction register puts the NOR flash 42726 in reset so the next instruction to set the level cannot get executed. 42727 42728 Signed-off-by: Nick Spence <nick.spence@freescale.com> 42729 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> 42730 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 42731 42732commit 7007c5975ee900ad70983b0681d3251e221f8321 42733Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42734Date: Tue Sep 2 02:58:32 2008 +0200 42735 42736 doc/qemu_mips: add doc howto debug u-boot with gdb 42737 42738 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 42739 42740commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405 42741Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42742Date: Wed Sep 3 17:15:45 2008 +0200 42743 42744 ppx4xx: Fix broken DASA_SIM board 42745 42746 This patch adds initdram() to DASA_SIM boards that has been 42747 removed accidentally by a previous commit. 42748 42749 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42750 Signed-off-by: Stefan Roese <sr@denx.de> 42751 42752commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b 42753Author: Stefan Roese <sr@denx.de> 42754Date: Mon Sep 1 08:35:37 2008 +0200 42755 42756 ppc4xx: Remove reference to common/lists.o from some esd linker scripts 42757 42758 This patch removes some direct references to common/lists.o from some 42759 esd linker scripts. This is necessary because the lists source was moved 42760 and is not in the "common" directory anymore. 42761 42762 Signed-off-by: Stefan Roese <sr@denx.de> 42763 42764commit 97b0734d65f8a0b03df0a335a2addc759da56107 42765Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42766Date: Tue Sep 2 16:33:05 2008 +0200 42767 42768 ppc4xx: Remove obsolete or unused functions from some esd boards 42769 42770 This patch removes initdram() and testdram() from most esd 405 platforms. 42771 Some boards also have an empty dummy implementation of 42772 misc_init_f(). This is also removed. 42773 42774 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42775 Signed-off-by: Stefan Roese <sr@denx.de> 42776 42777commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9 42778Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42779Date: Tue Sep 2 15:07:54 2008 +0200 42780 42781 ppc4xx: Update VOM405 board configuration 42782 42783 - remove PCI code 42784 - add command line editing 42785 - minor cleanup 42786 42787 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42788 Signed-off-by: Stefan Roese <sr@denx.de> 42789 42790commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4 42791Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42792Date: Tue Sep 2 15:07:53 2008 +0200 42793 42794 ppc4xx: Remove obsolete initdram() function from VOM405 board 42795 42796 This patch removed the obsolete initdram() function from 42797 VOM405 platform file. 42798 42799 Some minor cleanup. 42800 42801 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42802 Signed-off-by: Stefan Roese <sr@denx.de> 42803 42804commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8 42805Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42806Date: Tue Sep 2 15:07:52 2008 +0200 42807 42808 ppc4xx: Cleanup VOM405 linker script 42809 42810 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42811 Signed-off-by: Stefan Roese <sr@denx.de> 42812 42813commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2 42814Author: Matthias Fuchs <mf@esd.eu> 42815Date: Tue Sep 2 15:07:51 2008 +0200 42816 42817 ppc4xx: Add fdt support for VOM405 boards 42818 42819 Signed-off-by: Matthias Fuchs <mf@esd.eu> 42820 Signed-off-by: Stefan Roese <sr@denx.de> 42821 42822commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14 42823Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42824Date: Tue Sep 2 11:36:14 2008 +0200 42825 42826 ppc4xx: Coding style cleanup 42827 42828 Wrap long lines etc. 42829 42830 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42831 Signed-off-by: Stefan Roese <sr@denx.de> 42832 42833commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060 42834Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42835Date: Tue Sep 2 11:35:56 2008 +0200 42836 42837 ppc4xx: Enable USB on PLU405 boards 42838 42839 This patch enables the PCI-OHCI controller on PLU405 board. 42840 42841 Also the default CPU frequency is updated to 266 MHz and 42842 command line editing is enabled. 42843 42844 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42845 Signed-off-by: Stefan Roese <sr@denx.de> 42846 42847commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b 42848Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42849Date: Tue Sep 2 11:35:35 2008 +0200 42850 42851 ppc4xx: Cleanup PLU405 platform file 42852 42853 This patch 42854 - wraps some long lines 42855 - removes unused/obsolete functions: misc_init_f() and initdram() 42856 42857 Signed-off-by: Matthias Fuchs <mf@esd.eu> 42858 Signed-off-by: Stefan Roese <sr@denx.de> 42859 42860commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33 42861Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42862Date: Tue Sep 2 11:35:04 2008 +0200 42863 42864 ppc4xx: Cleanup PLU405 linker script 42865 42866 Signed-off-by: Matthias Fuchs <mf@esd.eu> 42867 Signed-off-by: Stefan Roese <sr@denx.de> 42868 42869commit 3bc1054cec2f6b25822f301ea922a16233baa4c7 42870Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42871Date: Tue Sep 2 11:34:36 2008 +0200 42872 42873 ppc4xx: Add fdt support for PLU405 boards 42874 42875 Signed-off-by: Matthias Fuchs <mf@esd.eu> 42876 Signed-off-by: Stefan Roese <sr@denx.de> 42877 42878commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4 42879Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 42880Date: Tue Sep 2 11:34:08 2008 +0200 42881 42882 ppc4xx: Increase U-Boot size to 384kB for PLU405 boards 42883 42884 Signed-off-by: Matthias Fuchs <mf@esd.eu> 42885 Signed-off-by: Stefan Roese <sr@denx.de> 42886 42887commit be1b0d2777e179191a57b138b660547a17e55aad 42888Author: Jochen Friedrich <jochen@scram.de> 42889Date: Tue Sep 2 11:24:59 2008 +0200 42890 42891 Don't tftp to unknown flash 42892 42893 If a board has a variable number of flash banks, there are empty entries 42894 in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with 42895 "Outside available Flash". This patch skips flash banks with unknown 42896 flash ids. 42897 42898 Signed-off-by: Jochen Friedrich <jochen@scram.de> 42899 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 42900 42901commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b 42902Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 42903Date: Thu Aug 28 13:40:44 2008 +0900 42904 42905 net: smc911x: Add pkt_data_pull and pkt_data_push function 42906 42907 The RSK7203 board has the SMSC9118 wired up 'incorrectly'. 42908 Byte-swapping is necessary, and so poor performance is inevitable. 42909 This problem cannot evade by the swap function of CHIP, this can 42910 evade by software Byte-swapping. 42911 And this has problem by FIFO access only. pkt_data_pull/pkt_data_push 42912 functions necessary to solve this problem. 42913 42914 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 42915 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 42916 42917commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274 42918Author: Ben Warren <biggerbadderben@gmail.com> 42919Date: Sun Aug 31 20:37:00 2008 -0700 42920 42921 Moved initialization of EEPRO100 Ethernet controller to board_eth_init() 42922 42923 Affected boards: 42924 db64360 42925 db64460 42926 katmai 42927 taihu 42928 taishan 42929 yucca 42930 cpc45 42931 cpu87 42932 eXalion 42933 elppc 42934 debris 42935 kvme080 42936 mpc8315erdb 42937 integratorap 42938 ixdp425 42939 oxc 42940 pm826 42941 pm828 42942 pm854 42943 pm856 42944 ppmc7xx 42945 sc3 42946 sc520_spunk 42947 sorcery 42948 tqm8272 42949 tqm85xx 42950 utx8245 42951 42952 Removed initialization of the driver from net/eth.c 42953 Also, wrapped contents of pci_eth_init() by CONFIG_PCI. 42954 42955 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 42956 42957commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0 42958Author: Ben Warren <biggerbadderben@gmail.com> 42959Date: Sun Aug 31 10:45:44 2008 -0700 42960 42961 Moved initialization of TULIP Ethernet controller to board_eth_init() 42962 42963 Affected boards: 42964 cu824 42965 bab7xx 42966 adciop 42967 dasa_sim 42968 mousse 42969 mpc8540eval 42970 musenki 42971 mvblue 42972 pcippc2/pcippc6 42973 sbc8240 42974 stxssa 42975 42976 Removed initialization of the driver from net/eth.c 42977 42978 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 42979 42980commit ad3381cf4167120db5c7b88e4970245e1d5c0a32 42981Author: Ben Warren <biggerbadderben@gmail.com> 42982Date: Sun Aug 31 10:44:19 2008 -0700 42983 42984 Moved initialization of E1000 Ethernet controller to board_eth_init() 42985 42986 Affected boards: 42987 ap1000 42988 mvbc_p 42989 PM854 42990 42991 Removed initialization of the driver from net/eth.c 42992 42993 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 42994 42995commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487 42996Author: Ben Warren <biggerbadderben@gmail.com> 42997Date: Sun Aug 31 10:40:51 2008 -0700 42998 42999 Moved initialization of plb2800 Ethernet driver to board_eth_init 43000
43001 Affected boards: 43002 purple 43003 43004 Removed initialization of controller from net/eth.c 43005 43006 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43007 43008commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d 43009Author: Ben Warren <biggerbadderben@gmail.com> 43010Date: Sun Aug 31 10:39:12 2008 -0700 43011 43012 Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory 43013 43014 Modified board_eth_init() functions of boards that have this FEC in addition 43015 to other Ethernet controllers. 43016 43017 Affected boards: 43018 bc3450 43019 icecube 43020 mvbc_p 43021 o2dnt 43022 pm520 43023 total5200 43024 tq5200 43025 43026 Removed initialization of controller from net/eth.c 43027 43028 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43029 43030commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d 43031Author: Ben Warren <biggerbadderben@gmail.com> 43032Date: Sun Aug 31 10:36:38 2008 -0700 43033 43034 Moved initialization of MPC512x_FEC Ethernet driver to CPU directory 43035 43036 Added a cpu_eth_init() function to MPC512x CPU directory and 43037 removed code from net/eth.c 43038 43039 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43040 43041commit 8218bd2aa68820b878a8413493ae17fd8d21f944 43042Author: Ben Warren <biggerbadderben@gmail.com> 43043Date: Sun Aug 31 10:16:59 2008 -0700 43044 43045 Moved initialization of IncaIP Ethernet controller to board_eth_init 43046 43047 Affected boards: 43048 IncaIP 43049 43050 Removed initialization of the driver from net/eth.c 43051 43052 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43053 43054commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055 43055Author: Ben Warren <biggerbadderben@gmail.com> 43056Date: Sun Aug 31 10:15:26 2008 -0700 43057 43058 Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init() 43059 43060 Affected boards: 43061 AmigaOneG3SE 43062 43063 Removed initialization of the driver from net/eth.c 43064 43065 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43066 43067commit 6aca145e067efe75398e9fac97822bd3700de0b2 43068Author: Ben Warren <biggerbadderben@gmail.com> 43069Date: Sun Aug 31 10:13:34 2008 -0700 43070 43071 Moved initialization of GT6426x Ethernet controller to board_eth_init() 43072 43073 Affected boards: 43074 EVB64260 43075 P3G4 43076 ZUMA 43077 43078 Removed initialization of the driver from net/eth.c 43079 43080 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43081 43082commit e3090534d62045dcb73f5392bacc64a4e8e443dc 43083Author: Ben Warren <biggerbadderben@gmail.com> 43084Date: Sun Aug 31 10:08:43 2008 -0700 43085 43086 Moved initialization of PCNET Ethernet controller to board_eth_init() 43087 43088 Affected boards: 43089 PN62 43090 sc520_cdp 43091 43092 Removed initialization of the driver from net/eth.c 43093 43094 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43095 43096commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed 43097Author: Ben Warren <biggerbadderben@gmail.com> 43098Date: Sun Aug 31 10:07:16 2008 -0700 43099 43100 Moved initialization of NATSEMI Ethernet controller to board_eth_init() 43101 43102 Affected boards: 43103 a3000 43104 43105 Removed initialization of the driver from net/eth.c 43106 43107 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43108 43109commit 19403633dd70333893c2da7926a1d0dcd6dab7d8 43110Author: Ben Warren <biggerbadderben@gmail.com> 43111Date: Sun Aug 31 10:03:22 2008 -0700 43112 43113 Moved initialization of NS8382X Ethernet controller to board_eth_init() 43114 43115 Affected boards: 43116 bc3450 43117 cpci5200 43118 mecp5200 43119 pf2000 43120 icecube 43121 o2dnt 43122 pm520 43123 sandpoint8245 43124 total5200 43125 tqm5200 43126 43127 Removed initialization of the driver from net/eth.c 43128 43129 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43130 43131commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0 43132Author: Ben Warren <biggerbadderben@gmail.com> 43133Date: Sun Aug 31 09:59:33 2008 -0700 43134 43135 Moved initialization of TSI108 Ethernet controller to board_eth_init() 43136 43137 Affected boards: 43138 mpc7448hpc2 43139 43140 Removed initialization of the driver from net/eth.c 43141 43142 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43143 43144commit 0b252f50ae218ae15bfb63af44227972686ebc56 43145Author: Ben Warren <biggerbadderben@gmail.com> 43146Date: Sun Aug 31 21:41:08 2008 -0700 43147 43148 Moved initialization of RTL8139 Ethernet controller to board_eth_init() 43149 43150 Affected boards: 43151 hidden_dragon 43152 MPC8544DS 43153 MPC8610HPCN 43154 R2DPLUS 43155 TB0229 43156 43157 Removed initialization of the driver from net/eth.c 43158 43159 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43160 43161commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7 43162Author: Ben Warren <biggerbadderben@gmail.com> 43163Date: Sun Aug 31 09:49:42 2008 -0700 43164 43165 Moved initialization of RTL8169 Ethernet controller to board_eth_init() 43166 43167 Affected boards: 43168 linkstation 43169 r7780mp 43170 43171 Removed initialization of the driver from net/eth.c 43172 43173 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43174 43175commit 3ae071e44256144d6c1e3febb65f6c56bd433769 43176Author: Ben Warren <biggerbadderben@gmail.com> 43177Date: Tue Aug 12 22:11:53 2008 -0700 43178 43179 Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init() 43180 43181 Removed at91sam9_eth_initialize() from net/eth.c 43182 43183 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43184 43185commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13 43186Author: Ben Warren <biggerbadderben@gmail.com> 43187Date: Sun Aug 31 22:22:04 2008 -0700 43188 43189 Introduce netdev.h header file and remove externs 43190 43191 This addresses all drivers whose initializers have already 43192 been moved to board_eth_init()/cpu_eth_init(). 43193 43194 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43195 43196commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c 43197Author: Andy Fleming <afleming@freescale.com> 43198Date: Sun Aug 31 16:33:30 2008 -0500 43199 43200 Add pixis_set_sgmii command 43201 43202 The 8544DS and 8572DS platforms support an optional SGMII riser card to 43203 expose ethernet over an SGMII interface. Once the card is in, it is also 43204 necessary to configure the board such that it uses the card, rather than 43205 the on-board ethernet ports. This can either be done by flipping dip switches 43206 on the motherboard, or by modifying registers in the pixis. Either way 43207 requires a reboot. 43208 43209 This adds a command to allow users to choose which ports are routed through 43210 the SGMII card, and which through the onboard ports. It also allows users 43211 to revert to the current switch settings. 43212 43213 This code does not work on the 8572, as the PIXIS is different. 43214 43215 Signed-off-by: Andy Fleming <afleming@freescale.com> 43216 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43217 43218commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7 43219Author: Andy Fleming <afleming@freescale.com> 43220Date: Sun Aug 31 16:33:29 2008 -0500 43221 43222 Add SGMII support for the 8544 DS 43223 43224 The 8544 DS has an optional SGMII Riser card, which uses different PHY 43225 addresses. Check if we are in SGMII mode, and invoke the SGMII Riser 43226 setup code if so. 43227 43228 Signed-off-by: Andy Fleming <afleming@freescale.com> 43229 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43230 43231commit 652f7c2eef76a1340928bd660845441e932d86a2 43232Author: Andy Fleming <afleming@freescale.com> 43233Date: Sun Aug 31 16:33:28 2008 -0500 43234 43235 Add support for Freescale SGMII Riser Card 43236 43237 The 8544DS and 8572DS systems have an optional SGMII riser card which 43238 exposes new ethernet ports which are connected to the eTSECs via an 43239 SGMII interface. The SGMII PHYs for this board are offset from the standard 43240 PHY addresses, so this code modifies the passed in tsec_info structure to 43241 use the SGMII PHYs on the card, instead. 43242 43243 Signed-off-by: Andy Fleming <afleming@freescale.com> 43244 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43245 43246commit 2abe361c03b43e6dcf68f54e96b5c05156c49284 43247Author: Andy Fleming <afleming@freescale.com> 43248Date: Sun Aug 31 16:33:27 2008 -0500 43249 43250 Add SGMII support to the tsec 43251 43252 Adds support for configuring the TBI to talk properly with the SerDes. 43253 43254 Signed-off-by: Andy Fleming <afleming@freescale.com> 43255 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43256 43257commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42 43258Author: Andy Fleming <afleming@freescale.com> 43259Date: Sun Aug 31 16:33:26 2008 -0500 43260 43261 Pass in tsec_info struct through tsec_initialize 43262 43263 The tsec driver contains a hard-coded array of configuration information 43264 for the tsec ethernet controllers. We create a default function that works 43265 for most tsecs, and allow that to be overridden by board code. It creates 43266 an array of tsec_info structures, which are then parsed by the corresponding 43267 driver instance to determine configuration. Also, add regs, miiregs, and 43268 devname fields to the tsec_info structure, so that we don't need the kludgy 43269 "index" parameter. 43270 43271 Signed-off-by: Andy Fleming <afleming@freescale.com> 43272 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43273 43274commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10 43275Author: Andy Fleming <afleming@freescale.com> 43276Date: Sun Aug 31 16:33:25 2008 -0500 43277 43278 tsec: Move tsec.h to include/ 43279 43280 This is to prepare the way for board code passing in the tsec_info structure 43281 43282 Signed-off-by: Andy Fleming <afleming@freescale.com> 43283 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43284 43285commit d23dc394aa69093b6326ad917db04dc0d1aff3f8 43286Author: Sergei Poselenov <sposelenov@emcraft.com> 43287Date: Fri Jun 6 15:52:44 2008 +0200 43288 43289 PHY: Add support for the M88E1121R Marvell chip. 43290 43291 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 43292 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 43293 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43294 43295commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b 43296Author: Wolfgang Denk <wd@denx.de> 43297Date: Tue Sep 2 21:17:36 2008 +0200 43298 43299 fw_env.c: fix build problems with MTD_VERSION=old 43300 43301 (as needed to support old 2.4 Linux kernel based releases) 43302 43303 Signed-off-by: Wolfgang Denk <wd@denx.de> 43304 43305commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51 43306Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43307Date: Mon Sep 1 17:11:26 2008 +0200 43308 43309 device: make device_register() clone the device 43310 43311 This is expected by the callers, but this fact was hidden well within 43312 the old list implementation. 43313 43314 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43315 43316commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0 43317Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43318Date: Mon Sep 1 14:00:07 2008 +0200 43319 43320 avr32: Add support for "GPIO" port mux 43321 43322 The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and 43323 all later AVR32 chips. This patch adds a driver for it, implementing the 43324 same API as the existing portmux-pio driver but with more functionality. 43325 43326 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43327 43328commit d92852579546c46bdaac978e0b6767a6645b69e0 43329Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43330Date: Fri Aug 15 15:02:29 2008 +0200 43331 43332 atstk1000: Convert to new-style makefile 43333 43334 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43335 43336commit 25e6854d42c11046a468576179b5494f850311b2 43337Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43338Date: Sun Aug 31 18:46:35 2008 +0200 43339 43340 avr32: use board_early_init_r instead of board_init_info 43341 43342 Replace the avr32-specific board_init_info hook by the standard 43343 board_early_init_r hook and make it optional. 43344 43345 board_early_init_r() runs somewhat earlier than board_init_info used to 43346 do, but this isn't a problem for any of the in-tree boards. 43347 43348 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43349 43350commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd 43351Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43352Date: Sun Aug 31 18:24:24 2008 +0200 43353 43354 avr32: Use board_postclk_init instead of gclk_init 43355 43356 Replace the avr32-specific gclk_init() board hook with the standard 43357 board_postclk_init() hook which is supposed to run at the same point 43358 during initialization. 43359 43360 Provide a dummy weak alias for boards not implementing this hook. The 43361 cost of this is: 43362 - 2 bytes for the dummy function (retal 0) 43363 - 2 bytes for each unnecessary function call (short rcall) 43364 43365 which is a pretty small price to pay for avoiding lots of #ifdef 43366 clutter. In this particular case, all boards probably end up slightly 43367 smaller because we avoid the conditional checking if the gclk_init 43368 symbol is NULL. 43369 43370 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43371 43372commit abdde2b1d570b1ee77606bf783444fcddf7f0965 43373Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43374Date: Sun Aug 31 18:07:35 2008 +0200 43375 43376 hammerhead: Use gclk helper functions 43377 43378 Use the new gclk helper functions to set up the PHY clock instead of 43379 accessing the PM registers directly. 43380 43381 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43382 43383commit 98090cd75cdb40b2ab94c806c338540a5716748b 43384Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43385Date: Sun Aug 31 18:05:32 2008 +0200 43386 43387 avr32: Add gclk helper functions 43388 43389 Add two helper functions for configuring and enabling generic clocks: 43390 - gclk_enable_output: Enables output on a GCLKx pin 43391 - gclk_set_rate: Configures a gclk to run at a specific rate 43392 43393 This should eliminate any reason to go mucking about with PM registers 43394 from board code. 43395 43396 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43397 43398commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf 43399Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43400Date: Fri Aug 29 21:09:49 2008 +0200 43401 43402 avr32: refactor the portmux/gpio code 43403 43404 - Separate the portmux configuration functionality from the GPIO pin 43405 control API. 43406 - Separate the controller-specific code from the chip-specific code. 43407 - Allow "ganged" port configuration (multiple pins at once). 43408 - Add more flexibility to the "canned" peripheral select functions: 43409 - Allow using more than 23 address bits, more chip selects, as 43410 well as NAND- and CF-specific pins. 43411 - Make the MACB SPEED pin optional, and choose between MII/RMII 43412 using a parameter instead of an #ifdef. 43413 - Make it possible to use other MMC slots than slot 0, and support 43414 different MMC/SDCard data bus widths. 43415 - Use more reasonable pull-up defaults; floating pins may consume a 43416 lot of power. 43417 - Get rid of some custom portmux code from the mimc200 board code. The 43418 old gpio/portmux API couldn't really handle its requirements, but 43419 the new one can. 43420 - Add documentation. 43421 43422 The end result is slightly smaller code for all boards. Which isn't 43423 really the point, but at least it isn't any larger. 43424 43425 This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if 43426 the board maintainers could help me test this on their boards. In 43427 particular, the mimc200 port has lost a lot of code, so I'm hoping Mark 43428 can help me out. 43429 43430 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43431 Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> 43432 Cc: Mark Jackson <mpfj@mimc.co.uk> 43433 Cc: Alex Raimondi <alex.raimondi@miromico.ch> 43434 Cc: Julien May <julien.may@miromico.ch> 43435 43436 Changes since v1: 43437 * Enable pullup on NWAIT 43438 * Add missing include to portmux-pio.h 43439 * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs 43440 43441commit 4c24e8288c601cb773ab02528b48a8577970e867 43442Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43443Date: Sat Aug 30 17:28:36 2008 +0200 43444 43445 avr32: data_bits should reflect the actual number of data bits 43446 43447 Make the data_bits enum in struct sdram_config reflect the actual number 43448 of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean 43449 32 bits is just too confusing. 43450 43451 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43452 43453commit 66b7bc5175325809718d8d49ef073bc1036ad71b 43454Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43455Date: Fri Aug 29 17:48:18 2008 +0200 43456 43457 avr32: Update README 43458 43459 Remove some outdated and/or unnecessary information, and add updated 43460 information about the toolchain and buildroot. 43461 43462 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 43463 43464commit c75e772a2f061a508bba28ded1b5bea91f0442b0 43465Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43466Date: Sun Aug 31 23:28:15 2008 +0900 43467 43468 sh: Remove CC line from board's Makefile 43469 43470 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43471 43472commit 468eae0660de6fdfd9999944c536ecc4797bd944 43473Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43474Date: Sun Aug 31 23:25:57 2008 +0900 43475 43476 sh: Replaced "@./mkconfig" for @$(MKCONFIG) 43477 43478 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43479 43480commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34 43481Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43482Date: Thu Aug 28 14:50:52 2008 +0900 43483 43484 sh: Add support sh2 to MAKEALL 43485 43486 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43487 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43488 43489commit 6f3d8bb5faa12dbf3031382286784c978df038ee 43490Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43491Date: Thu Aug 28 14:52:23 2008 +0900 43492 43493 sh: Fix compile error rsk7203 board 43494 43495 This boards used old type preprocessor. 43496 This patch fix compile error. 43497 43498 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43499 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43500 43501commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa 43502Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43503Date: Thu Aug 28 14:53:31 2008 +0900 43504 43505 sh: Fix compile error sh7785lcr board 43506 43507 This boards used old type preprocessor. 43508 This patch fix compile error. 43509 43510 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43511 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43512 43513commit 6f0da4972e48f99d37bc522814940a6022cd3084 43514Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43515Date: Fri Aug 22 17:39:09 2008 +0900 43516 43517 sh: Renesas Solutions AP325RXA board support 43518 43519 AP325RXA is SH7723's reference board. 43520 This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other. 43521 In this patch, support SCIF, NOR Flash, and Ethernet. 43522 43523 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43524 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43525 43526commit ab09f433b50bb83b5e440c335bc3839ee069e534 43527Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43528Date: Fri Aug 22 17:48:51 2008 +0900 43529 43530 sh: add support Renesas SH7723 43531 43532 Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other. 43533 This patch supports CPU register's header file and SCIF serial driver. 43534 43535 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43536 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43537 43538commit c655fad06ba3fb042dbc667724a40e1a9a091248 43539Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43540Date: Sun Aug 31 23:02:04 2008 +0900 43541 43542 sh: Renesas RSK+ 7203 board support 43543 43544 This adds initial support for the RTE RSK+ SH7203 board. 43545 43546 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43547 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43548 43549commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475 43550Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43551Date: Thu Jul 3 23:11:02 2008 +0900 43552 43553 sh: Add support Renesas SH7203 processor 43554 43555 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43556 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43557 43558commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9 43559Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43560Date: Sun Aug 31 22:48:33 2008 +0900 43561 43562 sh: Add support SH2/SH2A which is CPU of Renesas Technology 43563 43564 Add support SH2/SH2A basic function. 43565 43566 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 43567 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43568 43569commit 0d53a47dc0737b6aa3a39caee21410c169441ae5 43570Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43571Date: Sun Aug 31 22:45:08 2008 +0900 43572 43573 sh: Renesas R0P7785LC0011RL board support 43574 43575 This board has SH7785, 512MB DDR2-SDRAM, NOR Flash, 43576 Graphic, Ethernet, USB, SD, RTC, and I2C controller. 43577 43578 This patch supports the following functions: 43579 - 128MB DDR2-SDRAM (29-bit address mode only) 43580 - NOR Flash 43581 - USB host 43582 - Ethernet 43583 43584 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 43585 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43586 43587commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e 43588Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 43589Date: Thu Jul 10 19:32:53 2008 +0900 43590 43591 sh: add support for SH7785 43592 43593 Renesas SH7785 has DDR2-SDRAM controller, PCI, and other. 43594 This patch supports CPU register's header file. 43595 43596 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 43597 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 43598 43599commit d6e04258be8f2408845468d3cf722a4cf0433445 43600Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43601Date: Sun Aug 31 04:45:42 2008 +0200 43602 43603 davinci: fix remaining dm644x_eth 43604 43605 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43606 43607commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878 43608Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43609Date: Sun Aug 31 04:24:56 2008 +0200 43610 43611 fs: Move conditional compilation to Makefile 43612 43613 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43614 43615commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48 43616Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43617Date: Sun Aug 31 04:24:55 2008 +0200 43618 43619 devices: merge to list_head 43620 43621 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43622 43623commit ef0255fc75f28655f9681422079287d68a14dbaa 43624Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43625Date: Sun Aug 31 04:24:51 2008 +0200 43626 43627 update linux/list 43628 43629 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43630 43631commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3 43632Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43633Date: Sun Aug 31 00:39:48 2008 +0200 43634 43635 smdk6400: add gitignore 43636 43637 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43638 43639commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9 43640Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43641Date: Sun Aug 31 00:39:48 2008 +0200 43642 43643 smdk6400: Use CONFIG_FLASH_CFI_DRIVER 43644 43645 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43646 43647commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15 43648Author: Guennadi Liakhovetski <lg@denx.de> 43649Date: Sun Aug 31 00:39:47 2008 +0200 43650 43651 smdk6400: remove redundant bootargs definition 43652 43653 Double bootargs setting leads to a duplicated environmant entry. 43654 43655 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 43656 43657commit 11edcfe260f20dcea79284a3e95270989d433854 43658Author: Guennadi Liakhovetski <lg@denx.de> 43659Date: Sun Aug 31 00:39:47 2008 +0200 43660 43661 ARM: Add support for S3C6400 based SMDK6400 board 43662 43663 SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl 43664 driver for it too. The board can also boot from the NOR flash, but due to 43665 hardware limitations it can only address 64KiB on it, which is not enough 43666 for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6. 43667 43668 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 43669 43670commit e0056b341069796eaea11eae0fc8eb93a3dceaac 43671Author: Guennadi Liakhovetski <lg@denx.de> 43672Date: Sun Aug 31 00:39:47 2008 +0200 43673 43674 NAND: add NAND driver for S3C64XX 43675 43676 Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6. 43677 43678 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 43679 43680commit 3fe7b589f9c7463df39056f8872006a67f56a91c 43681Author: Guennadi Liakhovetski <lg@denx.de> 43682Date: Sun Aug 31 00:39:47 2008 +0200 43683 43684 S3C64XX: remove broken HWFLOW support from the serial driver 43685 43686 As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is 43687 broken and currently unused. Remove it. 43688 43689 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 43690 43691commit 2fb28dcf82048045e1bf5014e938e486fa6c2383 43692Author: Guennadi Liakhovetski <lg@denx.de> 43693Date: Sun Aug 31 00:39:47 2008 +0200 43694 43695 serial: add S3C64XX serial driver 43696 43697 Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6. 43698 43699 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 43700 43701commit 8262813ca04fc57f5d8856e1828085c136e0f1eb 43702Author: Guennadi Liakhovetski <lg@denx.de> 43703Date: Sun Aug 31 00:39:46 2008 +0200 43704 43705 USB: Add support for OHCI controller on S3C6400 43706 43707 Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could 43708 try to enable the MMU, but map addresses 1-to-1, and disable data cache, then 43709 it should work too and we could still profit from instruction cache. 43710 43711 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 43712 43713commit 9b07773f8883665b002500c190507e9fd99b7181 43714Author: Guennadi Liakhovetski <lg@denx.de> 43715Date: Sun Aug 31 00:39:46 2008 +0200 43716 43717 ARM: Add arm1176 core with S3C6400 SoC 43718 43719 Based on the original S3C64XX port by Samsung for U-Boot 1.1.6. 43720 43721 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 43722 43723commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75 43724Author: Sandeep Paulraj <s-paulraj@ti.com> 43725Date: Sun Aug 31 00:39:46 2008 +0200 43726 43727 ARM DaVinci: Changing function names for EMAC driver 43728 43729 DM644x is just one of a series of DaVinci chips that use the EMAC driver. 43730 By replacing all the function names that start with dm644x_* to davinci_* 43731 we make these function more portable. I have tested this change on my EVM. 43732 DM6467 is another DaVinci SOC which uses the EMAC driver and i will 43733 be sending patches that add DaVinci DM6467 support to the list soon. 43734 43735 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com> 43736 43737commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b 43738Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 43739Date: Sat Aug 30 23:21:30 2008 +0200 43740 43741 Integrator[AP/CP] - Remove unused file memsetup.S 43742 43743 - memsetup.s is changed/merged to lowlevel_init.S 43744 memsetup.S has a global label memsetup that just returns back to caller 43745 - memsetup global label is changed/merged to lowlevel_init 43746 This label is not called from anywhere. 43747 43748 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in> 43749 43750commit 89d51d022a63be1a851eda983c8cbce1a044f65f 43751Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 43752Date: Wed Aug 27 21:35:52 2008 +0200 43753 43754 ARM DaVinci: Standardize names of directories/files 43755 43756 ARM DaVinci: Standardize names of directories/files. 43757 43758 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 43759 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43760 43761commit 264bbdd11d01f14f5ea4629556ae63b00b13402d 43762Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 43763Date: Fri Jul 11 15:10:13 2008 -0400 43764 43765 ARM DaVinci: Move common functions to board/davinci/common 43766 43767 ARM DaVinci: Move common functions to board/davinci/common. 43768 43769 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 43770 43771commit c2b4b2e4814f4ace9015fdb64132894327400bf0 43772Author: Stefan Roese <sr@denx.de> 43773Date: Fri Aug 29 11:56:49 2008 +0200 43774 43775 ppc4xx/NAND: Add select_chip function to 4xx NDFC driver 43776 43777 This function is needed for the new NAND infrastructure. We only need 43778 a dummy implementation though for the NDFC. 43779 43780 Signed-off-by: Stefan Roese <sr@denx.de> 43781 43782commit 3d4a746e2fb4545f07d871049805fb34ae97cc94 43783Author: Stefan Roese <sr@denx.de> 43784Date: Fri Aug 29 12:06:27 2008 +0200 43785 43786 ppc4xx: Increase image size for NAND boot target 43787 43788 This is needed since now with HUSH enabled (amcc-common.h) the image 43789 read from NAND exceeds the previous limit. 43790 43791 Signed-off-by: Stefan Roese <sr@denx.de> 43792 43793commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759 43794Author: Ben Warren <biggerbadderben@gmail.com> 43795Date: Thu Aug 28 23:58:30 2008 -0700 43796 43797 Move MPC512x_FEC driver to drivers/net 43798 43799 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43800 43801commit 80b00af01b3c9154774de2936f05a051e92f6a03 43802Author: Ben Warren <biggerbadderben@gmail.com> 43803Date: Thu Aug 28 23:58:29 2008 -0700 43804 43805 Move MPC5xxx_FEC driver to drivers/net 43806 43807 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 43808 43809commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7 43810Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43811Date: Fri Aug 29 21:53:57 2008 +0200 43812 43813 cmd_terminal: remove no need ifdef 43814 43815 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43816 43817commit 578118bdf122877ae769776be002255be447b4fa 43818Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43819Date: Fri Aug 29 21:53:57 2008 +0200 43820 43821 common/Makefile: order by functionality 43822 43823 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43824 43825commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb 43826Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43827Date: Fri Aug 29 21:53:56 2008 +0200 43828 43829 miiphyutil: Move conditional compilation to Makefile 43830 43831 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43832 43833commit 81789c39db3f0f6b621df8c0ec66014d701f368e 43834Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43835Date: Fri Aug 29 21:53:37 2008 +0200 43836 43837 autoscript: Move conditional compilation to Makefile 43838 43839 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43840 43841commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d 43842Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43843Date: Fri Aug 29 01:18:11 2008 +0200 43844 43845 crc16: move to lib_generic 43846 43847 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43848 43849commit 55195773eacefb22dd483a3c560ea30a14263ce1 43850Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43851Date: Fri Aug 29 01:18:01 2008 +0200 43852 43853 miiphybb: move to drivers/net/phy 43854 43855 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43856 43857commit e8314035996a9118ac5948df2ff8a2f2161ed67a 43858Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43859Date: Thu Aug 28 12:31:51 2008 +0200 43860 43861 soft_spi: move to drivers/spi 43862 43863 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43864 43865commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56 43866Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43867Date: Thu Aug 28 12:31:51 2008 +0200 43868 43869 soft_i2c: move to drivers/i2c 43870 43871 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43872 43873commit 717a222229fdb77703e9174d0eb08a4b41febf49 43874Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43875Date: Thu Aug 28 12:31:48 2008 +0200 43876 43877 gunzip: move to lib_generic 43878 43879 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 43880 43881commit 52aef8f9ba28b747973bf76741c23db658d5773c 43882Author: Wolfgang Ocker <weo@reccoware.de> 43883Date: Tue Aug 26 19:55:23 2008 +0200 43884 43885 ppc4xx: NAND configuration 43886 43887 Made NAND bank configuration setting a config variable. 43888 43889 Signed-off-by: Wolfgang Ocker <weo@reccoware.de> 43890 Signed-off-by: Stefan Roese <sr@denx.de> 43891 43892commit 5bc542a593abc9e974fbd34704af85c37c366c60 43893Author: Victor Gallardo <vgallardo@amcc.com> 43894Date: Thu Aug 28 16:03:28 2008 -0700 43895 43896 ppc4xx: fix UIC external_interrupt hang on UIC0 43897 43898 This patch fixes a UIC external_interrupt hang if critical or non-critical 43899 interrupt is set at the same time as a normal interrupt is set on UIC0. 43900 43901 Signed-off-by: Victor Gallardo <vgallardo@amcc.com> 43902 Signed-off-by: Stefan Roese <sr@denx.de> 43903 43904commit 04737d5ffd16248cb80ab3dd4f3765057a803f18 43905Author: Prodyut Hazarika <phazarika@amcc.com> 43906Date: Wed Aug 27 16:39:00 2008 -0700 43907 43908 ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller 43909 43910 Removed Magic numbers from Initialization preload registers 43911 Tested with Kilauea, Glacier, Canyonlands and Katmai boards 43912 About 5-7% improvement seen for LMBench memtests 43913 43914 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com> 43915 Signed-off-by: Stefan Roese <sr@denx.de> 43916 43917commit 8a490422bed685c9491274ec997f62061d88620b 43918Author: John Rigby <jrigby@freescale.com> 43919Date: Thu Aug 28 13:17:07 2008 -0600 43920 43921 ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon 43922 43923 MPC5121 rev 2 silicon has a new register for controlling how long 43924 CS is asserted after deassertion of ALE in multiplexed mode. 43925 43926 The default is to assert CS together with ALE. The alternative 43927 is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE. 43928 43929 The default is wrong for the NOR flash and CPLD on the ADS5121. 43930 43931 This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD) 43932 it does so conditionally based on silicon rev 2.0 or greater. 43933 43934 Signed-off-by: Martha J Marx <mmarx@silicontkx.com> 43935 Signed-off-by: John Rigby <jrigby@freescale.com> 43936 43937commit 5d9a5efa4b332f442b54a755d49969123c3a8742 43938Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43939Date: Tue Aug 19 00:56:46 2008 +0600 43940 43941 Add I2C frequency dividers for ColdFire 43942 43943 The existing I2C freqency dividers for FDR does not apply 43944 to ColdFire platforms; thus, a seperate table is added 43945 based on MCF5xxx Reference Manual 43946 43947 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> 43948 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43949 Acked-by: Tabi Timur <timur@freescale.com> 43950 43951commit eec567a67e00d1ed8d941e9098b7d421f4091abf 43952Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43953Date: Tue Aug 19 03:01:19 2008 +0600 43954 43955 ColdFire: I2C fix for multiple platforms 43956 43957 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43958 43959commit d53cf6a9c7423cba668b867978648645f71c3090 43960Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43961Date: Tue Aug 19 00:37:13 2008 +0600 43962 43963 ColdFire: Add CONFIG_MII_INIT for M5272C3 43964 43965 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43966 43967commit f78ced3028d4130b24a318943a70cf5584ab16f4 43968Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43969Date: Tue Aug 19 00:26:25 2008 +0600 43970 43971 ColdFire: Multiple fixes for MCF5445x platforms 43972 43973 Add FEC pin set and mii reset in __mii_init(). Change 43974 legacy flash vendor from 2 to AMD LEGACY (0xFFF0), 43975 change cfi_offset to 0, and change CFG_FLASH_CFI to 43976 CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and 43977 M54455EVB env settings in configuration file. 43978 43979 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43980 43981commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8 43982Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43983Date: Fri Aug 15 18:24:25 2008 +0000 43984 43985 ColdFire: Change the SDRAM BRD2WT timing from 3 to 7 43986 43987 The user manuals recommend 7. 43988 43989 Signed-off-by: Kurt Mahan <kmahan@freescale.com> 43990 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43991 43992commit 79e0799cf6e88d98d77b216a55234bf674b59a4e 43993Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 43994Date: Fri Aug 15 16:50:07 2008 +0000 43995 43996 ColdFire: Raise uart baudrate to 115200 bps 43997 43998 M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms 43999 uart baudrate increase from 19200 to 115200 bps 44000
44001 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 44002 44003commit ab6ba842682552ccf071d0034da0a20633d1d1ac 44004Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 44005Date: Wed Aug 13 12:07:03 2008 +0000 44006 44007 ColdFire: Fix board.c warning message 44008 44009 Implicit declaration of nand_init() warning message 44010 44011 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 44012 44013commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b 44014Author: Kumar Gala <galak@kernel.crashing.org> 44015Date: Wed Aug 27 01:10:34 2008 -0500 44016 44017 FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx. 44018 44019 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44020 44021commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7 44022Author: Heiko Schocher <hs@denx.de> 44023Date: Thu Aug 21 20:44:49 2008 +0200 44024 44025 mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN. 44026 44027 Signed-off-by: Heiko Schocher <hs@denx.de> 44028 44029commit 9cff4448a9cb882defe6c8bde73b77fc0c636799 44030Author: Kumar Gala <galak@kernel.crashing.org> 44031Date: Tue Aug 19 14:46:36 2008 -0500 44032 44033 mpc85xx: remove redudant code with lib_ppc/interrupts.c 44034 44035 For some reason we duplicated the majority of code in lib_ppc/interrupts.c 44036 not show how that happened, but there is no good reason for it. 44037 44038 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why 44039 they exist. 44040 44041 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44042 44043commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56 44044Author: Kumar Gala <galak@kernel.crashing.org> 44045Date: Fri Jul 25 13:31:05 2008 -0500 44046 44047 mpc85xx: Add support for the MPC8536DS reference board 44048 44049 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44050 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com> 44051 Signed-off-by: Dejan Minic <minic@freescale.com> 44052 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 44053 Signed-off-by: Dave Liu <daveliu@freescale.com> 44054 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44055 44056commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d 44057Author: Kumar Gala <galak@kernel.crashing.org> 44058Date: Tue Aug 12 11:14:19 2008 -0500 44059 44060 mpc85xx: Add support for the MPC8536 44061 44062 The MPC8536 Adds SDHC and SATA controllers to the PQ3 family. We 44063 also have SERDES init code for the 8536. 44064 44065 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44066 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com> 44067 Signed-off-by: Dejan Minic <minic@freescale.com> 44068 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 44069 Signed-off-by: Dave Liu <daveliu@freescale.com> 44070 44071commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f 44072Author: Kumar Gala <galak@kernel.crashing.org> 44073Date: Tue Aug 12 11:13:08 2008 -0500 44074 44075 mpc85xx: Add support for the MPC8572DS reference board 44076 44077 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44078 44079commit 457caecdbca3df21a93abff19eab12dbc61b7897 44080Author: Kumar Gala <galak@kernel.crashing.org> 44081Date: Wed Aug 27 01:05:35 2008 -0500 44082 44083 FSL DDR: Remove old SPD support from cpu/mpc85xx 44084 44085 All 85xx boards have been converted to the new code so we can 44086 remove the old SPD DDR setup code. 44087 44088 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44089 44090commit 0e7927db138976469e7257e29c1338050a50fcd9 44091Author: Kumar Gala <galak@kernel.crashing.org> 44092Date: Wed Aug 27 01:04:07 2008 -0500 44093 44094 FSL DDR: Convert STXSSA to new DDR code. 44095 44096 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44097 44098commit c360d9b970fbb9c13744c355879671165bbb9b9e 44099Author: Kumar Gala <galak@kernel.crashing.org> 44100Date: Wed Aug 27 01:03:42 2008 -0500 44101 44102 FSL DDR: Convert STXGP3 to new DDR code. 44103 44104 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44105 44106commit 8e55313b7ae12352a343f9b9962e662dbd897187 44107Author: Kumar Gala <galak@kernel.crashing.org> 44108Date: Tue Aug 26 23:52:58 2008 -0500 44109 44110 FSL DDR: Convert SBC8560 to new DDR code. 44111 44112 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44113 44114commit 9658bec2e8f55d56ca1be70090ce5a348be4980f 44115Author: Kumar Gala <galak@kernel.crashing.org> 44116Date: Tue Aug 26 23:52:32 2008 -0500 44117 44118 FSL DDR: Convert MPC8540EVAL to new DDR code. 44119 44120 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44121 44122commit 6bfa8f723cfd82c55e3ef5620ade396916470a70 44123Author: Kumar Gala <galak@kernel.crashing.org> 44124Date: Tue Aug 26 23:52:07 2008 -0500 44125 44126 FSL DDR: Convert PM856 to new DDR code. 44127 44128 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44129 44130commit d53bd3e17bd4f460257c19255569ea6dcfaae817 44131Author: Kumar Gala <galak@kernel.crashing.org> 44132Date: Tue Aug 26 23:51:49 2008 -0500 44133 44134 FSL DDR: Convert PM854 to new DDR code. 44135 44136 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44137 44138commit 33b9079ba20926f14238fff863b68a98e938948e 44139Author: Kumar Gala <galak@kernel.crashing.org> 44140Date: Tue Aug 26 23:15:28 2008 -0500 44141 44142 FSL DDR: Convert sbc8548 to new DDR code. 44143 44144 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44145 44146commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd 44147Author: Kumar Gala <galak@kernel.crashing.org> 44148Date: Tue Aug 26 23:14:14 2008 -0500 44149 44150 FSL DDR: Convert atum8548 to new DDR code. 44151 44152 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44153 44154commit be0bd8234b9777ecd63c4c686f72af070d886517 44155Author: Kumar Gala <galak@kernel.crashing.org> 44156Date: Tue Aug 26 22:56:56 2008 -0500 44157 44158 FSL DDR: Convert socrates to new DDR code. 44159 44160 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44161 44162commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0 44163Author: Kumar Gala <galak@kernel.crashing.org> 44164Date: Tue Aug 26 08:02:30 2008 -0500 44165 44166 FSL DDR: Convert MPC8544DS to new DDR code. 44167 44168 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44169 44170commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e 44171Author: Jon Loeliger <jdl@freescale.com> 44172Date: Tue Mar 18 13:51:05 2008 -0500 44173 44174 FSL DDR: Convert MPC8568MDS to new DDR code. 44175 44176 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44177 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44178 44179commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6 44180Author: Jon Loeliger <jdl@freescale.com> 44181Date: Tue Mar 18 13:51:06 2008 -0500 44182 44183 FSL DDR: Convert MPC8548CDS to new DDR code. 44184 44185 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44186 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44187 44188commit aa11d85cf318b961e029fe50d68ca47d004bce93 44189Author: Jon Loeliger <jdl@freescale.com> 44190Date: Mon Mar 17 15:48:18 2008 -0500 44191 44192 FSL DDR: Convert MPC8541CDS to new DDR code. 44193 44194 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44195 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44196 44197commit 2b40edb10d81da7bba724edbccd7f53777112579 44198Author: Jon Loeliger <jdl@freescale.com> 44199Date: Tue Mar 18 11:12:42 2008 -0500 44200 44201 FSL DDR: Convert MPC8555ADS to new DDR code. 44202 44203 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44204 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44205 44206commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c 44207Author: Jon Loeliger <jdl@freescale.com> 44208Date: Tue Mar 18 11:12:44 2008 -0500 44209 44210 FSL DDR: Convert MPC8560ADS to new DDR code. 44211 44212 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44213 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44214 44215commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc 44216Author: Kumar Gala <galak@kernel.crashing.org> 44217Date: Fri Jun 6 13:12:18 2008 -0500 44218 44219 FSL DDR: Convert MPC8540ADS to new DDR code. 44220 44221 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44222 44223commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693 44224Author: Kumar Gala <galak@kernel.crashing.org> 44225Date: Tue Aug 26 21:34:55 2008 -0500 44226 44227 FSL DDR: Add 85xx specific register setting 44228 44229 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44230 44231commit 6fb1b7346849ccd0c20306143e334f5b76143070 44232Author: Kumar Gala <galak@kernel.crashing.org> 44233Date: Mon Jun 9 11:07:46 2008 -0500 44234 44235 FSL DDR: Add e500 TLB helper for DDR code 44236 44237 Provide a helper function that board code can call to map TLBs when 44238 setting up DDR. 44239 44240 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44241 44242commit d26b739afe5a6760bd345743188759cd9d0f3b47 44243Author: Andrew Dyer <adyer@righthandtech.com> 44244Date: Tue Aug 26 17:03:38 2008 -0500 44245 44246 dm9000 remove dead external phy support, gpio fix 44247 44248 dm9000 has code to detect and initialize external phy parts, but later 44249 on in the code the part is forced to use the internal phy 44250 unconditionally. Remove the unused/untested code. 44251 44252 change the GPIO initialization so that only the GPIO used as an 44253 internal phy reset (hardwired in the chip) is set as an output. The 44254 remaining GPIO need to be handled by board specific code to prevent 44255 possible drive conflicts. Set as inputs for safety. 44256 44257 replace a few magic numbers with defines 44258 44259 Signed-off-by: Andrew Dyer <adyer@righthandtech.com> 44260 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44261 44262commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c 44263Author: Peter Tyser <ptyser@xes-inc.com> 44264Date: Tue Aug 26 11:17:48 2008 -0500 44265 44266 Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions 44267 44268 cmd_net.c command descriptions were updated to describe the optional 44269 hostIPaddr argument. The dhcp command help message was also updated 44270 to more closely reflect the other commands in cmd_net.c 44271 44272 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 44273 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44274 44275commit 51dfe1382ebaf691485badfa0ea5e75b0710531b 44276Author: Remy Bohmer <linux@bohmer.net> 44277Date: Wed Aug 20 11:30:28 2008 +0200 44278 44279 Fix bogus error message in the DHCP handler 44280 44281 The DHCP handler has 1 state that is not listed in this case, causing a 44282 failure message when there is actually no failure. 44283 44284 Signed-off-by: Remy Bohmer <linux@bohmer.net> 44285 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44286 44287commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18 44288Author: Remy Bohmer <linux@bohmer.net> 44289Date: Wed Aug 20 11:30:27 2008 +0200 44290 44291 Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set. 44292 44293 The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a 44294 missing extern inside the net/bootp.h header 44295 44296 Signed-off-by: Remy Bohmer <linux@bohmer.net> 44297 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44298 44299commit 1803f7f91ff35ca402259065df7557107dcf28a2 44300Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 44301Date: Tue Aug 19 21:26:32 2008 +0000 44302 44303 ColdFire: Add FEC Buffer descriptors in SRAM 44304 44305 Add FEC Buffer descriptors and data buffer in SRAM for 44306 faster execution and access. 44307 44308 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 44309 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44310 44311commit 429be27ce195210d4b9decf9e867b9ca6155a87d 44312Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 44313Date: Thu Aug 21 23:55:11 2008 +0000 44314 44315 Fix ColdFire FEC warning messages 44316 44317 Types mismatch and implicit declaration of icache_invalid() 44318 warning messages 44319 44320 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 44321 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44322 44323commit 6a002171098e968bd5b362347d2831224fab6048 44324Author: Ben Warren <biggerbadderben@gmail.com> 44325Date: Sat Jul 12 00:17:50 2008 -0700 44326 44327 Moved initialization of SKGE Ethernet driver to board code. 44328 44329 The only board using this driver is the SL8245 board. 44330 Removed initialization for the driver from net/eth.c 44331 44332 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44333 44334commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75 44335Author: Ben Warren <biggerbadderben@gmail.com> 44336Date: Sat Jul 12 00:08:45 2008 -0700 44337 44338 Moved conditional compilation to Makefile for SK98 Ethernet driver 44339 44340 Brute-force removal of #ifdefs. Didn't touch the code. 44341 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44342 44343commit 65d3d99c28dc363d15eaee78225ff643df499b97 44344Author: Ben Warren <biggerbadderben@gmail.com> 44345Date: Fri Jul 11 23:42:19 2008 -0700 44346 44347 Moved initialization of ULI526X Ethernet driver to board code. 44348 44349 The only board using this driver is the Freescale MPC8610HPCD board. 44350 Removed initialization for the driver from net/eth.c 44351 44352 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44353 44354commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f 44355Author: Ben Warren <biggerbadderben@gmail.com> 44356Date: Fri Jul 11 23:15:28 2008 -0700 44357 44358 Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init() 44359 44360 Added board_eth_init() function to bf537-stamp board. 44361 Removed initialization for the Blackin EMAC driver from net/eth.c 44362 44363 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44364 44365commit fc363ce35408f348cacced68505f3747a53e3d7c 44366Author: Ben Warren <biggerbadderben@gmail.com> 44367Date: Wed Jul 9 01:04:19 2008 -0700 44368 44369 Moved initialization of GRETH Ethernet driver to CPU directory 44370 44371 Added a cpu_eth_init() function to leon2/leon3 CPU directories and 44372 removed code from net/eth.c 44373 44374 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44375 44376commit 86882b80771309bceb11c6accfd7f6f90ade8bfc 44377Author: Ben Warren <biggerbadderben@gmail.com> 44378Date: Tue Aug 26 22:16:25 2008 -0700 44379 44380 Moved initialization of MCFFEC Ethernet driver to CPU directory 44381 44382 Added a cpu_eth_init() function to coldfire CPU directories and 44383 removed code from net/eth.c 44384 44385 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44386 44387commit b31da88b9c160d80d42a59cbbb31e24f27184d5c 44388Author: Ben Warren <biggerbadderben@gmail.com> 44389Date: Tue Aug 26 22:12:36 2008 -0700 44390 44391 Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory 44392 44393 Added a cpu_eth_init() function to cpu/mcf547x_8x directory and 44394 removed code from net/eth.c 44395 44396 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 44397 44398commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e 44399Author: Kumar Gala <galak@kernel.crashing.org> 44400Date: Tue Aug 26 15:01:38 2008 -0500 44401 44402 FSL DDR: Remove old SPD support from cpu/mpc86xx 44403 44404 All 86xx boards have been converted to the new code so we can 44405 remove the old SPD DDR setup code. 44406 44407 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44408 44409commit 9bd4e5911b750837515466bc7449087698b88e0e 44410Author: Kumar Gala <galak@kernel.crashing.org> 44411Date: Tue Aug 26 15:01:37 2008 -0500 44412 44413 FSL DDR: Convert SBC8641D to new DDR code. 44414 44415 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44416 44417commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77 44418Author: Jon Loeliger <jdl@freescale.com> 44419Date: Tue Aug 26 15:01:36 2008 -0500 44420 44421 FSL DDR: Convert MPC8610HPCD to new DDR code. 44422 44423 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44424 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44425 44426commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263 44427Author: Kumar Gala <galak@kernel.crashing.org> 44428Date: Tue Aug 26 15:01:35 2008 -0500 44429 44430 FSL DDR: Convert MPC8641HPCN to new DDR code. 44431 44432 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44433 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44434 44435commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f 44436Author: Kumar Gala <galak@kernel.crashing.org> 44437Date: Tue Aug 26 15:01:34 2008 -0500 44438 44439 FSL DDR: Add 86xx specific register setting 44440 44441 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44442 44443commit 233fdd502a6c227f476212b3097653ad48d7e254 44444Author: Kumar Gala <galak@kernel.crashing.org> 44445Date: Tue Aug 26 15:01:32 2008 -0500 44446 44447 FSL DDR: Add DDR2 DIMM paramter support 44448 44449 Compute DIMM parameters based upon the SPD information. 44450 44451 Signed-off-by: James Yang <James.Yang@freescale.com> 44452 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44453 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44454 44455commit 05c05a2363a6ac11e0e405926034546ffad71fad 44456Author: Kumar Gala <galak@kernel.crashing.org> 44457Date: Tue Aug 26 15:01:30 2008 -0500 44458 44459 FSL DDR: Add DDR1 DIMM paramter support 44460 44461 Compute DIMM parameters based upon the SPD information in spd. 44462 44463 Signed-off-by: James Yang <James.Yang@freescale.com> 44464 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44465 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44466 44467commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa 44468Author: Kumar Gala <galak@kernel.crashing.org> 44469Date: Tue Aug 26 15:01:29 2008 -0500 44470 44471 FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code. 44472 44473 The main purpose of this rewrite it to be able to share the same 44474 initialization code on all FSL PowerPC products that have DDR 44475 controllers. (83xx, 85xx, 86xx). 44476 44477 The code is broken up into the following steps: 44478 GET_SPD 44479 COMPUTE_DIMM_PARMS 44480 COMPUTE_COMMON_PARMS 44481 GATHER_OPTS 44482 ASSIGN_ADDRESSES 44483 COMPUTE_REGS 44484 PROGRAM_REGS 44485 44486 This allows us to share more code an easily allow for board specific code 44487 overrides. 44488 44489 Additionally this code base adds support for >4G of DDR and provides a 44490 foundation for supporting interleaving on processors with more than one 44491 controller. 44492 44493 Signed-off-by: James Yang <James.Yang@freescale.com> 44494 Signed-off-by: Jon Loeliger <jdl@freescale.com> 44495 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 44496 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 44497 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44498 44499commit f784e32b4bce0013983506b11af4b85b8ca3d36e 44500Author: Kumar Gala <galak@kernel.crashing.org> 44501Date: Tue Aug 26 15:01:28 2008 -0500 44502 44503 FSL DDR: Provide a generic set_ddr_laws() 44504 44505 Provide a helper function that will setup the last available 44506 LAWs (upto 2) for DDR. Useful for SPD/dyanmic DDR setting code. 44507 44508 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44509 44510commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff 44511Author: James Yang <James.Yang@freescale.com> 44512Date: Tue Aug 26 15:01:27 2008 -0500 44513 44514 Add proper SPD definitions for DDR1/2/3 44515 44516 Also adds helper functions for DDR1/2 to verify the checksum. 44517 44518 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44519 44520commit 285db74716c724ae8a0ff177878fd09a74428c7b 44521Author: Wolfgang Denk <wd@denx.de> 44522Date: Wed Aug 27 01:02:48 2008 +0200 44523 44524 Update CHANGELOG 44525 44526 Signed-off-by: Wolfgang Denk <wd@denx.de> 44527 44528commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b 44529Author: Heiko Schocher <hs@denx.de> 44530Date: Tue Aug 19 10:08:49 2008 +0200 44531 44532 Add support for muas3001 board (MPC8270) 44533 44534 Signed-off-by: Heiko Schocher <hs@denx.de> 44535 44536commit 322098bff32410d2a00031649b47c4ec90a66d9a 44537Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 44538Date: Tue Aug 19 08:31:18 2008 +0530 44539 44540 common/cmd_load.c cleanup - remove unused variables 44541 44542 - Remove unused global variable os_data_count. 44543 - Remove unused variable z. 44544 44545 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in> 44546 44547commit 306620b762a4f9fa6678568ad2e8772dec145208 44548Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 44549Date: Mon Aug 18 13:35:27 2008 +0200 44550 44551 remove MVS1 board 44552 44553 MVS1 board has reached end-of-life and can be removed completely. 44554 44555 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 44556 44557commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7 44558Author: Kumar Gala <galak@kernel.crashing.org> 44559Date: Fri Aug 15 08:24:45 2008 -0500 44560 44561 bootm: refactor do_reset and os boot function args 44562 44563 There is no need for each OS specific function to call do_reset() we 44564 can just do it once in bootm. This means its feasible on an error for 44565 the OS boot function to return. 44566 44567 Also, remove passing in cmd_tbl_t as its not needed by the OS boot 44568 functions. flag isn't currently used but might be in the future so 44569 we left it alone. 44570 44571 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44572 44573commit 40afac22a9c602e55c501c800f1c064324711b56 44574Author: Kumar Gala <galak@kernel.crashing.org> 44575Date: Fri Aug 15 08:24:44 2008 -0500 44576 44577 fdt: Added resize command 44578 44579 Resize the fdt to size + padding to 4k boundary 44580 44581 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44582 44583commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b 44584Author: Kumar Gala <galak@kernel.crashing.org> 44585Date: Fri Aug 15 08:24:43 2008 -0500 44586 44587 fdt: refactor initrd related code 44588 44589 Created a new fdt_initrd() to deal with setting the initrd properties 44590 in the device tree and fixing up the mem reserve. We can use this 44591 both in the choosen node handling and lets us remove some duplicated 44592 code when we fixup the initrd info in bootm on PPC. 44593 44594 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44595 44596commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9 44597Author: Kumar Gala <galak@kernel.crashing.org> 44598Date: Fri Aug 15 08:24:42 2008 -0500 44599 44600 fdt: refactor fdt resize code 44601 44602 Move the fdt resizing code out of ppc specific boot code and into 44603 common fdt support code. 44604 44605 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44606 44607commit 396f635b8ff3ccbc38d75d5eda98444c6466810a 44608Author: Kumar Gala <galak@kernel.crashing.org> 44609Date: Fri Aug 15 08:24:41 2008 -0500 44610 44611 bootm: refactor image detection and os load steps 44612 44613 Created a bootm_start() that handles the parsing and detection of all 44614 the images that will be used by the bootm command (OS, ramdisk, fdt). 44615 As part of this we now tract all the relevant image offsets in the 44616 bootm_headers_t struct. This will allow us to have all the needed 44617 state for future sub-commands and lets us reduce a bit of arch 44618 specific code on SPARC. 44619 44620 Created a bootm_load_os() that deals with decompression and loading 44621 the OS image. 44622 44623 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44624 44625commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2 44626Author: Kumar Gala <galak@kernel.crashing.org> 44627Date: Fri Aug 15 08:24:40 2008 -0500 44628 44629 bootm: move lmb into the bootm_headers_t structure 44630 44631 To allow for persistent state between future bootm subcommands we 44632 need the lmb to exist in a global state. 44633 Moving it into the bootm_headers_t allows us to do that. 44634 44635 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44636 44637commit 54f9c86691309b2f919f567f9255b8bcad2c7651 44638Author: Kumar Gala <galak@kernel.crashing.org> 44639Date: Fri Aug 15 08:24:39 2008 -0500 44640 44641 bootm: Set working fdt address as part of the bootm flow 44642 44643 Set the fdt working address so "fdt FOO" commands can be used as part 44644 of the bootm flow. Also set an the environment variable "fdtaddr" 44645 with the value. 44646 44647 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44648 44649commit 06a09918f3903450313e2047a9cc258bf5872f46 44650Author: Kumar Gala <galak@kernel.crashing.org> 44651Date: Fri Aug 15 08:24:38 2008 -0500 44652 44653 bootm: refactor fdt locating and relocation code 44654 44655 Move the code that handles finding a device tree blob and relocating 44656 it (if needed) into common code so all arch's have access to it. 44657 44658 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44659 44660commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865 44661Author: Kumar Gala <galak@kernel.crashing.org> 44662Date: Fri Aug 15 08:24:37 2008 -0500 44663 44664 bootm: refactor ramdisk locating code 44665 44666 Move determing if we have a ramdisk and where its located into the 44667 common code. Keep track of the ramdisk start and end in the 44668 bootm_headers_t image struct. 44669 44670 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44671 44672commit c160a9544743e80e8889edb2275538e7764ce334 44673Author: Kumar Gala <galak@kernel.crashing.org> 44674Date: Fri Aug 15 08:24:36 2008 -0500 44675 44676 bootm: refactor entry point code 44677 44678 Move entry point code out of each arch and into common code. 44679 Keep the entry point in the bootm_headers_t images struct. 44680 44681 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44682 44683commit 20220d22b9f41446288588cd2e457e0077a18bed 44684Author: Randy Vinson <rvinson@mvista.com> 44685Date: Wed Aug 13 11:44:57 2008 -0700 44686 44687 mpc7448hpc2: Fix PCI I/O space mapping. 44688 44689 PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires 44690 PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O 44691 space such that 0xFA000000 in the processor's address space maps to 0 44692 on the PCI I/O bus. 44693 44694 Signed-off-by Randy Vinson <rvinson@mvista.com> 44695 Acked-by: Roy Zang <tie-fei.zang@freescale.com> 44696 44697commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30 44698Author: Guennadi Liakhovetski <lg@denx.de> 44699Date: Wed Aug 13 18:10:26 2008 +0200 44700 44701 i.MX31: Specify maintainers for i.MX31-based boards 44702 44703 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 44704 Signed-off-by: Wolfgang Denk <wd@denx.de> 44705 44706commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63 44707Author: Wolfgang Denk <wd@denx.de> 44708Date: Tue Aug 26 15:01:28 2008 +0200 44709 44710 ADS5121: adjust image addresses in RAM and flash 44711 44712 Use the same mapping in flash as used by Linux 44713 44714 Signed-off-by: Wolfgang Denk <wd@denx.de> 44715 44716commit 19f101412c16edee9fd55db4039e1d68a833b28b 44717Author: Wolfgang Denk <wd@denx.de> 44718Date: Tue Aug 26 13:14:34 2008 +0200 44719 44720 cmd_mem.c: Fix help message alignment 44721 44722 Bug was introced by "Big white-space cleanup" (53677ef1) 44723 44724 Signed-off-by: Wolfgang Denk <wd@denx.de> 44725 44726commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be 44727Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 44728Date: Wed Aug 20 11:11:52 2008 +0200 44729 44730 change mvBL-M7 default env and move to vendor subdir 44731 44732 fix mvBL-M7 config and move to matrix_vision subdir 44733 44734 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 44735 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 44736 44737commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5 44738Author: Nick Spence <nick.spence@freescale.com> 44739Date: Fri Aug 22 23:52:40 2008 -0700 44740 44741 MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices 44742 44743 This patch adds elements to the 83xx sysconf structure and #define values that are used 44744 by mpc83xx family devices. 44745 44746 Signed-off-by: Nick Spence <nick.spence@freescale.com> 44747 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 44748 44749commit 447ad5768abda669ac0e7f46fcdb62fbe828d637 44750Author: Ira W. Snyder <iws@ovro.caltech.edu> 44751Date: Fri Aug 22 11:00:15 2008 -0700 44752 44753 MPC8349EMDS: Add PCI Agent (PCISLAVE) support 44754 44755 Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a 44756 PCI card rather than a host computer. 44757 44758 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu> 44759 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 44760 44761commit 4ff9aea9d6b5602683a920951ef896996438af62 44762Author: Ira W. Snyder <iws@ovro.caltech.edu> 44763Date: Fri Aug 22 11:00:14 2008 -0700 44764 44765 mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code 44766 44767 This adds a helper function to unlock the PCI configuration bit, so that 44768 any extra PCI setup (such as outbound windows, etc.) can be done after 44769 using the 83XX_GENERIC_PCI code to set up the PCI bus. 44770 44771 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu> 44772 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 44773 44774commit 162338e1fcde231ca4d562e5ebd7859456731691 44775Author: Ira W. Snyder <iws@ovro.caltech.edu> 44776Date: Fri Aug 22 11:00:13 2008 -0700 44777 44778 MPC8349EMDS: use 83XX_GENERIC_PCI setup code 44779 44780 Change the MPC8349EMDS board to use the generic PCI initialization code 44781 for the mpc83xx cpu. 44782 44783 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu> 44784 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 44785 44786commit f4e55a4941e8ba46bc06020b2747928adf8fdee7 44787Author: Kim Phillips <kim.phillips@freescale.com> 44788Date: Mon Aug 25 14:53:09 2008 -0500 44789 44790 fix out of tree building 44791 44792 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 44793 44794commit a49d10cf027d059ee15c262010a05cdaec0961e1 44795Author: Wolfgang Denk <wd@denx.de> 44796Date: Mon Aug 25 23:45:41 2008 +0200 44797 44798 Minor coding style cleanup, updte CHANGELOG 44799 44800 Signed-off-by: Wolfgang Denk <wd@denx.de> 44801 44802commit 4d56e8dea670757c801a6a65531f02a8f981ce1f 44803Author: Stefan Roese <sr@denx.de> 44804Date: Wed Aug 20 20:29:38 2008 +0200 44805 44806 RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338) 44807 44808 This "||" doesn't seem to work. Now using the idea suggest by Scott Wood 44809 to combine both config options into one line. This even allows defining 44810 both options and not generating the target object twice. 44811 44812 Signed-off-by: Stefan Roese <sr@denx.de> 44813 44814commit 079edb913dbae147b50a488cf02e03f473fc5f28 44815Author: Jens Gehrlein <sew_s@tqs.de> 44816Date: Fri Jul 4 16:50:05 2008 +0200 44817 44818 MX31: fix bit masks in function mx31_decode_pll() 44819 44820 Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered. 44821 44822 Signed-off-by: Jens Gehrlein <sew_s@tqs.de> 44823 44824commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6 44825Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 44826Date: Mon Aug 25 11:11:34 2008 +0200 44827 44828 Correct ARM Versatile Timer Initialization 44829 44830 - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271), 44831 -- Timer Value Register @ TIMER Base + 4 is Read-only. 44832 -- Prescale Value (Bits 3-2 of TIMER Control register) 44833 can only be one of 00,01,10. 11 is undefined. 44834 -- CFG_HZ for Versatile board is set to 44835 #define CFG_HZ (1000000 / 256) 44836 So Prescale bits is set to indicate 44837 - 8 Stages of Prescale, Clock divided by 256 44838 - The Timer Control Register has one Undefined/Shouldn't Use Bit 44839 So we should do read/modify/write Operation 44840 44841 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in> 44842 44843commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9 44844Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 44845Date: Mon Aug 25 11:30:29 2008 +0200 44846 44847 Add ARM AMBA PL031 RTC Support 44848 44849 Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 44850 44851commit e39411674669cc880e1ec4a8ca4794fb15c33a45 44852Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 44853Date: Tue Aug 19 16:21:03 2008 -0400 44854 44855 ARM DaVinci: Removed redundant NAND initialization code. 44856 44857 ARM DaVinci: Removed redundant NAND initialization code. 44858 44859 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 44860 44861commit b3fb663b20d995ca41327db877ddb168279b3f62 44862Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 44863Date: Tue Aug 19 16:21:00 2008 -0400 44864 44865 ARM DaVinci: Fix compilation error with new MTD code. 44866 44867 ARM DaVinci: Fix compilation error with new MTD code. 44868 44869 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 44870 44871commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43 44872Author: Gerald Van Baren <vanbaren@cideas.com> 44873Date: Fri Aug 22 14:37:05 2008 -0400 44874 44875 Add note on dereferencing /aliases pointers 44876 44877 Replace the "must quote special characters" note with a hint on 44878 how to dereference /aliases pointers by omitting the leading "/". 44879 This feature was introduced by Kumar Gala as a libfdt enhancement 44880 in commit ed035708235332c3c117ee3bb1a426063f03cfcb. 44881 44882 Example: 44883 44884 => fdt print /aliases 44885 aliases { 44886 ethernet0 = "/qe@e0100000/ucc@2000"; 44887 ethernet1 = "/qe@e0100000/ucc@3000"; 44888 serial0 = "/soc8360@e0000000/serial@4500"; 44889 serial1 = "/soc8360@e0000000/serial@4600"; 44890 pci0 = "/pci@e0008500"; 44891 }; 44892 => fdt print ethernet0 44893 ucc@2000 { 44894 device_type = "network"; 44895 compatible = "ucc_geth"; 44896 cell-index = <0x1>; 44897 reg = <0x2000 0x200>; 44898 interrupts = <0x20>; 44899 interrupt-parent = <0x2>; 44900 local-mac-address = [00 00 00 00 00 00]; 44901 rx-clock-name = "none"; 44902 tx-clock-name = "clk9"; 44903 phy-handle = <0x3>; 44904 phy-connection-type = "rgmii-id"; 44905 pio-handle = <0x4>; 44906 }; 44907 44908 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 44909 44910commit feeca3f578b7f53c032ba203698751c982f8bf5a 44911Author: Kumar Gala <galak@kernel.crashing.org> 44912Date: Thu Aug 14 08:28:19 2008 -0500 44913 44914 libfdt: Add support for using aliases in fdt_path_offset() 44915 44916 If the path doesn't start with '/' check to see if it matches some alias 44917 under "/aliases" and substitute the matching alias value in the path 44918 and retry the lookup. 44919 44920 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 44921 Acked-by: David Gibson <david@gibson.dropbear.id.au> 44922 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 44923 44924commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e 44925Author: David Gibson <david@gibson.dropbear.id.au> 44926Date: Wed Aug 6 14:50:49 2008 +1000 44927 44928 libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen() 44929 44930 As well as fdt_subnode_offset(), libfdt includes an 44931 fdt_subnode_offset_namelen() function that takes the subnode name to 44932 look up not as a NUL-terminated string, but as a string with an 44933 explicit length. This can be useful when the caller has the name as 44934 part of a longer string, such as a full path. 44935 44936 However, we don't have corresponding 'namelen' versions for 44937 fdt_get_property() and fdt_getprop(). There are less obvious use 44938 cases for these variants on property names, but there are 44939 circumstances where they can be useful e.g. looking up property names 44940 which need to be parsed from a longer string buffer such as user input 44941 or a configuration file, or looking up an alias in a path with 44942 IEEE1275 style aliases. 44943 44944 So, since it's very easy to implement such variants, this patch does 44945 so. The original NUL-terminated variants are, of course, implemented 44946 in terms of the namelen versions. 44947 44948 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 44949 44950commit f171746f701ea58bf6a53e835b53d2aaebee0d81 44951Author: David Gibson <david@gibson.dropbear.id.au> 44952Date: Tue Jul 29 14:51:22 2008 +1000 44953 44954 libfdt: Forgot one function when cleaning the namespace 44955 44956 In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all 44957 libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the 44958 chance of collisions with things from whatever package libfdt is 44959 embedded in, pulled into the libfdt build via that environment's 44960 libfdt_env.h. 44961 44962 Except... I missed one. This patch applies the same treatment to 44963 _stringlist_contains(). While we're at it, also make it static since 44964 it's only used in the same file. 44965 44966 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 44967 44968commit 46390da15411351fc3b498bd8c1615f78fe80df0 44969Author: Wolfram Sang <w.sang@pengutronix.de> 44970Date: Wed Jul 9 11:22:44 2008 +0200 44971 44972 libfdt: Improve documentation in libfdt.h 44973 44974 Fix a few typos and mistakes. 44975 44976 Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> 44977 Acked-by: David Gibson <david@gibson.dropbear.id.au> 44978 44979commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66 44980Author: David Gibson <david@gibson.dropbear.id.au> 44981Date: Wed Jul 9 14:10:24 2008 +1000 44982 44983 libfdt: Increase namespace-pollution paranoia 44984 44985 libfdt is supposed to easy to embed in projects all and sundry. 44986 Often, it won't be practical to separate the embedded libfdt's 44987 namespace from that of the surrounding project. Which means there can 44988 be namespace conflicts between even libfdt's internal/static functions 44989 and functions or macros coming from the surrounding project's headers 44990 via libfdt_env.h. 44991 44992 This patch, therefore, renames a bunch of libfdt internal functions 44993 and macros and makes a few other chances to reduce the chances of 44994 namespace collisions with embedding projects. Specifically: 44995 - Internal functions (even static ones) are now named _fdt_*() 44996 44997 - The type and (static) global for the error table in 44998 fdt_strerror() gain an fdt_ prefix 44999 45000 - The unused macro PALIGN is removed
45001 45002 - The memeq and streq macros are removed and open-coded in the 45003 users (they were only used once each) 45004 45005 - Other macros gain an FDT_ prefix 45006 45007 - To save some of the bulk from the previous change, an 45008 FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) == 45009 FDT_ALIGN(x, FDT_TAGSIZE) 45010 45011 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 45012 45013commit c66830263af19831f2b7db307f79d1943febf7f9 45014Author: David Gibson <david@gibson.dropbear.id.au> 45015Date: Mon Jul 7 10:14:15 2008 +1000 45016 45017 dtc: Enable and fix -Wcast-qual warnings 45018 45019 Enabling -Wcast-qual warnings in dtc shows up a number of places where 45020 we are incorrectly discarding a const qualification. There are also 45021 some places where we are intentionally discarding the 'const', and we 45022 need an ugly cast through uintptr_t to suppress the warning. However, 45023 most of these are pretty well isolated with the *_w() functions. So 45024 in the interests of maximum safety with const qualifications, this 45025 patch enables the warnings and fixes the existing complaints. 45026 45027 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 45028 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 45029 45030commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e 45031Author: David Gibson <david@gibson.dropbear.id.au> 45032Date: Mon Jul 7 10:10:48 2008 +1000 45033 45034 dtc: Enable and fix -Wpointer-arith warnings 45035 45036 This patch turns on the -Wpointer-arith option in the dtc Makefile, 45037 and fixes the resulting warnings due to using (void *) in pointer 45038 arithmetic. While convenient, pointer arithmetic on void * is not 45039 portable, so it's better that we avoid it, particularly in libfdt. 45040 45041 Also add necessary definition of uintptr_t needed by David Gibson's 45042 changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition 45043 comes from stdint.h, which u-boot doesn't have). -- gvb 45044 45045 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 45046 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 45047 45048commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd 45049Author: Tirumala R Marri <tmarri@amcc.com> 45050Date: Thu Aug 21 21:54:53 2008 -0700 45051 45052 ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix 45053 45054 During recent PCI-E tests it has been found that current 45055 driverl level and de-emphasis values are not set correctly. 45056 After sweeping throgh all de-ephasis values, it was found that 45057 0x130 is a right value. Where 0x13 is driver level and 0 is 45058 de-emphasis. 45059 45060 Signed-off-by: Tirumala R Marri <tmarri@amcc.com> 45061 Signed-off-by: Stefan Roese <sr@denx.de> 45062 45063commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b 45064Author: Remy Bohmer <linux@bohmer.net> 45065Date: Wed Aug 20 20:46:56 2008 +0200 45066 45067 Make the YAFFS filesystem work 45068 45069 Recently the YAFFS filesystem support has been added to U-boot. 45070 However, just enabling CONFIG_YAFFS2 is not enough to get it working. 45071 45072 ymount will generate an exception (when dereferencing mtd->readoob()), because 45073 the genericDevice is a null pointer. Further, a lot of logging is produced 45074 while using YAFFS fs, so logging should also be disabled. 45075 Both issues are solved by this patch. 45076 45077 With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem 45078 in U-boot, as well as in Linux. 45079 45080 Tested on a Atmel AT91SAM9261EK board. 45081 45082 Signed-off-by: Remy Bohmer <linux@bohmer.net> 45083 Acked-by: William Juul <william.juul@tandberg.com> 45084 Signed-off-by: Scott Wood <scottwood@freescale.com> 45085 45086commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f 45087Author: Kyungmin Park <kmpark@infradead.org> 45088Date: Tue Aug 19 08:42:53 2008 +0900 45089 45090 Fix OneNAND read_oob/write_oob functions compatability 45091 45092 Also sync with kernel OneNAND codes 45093 45094 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 45095 Signed-off-by: Scott Wood <scottwood@freescale.com> 45096 45097commit 8d765456c1d33f2010d2717ee58de7647fdc6346 45098Author: Scott Wood <scottwood@freescale.com> 45099Date: Mon Aug 18 17:11:20 2008 -0500 45100 45101 NAND: Remove delay from nand_boot_fsl_elbc.c. 45102 45103 It was for debugging purposes, and shouldn't have been left in. 45104 45105 Signed-off-by: Scott Wood <scottwood@freescale.com> 45106 45107commit f556483734126793522fb7a8cf36af90da78f084 45108Author: Stefan Roese <sr@denx.de> 45109Date: Thu Aug 21 11:05:03 2008 +0200 45110 45111 ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch 45112 45113 This patch fixes some minor issues introduced with the patch: 45114 ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika: 45115 45116 - Rework memory-queue and PLB arbiter optimization code, that the 45117 local variable is not needed anymore. This removes one #ifdef. 45118 - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead 45119 of XXX+ 0x01). This was not introduced by Prodyut, just a 45120 copy-paste problem. 45121 45122 Signed-off-by: Stefan Roese <sr@denx.de> 45123 45124commit 079589bcfb24ba11068460276a3cc9549ab5346f 45125Author: Prodyut Hazarika <phazarika@amcc.com> 45126Date: Wed Aug 20 09:38:51 2008 -0700 45127 45128 ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe, 45129 PPC405EX and PPC460EX/GT/SX 45130 45131 - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX 45132 processors 45133 - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared 45134 across processors (405 and 440/460) 45135 - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX 45136 processors 45137 - Add register bit definitions for Memory Queue Configuration registers 45138 45139 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com> 45140 Signed-off-by: Stefan Roese <sr@denx.de> 45141 45142commit ba37aa03287c5483c61c0a3e320c8888bee0143a 45143Author: Kumar Gala <galak@kernel.crashing.org> 45144Date: Tue Aug 19 15:41:18 2008 -0500 45145 45146 fdt: rework fdt_fixup_ethernet() to use env instead of bd_t 45147 45148 Move to using the environment variables 'ethaddr', 'eth1addr', etc.. 45149 instead of bd->bi_enetaddr, bi_enet1addr, etc. 45150 45151 This makes the code a bit more flexible to the number of ethernet 45152 interfaces. 45153 45154 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 45155 45156commit 4cacf7c64609839f809e2f9c45873f1d65861703 45157Author: Stefan Roese <sr@denx.de> 45158Date: Tue Aug 19 14:57:55 2008 +0200 45159 45160 hush: Fix printf debug macro in hush.c so that it usable in U-Boot 45161 45162 This patch changes the debug_printf() marco for U-Boot in hush.c and 45163 moves the definition of DEBUG_SHELL to a place that is actually compiled 45164 under U-Boot. 45165 45166 Signed-off-by: Stefan Roese <sr@denx.de> 45167 45168commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2 45169Author: Heiko Schocher <hs@denx.de> 45170Date: Tue Aug 19 09:57:41 2008 +0200 45171 45172 cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER 45173 45174 Commit 00b1883a4cac59d97cd297b1a3a398db85982865 45175 missed a few boards: 45176 include/configs/M5253DEMO.h 45177 include/configs/ml507.h 45178 include/configs/redwood.h 45179 45180 This patch fixes this. 45181 45182 Signed-off-by: Heiko Schocher <hs@denx.de> 45183 45184commit 0768b7a872964085eece8d5e9fec9175e9deb161 45185Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45186Date: Mon Aug 18 13:41:27 2008 +0200 45187 45188 Consolidate strmhz() implementation 45189 45190 ARM, i386, m68k and ppc all have identical implementations of strmhz(). 45191 Other architectures don't provide this function at all. 45192 45193 This patch moves strmhz() into lib_generic, reducing code duplication 45194 and providing a more unified API across architectures. 45195 45196 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45197 45198commit a928d0df211f1d829308d335d19be3ca42558dfc 45199Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 45200Date: Mon Aug 18 12:02:51 2008 +0200 45201 45202 fix mvbc_p board build warnings 45203 45204 fix build warnings @ mvBC-P board by using correct types, i.e. change 45205 out_be32 to out_be16 and out_8 accordingly. 45206 45207 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 45208 45209commit a958b663d27f616bd1dfb720d1b476d1ecaaa569 45210Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45211Date: Sat Aug 16 18:54:27 2008 +0200 45212 45213 Makefile: fix posix support on find 45214 45215 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45216 45217commit bef92e215d945cc574399c1a1b00a3a76d35aa03 45218Author: Axel Beierlein <belatronix@web.de> 45219Date: Sat Aug 16 00:30:48 2008 +0200 45220 45221 Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards 45222 45223 Tested with TQM5200S on STK52XX.200 Board 45224 45225 Signed-off-by: Axel Beierlein <belatronix@web.de> 45226 45227commit 0800707b6d5041a840a65d556032c15c584b55f8 45228Author: Peter Tyser <ptyser@xes-inc.com> 45229Date: Fri Aug 15 14:36:32 2008 -0500 45230 45231 mod_i2c_mem() bugfix 45232 45233 The last used chip, address, and address length were not being 45234 stored for the imm and imn commands. 45235 45236 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 45237 45238commit 4afbef967275b2f636abae86f91b81becee7ad03 45239Author: Steven A. Falco <sfalco@harris.com> 45240Date: Fri Aug 15 15:37:31 2008 -0400 45241 45242 Fix typo in spelling of ATAPI. 45243 45244 Correct a small spelling mistake. 45245 45246 Signed-off-by: Steven A. Falco <sfalco@harris.com> 45247 45248commit 36c2d3062ecc6ab85f8e237180eb134464c48418 45249Author: Steven A. Falco <sfalco@harris.com> 45250Date: Fri Aug 15 15:34:10 2008 -0400 45251 45252 Add a hook to allow board-specific PIO mode setting. 45253 45254 This patch adds a hook whereby a board-specific routine can be called to 45255 configure hardware for a PIO mode. The prototype for the board-specific 45256 routine is: 45257 45258 int inline ide_set_piomode(int pio_mode) 45259 45260 ide_set_piomode should be prepared to configure hardware for a pio_mode 45261 between 0 and 6, inclusive. It should return 0 on success or 1 on failure. 45262 45263 Signed-off-by: Steven A. Falco <sfalco@harris.com> 45264 45265commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4 45266Author: Steven A. Falco <sfalco@harris.com> 45267Date: Fri Aug 15 15:29:12 2008 -0400 45268 45269 Replace enums in ata.h with an include of libata.h 45270 45271 This patch removes some enums from ata.h and replaces them with an 45272 include of libata.h. This way, we eliminate duplicated code, and 45273 prevent errors whereby the different versions could be out of sync. 45274 45275 Signed-off-by: Steven A. Falco <sfalco@harris.com> 45276 45277commit 0de0afbca865ecf482b4d2b635236746def8518f 45278Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45279Date: Fri Aug 15 18:32:41 2008 +0200 45280 45281 coldfire: fix CFI drivers activation with new macro 45282 45283 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER 45284 45285 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45286 45287commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9 45288Author: Kumar Gala <galak@kernel.crashing.org> 45289Date: Fri Aug 15 08:24:35 2008 -0500 45290 45291 fdt: fdt addr w/o any args reports back the current working address 45292 45293 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 45294 45295commit f953d99fd528a496b400a706b511eaf8e3ea66af 45296Author: Kumar Gala <galak@kernel.crashing.org> 45297Date: Fri Aug 15 08:24:34 2008 -0500 45298 45299 fdt: added the ability to set initrd start/end via chosen command 45300 45301 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 45302 45303commit ffa4bafacaef67058463b3d7d0099ced57569dd2 45304Author: Kumar Gala <galak@kernel.crashing.org> 45305Date: Fri Aug 15 08:24:33 2008 -0500 45306 45307 Add command to enable/disable interrupts 45308 45309 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 45310 45311commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a 45312Author: Nick Spence <nick.spence@freescale.com> 45313Date: Tue Aug 19 22:21:16 2008 -0700 45314 45315 CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect() 45316 45317 This patch fixes a missing vendor code in the flash_real_protect() function. 45318 45319 Signed-off-by: Nick Spence <nick.spence@freescale.com> 45320 Signed-off-by: Stefan Roese <sr@denx.de> 45321 45322commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58 45323Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45324Date: Tue Aug 19 16:53:39 2008 +0000 45325 45326 CFI: Fix AMD Legacy sector protect 45327 45328 New implement sector lock and unlock or softlock commands 45329 do not exist in AMD legacy flash. Thus, causing issue 45330 when erasing AMD legacy flash (such as lv040) 45331 45332 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45333 Signed-off-by: Stefan Roese <sr@denx.de> 45334 45335commit 492671404140f09d5b21b3d2ce4e362c0692c069 45336Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45337Date: Wed Aug 20 09:40:16 2008 +0200 45338 45339 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER 45340 45341 CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER. 45342 45343 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45344 45345commit 33eac2b3d946fc998a09245dfe54d017079b9056 45346Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45347Date: Wed Aug 20 09:28:36 2008 +0200 45348 45349 hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT 45350 45351 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45352 45353commit 25da0b84195fdda89a943b2d25757db5afeef5b8 45354Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45355Date: Wed Aug 20 09:27:37 2008 +0200 45356 45357 favr-32-ezkit: Fix printf format warnings 45358 45359 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45360 45361commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8 45362Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45363Date: Fri Aug 15 12:04:25 2008 +0200 45364 45365 MAINTAINERS: Sort avr32 section alphabetically 45366 45367 The rest of the MAINTAINERS file appears to be sorted 45368 almost-alphabetically, but entries for the newly added AVR32 boards were 45369 added somewhat randomly. This patch sorts the list alphabetically again. 45370 45371 Also update my e-mail address. The old one still works, but it may not 45372 work forever. 45373 45374 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45375 45376commit 13b50fe3bc065c48911fa373231421280855a9d6 45377Author: Mark Jackson <mpfj@mimc.co.uk> 45378Date: Wed Jul 30 13:07:27 2008 +0100 45379 45380 avr32: Add MIMC200 board 45381 45382 The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra 45383 8MByte FLASH and 128KByte FRAM. 45384 45385 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 45386 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 45387 45388commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb 45389Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 45390Date: Wed Jul 9 21:07:34 2008 +0900 45391 45392 rtl8169: add support for RTL8110SCL 45393 45394 This patch fixes a problem that RTL8110SCL started transfer 45395 with an incorrect memory address. 45396 45397 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 45398 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 45399 45400commit 943b825bf15e6a28ac8328e0f6489478bceef1ea 45401Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45402Date: Wed Jun 25 15:48:52 2008 -0500 45403 45404 Fix dm9000 receive status and len little endian issue 45405 45406 The received status and len was in little endian 45407 format and caused the ethernet unable to proceed 45408 further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit(). 45409 45410 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45411 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 45412 45413commit fcd69a1a57fb2af4d26201422095a4be9f36963e 45414Author: Kumar Gala <galak@kernel.crashing.org> 45415Date: Fri Aug 15 08:24:32 2008 -0500 45416 45417 Clean up usage of icache_disable/dcache_disable 45418 45419 There is no point in disabling the icache on 7xx/74xx/86xx parts and not 45420 also flushing the icache. All callers of invalidate_l1_instruction_cache() 45421 call icache_disable() right after. Make it so icache_disable() calls 45422 invalidate_l1_instruction_cache() for us. 45423 45424 Also, dcache_disable() already calls dcache_flush() so there is no point 45425 in the explicit calls of dcache_flush(). 45426 45427 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 45428 45429commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13 45430Author: Kumar Gala <galak@kernel.crashing.org> 45431Date: Fri Aug 15 08:24:31 2008 -0500 45432 45433 Update linux bootm to support ePAPR client interface 45434 45435 The ePAPR spec has some subtle differences from the current device 45436 tree based boot interface to the powerpc linux kernel. The powerpc 45437 linux kernel currently ignores the differences that ePAPR specifies. 45438 45439 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 45440 45441commit b734e5556a239b3be5f9693b2f4b4b739683ec16 45442Author: Wolfgang Denk <wd@denx.de> 45443Date: Mon Aug 18 23:50:20 2008 +0200 45444 45445 Minor code cleanup: keep lists sorted. 45446 45447 Signed-off-by: Wolfgang Denk <wd@denx.de> 45448 45449commit d0039d4ed275e6ca09fb417895024ad02be118c4 45450Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 45451Date: Wed Jul 23 19:10:14 2008 +0200 45452 45453 Add support for ADT7460 I2C monitor chip 45454 45455 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 45456 45457commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b 45458Author: Michal Simek <monstr@monstr.eu> 45459Date: Mon Jul 14 19:45:45 2008 +0200 45460 45461 video: Clean drivers/video/Makefile 45462 45463 Signed-off-by: Michal Simek <monstr@monstr.eu> 45464 45465commit 871c18dd301752270e1f74328c846c3104be1e2e 45466Author: Michal Simek <monstr@monstr.eu> 45467Date: Mon Jul 14 19:45:37 2008 +0200 45468 45469 rtc: Clean drivers/rtc/Makefile 45470 45471 Signed-off-by: Michal Simek <monstr@monstr.eu> 45472 45473commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5 45474Author: Michal Simek <monstr@monstr.eu> 45475Date: Mon Jul 14 19:45:35 2008 +0200 45476 45477 i2c: Clean drivers/i2c/ Makefile 45478 45479 Signed-off-by: Michal Simek <monstr@monstr.eu> 45480 45481commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e 45482Author: Harald Welte <laforge@openmoko.org> 45483Date: Wed Jul 9 22:30:30 2008 +0800 45484 45485 Add 'license' command to U-Boot command line 45486 45487 The 'license' command includes the U-Boot license (GPLv2) into the 45488 actual bootloader binary. The license text can be shown interactively 45489 at the U-Boot commandline. 45490 45491 For products where the commandline can actually be accessed by the 45492 end user, this helps to prevent inadvertent GPL violations, since the 45493 GPLv2 license text can no longer be 'forgotten' to be included into 45494 the product. 45495 45496 The 'license' command can be enabled by CONFIG_CMD_LICENSE. 45497 45498 Signed-off-by: Harald Welte <laforge@openmoko.org> 45499 45500commit fe2ce5500ebf43d79d227190bd2370232d5b113d 45501Author: Harald Welte <laforge@gnumonks.org> 45502Date: Sun Jul 6 15:56:38 2008 +0800 45503 45504 add 'unzip' command to u-boot commandline 45505 45506 [PATCH] add new 'unzip' command to u-boot commandline 45507 45508 common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from 45509 memory to memory, and option CONFIG_CMD_UNZIP to enable it 45510 45511 Signed-off-by: Werner Almesberger <werner@openmoko.org> 45512 Signed-off-by: Harald Welte <laforge@openmoko.org> 45513 45514commit 07efc9e321619c3dec213310c32e011aa6f02783 45515Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45516Date: Wed Aug 6 19:37:17 2008 -0500 45517 45518 Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase 45519 45520 The CFG_ENV_SIZE is not suitable used for SPI flash erase 45521 sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE. 45522 Add condition check if CFG_ENV_SIZE is larger than 45523 CFG_ENV_SECT_SIZE, calculate the right number of sectors for 45524 erasing. 45525 45526 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45527 45528commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9 45529Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45530Date: Mon Aug 11 15:54:25 2008 +0000 45531 45532 ColdFire: Multiple fixes for M5282EVB 45533 45534 Incorrect CFG_HZ value, change 1000000 to 1000. 45535 Rename #waring to #warning. RAMBAR1 uses twice 45536 in start.S, rename the later to FLASHBAR. Insert 45537 nop for DRAM setup. And, env_offset in linker file. 45538 45539 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45540 45541commit 10db3a17a278dd3a27668b31cb32cdd1476e9513 45542Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45543Date: Mon Aug 11 15:26:43 2008 +0000 45544 45545 ColdFire: Move m5282evb from board to board/freescale 45546 45547 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45548 45549commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4 45550Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45551Date: Mon Aug 11 15:25:07 2008 +0000 45552 45553 ColdFire: Move m5272c3 from board to board/freescale 45554 45555 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45556 45557commit 659e9bad629a480f606b286d5703aef7159edf98 45558Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45559Date: Mon Aug 11 15:23:16 2008 +0000 45560 45561 ColdFire: Move m5271evb from board to board/freescale 45562 45563 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45564 45565commit 05316f8ece8206339a208ec052f039cd0f7ca922 45566Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45567Date: Mon Aug 11 13:41:49 2008 +0000 45568 45569 ColdFire: Add M54451EVB platform support for MCF5445x 45570 45571 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45572 45573commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136 45574Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45575Date: Wed Aug 6 19:14:08 2008 -0500 45576 45577 ColdFire: Add Serial Flash support for M54455EVB 45578 45579 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45580 45581commit 9f751551456828b2d0ff417f10959fb0c7110bd0 45582Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45583Date: Wed Jul 23 20:38:53 2008 -0500 45584 45585 ColdFire: Implement SBF feature for M5445EVB 45586 45587 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45588 45589commit a7323bba229203aae2604afde131ab47bad4eadc 45590Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45591Date: Wed Jul 23 17:53:36 2008 -0500 45592 45593 ColdFire: Add SSPI feature for MCF5445x 45594 45595 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45596 45597commit b2d022d1ac3f59bffa9cec249341e77aea168abc 45598Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45599Date: Wed Jul 23 17:37:10 2008 -0500 45600 45601 ColdFire: Use CFI Flash driver for M54455EVB 45602 45603 Remove non-common flash driver in 45604 board/freescale/m54455evb/flash.c. The non-cfi flash will 45605 use CONFIG_FLASH_CFI_LEGACY to configure the flash 45606 attribute. 45607 45608 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45609 45610commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0 45611Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45612Date: Wed Jul 23 17:11:47 2008 -0500 45613 45614 ColdFire: Add M5253DEMO platform support for MCF5253 45615 45616 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45617 45618commit 80ba61fd82569af40e04d4a089257b81881884f2 45619Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45620Date: Wed Aug 6 14:17:09 2008 -0500 45621 45622 ColdFire: Raise M5253EVBE uart baudrate to 115200 bps 45623 45624 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45625 45626commit d361307e73ce1f6fc68760123f37d4876f851f3e 45627Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45628Date: Wed Aug 6 14:11:36 2008 -0500 45629 45630 ColdFire: Fix M5253EVB dram bring up issue 45631 45632 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 45633 45634commit 4b0708093e15b412296328bf81325cf9b69fe512 45635Author: Wolfgang Denk <wd@denx.de> 45636Date: Thu Aug 14 14:41:06 2008 +0200 45637 45638 Coding Style cleanup, update CHANGELOG 45639 45640 Signed-off-by: Wolfgang Denk <wd@denx.de> 45641 45642commit 68cf19aae48f2969ec70669604d0d776f02c8bc4 45643Author: Scott Wood <scottwood@freescale.com> 45644Date: Wed Aug 13 18:24:05 2008 -0500 45645 45646 socrates: Update NAND driver to new API. 45647 45648 Also, fix some minor formatting issues, and simplify the handling of 45649 "state" for writes. 45650 45651 Signed-off-by: Scott Wood <scottwood@freescale.com> 45652 45653commit ba22d10f39eaeedd035e8265616e31ff88e314d5 45654Author: Scott Wood <scottwood@freescale.com> 45655Date: Wed Aug 13 18:03:40 2008 -0500 45656 45657 quad100hd: Update NAND driver to new API. 45658 45659 Signed-off-by: Scott Wood <scottwood@freescale.com> 45660 45661commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838 45662Author: Scott Wood <scottwood@freescale.com> 45663Date: Wed Aug 13 17:53:48 2008 -0500 45664 45665 m5373evb: Update NAND driver to new API. 45666 45667 Signed-off-by: Scott Wood <scottwood@freescale.com> 45668 45669commit 1a23a197c8722b805f40895544bbdb1a648c1c82 45670Author: Scott Wood <scottwood@freescale.com> 45671Date: Wed Aug 13 17:04:30 2008 -0500 45672 45673 s3c24x0: Update NAND driver to new API. 45674 45675 Signed-off-by: Scott Wood <scottwood@freescale.com> 45676 45677commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f 45678Author: Scott Wood <scottwood@freescale.com> 45679Date: Wed Aug 13 15:56:00 2008 -0500 45680 45681 at91: Update board NAND drivers to current API. 45682 45683 Signed-off-by: Scott Wood <scottwood@freescale.com> 45684 45685commit d438d50848e9425286e5fb0493e0affb5a0b1e1b 45686Author: Kyungmin Park <kmpark@infradead.org> 45687Date: Wed Aug 13 09:11:02 2008 +0900 45688 45689 Fix OneNAND build break 45690 45691 Since page size field is changed from oobblock to writesize. But OneNAND is not updated. 45692 - fix bufferram management at erase operation 45693 This patch includes the NAND/OneNAND state filed too. 45694 45695 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 45696 Signed-off-by: Scott Wood <scottwood@freescale.com> 45697 45698commit 9483df6408c25f16060432de3868901e352e23bc 45699Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45700Date: Wed Aug 13 01:40:43 2008 +0200 45701 45702 drivers/mtd/nand_legacy: Move conditional compilation to Makefile 45703 45704 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45705 45706commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2 45707Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45708Date: Wed Aug 13 01:40:43 2008 +0200 45709 45710 drivers/mtd/nand: Move conditional compilation to Makefile 45711 45712 rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY 45713 45714 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45715 45716commit 4fb09b81920e5dfdfc4576883186733f0bd6059c 45717Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45718Date: Wed Aug 13 01:40:42 2008 +0200 45719 45720 drivers/mtd/onenand: Move conditional compilation to Makefile 45721 45722 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45723 45724commit 00b1883a4cac59d97cd297b1a3a398db85982865 45725Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45726Date: Wed Aug 13 01:40:42 2008 +0200 45727 45728 drivers/mtd: Move conditional compilation to Makefile 45729 45730 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER 45731 45732 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45733 45734commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921 45735Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45736Date: Wed Aug 13 01:40:41 2008 +0200 45737 45738 drivers/qe: Move conditional compilation to Makefile 45739 45740 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45741 45742commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493 45743Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45744Date: Wed Aug 13 01:40:40 2008 +0200 45745 45746 drivers/pci: Move conditional compilation to Makefile 45747 45748 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45749 45750commit 55d6d2d39fe3fe87802e399aa17539368b495d2e 45751Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45752Date: Wed Aug 13 01:40:40 2008 +0200 45753 45754 drivers/misc: Move conditional compilation to Makefile 45755 45756 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45757 45758commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1 45759Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45760Date: Wed Aug 13 01:40:40 2008 +0200 45761 45762 drivers/input: Move conditional compilation to Makefile 45763 45764 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45765 45766commit 88f57e093114a44aa9a858d52b099bcc52034a8c 45767Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45768Date: Wed Aug 13 01:40:39 2008 +0200 45769 45770 drivers/dma: Move conditional compilation to Makefile 45771 45772 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45773 45774commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7 45775Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45776Date: Wed Aug 13 01:40:39 2008 +0200 45777 45778 drivers/block: Move conditional compilation to Makefile 45779 45780 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45781 45782commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a 45783Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45784Date: Wed Aug 13 01:40:39 2008 +0200 45785 45786 serial: move CFG_NS9750_UART to CONFIG_NS9750_UART 45787 45788 move also conditional compilation to Makefile 45789 45790 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45791 45792commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e 45793Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45794Date: Wed Aug 13 01:40:38 2008 +0200 45795 45796 serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE 45797 45798 move also conditional compilation to Makefile 45799 45800 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45801 45802commit d6e9ee92e890f67594ab150689510df361133ead 45803Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45804Date: Wed Aug 13 01:40:38 2008 +0200 45805 45806 common: Move conditional compilation to Makefile 45807 45808 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45809 45810commit f5acb9fd9bba1160de3ef349c7d33fe510eda286 45811Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45812Date: Wed Aug 13 01:40:09 2008 +0200 45813 45814 mx31: move freescale's mx31 boards to vendor board dir 45815 45816 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45817 45818commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2 45819Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45820Date: Sat Jul 5 23:11:11 2008 +0200 45821 45822 at91: move arch-at91sam9 to arch-at91 45823 45824 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 45825 45826commit 195ccfc5991d48764b2519941e3507f693851d5d 45827Author: Fathi BOUDRA <fabo@debian.org> 45828Date: Wed Aug 6 10:06:20 2008 +0200 45829 45830 OneNAND: Fill in MTD function pointers for OneNAND. 45831 45832 onenand_print_device_info(): 45833 - Now returns a string to be placed in mtd->name, 45834 rather than calling printf. 45835 - Remove verbose parameter as it becomes useless. 45836 45837 Signed-off-by: Fathi Boudra <fabo@debian.org> 45838 Signed-off-by: Scott Wood <scottwood@freescale.com> 45839 45840commit aa646643b6bc250cb3a4966bf728876e0c10d329 45841Author: Guennadi Liakhovetski <lg@denx.de> 45842Date: Wed Aug 6 21:42:07 2008 +0200 45843 45844 nand_spl: Support page-aligned read in nand_load, use chipselect 45845 45846 Supporting page-aligned reads doesn't incure any sinificant overhead, just 45847 a small change in the algorithm. Also replace in_8 with readb, since there 45848 is no in_8 on ARM. 45849 45850 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 45851 Signed-off-by: Scott Wood <scottwood@freescale.com> 45852 45853commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c 45854Author: Scott Wood <scottwood@freescale.com> 45855Date: Tue Aug 5 11:15:59 2008 -0500 45856 45857 NAND boot: Update large page support for current API. 45858 45859 Also, remove the ctrl variable in favor of passing the constants 45860 directly, and remove redundant (u8) casts. 45861 45862 Signed-off-by: Scott Wood <scottwood@freescale.com> 45863 45864commit e4c09508545d1c45617ba45391c03c03cbc360b9 45865Author: Scott Wood <scottwood@freescale.com> 45866Date: Mon Jun 30 14:13:28 2008 -0500 45867 45868 NAND boot: MPC8313ERDB support 45869 45870 Note that with older board revisions, NAND boot may only work after a 45871 power-on reset, and not after a warm reset. I don't have a newer board 45872 to test on; if you have a board with a 33MHz crystal, please let me know 45873 if it works after a warm reset. 45874 45875 Signed-off-by: Scott Wood <scottwood@freescale.com> 45876 45877commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71 45878Author: Scott Wood <scottwood@freescale.com> 45879Date: Thu Jun 26 14:06:52 2008 -0500 45880 45881 mpc8313erdb: Enable NAND in config. 45882 45883 Signed-off-by: Scott Wood <scottwood@freescale.com> 45884 45885commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4 45886Author: Guennadi Liakhovetski <lg@denx.de> 45887Date: Thu Jul 31 12:38:26 2008 +0200 45888 45889 NAND: Do not write or read a whole block if it is larger than the environment 45890 45891 Environment can be smaller than NAND block size, do not need to read a whole 45892 block and minimum for writing is one page. Also remove an unused variable. 45893 45894 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 45895 Signed-off-by: Scott Wood <scottwood@freescale.com> 45896 45897commit eafcabd15f00c142156235c519fcc55b10993241 45898Author: Marcel Ziswiler <marcel@ziswiler.com> 45899Date: Sun Jun 22 16:30:06 2008 +0200 45900 45901 NAND: chip->state does not always get set. 45902 45903 Fixes an issue with chip->state not always being set causing troubles. 45904 45905 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 45906 Signed-off-by: Scott Wood <scottwood@freescale.com> 45907 45908commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde 45909Author: Ilya Yanok <yanok@emcraft.com> 45910Date: Mon Jun 30 15:34:40 2008 +0200 45911 45912 NAND: Scan bad blocks lazily. 45913 45914 Rather than scanning on boot, scan upon the first attempt to check the 45915 badness of a block. This speeds up boot when not using NAND, and reduces 45916 the likelihood of needing to reflash via JTAG if NAND becomes 45917 nonfunctional. 45918 45919 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 45920 Signed-off-by: Scott Wood <scottwood@freescale.com> 45921 45922commit dfbf617ff055e4216f78d358b0867c548916d14b 45923Author: Scott Wood <scottwood@freescale.com> 45924Date: Thu Jun 12 13:20:16 2008 -0500 45925 45926 NAND read/write fix 45927 45928 Implement block-skipping read/write, based on a patch from 45929 Morten Ebbell Hestens <morten.hestnes@tandberg.com>. 45930 45931 Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com> 45932 Signed-off-by: Scott Wood <scottwood@freescale.com> 45933 45934commit 984e03cdf1431bb593aeaa1b74c445d616f955d3 45935Author: Scott Wood <scottwood@freescale.com> 45936Date: Thu Jun 12 13:13:23 2008 -0500 45937 45938 NAND: Always skip blocks on read/write/boot. 45939 45940 Use of the non-skipping versions was almost always (if not always) 45941 an error, and no valid use case has been identified. 45942 45943 Signed-off-by: Scott Wood <scottwood@freescale.com> 45944 45945commit e1c3dbada349992875934575c97b328ab2cb33ca 45946Author: Anton Vorontsov <avorontsov@ru.mvista.com> 45947Date: Thu Jun 12 11:10:21 2008 -0500 45948 45949 nand: fsl_upm: convert to updated MTD NAND infrastructure 45950 45951 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 45952 Signed-off-by: Scott Wood <scottwood@freescale.com> 45953 45954commit 300253306acc72b1b2e9faf0987f86551151d7cf 45955Author: Scott Wood <scottwood@freescale.com> 45956Date: Thu May 22 15:02:46 2008 -0500 45957 45958 fsl_elbc_nand: Hard-code the FBAR/FPAR split. 45959 45960 The hardware has separate registers for block and page-within-block, 45961 but the division between the two has no apparent relation to the 45962 actual erase block size of the NAND chip. 45963 45964 Signed-off-by: Scott Wood <scottwood@freescale.com> 45965 45966commit 9c814b0a716aae884bec977b9a032dfa59cfb79a 45967Author: Anton Vorontsov <avorontsov@ru.mvista.com> 45968Date: Fri Mar 28 22:10:54 2008 +0300 45969 45970 fsl_elbc_nand: workaround for hangs during nand write 45971 45972 Using current driver elbc sometimes hangs during nand write. Reading back 45973 last byte helps though (thanks to Scott Wood for the idea). 45974 45975 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 45976 Signed-off-by: Scott Wood <scottwood@freescale.com> 45977 45978commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e 45979Author: Scott Wood <scottwood@freescale.com> 45980Date: Fri Mar 21 16:12:51 2008 -0500 45981 45982 Freescale eLBC FCM NAND driver 45983 45984 This is a driver for the Flash Control Machine of the enhanched Local Bus 45985 Controller found on some Freescale chips (such as the mpc8313 and the 45986 mpc8379). 45987 45988 Signed-off-by: Scott Wood <scottwood@freescale.com> 45989 45990commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6 45991Author: Scott Wood <scottwood@freescale.com> 45992Date: Tue Mar 18 15:29:14 2008 -0500 45993 45994 Don't panic if a controller driver does ecc its own way. 45995 45996 Some hardware, such as the enhanced local bus controller used on some 45997 mpc83xx chips, does ecc transparently when reading and writing data, rather 45998 than providing a generic calculate/correct mechanism that can be exported to 45999 the nand subsystem. 46000
46001 The subsystem should not BUG() when calculate, correct, or hwctl are 46002 missing, if the methods that call them have been overridden. 46003 46004 Signed-off-by: Scott Wood <scottwood@freescale.com> 46005 46006commit e52b34d40a8a646e3d11638ea8797e96398dba13 46007Author: Stefan Roese <sr@denx.de> 46008Date: Thu Jan 10 18:47:33 2008 +0100 46009 46010 NAND: Make NAND driver less verbose per default 46011 46012 This patch turns off printing of bad blocks per default upon bootup. 46013 This can always be shown via the "nand bad" command later. 46014 46015 Signed-off-by: Stefan Roese <sr@denx.de> 46016 46017commit fe56a2772e5c59577df906163d0d4b29b056140e 46018Author: Sergey Kubushyn <ksi@koi8.net> 46019Date: Wed Jan 9 15:36:20 2008 +0100 46020 46021 NAND: Davinci driver updates 46022 46023 Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I 46024 don't have hardware handy so I can not test it at the moment but changes are 46025 rather trivial so it should work. It would be nice if somebody with a 46026 hardware checked it anyways. 46027 46028 Signed-off-by: Sergey Kubushyn <ksi@koi8.net> 46029 46030commit deac913effd8d80535c9ff4687b6fcdff540c554 46031Author: Stefan Roese <sr@denx.de> 46032Date: Sat Jan 5 16:50:32 2008 +0100 46033 46034 NAND: Fix compilation warning and small coding style issue 46035 46036 Signed-off-by: Stefan Roese <sr@denx.de> 46037 46038commit c568f77acdf896fc3dd6413ce53205b17ba809a3 46039Author: Stefan Roese <sr@denx.de> 46040Date: Sat Jan 5 16:49:37 2008 +0100 46041 46042 NAND: Update nand_spl driver to match updated nand subsystem 46043 46044 This patch changes the NAND booting driver nand_spl/nand_boot.c to match 46045 the new infrastructure from the updated NAND subsystem. This NAND 46046 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND 46047 subsystem. 46048 46049 Signed-off-by: Stefan Roese <sr@denx.de> 46050 46051commit 3df2ece0f0fbba47d27f02fff96c533732b98c14 46052Author: Stefan Roese <sr@denx.de> 46053Date: Sat Jan 5 16:47:58 2008 +0100 46054 46055 NAND: Update 4xx NDFC driver to match updated nand subsystem 46056 46057 This patch changes the 4xx NAND driver ndfc.c to match the new 46058 infrastructure from the updated NAND subsystem. This NAND 46059 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND 46060 subsystem. 46061 46062 Tested successfully on AMCC Sequoia and Bamboo. 46063 46064 Signed-off-by: Stefan Roese <sr@denx.de> 46065 46066commit 12072264528eba33737bc9674e19f0e925ffda23 46067Author: Stefan Roese <sr@denx.de> 46068Date: Sat Jan 5 16:43:25 2008 +0100 46069 46070 NAND: Change nand_wait_ready() to not call nand_wait() 46071 46072 This patch changes nand_wait_ready() to not just call nand_wait(), 46073 since this will send a new command to the NAND chip. We just want to 46074 wait for the chip to become ready here. 46075 46076 Signed-off-by: Stefan Roese <sr@denx.de> 46077 46078commit 9ad754fef5053144daed3b007adaf1c9bec654c9 46079Author: William Juul <william.juul@datarespons.no> 46080Date: Fri Dec 14 16:33:45 2007 +0100 46081 46082 make nand dump and nand dump.oob work 46083 46084 Signed-off-by: William Juul <william.juul@tandberg.com> 46085 Signed-off-by: Scott Wood <scottwood@freescale.com> 46086 46087commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838 46088Author: William Juul <william.juul@datarespons.no> 46089Date: Mon Nov 19 14:46:00 2007 +0100 46090 46091 moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks 46092 46093 Signed-off-by: William Juul <william.juul@tandberg.com> 46094 46095commit 98824ce3f95e6c4d08d439b779c0acb0048045a6 46096Author: William Juul <william.juul@tandberg.com> 46097Date: Tue Jun 10 16:18:13 2008 -0500 46098 46099 Clean out unneeded files 46100 46101 Signed-off-by: William Juul <william.juul@tandberg.com> 46102 46103commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23 46104Author: William Juul <william.juul@datarespons.no> 46105Date: Fri Nov 16 08:44:27 2007 +0100 46106 46107 Create symlinks from yaffs2/direct to yaffs2 46108 46109 Signed-off-by: William Juul <william.juul@tandberg.com> 46110 46111commit 90ef117b68387d66763291af0117677644166611 46112Author: William Juul <william.juul@datarespons.no> 46113Date: Thu Nov 15 12:23:57 2007 +0100 46114 46115 Incorporate yaffs2 into U-boot 46116 46117 To use YAFFS2 define CONFIG_YAFFS2 46118 46119 Signed-off-by: William Juul <william.juul@tandberg.com> 46120 Signed-off-by: Scott Wood <scottwood@freescale.com> 46121 46122commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61 46123Author: William Juul <william.juul@datarespons.no> 46124Date: Thu Nov 15 11:13:05 2007 +0100 46125 46126 YAFFS2 import 46127 46128 Direct import of yaffs as a tarball as of 20071113 from their public 46129 CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/ 46130 46131 The code can also be imported on the command line with: 46132 export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon 46133 (Hit return when asked for a password) 46134 cvs checkout yaffs2 46135 46136 Signed-off-by: William Juul <william.juul@tandberg.com> 46137 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com> 46138 46139commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038 46140Author: William Juul <william.juul@datarespons.no> 46141Date: Wed Nov 14 14:28:11 2007 +0100 46142 46143 Whitespace cleanup and marking broken code. 46144 46145 Changes requested by maintainer Stefan Roese after 46146 posting patch to U-boot mailing list. 46147 46148 Signed-off-by: William Juul <william.juul@tandberg.com> 46149 Signed-off-by: Scott Wood <scottwood@freescale.com> 46150 46151commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f 46152Author: William Juul <william.juul@datarespons.no> 46153Date: Fri Nov 9 13:32:30 2007 +0100 46154 46155 Fixing coding style issues 46156 46157 - Fixing leading white spaces 46158 - Fixing indentation where 4 spaces are used instead of tab 46159 - Removing C++ comments (//), wherever I introduced them 46160 46161 Signed-off-by: William Juul <william.juul@tandberg.com> 46162 Signed-off-by: Scott Wood <scottwood@freescale.com> 46163 46164commit 4cbb651b29cb64d378a06729970e1e153bb605b1 46165Author: William Juul <william.juul@datarespons.no> 46166Date: Thu Nov 8 10:39:53 2007 +0100 46167 46168 Remove white space at end. 46169 46170 Signed-off-by: William Juul <william.juul@tandberg.com> 46171 Signed-off-by: Scott Wood <scottwood@freescale.com> 46172 46173commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b 46174Author: William Juul <william.juul@datarespons.no> 46175Date: Wed Oct 31 13:53:06 2007 +0100 46176 46177 Update MTD to that of Linux 2.6.22.1 46178 46179 A lot changed in the Linux MTD code, since it was last ported from 46180 Linux to U-Boot. This patch takes U-Boot NAND support to the level 46181 of Linux 2.6.22.1 and will enable support for very large NAND devices 46182 (4KB pages) and ease the compatibility between U-Boot and Linux 46183 filesystems. 46184 46185 This patch is tested on two custom boards with PPC and ARM 46186 processors running YAFFS in U-Boot and Linux using gcc-4.1.2 46187 cross compilers. 46188 46189 MAKEALL ppc/arm has some issues: 46190 * DOC/OneNand/nand_spl is not building (I have not tried porting 46191 these parts, and since I do not have any HW and I am not familiar 46192 with this code/HW I think its best left to someone else.) 46193 46194 Except for the issues mentioned above, I have ported all drivers 46195 necessary to run MAKEALL ppc/arm without errors and warnings. Many 46196 drivers were trivial to port, but some were not so trivial. The 46197 following drivers must be examined carefully and maybe rewritten to 46198 some degree: 46199 cpu/ppc4xx/ndfc.c 46200 cpu/arm926ejs/davinci/nand.c 46201 board/delta/nand.c 46202 board/zylonite/nand.c 46203 46204 Signed-off-by: William Juul <william.juul@tandberg.com> 46205 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com> 46206 Signed-off-by: Scott Wood <scottwood@freescale.com> 46207 46208commit cd82919e6c8a73b363a26f34b734923844e52d1c 46209Author: Wolfgang Denk <wd@denx.de> 46210Date: Tue Aug 12 16:08:38 2008 +0200 46211 46212 Coding style cleanup, update CHANGELOG, prepare release 46213 46214 Signed-off-by: Wolfgang Denk <wd@denx.de> 46215 46216commit 17e900b8c0f38d922da47073246219dce2a847f2 46217Author: Wolfgang Denk <wd@denx.de> 46218Date: Tue Aug 12 14:54:04 2008 +0200 46219 46220 MVBC_P: fix compile problem 46221 46222 Signed-off-by: Wolfgang Denk <wd@denx.de> 46223 46224commit 52b047ae48219b59bebe37ba743ab103fd4f8316 46225Author: Wolfgang Denk <wd@denx.de> 46226Date: Tue Aug 12 12:10:11 2008 +0200 46227 46228 MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk' 46229 46230 Signed-off-by: Wolfgang Denk <wd@denx.de> 46231 46232commit c9c101c660b3d1995045c61c7c6041f52b6cf335 46233Author: Wolfgang Denk <wd@denx.de> 46234Date: Tue Aug 12 00:36:53 2008 +0200 46235 46236 ads5121: fix compiler warnings (unused variables) 46237 46238 Signed-off-by: Wolfgang Denk <wd@denx.de> 46239 46240commit 902ca09246039964d59bbcb519b1e1b5aed01308 46241Author: Kumar Gala <galak@kernel.crashing.org> 46242Date: Mon Aug 11 11:29:28 2008 -0500 46243 46244 85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS 46245 46246 Use CONFIG_NUM_CPUS to match existing define used by 86xx. 46247 46248 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 46249 Acked-by: Jon Loeliger <jdl@freescale.com> 46250 46251commit 3216ca9692ff80d7c638723ef448f3d36301d9e7 46252Author: Kumar Gala <galak@kernel.crashing.org> 46253Date: Mon Aug 11 09:20:53 2008 -0500 46254 46255 Fix fallout from autostart revert 46256 46257 The autostart revert caused a bit of duplicated code as well as 46258 code that was using images->autostart that needs to get removed so 46259 we can build again. 46260 46261 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 46262 46263commit 3cf8a234b8e8c02e4da1f23566043bc288b05220 46264Author: Kumar Gala <galak@kernel.crashing.org> 46265Date: Mon Aug 11 09:16:25 2008 -0500 46266 46267 Fix compile error related to r8a66597-hcd & usb 46268 46269 When building the 8544DS board we get this error: 46270 46271 In file included from r8a66597-hcd.c:22: 46272 u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined 46273 make[1]: *** [r8a66597-hcd.o] Error 1 46274 46275 The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD 46276 is set. 46277 46278 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 46279 46280commit 2d0daa03612338a813e3c9d22680e54eabfea378 46281Author: Becky Bruce <becky.bruce@freescale.com> 46282Date: Mon Aug 4 14:02:26 2008 -0500 46283 46284 POWERPC 86xx: Move BAT setup code to C 46285 46286 This is needed because we will be possibly be locating 46287 devices at physical addresses above 32bits, and the asm 46288 preprocessing does not appear to deal with ULL constants 46289 properly. We now call write_bat in lib_ppc/bat_rw.c. 46290 46291 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 46292 Acked-by: Jon Loeliger <jdl@freescale.com> 46293 46294commit 9de67149db576c91b9c2a0a182652331e7e44211 46295Author: Becky Bruce <becky.bruce@freescale.com> 46296Date: Mon Aug 4 14:01:53 2008 -0500 46297 46298 POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c 46299 46300 Perform sync/isync as required by the architecture. 46301 46302 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 46303 Acked-by: Jon Loeliger <jdl@freescale.com> 46304 46305commit 23f935c073e7578c6066804fd2f9ee116cae6ffe 46306Author: Becky Bruce <becky.bruce@freescale.com> 46307Date: Mon Aug 4 14:01:16 2008 -0500 46308 46309 POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config 46310 46311 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 46312 Acked-by: Jon Loeliger <jdl@freescale.com> 46313 46314commit 5276a3584d26a9533404f0ec00c3b61cf9a97939 46315Author: Magnus Lilja <lilja.magnus@gmail.com> 46316Date: Sun Aug 3 21:44:10 2008 +0200 46317 46318 i.MX31: Fix mx31_gpio_mux() function and MUX_-macros. 46319 46320 Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX 46321 contacts instead of only the first 256 ones as is the case prior to 46322 this patch. 46323 46324 Add missing MUX_* macros and update board files to use the new macros. 46325 46326 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 46327 46328commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac 46329Author: Magnus Lilja <lilja.magnus@gmail.com> 46330Date: Sun Aug 3 21:43:37 2008 +0200 46331 46332 i.MX31: Fix IOMUX related typos 46333 46334 Correct the names of some IOMUX macros. 46335 46336 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 46337 46338commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0 46339Author: Steve Sakoman <steve@sakoman.com> 46340Date: Mon Aug 11 20:26:16 2008 +0200 46341 46342 OneNAND: Remove unused parameters to onenand_verify_page 46343 46344 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. 46345 46346 Signed-off-by: Steve Sakoman <steve@sakoman.com> 46347 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 46348 46349commit e84d568fa2a9f4ce7888141e71676368ef6b3f25 46350Author: Anatolij Gustschin <agust@denx.de> 46351Date: Fri Aug 8 18:00:40 2008 +0200 46352 46353 video: fix bug in cfb_console code 46354 46355 FILL_15BIT_555RGB macro extension for pixel swapping 46356 by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35 46357 introduced a bug in cfb_console: 46358 46359 Bitmaps with odd-numbered width won't be rendered 46360 correctly and even U-Boot crashes are observed on 46361 some platforms while repeated rendering of such 46362 bitmaps with "bmp display". Also if a bitmap is 46363 rendered to an odd-numbered x starting position, 46364 the same problem occurs. This patch is an attempt 46365 to fix it. 46366 46367 Signed-off-by: Anatolij Gustschin <agust@denx.de> 46368 46369commit d9015f6a50d7258125349ef5c2af836458a0029a 46370Author: Anatolij Gustschin <agust@denx.de> 46371Date: Fri Aug 8 18:00:39 2008 +0200 46372 46373 video: fix bug in logo_plot 46374 46375 If logo_plot() should ever be called with x starting 46376 position other than zero and for pixel depths greater 46377 than 8bpp, logo colors distortion will be observed. 46378 This patch fixes the issue. 46379 46380 Signed-off-by: Anatolij Gustschin <agust@denx.de> 46381 46382commit 406819ae94f79f5b59e01d163380ca7d83709251 46383Author: Wolfgang Denk <wd@denx.de> 46384Date: Mon Aug 11 00:17:52 2008 +0200 46385 46386 MAINTAINERS: sort entries 46387 46388 Signed-off-by: Wolfgang Denk <wd@denx.de> 46389 46390commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc 46391Author: Roy Zang <tie-fei.zang@freescale.com> 46392Date: Thu Aug 7 18:19:28 2008 +0800 46393 46394 Add mpc7448hpc2 maintainer information 46395 46396 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 46397 46398commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8 46399Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 46400Date: Thu Aug 7 13:13:27 2008 +0530 46401 46402 common/cmd_load.c - Minor code & Coding Style cleanup 46403 46404 - os_data_header Variable is a carry over feature 46405 & unused. So removed all instance of this variable 46406 - Minor Code Style Update 46407 46408 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in> 46409 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46410 46411commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14 46412Author: Magnus Lilja <lilja.magnus@gmail.com> 46413Date: Wed Aug 6 19:32:33 2008 +0200 46414 46415 Update the U-Boot wiki URL. 46416 46417 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 46418 46419commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754 46420Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com> 46421Date: Sun Aug 10 17:56:36 2008 +0200 46422 46423 OneNAND: Remove base address offset usage 46424 46425 While locally preparing some U-Boot patches for ARM based OMAP3 boards, some 46426 using OneNAND and some using NAND, we found some differences in OneNAND and 46427 NAND command address handling. 46428 46429 As this might confuse users (it already confused us), we like to align OneNAND 46430 and NAND address handling. 46431 46432 The issue is that cmd_onenand.c subtracts the onenand base address from the 46433 addresses you type into the u-boot command line so, unlike nand, you can't 46434 use addresses relative to the start of the onenand part e.g. this won't work: 46435 46436 onenand read 82000000 280000 400000 46437 46438 you have to use: 46439 46440 onenand read 82000000 20280000 400000 46441 46442 Looking at recent git, the only board currently using OneNAND is Apollon, and 46443 for this the OneNAND base address is 0 (apollon.h) 46444 46445 #define CFG_ONENAND_BASE 0x00000000 46446 46447 so patch below won't break any existing boards and will align OneNAND and NAND 46448 handling on boards where OneNAND base address is != 0. 46449 46450 Signed-off-by: Steve Sakoman <sakoman@gmail.com> 46451 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com> 46452 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 46453 46454commit c11528083ef6e55e76df742228c26e39d151813d 46455Author: Kumar Gala <galak@kernel.crashing.org> 46456Date: Thu Aug 7 09:28:20 2008 -0500 46457 46458 mpc85xx: workaround old binutils bug 46459 46460 The recent change to move the .bss outside of the image gives older 46461 binutils (ld from eldk4.1/binutils-2.16) some headache: 46462 46463 ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4) 46464 ppc_85xx-ld: final link failed: Bad value 46465 46466 We workaround it by being explicit about the program headers and not 46467 assigning the .bss to a program header. 46468 46469 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 46470 46471commit 0bf202ec586d4466c900e987720fa635c594d689 46472Author: Wolfgang Denk <wd@denx.de> 46473Date: Sun Aug 10 01:26:26 2008 +0200 46474 46475 Revert "[new uImage] Add autostart flag to bootm_headers structure" 46476 46477 This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004. 46478 46479 The commit was based on a misunderstanding of the (documented) 46480 meaning of the 'autostart' environment variable. It might cause 46481 boards to hang if 'autostart' was used, with the potential to brick 46482 them. Go back to the documented behaviour. 46483 46484 Conflicts: 46485 46486 common/cmd_bootm.c 46487 common/image.c 46488 include/image.h 46489 46490 Signed-off-by: Wolfgang Denk <wd@denx.de> 46491 46492commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2 46493Author: Wolfgang Denk <wd@denx.de> 46494Date: Sat Aug 9 23:17:32 2008 +0200 46495 46496 TQM8xx{L,M}: try to normalize config files for TQM8xx? based board 46497 46498 - enable CFI driver where this was forgotten 46499 - enable mtdparts support 46500 - adjust default environment 46501 etc. 46502 46503 Signed-off-by: Wolfgang Denk <wd@denx.de> 46504 46505commit 41266c9b5a5f873df3ec891bb0907616958b5602 46506Author: Peter Tyser <ptyser@xes-inc.com> 46507Date: Tue Aug 5 10:51:57 2008 -0500 46508 46509 FIT: Fix handling of images without ramdisks 46510 46511 boot_get_ramdisk() should not treat the case when a FIT image does 46512 not contain a ramdisk as an error. 46513 46514 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 46515 Acked-by: Michal Simek <monstr@monstr.eu> 46516 46517commit f77d92a3f56d88e63cc02226a1204b3bdbac6961 46518Author: Sergey Lapin <slapin@ossfans.org> 46519Date: Sat Aug 9 01:39:09 2008 +0400 46520 46521 DataFlash: AT45DB021 fix and AT45DB081 support 46522 46523 Fix for page size of AT45DB021. Also adding bigger AT45DB081 46524 which comes with some newer boards. 46525 46526 Signed-off-by: Sergey Lapin <slapin@ossfans.org> 46527 46528commit ba9324451b662dd393afa53e5cc36fc5d3d10966 46529Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 46530Date: Fri Aug 8 16:30:23 2008 +0900 46531 46532 sh: Update sh7763rdp config 46533 46534 Add sh_eth support to sh7763rdp. 46535 46536 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 46537 46538commit 21f971ec265f6042ec21636d55d06a6bc0751077 46539Author: Wolfgang Denk <wd@denx.de> 46540Date: Mon Jul 7 01:22:29 2008 +0200 46541 46542 TQM823L: re-enable logo support; update LCD_INFO text 46543 46544 Signed-off-by: Wolfgang Denk <wd@denx.de> 46545 46546commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d 46547Author: Wolfgang Denk <wd@denx.de> 46548Date: Fri Aug 8 16:41:56 2008 +0200 46549 46550 TQM8xxL: fix support for second flash bank 46551 46552 When switching the TQM8xxL modules to use the CFI flash driver, 46553 support for the second flash bank was broken because the CFI driver 46554 did not support dynamically sized banks. This gets fixed now. 46555 46556 Signed-off-by: Wolfgang Denk <wd@denx.de> 46557 46558commit 2a112b234d879f6390503a5f4e38246acce9d0b0 46559Author: Wolfgang Denk <wd@denx.de> 46560Date: Fri Aug 8 16:39:54 2008 +0200 46561 46562 CFI: allow for dynamically determined flash sizes and addresses 46563 46564 The CFI driver allowed only for static initializers in the 46565 CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map 46566 several flash banks contiguously if the bank sizes were not known in 46567 advance, which kind of violates U-Boot's design philosophy. 46568 46569 (will be used for example by the TQM8xxL boards) 46570 46571 Signed-off-by: Wolfgang Denk <wd@denx.de> 46572 46573commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61 46574Author: Ben Warren <biggerbadderben@gmail.com> 46575Date: Thu Aug 7 23:26:35 2008 -0700 46576 46577 QE UEC: Fix compiler warnings 46578 46579 Moved static functions earlier in file so forward declarations are not needed. 46580 46581 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 46582 46583commit d5d28fe4aad5f4535400647a5617c11039506467 46584Author: David Saada <David.Saada@ecitele.com> 46585Date: Mon Mar 31 02:37:38 2008 -0700 46586 46587 QE UEC: Add MII Commands 46588 46589 Add MII commands to the UEC driver. Note that once a UEC device is selected, 46590 any device on its MDIO bus can be addressed. 46591 46592 Signed-off-by: David Saada <david.saada@ecitele.com> 46593 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 46594 46595commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7 46596Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 46597Date: Wed Jul 9 21:07:38 2008 +0900 46598 46599 usb: add support for R8A66597 usb controller 46600 46601 add support for Renesas R8A66597 usb controller. 46602 This patch supports USB Host mode. 46603 46604 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 46605 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 46606 46607commit 1d10dcd041aaeae9fd7c821005692898a0303382 46608Author: Hunter, Jon <jon-hunter@ti.com> 46609Date: Sat Jul 26 18:59:16 2008 -0500 46610 46611 Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c 46612 46613 Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices. 46614 46615 Signed-off-by: Jon Hunter <jon-hunter@ti.com> 46616 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 46617 46618commit eab1007334b93a6209f1ec33615e26ef5311ede7 46619Author: Steven A. Falco <sfalco@harris.com> 46620Date: Wed Aug 6 15:42:52 2008 -0400 46621 46622 ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic. 46623 46624 The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO 46625 configuration to match the schematic, and also sets the SDR0_PFC1 register to 46626 select the corresponding mode for the UARTs. 46627 46628 Signed-off-by: Steven A. Falco <sfalco@harris.com> 46629 Signed-off-by: Stefan Roese <sr@denx.de> 46630 46631commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5 46632Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> 46633Date: Wed Aug 6 14:42:13 2008 +0200 46634 46635 avr32: add support for EarthLCD Favr-32 board 46636 46637 This patch adds support for the Favr-32 board made by EarthLCD. 46638 46639 This kit, which is also called ezLCD-101 when running with EarthLCD firmware, 46640 has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash, 46641 Ethernet, audio out, USB device, SD-card slot, USART and various other 46642 connectors for cennecting stuff to SPI, I2C, GPIO, etc. 46643 46644 Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> 46645 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 46646 46647commit bc9019e19758a19a388fb20ef18dc771cd39fdda 46648Author: Rafael Campos <rafael.campos@hanscan.com> 46649Date: Thu Jul 31 10:22:20 2008 +0200 46650 46651 cfi-flash: Added support to flash_real_protect for Atmel flash devices 46652 46653 Some of the flash memories produced by ATMEL start in read-only mode. 46654 We need to unprotect it. This patch allows the AT49BV6416 to work with 46655 cfi_flash memories. Tested in the at91rm9200ek board. 46656 46657 Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com> 46658 Signed-off-by: Stefan Roese <sr@denx.de> 46659 46660commit 7949839e5836bf8b1074bb6142c46d30ac3aa350 46661Author: Guennadi Liakhovetski <lg@denx.de> 46662Date: Tue Aug 5 15:36:39 2008 +0200 46663 46664 cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash 46665 46666 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 46667 Signed-off-by: Stefan Roese <sr@denx.de> 46668 46669commit 1318673045fe188c6e24c582b1e6efc00ae1c62c 46670Author: Stefan Roese <sr@denx.de> 46671Date: Wed Aug 6 14:06:03 2008 +0200 46672 46673 Fix merge problems 46674 46675 Signed-off-by: Stefan Roese <sr@denx.de> 46676 46677commit f2302d4430e7f3f48308d6a585320fe96af8afbd 46678Author: Stefan Roese <sr@denx.de> 46679Date: Wed Aug 6 14:05:38 2008 +0200 46680 46681 Fix merge problems 46682 46683 Signed-off-by: Stefan Roese <sr@denx.de> 46684 46685commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d 46686Author: Kenneth Johansson <kenneth@southpole.se> 46687Date: Tue Jul 15 12:13:38 2008 +0200 46688 46689 mpc5121: Move iopin features from board specific to common files. 46690 46691 And in the process eliminate some duplicate register defines. 46692 46693 Signed-off-by: Kenneth Johansson <kenneth@southpole.se> 46694 46695commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12 46696Author: John Rigby <jrigby@freescale.com> 46697Date: Tue Aug 5 17:38:57 2008 -0600 46698 46699 mpc5121: squash some fdt fixup errors 46700 46701 On ADS5121 when booting linux the following errors are seen: 46702 Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND 46703 Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND 46704 Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND 46705 46706 This is caused by ft_cpu_setup trying to deal with 46707 both old and new soc node naming. This patch 46708 fixes this by being smarter about what to 46709 fixup. 46710 46711 Also do soc node fixups by compatible instead of by path. 46712 A new board config called OF_SOC_COMPAT defined 46713 to be "fsl,mpc5121-immr" replaces the old 46714 OF_SOC node path that was defined to be "soc@80000000". 46715 46716 Old device trees still work, but the compatiblity 46717 is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES 46718 which is on by default in include/configs/ads5121.h. 46719 46720 Signed-off-by: John Rigby <jrigby@freescale.com> 46721 46722commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c 46723Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46724Date: Sat Aug 2 23:48:30 2008 +0200 46725 46726 drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros 46727 46728 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46729 46730commit 4cd7e6528f61ec669755c3754bb4f9779874fab3 46731Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46732Date: Sat Aug 2 23:48:32 2008 +0200 46733 46734 nios2/sysid: fix printf warning 46735 46736 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46737 46738commit 66da6fa0e35e7ee56628c85981709afe7180fc8e 46739Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46740Date: Sat Aug 2 23:48:33 2008 +0200 46741 46742 Fix remaining build issues with MPC8xx FADS boards. 46743 46744 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46745 46746commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2 46747Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46748Date: Sat Aug 2 23:48:31 2008 +0200 46749 46750 nios2: fix phys_addr_t and phys_size_t support 46751 46752 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46753 46754commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef 46755Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46756Date: Sat Aug 2 23:48:34 2008 +0200 46757 46758 mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)' 46759 46760 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46761 46762commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f 46763Author: Mark Jackson <mpfj@mimc.co.uk> 46764Date: Fri Aug 1 09:48:29 2008 +0100 46765 46766 Fix bitmap display for atmel lcd controller 46767 46768 The current lcd_display_bitmap() function does not work properly 46769 for the Atmel LCD controller. 46770 46771 2 fixes need to be done:- 46772 46773 (a) when setting the colour map, use the lcd_setcolreg() function 46774 as provided by the Atmel driver 46775 (b) the data is never actually written to the lcd framebuffer !! 46776 46777 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 46778 46779commit 2a433c66b1e2770349fe4911be23c375f053ebd8 46780Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46781Date: Fri Aug 1 08:40:34 2008 +0200 46782 46783 qemu_mips: update README to follow qemu update about default machine 46784 46785 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46786 46787commit ac169d645f5f0e0b9a232563099209e92a355d8e 46788Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 46789Date: Thu Jul 31 19:53:21 2008 -0500 46790 46791 ColdFire: Fix compilation issue caused by a missing function 46792 46793 Implement usec2ticks() which is used by fsl_i2c.c in 46794 lib_m68k/time.c 46795 46796 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 46797 46798commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b 46799Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 46800Date: Thu Jul 31 19:53:06 2008 -0500 46801 46802 Fix compilation error for TASREG 46803 46804 TASREG is ColdFire platform, the include ppc4xx.h in 46805 board/esd/common/flash.c causes conflict. 46806 46807 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 46808 46809commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7 46810Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 46811Date: Thu Jul 31 19:52:36 2008 -0500 46812 46813 Fix compilation error for MCF5275 46814 46815 Rename OBJ to COBJ in board/platform/Makefile 46816 46817 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 46818 46819commit 5c40548f01218360a1f1395198c50ff45f3035b5 46820Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 46821Date: Thu Jul 31 19:52:28 2008 -0500 46822 46823 Fix compile error caused by incorrect function return type 46824 46825 Rename int mii_init(void) to void mii_init(void) for idmr 46826 ColdFire platform 46827 46828 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 46829 46830commit a58c78067c928976c082c758d3987e89ead5b191 46831Author: Wolfgang Denk <wd@denx.de> 46832Date: Fri Aug 1 12:06:22 2008 +0200 46833 46834 Fix build issues with MPC8xx FADS boards. 46835 46836 Signed-off-by: Wolfgang Denk <wd@denx.de> 46837 46838commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa 46839Author: Wolfgang Denk <wd@denx.de> 46840Date: Thu Jul 31 17:54:03 2008 +0200 46841 46842 Prepare v1.3.4-rc2: update CHANGELOG 46843 46844 Signed-off-by: Wolfgang Denk <wd@denx.de> 46845 46846commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4 46847Author: Mark Jackson <mpfj@mimc.co.uk> 46848Date: Thu Jul 31 16:09:00 2008 +0100 46849 46850 Add gzipped logo support 46851 46852 The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows: 46853 46854 If this option is set, additionally to standard BMP 46855 images, gzipped BMP images can be displayed via the 46856 splashscreen support or the bmp command. 46857 46858 However, the splashscreen function *only* supports standard BMP images. 46859 46860 This patch adds the documented gzip support. 46861 46862 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 46863 46864commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac 46865Author: Mark Jackson <mpfj@mimc.co.uk> 46866Date: Thu Jul 31 15:56:48 2008 +0100 46867 46868 Fix Atmel LCD controller endianess for AVR32 processors 46869 46870 The Atmel lcd controller is used on Atmel's AT91 (little endian) and 46871 AVR32 (big endian) platforms. 46872 46873 As such, the controller can handle both big and little endian memory. 46874 46875 This patch fixes the driver for the AVR32 platform. 46876 46877 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk> 46878 46879commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1 46880Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46881Date: Thu Jul 31 15:56:01 2008 +0200 46882 46883 apollon: fix build out of tree 46884 46885 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 46886 46887commit 2e752be39d3e398d4ab89ffa6634c397df298297 46888Author: Guennadi Liakhovetski <lg@denx.de> 46889Date: Thu Jul 31 12:35:04 2008 +0200 46890 46891 Uncompressed images loaded to their start address shall set load_end too 46892 46893 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 46894 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 46895 46896commit c37207d7f51e19c17f859966f314e27cc1231801 46897Author: Wolfgang Denk <wd@denx.de> 46898Date: Wed Jul 16 16:38:59 2008 +0200 46899 46900 Fix printf() format problems with configurable prompts 46901 46902 U-Boot allows for configurable prompt strings using the 46903 CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far, 46904 the assumption was that any such user defined problts would contain 46905 exactly one "%d" format specifier. But some boards did not. 46906 46907 To allow for flexible boot prompts without adding too complex code we 46908 now allow to specify the whole list of printf() arguments in the user 46909 definition. This is powerful, but requires a responsible user who 46910 really understands what he is doing, as he needs to know for exanple 46911 which variables are available in the respective context. 46912 46913 Signed-off-by: Wolfgang Denk <wd@denx.de> 46914 46915commit 54754120637b6a7f4ff774fb199fc550bcfea1da 46916Author: Wolfgang Denk <wd@denx.de> 46917Date: Thu Jul 31 17:02:14 2008 +0200 46918 46919 TQM85xx: fix typo introduce by commit ffbb5cb9 46920 46921 Signed-off-by: Wolfgang Denk <wd@denx.de> 46922 46923commit 0b4951d4cddca9cc800745891c95b291e47cbbd7 46924Author: Wolfgang Denk <wd@denx.de> 46925Date: Thu Jul 31 15:27:01 2008 +0200 46926 46927 mvbc_p board: fix most build warnings. 46928 46929 Signed-off-by: Wolfgang Denk <wd@denx.de> 46930 46931commit c4ec6db074051d2f6fc76a66411c60621b22bc02 46932Author: Wolfgang Denk <wd@denx.de> 46933Date: Thu Jul 31 13:57:20 2008 +0200 46934 46935 E1000: clean up CONFIG_E1000_FALLBACK_MAC handling 46936 46937 Avoid "integer constant is too large for 'long' type" warnings. 46938 And simplify the code. 46939 46940 Signed-off-by: Wolfgang Denk <wd@denx.de> 46941 46942commit 9196b44334c330cc13de2464c59181e4db71f549 46943Author: Matvejchikov Ilya <matvejchikov@gmail.com> 46944Date: Wed Jul 30 23:21:19 2008 +0400 46945 46946 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI 46947 46948 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com> 46949 46950commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0 46951Author: Matvejchikov Ilya <matvejchikov@gmail.com> 46952Date: Wed Jul 30 23:20:32 2008 +0400 46953 46954 PPC: Add pci_clk in the global_data for CPM2 processors 46955 46956 This patch adds pci_clk field to the global_data structure for the 46957 processors which have CPM2 module in case the CONFIG_PCI is defined. 46958 46959 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com> 46960 46961commit f0ff885ca64655bee6540eb8a25eed90b1152686 46962Author: Kumar Gala <galak@kernel.crashing.org> 46963Date: Wed Jul 30 14:13:30 2008 -0500 46964 46965 mpc85xx: Update linker scripts for Freescale boards 46966 46967 * Move to using absolute addressing always. Makes the scripts a bit more 46968 portable and common 46969 * Moved .bss after the end of the image. These allows us to have more 46970 room in the resulting binary image for code and data. 46971 * Removed .text object files that aren't really needed 46972 * Make sure _end is 4-byte aligned as the .bss init code expects this. 46973 (Its possible that the end of .bss isn't 4-byte aligned) 46974 46975 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 46976 46977commit 57c219ad5d34dd9d49991777a62e3899595f2ec7 46978Author: Kumar Gala <galak@kernel.crashing.org> 46979Date: Wed Jul 30 08:01:15 2008 -0500 46980 46981 Fix compile warnings in dlmalloc 46982 46983 The origional code was using on odd reference to get to the first 46984 real element in av_[]. The first two elements of the array are 46985 not used for actual bins, but for house keeping. If we are more 46986 explicit about how use the first few elements we can get rid of the 46987 warnings: 46988 46989 dlmalloc.c: In function 'malloc_extend_top': 46990 dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules 46991 dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules 46992 dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules 46993 ... 46994 46995 The logic of how this code came to be is: 46996 bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ 46997 46998 SIZE_SZ is the size of pointer, and av_ is arry of pointers so: 46999 bin_at(0) = &(av_[0]) 47000
47001 Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward. 47002 47003 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 47004 47005commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9 47006Author: Stefan Roese <sr@denx.de> 47007Date: Wed Jul 30 10:21:01 2008 +0200 47008 47009 ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines 47010 47011 Signed-off-by: Stefan Roese <sr@denx.de> 47012 47013commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5 47014Author: Stefan Roese <sr@denx.de> 47015Date: Wed Jul 30 09:59:51 2008 +0200 47016 47017 cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)' 47018 47019 A recent patch used '#if (CONFIG_CMD_USB)' instead of 47020 '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes 47021 common/bootm.c compile again. 47022 47023 Signed-off-by: Stefan Roese <sr@denx.de> 47024 Acked-by: Markus Klotzbuecher <mk@denx.de> 47025 47026commit 2cb9080427fe641dcb71da46cd0634dd406f37ed 47027Author: Kyungmin Park <kmpark@infradead.org> 47028Date: Tue Jul 22 08:01:43 2008 +0900 47029 47030 Remove unused I2C at apollon board 47031 47032 There are no I2C devices on this board. 47033 47034 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 47035 47036commit 3c95960e526b3b026da20201db64526f46faf14b 47037Author: Wolfgang Denk <wd@denx.de> 47038Date: Thu Jul 31 10:12:09 2008 +0200 47039 47040 at91rm9200dk, csb637: fix NAND related build problems 47041 47042 Tried fixing NAND support for the at91rm9200dk board; untested. 47043 Disabled NAND support in the csb637 board config file. 47044 47045 Signed-off-by: Wolfgang Denk <wd@denx.de> 47046 47047commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd 47048Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47049Date: Wed Jul 30 12:39:28 2008 +0200 47050 47051 ppc4xx: ML507: Environment in flash and MTD Support 47052 47053 - Relocate the location of U-Boot in the flash 47054 - Save the environment in one sector of the flash memory 47055 - MTD Support 47056 47057 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47058 Signed-off-by: Stefan Roese <sr@denx.de> 47059 47060commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5 47061Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47062Date: Tue Jul 29 17:16:10 2008 +0200 47063 47064 ppc4xx: ML507: Use of get_ram_size in board ml507 47065 47066 - Change suggested by WD 47067 47068 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47069 Signed-off-by: Stefan Roese <sr@denx.de> 47070 47071commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4 47072Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47073Date: Mon Jul 21 20:30:07 2008 +0200 47074 47075 ppc4xx: ML507: U-Boot in flash and System ACE 47076 47077 This patch allows booting from FLASH the ML507 board by Xilinx. 47078 Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF 47079 47080 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47081 Signed-off-by: Stefan Roese <sr@denx.de> 47082 47083commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783 47084Author: Julien May <mailinglist@miromico.ch> 47085Date: Mon Jun 23 13:57:52 2008 +0200 47086 47087 Add support for the hammerhead (AVR32) board 47088 47089 The Hammerhead platform is built around a AVR32 32-bit microcontroller 47090 from Atmel. It offers versatile peripherals, such as ethernet, usb 47091 device, usb host etc. 47092 47093 The board also incooperates a power supply and is a Power over Ethernet 47094 (PoE) Powered Device (PD). 47095 47096 Additonally, a Cyclone III FPGA from Altera is integrated on the board. 47097 The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two 47098 DDR2 SDRAM interfaces, which will cover even the most exceptional need 47099 of memory bandwidth. Together with the onboard video decoder the board 47100 is ready for video processing. 47101 47102 For more information see: http:///www.miromico.com/hammerhead 47103 47104 Signed-off-by: Julien May <mailinglist@miromico.ch> 47105 [haavard.skinnemoen@atmel.com: various small fixes and adaptions] 47106 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47107 47108commit 09d318a8bb1444ec92e31cafcdba877eb9409e58 47109Author: Kumar Gala <galak@kernel.crashing.org> 47110Date: Tue Jul 29 12:23:49 2008 -0500 47111 47112 fsl_i2c: Use timebase timer functions instead of get_timer() 47113 47114 The current implementation of get_timer() is only really useful after we 47115 have relocated u-boot to memory. The i2c code is used before that as part 47116 of the SPD DDR setup. 47117 47118 We actually have a bug when using the get_timer() code before relocation 47119 because the .bss hasn't been setup and thus we could be reading/writing 47120 a random location (probably in flash). 47121 47122 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 47123 47124commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4 47125Author: Frank Svendsbøe <frank.svendsboe@gmail.com> 47126Date: Tue Jul 29 14:49:31 2008 +0200 47127 47128 Adder8xx: Fix CFG_MONITOR_LEN 47129 47130 Due to increased space usage, U-Boot can no longer be stored in three sectors. 47131 The current U-Boot use just over three flash sectors (197k), and U-Boot will 47132 become corrupt after saving environment variables. This patch adds another 64k 47133 to CFG_MONITOR_LEN. 47134 47135 Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com> 47136 47137commit a4c59ad4a21140550ada6f97690d2527c4146ce5 47138Author: Kyungmin Park <kmpark@infradead.org> 47139Date: Tue Jul 29 08:47:57 2008 +0900 47140 47141 Add OneNAND IPL related files to gitignore 47142 47143 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 47144 47145commit 8d87589e8e874df7120a3d9667f051bc33bac250 47146Author: Rafal Jaworowski <raj@semihalf.com> 47147Date: Mon Jul 28 20:38:25 2008 +0200 47148 47149 API: Teach the storage layer about SATA and MMC options. 47150 47151 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 47152 Acked-by: Rafal Jaworowski <raj@semihalf.com> 47153 47154commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8 47155Author: Rafal Jaworowski <raj@semihalf.com> 47156Date: Mon Jul 28 20:37:48 2008 +0200 47157 47158 API: Dump contents of sector 0 in the demo application. 47159 47160 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 47161 Acked-by: Rafal Jaworowski <raj@semihalf.com> 47162 47163commit 13ca6305f2eba49c175f6370c35286141059c789 47164Author: Rafal Jaworowski <raj@semihalf.com> 47165Date: Mon Jul 28 20:37:10 2008 +0200 47166 47167 API: Correct storage enumeration routine, other minor fixes in API storage area. 47168 47169 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 47170 Acked-by: Rafal Jaworowski <raj@semihalf.com> 47171 47172commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8 47173Author: Rafal Jaworowski <raj@semihalf.com> 47174Date: Mon Jul 28 20:36:19 2008 +0200 47175 47176 API: Fix compilation warnings in api_examples/demo.c. 47177 47178 Signed-off-by: Rafal Czubak <rcz@semihalf.com> 47179 47180commit c14eefcc48212af2f3314809605698dd8393a90a 47181Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 47182Date: Sun Jul 27 17:09:43 2008 +0200 47183 47184 Fix more printf() format warnings 47185 47186 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 47187 47188commit 936897d4d1365452bbbdf8430db5e7769ef08d38 47189Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 47190Date: Fri Jul 25 15:18:16 2008 +0200 47191 47192 Fix remaining CFG_CMD_ define, ifdef and comments 47193 47194 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 47195 47196commit 5d1d00fb36005482e1803a00ddc46efa11d719af 47197Author: Stefano Babic <sbabic@denx.de> 47198Date: Fri Jul 25 08:57:40 2008 +0200 47199 47200 Add include for config.h in command.h. 47201 47202 Because the cmd_tbl_s structure depends on the configuration file, it 47203 must be assured that config.h is included before the structure is 47204 evaluated by the compiler. If this is not certain, it could happen 47205 that the compiler generates structures of different size, depending 47206 on the fact if the source file includes <config.h> before or after 47207 <command.h>. 47208 47209 The effect is that u-boot crashes when tries to relocate the command 47210 table (for ppc) or try to access to the command table for other 47211 architectures. 47212 47213 The problem can happen on board-depending commands. All general 47214 commands under /common are unaffected, because they include already 47215 config.h before command.h. 47216 47217 Signed-off-by: Stefano Babic <sbabic@denx.de> 47218 47219commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a 47220Author: Scott Wood <scottwood@freescale.com> 47221Date: Wed Jul 23 13:16:06 2008 -0500 47222 47223 NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile. 47224 47225 This fixes building out-of-tree. 47226 47227 Signed-off-by: Scott Wood <scottwood@freescale.com> 47228 47229commit 36d59bd9da9e15d19b867b48449408830f4e2ad5 47230Author: Heiko Schocher <hs@denx.de> 47231Date: Wed Jul 23 07:30:46 2008 +0200 47232 47233 Fix warnings if compiling with IDE support. 47234 47235 cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior 47236 cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior 47237 47238 Signed-off-by: Heiko Schocher <hs@denx.de> 47239 47240commit 7610db17fd4d59c51d825488526d85ede2f06767 47241Author: Adrian Filipi <adrian.filipi@eurotech.com> 47242Date: Tue Jul 22 14:28:11 2008 -0400 47243 47244 Removed support for the adsvix board. 47245 47246 Support for the adsvix was originally provided by Applied Data 47247 Systems (ADS), inc., now EuroTech, Inc. 47248 The board never shipped aside from some sample boards. 47249 47250 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com> 47251 47252commit f96b44cef897bd372beb86dde1b33637c119d84d 47253Author: Remy Bohmer <linux@bohmer.net> 47254Date: Tue Jul 22 16:22:11 2008 +0200 47255 47256 ARM: set GD_FLG_RELOC for boards skipping relocation to RAM 47257 47258 If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually 47259 never set, because relocation to RAM is actually never done by U-boot 47260 itself. However, several pieces of code check if this flag is set at 47261 some time. 47262 47263 So, to make sure this flag is set on boards skipping relocation, this 47264 is added to the initialisation of U-boot at a moment where it is safe 47265 to do so. 47266 47267 Signed-off-by: Remy Bohmer <linux@bohmer.net> 47268 47269commit e4dafff86f289b5677143a3e41da7b45c6d27fc7 47270Author: Timur Tabi <timur@freescale.com> 47271Date: Mon Jul 21 14:26:23 2008 -0500 47272 47273 fsl-i2c: fix writes to data segment before relocation 47274 47275 Prevent i2c_init() in fsl_i2c.c from writing to the data segment before 47276 relocation. Commit d8c82db4 added the ability for i2c_init() to program the 47277 I2C bus speed and save the value in i2c_bus_speed[], which is a global 47278 variable. It is an error to write to the data segment before relocation, 47279 which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[]. 47280 47281 Signed-off-by: Timur Tabi <timur@freescale.com> 47282 47283commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21 47284Author: Wolfgang Ocker <weo@reccoware.de> 47285Date: Mon Jul 28 16:56:51 2008 +0200 47286 47287 mips: Fix baudrate divisor computation on alchemy cpus 47288 47289 Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor 47290 on alchemy cpus. 47291 47292 Signed-off-by: Wolfgang Ocker <weo@reccoware.de> 47293 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 47294 47295commit c8c845cfdc6d0217135c1d5927eebd2b133a3314 47296Author: Ben Warren <biggerbadderben@gmail.com> 47297Date: Sat Jul 5 00:08:48 2008 -0700 47298 47299 Moved initialization of AVR32 Ethernet controllers to board_eth_init() 47300 47301 Renamed initialization functions for atngw100 and atstk1000. 47302 Removed initializations for these boards from net/eth.c 47303 47304 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 47305 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47306 47307commit a229d291f33308ab7761d39f25fa1a53c0fc00a2 47308Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47309Date: Wed Jul 23 10:55:46 2008 +0200 47310 47311 spi flash: Fix printf() format warnings 47312 47313 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47314 47315commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e 47316Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47317Date: Wed Jul 23 10:55:31 2008 +0200 47318 47319 atmel_mci: Fix printf() format warnings 47320 47321 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47322 47323commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c 47324Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47325Date: Wed Jul 23 10:55:15 2008 +0200 47326 47327 avr32: Fix printf() format warnings 47328 47329 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47330 47331commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4 47332Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47333Date: Wed Jul 23 10:52:19 2008 +0200 47334 47335 avr32: asm/io.h needs asm/types.h 47336 47337 map_physmem() takes a phys_addr_t as parameter. This type is defined in 47338 asm/types.h, so we need to include that file. 47339 47340 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 47341 47342commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6 47343Author: Michal Simek <monstr@monstr.eu> 47344Date: Thu Jul 17 12:25:46 2008 +0200 47345 47346 microblaze: Fix printf() format issues 47347 47348 Signed-off-by: Michal Simek <monstr@monstr.eu> 47349 47350commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0 47351Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 47352Date: Thu Jul 17 07:27:51 2008 +0530 47353 47354 Remove unused code from lib_arm/bootm.c 47355 47356 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in> 47357 47358commit ffbb5cb942e9856fa24e946977e0a60c64df04ab 47359Author: Detlev Zundel <dzu@denx.de> 47360Date: Wed Jul 16 18:56:45 2008 +0200 47361 47362 tqm85xx: Demystify 'DK: !!!' comment 47363 47364 Signed-off-by: Detlev Zundel <dzu@denx.de> 47365 47366commit b2f44ba570f3a01113bbb745daf46f3858d22f53 47367Author: Detlev Zundel <dzu@denx.de> 47368Date: Wed Jul 16 18:56:44 2008 +0200 47369 47370 83xx/85xx/86xx: Add LTEDR local bus definitions 47371 47372 Signed-off-by: Detlev Zundel <dzu@denx.de> 47373 47374commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494 47375Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47376Date: Wed Jul 16 16:22:32 2008 +0200 47377 47378 serial_xuartlite.c: fix compiler warnings 47379 47380 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47381 Acked-by: Grant Likely <grant.likely@secretlab.ca> 47382 47383commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9 47384Author: Stefan Roese <sr@denx.de> 47385Date: Fri Jul 18 11:03:35 2008 +0200 47386 47387 POST: Add disable interrupts in some of the missing CPU POST tests 47388 47389 Some CPU POST tests did not disable the interrupts while running. This 47390 seems to be necessary to protect this self modifying code. 47391 47392 Signed-off-by: Stefan Roese <sr@denx.de> 47393 47394commit 97a3bf268d096e0e97e54048448c35114edcf557 47395Author: Stefan Roese <sr@denx.de> 47396Date: Fri Jul 18 10:43:24 2008 +0200 47397 47398 ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL 47399 47400 This is needed for boards that define CFG_64BIT_STRTOUL but don't define 47401 CFG_64BIT_LBA. 47402 47403 Signed-off-by: Stefan Roese <sr@denx.de> 47404 47405commit 0043ac55024963295fc79b39af85b6dc3b261e17 47406Author: Niklaus Giger <niklaus.giger@netstal.com> 47407Date: Fri Jul 18 11:22:23 2008 +0200 47408 47409 POST PPC4xx/spr IVPR only if PPC440 47410 47411 The SPR IVPR register is only present (as far as I know) for 47412 processors with a PPC440 core. 47413 47414 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 47415 Acked-by: Stefan Roese <sr@denx.de> 47416 47417commit 1092fbd64748dfa2e979b102611ece9bc5ec1855 47418Author: Stefan Roese <sr@denx.de> 47419Date: Fri Jul 18 10:42:29 2008 +0200 47420 47421 ppc4xx: Enable 64bit printf format on 440/460 platforms 47422 47423 This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all 47424 440/460 platforms. This may be needed since those platforms support 47425 36bit physical address space. 47426 47427 Signed-off-by: Stefan Roese <sr@denx.de> 47428 47429commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5 47430Author: Stefan Roese <sr@denx.de> 47431Date: Fri Jul 18 15:57:23 2008 +0200 47432 47433 ppc4xx: Fix incorrect MODTx setup for some DIMM configurations 47434 47435 This patch fixes a problem with incorrect MODTx (On Die Termination) 47436 setup for a configuration with multiple DIMM's and multiple ranks. 47437 Without this change Katmai was unable to boot Linux with DDR2 frequency 47438 >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux 47439 with DDR2 frequency = 640MHz and mem=4GB. 47440 47441 Signed-off-by: Stefan Roese <sr@denx.de> 47442 47443commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c 47444Author: Stefan Roese <sr@denx.de> 47445Date: Fri Jul 18 12:24:41 2008 +0200 47446 47447 ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support 47448 47449 Signed-off-by: Stefan Roese <sr@denx.de> 47450 47451commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc 47452Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47453Date: Thu Jul 17 12:47:09 2008 +0200 47454 47455 ppc4xx: ML507 Board Support 47456 47457 The Xilinx ML507 Board is a Virtex 5 prototyping board that includes, 47458 among others: 47459 -Virtex 5 FX FPGA (With a ppc440x5 in it) 47460 -256MB of SDRAM2 47461 -32MB of Flash 47462 -I2C Eeprom 47463 -System ACE chip 47464 -Serial ATA connectors 47465 -RS232 Level Conversors 47466 -Ethernet Transceiver 47467 47468 This patch gives support to a standard design produced by EDK for this 47469 board: ppc440, uartlite, xilinx_int and flash 47470 47471 - Includes Changes propossed by Stefan Roese and Michal Simek 47472 47473 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47474 Acked-by: Stefan Roese <sr@denx.de> 47475 47476commit d865fd09809a3a18669f35f970781820af40e4de 47477Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47478Date: Thu Jul 17 11:44:12 2008 +0200 47479 47480 ppc4xx: CPU PPC440x5 on Virtex5 FX 47481 47482 -This patchs gives support for the embbedded ppc440 47483 on the Virtex5 FPGAs 47484 -interrupts.c divided in uic.c and interrupts.c 47485 -xilinx_irq.c for xilinx interrupt controller 47486 -Include modifications propossed by Stefan Roese 47487 47488 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> 47489 Acked-by: Stefan Roese <sr@denx.de> 47490 47491commit 340ccb260f21516be360745d5c5e3bd0657698df 47492Author: Sebastian Siewior <bigeasy@linutronix.de> 47493Date: Wed Jul 16 20:04:49 2008 +0200 47494 47495 cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA 47496 47497 This got broken by commits 93c56f212c 47498 [cfi_flash: support of long cmd in U-boot.] 47499 47500 That command needs to be in little endian format on BE machines 47501 with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0 47502 gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into 47503 the cmdbuf in case portwidth = chipwidth = 8bit. 47504 47505 Cc: Alexey Korolev <akorolev@infradead.org> 47506 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru> 47507 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de> 47508 47509commit 11188d55bc16dd907451c00282e00a038f73dd62 47510Author: Stefan Roese <sr@denx.de> 47511Date: Thu Jul 17 10:40:51 2008 +0200 47512 47513 ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood) 47514 47515 Signed-off-by: Stefan Roese <sr@denx.de> 47516 47517commit 021f6df6e96af5b387810cf96d24848da1faa55c 47518Author: Anton Vorontsov <avorontsov@ru.mvista.com> 47519Date: Thu Jul 10 17:20:51 2008 +0400 47520 47521 83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup 47522 47523 The thinko was quite silly indeed, I messed with !ptr. Normally this 47524 would trigger some fault, but in U-Boot NULL pointer is equal to phys 47525 0, so the code was working still, just didn't actually test mpc8315erdb 47526 environment variable value. Heh. 47527 47528 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 47529 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 47530 47531commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da 47532Author: Anton Vorontsov <avorontsov@ru.mvista.com> 47533Date: Tue Jul 8 21:00:04 2008 +0400 47534 47535 83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs 47536 47537 Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI 47538 support, or without TSEC1 but with USB ULPI PHY support in addition. 47539 With this patch user can specify desired USB PHY. 47540 47541 Also, it seems that we can't distinguish the two boards in software, so 47542 user have to set `mpc8315erdb' environment variable to either 'tsec1' 47543 (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that 47544 Linux will not probe for TSEC1. 47545 47546 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 47547 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 47548 47549commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6 47550Author: Anton Vorontsov <avorontsov@ru.mvista.com> 47551Date: Tue Jul 8 20:59:43 2008 +0400 47552 47553 fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups 47554 47555 Currently U-Boot can only fixup the usb dr_mode, but some boards (namely 47556 MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI 47557 (connected to the four-ports hub, usb host only). 47558 47559 This patch implements support for passing Dual-Role USB controller's 47560 device tree property phy_type through the usb_phy_type environment 47561 variable. 47562 47563 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 47564 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 47565 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 47566 47567commit 699f05125509249072a0b865c8d35520d97cd501 47568Author: Wolfgang Denk <wd@denx.de> 47569Date: Tue Jul 15 22:22:44 2008 +0200 47570 47571 Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile 47572 47573 Signed-off-by: Wolfgang Denk <wd@denx.de> 47574 47575commit bcab74baa6b1b1c969038ab6f64a186239180405 47576Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 47577Date: Tue Jul 15 11:23:02 2008 -0400 47578 47579 Round the serial port clock divisor value returned by calc_divisor() 47580 47581 Round the serial port clock divisor value returned by 47582 calc_divisor() 47583 47584 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 47585 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 47586 47587commit 0328ef0edfe950f0b7b8b368dae482531506b74a 47588Author: Robin Getz <rgetz@blackfin.uclinux.org> 47589Date: Tue Jul 15 21:44:46 2008 +0200 47590 47591 Fix DHCP protocol so U-Boot does not respond too early 47592 on the network with it's offered IP number; it should not reply until 47593 after it has received a DHCP ACK message. Also ensures that U-Boot 47594 does it's DHCPREQUEST as broadcast (per RFC 2131). 47595 47596 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org> 47597 Acked-by: Ben Warren <biggerbadderben@gmail.com> 47598 Signed-off-by: Wolfgang Denk <wd@denx.de> 47599 47600commit 7288f972fcaee14a9741cb08c8688a23874b4a2e 47601Author: Sebastian Siewior <bigeasy@linutronix.de> 47602Date: Tue Jul 15 13:35:23 2008 +0200 47603 47604 cfi_flash: make the command u32 only 47605 47606 This got changed by commit 93c56f212c 47607 [cfi_flash: support of long cmd in U-boot.] 47608 47609 Long is the wrong type because it will behave differently on 64bit 47610 machines in a way that is probably not expected. u32 should be 47611 enough. 47612 47613 Cc: Alexey Korolev <akorolev@infradead.org> 47614 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru> 47615 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de> 47616 47617commit 31cfe57491b183acae575d486729e158f016c27b 47618Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 47619Date: Mon Jul 14 23:48:41 2008 +0200 47620 47621 tools/gitignore: update to all generated files 47622 47623 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 47624 47625commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e 47626Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 47627Date: Wed Jul 9 18:30:44 2008 +0200 47628 47629 mpc5xxx: Add MVBC_P board support 47630 47631 The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet 47632 controller (using e1000) and custom Altera Cyclone-II FPGA on PCI. 47633 47634 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 47635 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 47636 47637commit e2d31fb3450653115452144363d5bde4e5e3e693 47638Author: Timur Tabi <timur@freescale.com> 47639Date: Thu Jun 19 17:56:11 2008 -0500 47640 47641 Update Freescale sys_eeprom.c to handle CCID formats 47642 47643 Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats. The 47644 NXID format replaces the older CCID format, but it's important to support both 47645 since most boards out there still use the CCID format. This change is in 47646 preparation for using one file to handle both formats. This will also unify 47647 EEPROM support for all Freescale 85xx and 86xx boards. 47648 47649 Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR 47650 instead of ID_EEPROM_ADDR. 47651 47652 Signed-off-by: Timur Tabi <timur@freescale.com> 47653 47654commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a 47655Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 47656Date: Fri Jul 11 17:22:43 2008 +0900 47657 47658 pci: sh: Add pci_skip_dev and pci_print_dev function 47659 47660 Add function of new PCI, pci_skip_dev and pci_print_dev. 47661 47662 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 47663 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 47664 47665commit 1107014e835ec9d46c0333f4211d104f77442db0 47666Author: Andy Fleming <afleming@freescale.com> 47667Date: Mon Jul 14 20:29:07 2008 -0500 47668 47669 Clean up INIT_RAM options 47670 47671 The L2_INIT_RAM option was unused, and recent changes to the TLB code 47672 meant that the INIT_RAM TLBs weren't being cleared out. In order to reduce 47673 the amount of mapped space attached to nothing, we change things so the TLBs 47674 get cleared. 47675 47676 Signed-off-by: Andy Fleming <afleming@freescale.com> 47677 47678commit 4524561820a9327e89107854b3a7187800ccf719 47679Author: Andy Fleming <afleming@freescale.com> 47680Date: Mon Jul 14 20:26:57 2008 -0500 47681 47682 Remove fake flash bank from 8544 DS 47683 47684 The fake flash bank was generating errors for anyone who didn't have a 47685 PromJET hooked up to the board. As that constitutes the vast majority of 47686 users, we remove it. 47687 47688 Signed-off-by: Andy Fleming <afleming@freescale.com> 47689 47690commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3 47691Author: Kumar Gala <galak@kernel.crashing.org> 47692Date: Mon Jul 14 14:07:03 2008 -0500 47693 47694 MPC8544DS: Add ATI Video card support 47695 47696 Add support for using a PCIe ATI Video card on PCIe2. 47697 47698 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 47699 47700commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15 47701Author: Kumar Gala <galak@kernel.crashing.org> 47702Date: Mon Jul 14 14:07:02 2008 -0500 47703 47704 85xx: Add some L1/L2 SPR register definitions 47705 47706 Add new L1/L2 SPRs related to e500mc cache config and control. 47707 47708 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 47709 47710commit e5852787f0c3c442a276262f13d91ca450605ac0 47711Author: Kumar Gala <galak@kernel.crashing.org> 47712Date: Mon Jul 14 14:07:01 2008 -0500 47713 47714 MPC8544DS: Report board id, board version and fpga version. 47715 47716 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 47717 47718commit 73f15a060f67a2462551c334215bd20fac6b81d1 47719Author: Kumar Gala <galak@kernel.crashing.org> 47720Date: Mon Jul 14 14:07:00 2008 -0500 47721 47722 85xx: Cleanup L2 cache size detection 47723 47724 The L2 size detection code was a bit confusing and we kept having to add 47725 code to it to handle new processors. Change the sense of detection so we 47726 look for the older processors that aren't changing. 47727 47728 Also added support for 1M cache size on 8572. 47729 47730 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 47731 47732commit c3ca7e5e00a24451f20df3bded9a61ba541921df 47733Author: Paul Gortmaker <paul.gortmaker@windriver.com> 47734Date: Fri Jul 11 15:33:08 2008 -0400 47735 47736 sbc8560: enable CONFIG_OF_LIBFDT by default 47737 47738 Make the default build for the sbc8560 board be powerpc 47739 capable with libfdt support. 47740 47741 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 47742 47743commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd 47744Author: Andy Fleming <afleming@freescale.com> 47745Date: Mon Jul 14 20:04:40 2008 -0500 47746 47747 Fix indentation for default boot environment variables 47748 47749 This was proposed by Paul Gortmaker in response to Wolfgang's comments on 47750 similar #defines in sbc8560.h. 47751 47752 Signed-off-by: Andy Fleming <afleming@freescale.com> 47753 47754commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a 47755Author: Paul Gortmaker <paul.gortmaker@windriver.com> 47756Date: Fri Jul 11 15:33:07 2008 -0400 47757 47758 sbc8560: add default fdt values 47759 47760 Add in the default fdt settings and the typical EXTRA_ENV 47761 settings as borrowed from the mpc8560ads. Fix a couple 47762 of stale references to the mpc8560ads dating back to the 47763 original clone/fork. 47764 47765 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 47766 Signed-off-by: Andy Fleming <afleming@freescale.com> 47767 47768commit d04e76edf92f7f89696989e8702b97e020455af3 47769Author: Paul Gortmaker <paul.gortmaker@windriver.com> 47770Date: Fri Jul 11 15:33:06 2008 -0400 47771 47772 sbc8560: add in ft_board_setup() 47773 47774 Add in for the sbc8560, the ft_board_setup() routine, based on what is 47775 in use for the Freescale MPC8560ADS board. 47776 47777 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 47778 47779commit c158bcaca3b31cbe38c4143812e6170e38a57393 47780Author: Paul Gortmaker <paul.gortmaker@windriver.com> 47781Date: Fri Jul 11 15:33:05 2008 -0400 47782 47783 sbc8560: define eth0 and eth1 instead of eth1 and eth2 47784 47785 The existing config doesn't define CONFIG_HAS_ETH0, and so the 47786 fdt support doesn't update the zeros in the dtb local-mac with 47787 real data from the u-boot env. Since the existing config is 47788 tailored to just two interfaces, get rid of the ETH2 definitions 47789 at the same time. 47790 47791 Also don't include any end user specific data into the environment 47792 by default -- things like MAC address, network parameters etc. need 47793 to come from the end user. 47794 47795 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 47796 Signed-off-by: Andy Fleming <afleming@freescale.com> 47797 47798commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d 47799Author: Paul Gortmaker <paul.gortmaker@windriver.com> 47800Date: Fri Jul 11 15:33:04 2008 -0400 47801 47802 sbc8560: properly set cs0_bnds for 512MB 47803 47804 The sbc8560 board ships with 512MB of memory installed, 47805 but the current cs0_bnds is hard coded for 256MB. Set the 47806 value based on CFG_SDRAM_SIZE. 47807 47808 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 47809 47810commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27 47811Author: Paul Gortmaker <paul.gortmaker@windriver.com> 47812Date: Fri Jul 11 15:33:03 2008 -0400 47813 47814 sbc8560: proper definitions for TSEC. 47815 47816 The definitions for the TSEC have become out of date. There is no 47817 longer any such options like "CONFIG_MPC85xx_TSEC1" or similar. 47818 Update to match those of other boards, like the MPC8560ADS. 47819 47820 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 47821 Acked-by: Ben Warren <biggerbadderben@gmail.com> 47822 47823commit 71074abbe0c76429577aff58aeff0a24ad210b23 47824Author: Paul Gortmaker <paul.gortmaker@windriver.com> 47825Date: Wed Jul 9 13:23:05 2008 -0400 47826 47827 8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq 47828 47829 Some boards that have external 16550 UARTs don't have a direct 47830 tie between bi_busfreq and the clock used for the UARTs. Boards 47831 that do have such a tie should set CFG_NS16550_CLK to be 47832 get_bus_freq(0) -- which most of them do already. 47833 47834 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 47835 Acked-by: Kim Phillips <kim.phillips@freescale.com> 47836 47837commit 24ef76f320fbadf074105229826514db140f939f 47838Author: Andrew Klossner <andrew@cesa.opbu.xerox.com> 47839Date: Wed Jul 2 07:03:53 2008 -0700 47840 47841 Change the temp map to ROM to align addresses to page size. 47842 47843 With a page size of BOOKE_PAGESZ_16M, both the real and effective 47844 addresses must be multiples of 16MB. The hardware silently truncates 47845 them so the code happens to work. This patch clarifies the situation 47846 by establishing addresses that the hardware doesn't need to truncate. 47847 47848 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com> 47849 Signed-off-by: Andy Fleming <afleming@freescale.com> 47850 47851commit 06b4186c10204b6683edb047ac5f506fb0ce0937 47852Author: Kim Phillips <kim.phillips@freescale.com> 47853Date: Tue Jun 17 17:45:22 2008 -0500 47854 47855 mpc85xx: use IS_E_PROCESSOR macro 47856 47857 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 47858 47859commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78 47860Author: Kim Phillips <kim.phillips@freescale.com> 47861Date: Mon Jun 16 15:55:53 2008 -0500 47862 47863 fdt: add crypto node handling for MPC8{3, 5}xxE processors 47864 47865 Delete the crypto node if not on an E-processor. If on 8360 or 834x family, 47866 check rev and up-rev crypto node (to SEC rev. 2.4 property values) 47867 if on an 'EA' processor, e.g. MPC8349EA. 47868 47869 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 47870 47871commit 85e5808e8ea9f77da5219f23394112f0b424fa5e 47872Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 47873Date: Fri Jul 11 15:10:11 2008 -0400 47874 47875 ARM DaVinci: Remove extern phy_t declaration by moving code to proper place 47876 47877 ARM DaVinci: Remove extern phy_t declaration by moving 47878 code to proper place. 47879 47880 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 47881 47882commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971 47883Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 47884Date: Fri Jul 11 15:10:10 2008 -0400 47885 47886 ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init() 47887 47888 ARM DaVinci: Remove duplicate definitions of MACH_TYPE 47889 and prototype of i2c_init(). 47890 47891 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 47892 47893commit 348753d416cd2c9e7ec6520a544c8f33cf02a560 47894Author: Kumar Gala <galak@kernel.crashing.org> 47895Date: Mon Jul 14 14:03:02 2008 -0500 47896 47897 Fix some more printf() format problems. 47898 47899 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 47900 47901commit 45b16d22c64674ccd8c4637456a987463609141c 47902Author: Wolfgang Denk <wd@denx.de> 47903Date: Mon Jul 14 22:38:42 2008 +0200 47904 47905 Fix coding style; make code better parsable by external tools 47906 47907 Signed-off-by: Wolfgang Denk <wd@denx.de> 47908 47909commit b880cbf207b1c109d3a661417a8feddcbd729a9d 47910Author: Wolfgang Denk <wd@denx.de> 47911Date: Mon Jul 14 21:19:08 2008 +0200 47912 47913 cpu/i386/serial.c: Fix syntax errors 47914 47915 Signed-off-by: Wolfgang Denk <wd@denx.de> 47916 47917commit e2d45e6f4d9919e1afeac5e09557b2252832fccf 47918Author: Wolfgang Denk <wd@denx.de> 47919Date: Mon Jul 14 20:41:35 2008 +0200 47920 47921 elppc board: Coding style cleanup. 47922 47923 Signed-off-by: Wolfgang Denk <wd@denx.de> 47924 47925commit 82b24a8a505fc81466484b3c55b574ee0b4205bc 47926Author: Wolfgang Denk <wd@denx.de> 47927Date: Mon Jul 14 20:40:22 2008 +0200 47928 47929 elppc board: fix syntax error. 47930 47931 Signed-off-by: Wolfgang Denk <wd@denx.de> 47932 47933commit 0fe340585a6a48bd392d315b0dd84d068b1c3790 47934Author: Wolfgang Denk <wd@denx.de> 47935Date: Mon Jul 14 20:38:26 2008 +0200 47936 47937 EB+MCF-EV123 board: fix coding style (alingment) 47938 47939 Signed-off-by: Wolfgang Denk <wd@denx.de> 47940 47941commit 6841785a0bb0f38175456a923edd634fb7dd6947 47942Author: Wolfgang Denk <wd@denx.de> 47943Date: Mon Jul 14 20:36:44 2008 +0200 47944 47945 EB+MCF-EV123 board: fix syntx error 47946 47947 Signed-off-by: Wolfgang Denk <wd@denx.de> 47948 47949commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904 47950Author: Andy Fleming <afleming@freescale.com> 47951Date: Mon Jul 7 18:02:08 2008 -0500 47952 47953 Remove LBC_CACHE_BASE from 8544 DS 47954 47955 The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping 47956 space for some anyway, we were allowing speculative loads into unmapped space, 47957 which would cause an exception (annoying, even if ultimately harmless). 47958 Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the 47959 problem. 47960 47961 Signed-off-by: Andy Fleming <afleming@freescale.com> 47962 47963commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90 47964Author: Wolfgang Denk <wd@denx.de> 47965Date: Mon Jul 14 15:19:07 2008 +0200 47966 47967 Code cleanup: fix old style assignment ambiguities like "=-" etc. 47968 47969 Signed-off-by: Wolfgang Denk <wd@denx.de> 47970 47971commit d7854223c5c85b5849fbf422cc8ac0efef461c37 47972Author: Wolfgang Denk <wd@denx.de> 47973Date: Mon Jul 14 15:10:53 2008 +0200 47974 47975 AmigaOneG3SE: remove dead and incomplete files 47976 47977 Signed-off-by: Wolfgang Denk <wd@denx.de> 47978 47979commit b64f190b7a34224df09b559ca111eb1b733f00ad 47980Author: Wolfgang Denk <wd@denx.de> 47981Date: Mon Jul 14 15:06:35 2008 +0200 47982 47983 Fix printf() format issues with sizeof_t types by using %zu 47984 47985 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 47986 Signed-off-by: Wolfgang Denk <wd@denx.de> 47987 47988commit f354b73e16a86f9e9085471a830605f74f84ea5d 47989Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 47990Date: Mon Jul 14 14:11:45 2008 +0200 47991 47992 vsprintf: add z and t options 47993 47994 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 47995 47996commit 25dbe98abb686d8210e1731fba85ced7d3ce874c 47997Author: Wolfgang Denk <wd@denx.de> 47998Date: Sun Jul 13 23:07:35 2008 +0200 47999 48000 Fix some more printf() format issues.
48001 48002 Signed-off-by: Wolfgang Denk <wd@denx.de> 48003 48004commit d5996dd555edf52721b7691a4c59de016251ed39 48005Author: Wolfgang Denk <wd@denx.de> 48006Date: Sun Jul 13 19:51:00 2008 +0200 48007 48008 Fix some more printf() format problems. 48009 48010 Signed-off-by: Wolfgang Denk <wd@denx.de> 48011 48012commit 0f9d5f6d6e814907794995c6a22af752040c35d9 48013Author: Wolfgang Denk <wd@denx.de> 48014Date: Sun Jul 13 19:48:26 2008 +0200 48015 48016 ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype 48017 48018 Signed-off-by: Wolfgang Denk <wd@denx.de> 48019 48020commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34 48021Author: Anatolij Gustschin <agust@denx.de> 48022Date: Sat Jul 12 17:31:36 2008 +0200 48023 48024 Fix bug in Lime video driver 48025 48026 We need to wait while drawing engine clears frame 48027 buffer before any further software accesses to frame 48028 buffer will be initiated. Otherwise software drawn 48029 parts could be partially destroyed by the drawing 48030 engine or even GDC chip freeze could occur (as 48031 observed on socrates board). 48032 48033 Signed-off-by: Anatolij Gustschin <agust@denx.de> 48034 48035commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34 48036Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 48037Date: Sat Jul 12 14:36:34 2008 +0200 48038 48039 Fix some more printf() format issues. 48040 48041 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 48042 48043commit 18c8a28aad49803780bd8d52432ded528e37e701 48044Author: Michal Simek <monstr@monstr.eu> 48045Date: Fri Jul 11 15:11:57 2008 +0200 48046 48047 hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722 48048 48049 Signed-off-by: Michal Simek <monstr@monstr.eu> 48050 Acked-by: Stefan Roese <sr@denx.de> 48051 48052commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0 48053Author: Michal Simek <monstr@monstr.eu> 48054Date: Fri Jul 11 11:50:53 2008 +0200 48055 48056 hwmon: Cleaning hwmon devices 48057 48058 Clean Makefile 48059 Move device specific values to driver for better reading 48060 48061 Signed-off-by: Michal Simek <monstr@monstr.eu> 48062 Acked-by: Stefan Roese <sr@denx.de> 48063 48064commit c78fce699c7ff467ecd841da6a79f065180bf578 48065Author: Michal Simek <monstr@monstr.eu> 48066Date: Fri Jul 11 10:43:13 2008 +0200 48067 48068 FIS: repare incorrect return value with ramdisk handling 48069 48070 Microblaze and PowerPC use boot_get_ramdisk for loading 48071 ramdisk to memory with checking return value. 48072 Return 0 means success. Return 1 means failed. 48073 Here is correspond part of code from bootm.c which check 48074 return code. 48075 48076 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC, 48077 &rd_data_start, &rd_data_end); 48078 if (ret) 48079 goto error; 48080 48081 Signed-off-by: Michal Simek <monstr@monstr.eu> 48082 48083commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477 48084Author: Michal Simek <monstr@monstr.eu> 48085Date: Fri Jul 11 10:10:32 2008 +0200 48086 48087 microblaze: Remove useless ancient headers 48088 48089 Signed-off-by: Michal Simek <monstr@monstr.eu> 48090 48091commit 53ea981c3124b13c137c2d10e975b7c6672266e0 48092Author: Michal Simek <monstr@monstr.eu> 48093Date: Fri Jul 11 10:10:31 2008 +0200 48094 48095 microblaze: Clean uartlite driver 48096 48097 Redesign uartlite driver to in_be32 and out_be32 macros 48098 Fix missing header in io.h 48099 48100 Signed-off-by: Michal Simek <monstr@monstr.eu> 48101 Acked-by: Grant Likely <grant.likely@secretlab.ca> 48102 48103commit dbf3dfb386a2d5d2381814e39985ab2e21894550 48104Author: Marcel Ziswiler <marcel@ziswiler.com> 48105Date: Fri Jul 11 02:39:14 2008 +0200 48106 48107 Enable passing of ATAGs required by latest Linux kernel. 48108 48109commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a 48110Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 48111Date: Fri Jul 11 10:24:15 2008 -0400 48112 48113 Fix integer overflow warning in calc_divisor() 48114 48115 which happened when rounding the serial port clock divisor 48116 48117 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 48118 48119commit 6b760189d77f001684e3160b355c185ca3804961 48120Author: Marcel Ziswiler <marcel@ziswiler.com> 48121Date: Fri Jul 11 01:09:59 2008 +0200 48122 48123 Fix build time warnings in function mmc_decode_csd() 48124 48125 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 48126 48127commit c15947d6ce0d59925c97fdfac692476af6e262d0 48128Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 48129Date: Thu Jul 10 10:46:33 2008 -0400 48130 48131 ARM: Fix for broken compilation when defining CONFIG_CMD_ELF 48132 48133 caused by missing dcache status/enable/disable functions. 48134 48135 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 48136 48137commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce 48138Author: Stefan Roese <sr@denx.de> 48139Date: Thu Jul 10 13:53:31 2008 +0200 48140 48141 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards 48142 48143 This patch removes some ft_board_setup() functions from some 4xx boards. 48144 This can be done since we now have a default weak implementation for this 48145 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom 48146 implementation like canyonlands need their own version. 48147 48148 Signed-off-by: Stefan Roese <sr@denx.de> 48149 48150commit d39a089f8bc960ba9ae6a08fda5582b578620cc1 48151Author: Wolfgang Denk <wd@denx.de> 48152Date: Sun Jul 13 14:58:16 2008 +0200 48153 48154 Add last known maintainer for orphaned boards; reformat. 48155 48156 Signed-off-by: Wolfgang Denk <wd@denx.de> 48157 48158commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6 48159Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 48160Date: Thu Jul 10 13:16:04 2008 +0200 48161 48162 Remove kharris@nexus-tech.net from MAINTAINERS 48163 48164 Mail to kharris@nexus-tech.net bounces because the user doesn't exist 48165 anymore. You can't be a maintainer without a valid e-mail address, so 48166 move all boards that used to be maintained by Kyle Harris to the 48167 "orphaned" list. 48168 48169 Currently, only PowerPC has a list of orphaned boards, so this patch 48170 creates one for ARM as well. 48171 48172 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 48173 48174commit 17bd17071463b0cde391ac4a0863d600474b4ea1 48175Author: Anatolij Gustschin <agust@denx.de> 48176Date: Thu Jul 10 01:15:10 2008 +0200 48177 48178 at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260 48179 48180 On the at91sam9260ep development board there is an EEPROM 48181 connected to the TWI interface (PA23, PA24 Peripheral A 48182 multiplexing), so we cannot use these pins as ETX2, ETX3. 48183 This patch configures PA10, PA11 pins for ETX2, ETX3 48184 instead of PA23, PA24 pins. 48185 48186 Signed-off-by: Anatolij Gustschin <agust@denx.de> 48187 Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de> 48188 48189commit f889265753ddf4465d9d580827bb9289bfac55d6 48190Author: Kenneth Johansson <kenneth@southpole.se> 48191Date: Sat Jul 12 13:18:34 2008 -0600 48192 48193 fix DIU for small screens 48194 48195 The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values 48196 so it was not possible to set a slow pixel clock and thus prevented 48197 display on small screens. 48198 48199 Signed-off-by: Kenneth Johansson <kenneth@southpole.se> 48200 Acked-by: John Rigby <jrigby@freescale.com> 48201 48202commit b60b8573875e650e4c69be667bfc88d3ed474a7c 48203Author: John Rigby <jrigby@freescale.com> 48204Date: Fri Jul 11 14:44:09 2008 -0600 48205 48206 ADS5121 cleanup compile warnings 48207 48208 board/ads5121/iopin.c 48209 Replace bit fields in struct iopin_t with a single 48210 field and intialize it via plain old macros. 48211 This fixes the type pun warnings and makes the code 48212 more readable. 48213 48214 board/ads5121/ads5121.c 48215 Add include iopin.h to ads5121.c for the iopin_initialize 48216 prototype. 48217 48218 Add an extern void ads5121_diu_init(void) 48219 48220 Signed-off-by: John Rigby <jrigby@freescale.com> 48221 48222commit bde63587622c4b830a27d1ddf7265843de9e994f 48223Author: Wolfgang Denk <wd@denx.de> 48224Date: Fri Jul 11 22:56:11 2008 +0200 48225 48226 Fix some more printf() format issues. 48227 48228 Signed-off-by: Wolfgang Denk <wd@denx.de> 48229 48230commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8 48231Author: Wolfgang Denk <wd@denx.de> 48232Date: Fri Jul 11 22:55:31 2008 +0200 48233 48234 Fixed some out-of-tree build issues 48235 48236 Signed-off-by: Wolfgang Denk <wd@denx.de> 48237 48238commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82 48239Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48240Date: Wed Jul 9 16:20:23 2008 -0500 48241 48242 ColdFire: Fix FB CS not setup properly for Mcf5282 48243 48244 Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If 48245 CFG_CSn_RO is defined as 0, the chipselect will not 48246 be assigned. 48247 48248 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48249 48250commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a 48251Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48252Date: Wed Jul 9 15:47:27 2008 -0500 48253 48254 ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC 48255 48256 Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time 48257 clock module in cpu/<cf arch>/cpu_init.c 48258 48259 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48260 48261commit f94945b517f10e01927101679c62361e03d4e837 48262Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48263Date: Wed Jul 9 15:25:01 2008 -0500 48264 48265 ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE 48266 48267 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48268 48269commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab 48270Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48271Date: Wed Jul 9 15:21:44 2008 -0500 48272 48273 Fix compile error caused by missing timer function 48274 48275 Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file 48276 48277 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48278 48279commit c37ea031175b807c54e6bad9b270e9bede6c0078 48280Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48281Date: Wed Jul 9 15:14:25 2008 -0500 48282 48283 Fix compile error caused by incorrect function return type 48284 48285 Rename int mii_init(void) to void mii_init(void) 48286 48287 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48288 48289commit ab4860b255239dbaecccdd002c8d11f4ef54dd75 48290Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48291Date: Wed Jun 18 19:27:23 2008 -0500 48292 48293 ColdFire: Fix power up issue for MCF5235 48294 48295 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48296 48297commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11 48298Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48299Date: Wed Jun 18 19:19:07 2008 -0500 48300 48301 ColdFire: Fix compiling error for MCF5275 48302 48303 The compiling error was caused by missing a closed parentheses 48304 in speed.c 48305 48306 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48307 48308commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3 48309Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48310Date: Wed Jun 18 19:14:01 2008 -0500 48311 48312 ColdFire: Fix timer issue for MCF5272 48313 48314 The timer was assigned to wrong timer memory mapped which 48315 caused udelay() and timer() not working properly. 48316 48317 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48318 48319commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515 48320Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48321Date: Wed Jun 18 19:12:13 2008 -0500 48322 48323 ColdFire: Change invalid JMP to BRA caught by new v4e toolchain 48324 48325 Signed-off-by: Kurt Mahan <kmahan@freescale.com> 48326 48327commit 8371dc2066136be21e10b7b9293e469297d77298 48328Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48329Date: Wed Jun 18 19:05:23 2008 -0500 48330 48331 ColdFire: Add -got=single param for new linux v4e toolchains 48332 48333 Signed-off-by: Kurt Mahan <kmahan@freescale.com> 48334 48335commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7 48336Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48337Date: Wed Jun 18 13:21:19 2008 -0500 48338 48339 ColdFire: Fix code flash configuration for M547x/M548x boards 48340 48341 Signed-off-by: Kurt Mahan <kmahan@freescale.com> 48342 48343commit 6e37091afc07fdcc15590093fd066b0cb7399f85 48344Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48345Date: Tue Jun 24 12:12:16 2008 -0500 48346 48347 ColdFire: Fix warning messages by passing correct data type in board.c 48348 48349 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48350 48351commit 81cc32322acb1b3225ee45606ced48e2a14824dc 48352Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48353Date: Thu May 29 12:21:54 2008 -0500 48354 48355 ColdFire: Fix UART baudrate formula 48356 48357 The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32" 48358 can generate the wrong divisor due to integer division truncation. 48359 Round the calculated divisor value by adding 1/2 the baudrate 48360 before dividing by the baudrate. 48361 48362 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 48363 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 48364 48365commit b578fb471444cbd7db1285701ba51343baaf73fb 48366Author: Stefan Roese <sr@denx.de> 48367Date: Thu Jul 10 11:38:26 2008 +0200 48368 48369 ppc4xx: Fix include sequence in 4xx_pcie.c 48370 48371 This patch now moves common.h to the top of the inlcude list. This 48372 is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that 48373 the phys_size_t/phys_addr_t are defined to the correct size in this 48374 driver. 48375 48376 Signed-off-by: Stefan Roese <sr@denx.de> 48377 48378commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e 48379Author: Stefan Roese <sr@denx.de> 48380Date: Fri Jul 11 13:10:56 2008 +0200 48381 48382 ppc4xx: Fix compile warning in 44x_spd_ddr2.c 48383 48384 Signed-off-by: Stefan Roese <sr@denx.de> 48385 48386commit 6bd9138498c2e4f4f09190108b99157d1b2140b5 48387Author: Stefan Roese <sr@denx.de> 48388Date: Fri Jul 11 11:40:13 2008 +0200 48389 48390 ppc4xx: Fix small korat merge problem 48391 48392 Signed-off-by: Stefan Roese <sr@denx.de> 48393 48394commit 1d0554736a0a1dd59718acda660871ce56b69e18 48395Author: Stefan Roese <sr@denx.de> 48396Date: Fri Jul 11 11:34:52 2008 +0200 48397 48398 ppc4xx: Some Rewood cleanups (coding style, leading white spaces) 48399 48400 Signed-off-by: Stefan Roese <sr@denx.de> 48401 48402commit 3a82113ed5934d498f25080441a8261fc9454b15 48403Author: Stefan Roese <sr@denx.de> 48404Date: Thu Jul 10 16:37:09 2008 +0200 48405 48406 ppc4xx: Add 460SX UIC defines 48407 48408 Only the really needed ones are added (cascading and EMAC/MAL). 48409 48410 Signed-off-by: Stefan Roese <sr@denx.de> 48411 48412commit 26173fc6f60521c2a8072f652f863617fc11ba9a 48413Author: Stefan Roese <sr@denx.de> 48414Date: Mon Jun 30 14:11:07 2008 +0200 48415 48416 ppc4xx: Continue cleanup of ppc440.h 48417 48418 This patch continues the ppc440.h cleanup by removing some of the unused 48419 defines. 48420 48421 Signed-off-by: Stefan Roese <sr@denx.de> 48422 48423commit d9056b7913ed6a228d2f33671d916efedee541dd 48424Author: Stefan Roese <sr@denx.de> 48425Date: Mon Jun 30 14:05:05 2008 +0200 48426 48427 ppc4xx: Cleanup Katmai & Yucca PCIe register usage 48428 48429 This patch cleans up the 440SPe PCIe register usage. Now only defines 48430 from the include/asm-ppc/4xx_pcie.h are used. 48431 48432 Signed-off-by: Stefan Roese <sr@denx.de> 48433 48434commit 5de851403b01489b493fa83137ad990b8ce60d1c 48435Author: Stefan Roese <sr@denx.de> 48436Date: Thu Jun 26 17:36:39 2008 +0200 48437 48438 ppc4xx: Rework 440GX UIC handling 48439 48440 This patch reworks the 440GX interrupt handling so that the common 4xx 48441 code can be used. The 440GX is an exception to all other 4xx variants 48442 by having the cascading interrupt vectors not on UIC0 but on a special 48443 UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references 48444 the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt 48445 handling is simpler without any 440GX special cases. 48446 48447 Also some additional cleanup to cpu/ppc4xx/interrupt.c is done. 48448 48449 Signed-off-by: Stefan Roese <sr@denx.de> 48450 48451commit d1631fe1a05b063ccaf62ea892a8887b829847d1 48452Author: Stefan Roese <sr@denx.de> 48453Date: Thu Jun 26 13:40:57 2008 +0200 48454 48455 ppc4xx: Consolidate PPC4xx UIC defines 48456 48457 This 2nd patch now removes all UIC mask bit definition. They should be 48458 generated from the vectors by using the UIC_MASK() macro from now on. 48459 This way only the vectors need to get defined for new PPC's. 48460 48461 Also only the really used interrupt vectors are now defined. This makes 48462 definitions for new PPC versions easier and less error prone. 48463 48464 Another part of this patch is that the 4xx emac driver got a little 48465 cleanup, since now the usage of the interrupts is clearer. 48466 48467 Signed-off-by: Stefan Roese <sr@denx.de> 48468 48469commit 4fb25a3db3b3839094aa9ab748efd7a95924690b 48470Author: Stefan Roese <sr@denx.de> 48471Date: Wed Jun 25 10:59:22 2008 +0200 48472 48473 ppc4xx: Consolidate PPC4xx UIC defines 48474 48475 This patch is the first step to consolidate the UIC related defines in the 48476 4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to 48477 asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next 48478 steps. 48479 48480 Signed-off-by: Stefan Roese <sr@denx.de> 48481 48482commit 7ee2619c20ccecd57966d74d844e6329e141261c 48483Author: Stefan Roese <sr@denx.de> 48484Date: Tue Jun 24 17:18:50 2008 +0200 48485 48486 ppc4xx: Consolidate PPC4xx EBC defines 48487 48488 This patch removes all EBC related defines from the PPC4xx headers 48489 ppc405.h and ppc440.h and introduces a new header 48490 48491 include/asm-ppc/ppc4xx-ebc.h 48492 48493 with all those defines. 48494 48495 Signed-off-by: Stefan Roese <sr@denx.de> 48496 48497commit e321801bed5a6d896d298c00fd20046f039d5d66 48498Author: Stefan Roese <sr@denx.de> 48499Date: Thu Jul 10 13:52:44 2008 +0200 48500 48501 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards 48502 48503 This patch removes some ft_board_setup() functions from some 4xx boards. 48504 This can be done since we now have a default weak implementation for this 48505 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom 48506 implementation like canyonlands need their own version. 48507 48508 Signed-off-by: Stefan Roese <sr@denx.de> 48509 48510commit 08250eb2edbd96514d049602d9e134110ac3185f 48511Author: Stefan Roese <sr@denx.de> 48512Date: Thu Jul 10 15:32:32 2008 +0200 48513 48514 ppc4xx: Fix merge problems in 44x_spd_ddr2.c 48515 48516 Signed-off-by: Stefan Roese <sr@denx.de> 48517 48518commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038 48519Author: Grant Erickson <gerickson@nuovations.com> 48520Date: Tue Jul 8 08:35:00 2008 -0700 48521 48522 ppc4xx: Add MII mode support to the EMAC RGMII Bridge 48523 48524 This patch adds support for placing the RGMII bridge on the 48525 PPC405EX(r) into MII/GMII mode and allows a board-specific 48526 configuration to specify the bridge mode at compile-time. 48527 48528 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 48529 Signed-off-by: Stefan Roese <sr@denx.de> 48530 48531commit 2e2050842e731c823ce8d41fb0c15579eb70ced9 48532Author: Grant Erickson <gerickson@nuovations.com> 48533Date: Wed Jul 9 16:46:35 2008 -0700 48534 48535 ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller 48536 48537 This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM 48538 controller registers (MODT and INITPLR) used by the 48539 PowerPC405EX(r). The MMODE and MEMODE registers are unified with their 48540 peer values used for the INITPLR MR and EMR registers, 48541 respectively. Finally, a spelling typo is correct (MANUEL to MANUAL). 48542 48543 With these mnemonics in place, the CFG_SDRAM0_* magic numbers for 48544 Kilauea are replaced by equivalent mnemonics to make it easier to 48545 compare and contrast other 405EX(r)-based boards (e.g. during board 48546 bring-up). 48547 48548 Finally, unified the SDRAM controller register dump routine such that 48549 it can be used across all processor variants that utilize the IBM DDR2 48550 SDRAM controller core. It produces output of the form: 48551 48552 PPC4xx IBM DDR2 Register Dump: 48553 ... 48554 SDRAM_MB0CF[40] = 0x00006701 48555 ... 48556 48557 which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included 48558 since it is not uncommon that the DCR values in header files get mixed 48559 up and it helps to validate, at a glance, they match what is printed 48560 in the user manual. 48561 48562 Tested on: 48563 AMCC Kilauea/Haleakala: 48564 - NFS Linux Boot: PASSED 48565 - NAND Linux Boot: PASSED 48566 48567 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 48568 Signed-off-by: Stefan Roese <sr@denx.de> 48569 48570commit ad7382d828982e9c1bafc4313ef1b666f6145f58 48571Author: Grant Erickson <gerickson@nuovations.com> 48572Date: Wed Jul 9 16:31:59 2008 -0700 48573 48574 ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics 48575 48576 Add additional DDR2 SDRAM memory controller DCR mneomnics, condition 48577 revision ID DCR based on 405EX, and add field mnemonics for bus error 48578 status and ECC error status registers. 48579 48580 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 48581 Signed-off-by: Stefan Roese <sr@denx.de> 48582 48583commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6 48584Author: Grant Erickson <gerickson@nuovations.com> 48585Date: Wed Jul 9 16:31:36 2008 -0700 48586 48587 ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r) 48588 48589 This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register. 48590 48591 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 48592 Signed-off-by: Stefan Roese <sr@denx.de> 48593 48594commit 5b457d00730d4aa0c6450d21a9104723e606fb98 48595Author: Grant Erickson <gerickson@nuovations.com> 48596Date: Wed Jul 9 11:55:46 2008 -0700 48597 48598 PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r) 48599 48600 While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM 48601 controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in 48602 the 405EX(r), SDRAM_MCSTAT has a different DCR value. 48603 48604 Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF 48605 which causes SDRAM initialization to periodically fail since it can 48606 prematurely indicate SDRAM ready status. 48607 48608 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 48609 Signed-off-by: Stefan Roese <sr@denx.de> 48610 48611commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d 48612Author: Feng Kan <fkan@amcc.com> 48613Date: Tue Jul 8 22:48:42 2008 -0700 48614 48615 ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board. 48616 48617 Add AMCC Redwood reference board that uses the latest 48618 PPC 464 CPU processor combined with a rich mix of peripheral 48619 controllers. The board will support PCIe, mutiple Gig ethernet 48620 ports, advanced hardware RAID assistance and IEEE 1588. 48621 48622 Signed-off-by: Feng Kan <fkan@amcc.com> 48623 Signed-off-by: Stefan Roese <sr@denx.de> 48624 48625commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89 48626Author: Feng Kan <fkan@amcc.com> 48627Date: Tue Jul 8 22:48:07 2008 -0700 48628 48629 ppc4xx: Add initial 460SX reference board (redwood) config file and defines. 48630 48631 Signed-off-by: Feng Kan <fkan@amcc.com> 48632 Signed-off-by: Stefan Roese <sr@denx.de> 48633 48634commit 7d30793685efcada183891c78fc892e6c9ba50c7 48635Author: Feng Kan <fkan@amcc.com> 48636Date: Tue Jul 8 22:47:31 2008 -0700 48637 48638 ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory. 48639 48640 Signed-off-by: Feng Kan <fkan@amcc.com> 48641 Signed-off-by: Stefan Roese <sr@denx.de> 48642 48643commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96 48644Author: Wolfgang Denk <wd@denx.de> 48645Date: Fri Jul 11 01:16:00 2008 +0200 48646 48647 Fix some more print() format errors. 48648 48649 Signed-off-by: Wolfgang Denk <wd@denx.de> 48650 48651commit fdd70d1921b87287d9a99d1be99bc35226c2b412 48652Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 48653Date: Thu Jul 10 20:57:54 2008 +0200 48654 48655 MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm 48656 48657 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 48658 48659commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c 48660Author: Sergey Lapin <slapin@ossfans.org> 48661Date: Thu Jun 5 11:06:29 2008 +0400 48662 48663 DataFlash AT45DB021 support 48664 48665 Some boards based on AT91SAM926X-EK use smaller DF chips to keep 48666 bootstrap, u-boot and its environment, using NAND or other external 48667 storage for kernel and rootfs. This patch adds support for 48668 small 1024x263 chip. 48669 48670 Signed-off-by: Sergey Lapin <slapin@ossfans.org> 48671 48672commit 4109df6f75fc00ab7da56d286ba50149a0d16a69 48673Author: Kim Phillips <kim.phillips@freescale.com> 48674Date: Thu Jul 10 14:00:15 2008 -0500 48675 48676 silence misc printf formatting compiler warnings 48677 48678 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 48679 48680commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3 48681Author: Markus Klotzbücher <mk@denx.de> 48682Date: Thu Jul 10 14:47:09 2008 +0200 48683 48684 USB: shutdown USB before booting 48685 48686 This patch fixes a potentially serious issue related to USB which was 48687 discouvered by Martin Krause <martin.krause@tqs.de> and fixed for 48688 ARM920T. Martin wrote: 48689 48690 Turn off USB to prevent the host controller from writing to the 48691 SDRAM while Linux is booting. This could happen, because the HCCA 48692 (Host Controller Communication Area) lies within the SDRAM and the 48693 host controller writes continously to this area (as busmaster!), for 48694 example to increase the HccaFrameNumber variable, which happens 48695 every 1 ms. 48696 48697 This is a slightly modified version of the patch in order to shutdown 48698 USB when booting on all architectures. 48699 48700 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 48701 48702commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8 48703Author: Martha Marx <mmarx@silicontkx.com> 48704Date: Thu May 29 14:23:25 2008 -0400 48705 48706 Configuration changes for ADS5121 Rev 3 48707 48708 ADS5121 Rev 3 board is now the default config 48709 48710 config targets are now 48711 48712 ads5121_config 48713 Rev 3 board with 48714 PCI 48715 M41T62 on board RTC 48716 512MB DRAM 48717 48718 ads5121_rev2_config 48719 Rev 2 board with 48720 No PCI 48721 256MB DRAM 48722 48723 Signed-off-by: Martha Marx <mmarx@silicontkx.com> 48724 Acked-by: Grant Likely <grant.likely@secretlab.ca> 48725 Acked-by: John Rigby <jrigby@freescale.com> 48726 48727commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615 48728Author: Martha Marx <mmarx@silicontkx.com> 48729Date: Thu May 29 15:37:21 2008 -0400 48730 48731 Consolidate ADS5121 IO Pin configuration 48732 48733 Consolidate ADS5121 IO Pin configuration to one file 48734 board/ads5121/iopin.c. 48735 48736 Remove pin config from cpu/mpc512x/fec.c 48737 48738 Signed-off-by: Martha Marx <mmarx@silicontkx.com> 48739 Acked-by: Grant Likely <grant.likely@secretlab.ca> 48740 Acked-by: John Rigby <jrigby@freescale.com> 48741 48742commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7 48743Author: Christian Eggers <christian@p2400.wgnetz.xx> 48744Date: Fri Jun 27 19:46:51 2008 +0200 48745 48746 Fix "usb part" command 48747 48748 Only print partition for selected device if user supplied the <dev> 48749 arg with the "usb part [dev]" command. 48750 48751 Signed-off-by: Christian Eggers <ceggers@gmx.de> 48752 Acked-by: Markus Klotzbuecher <mk@denx.de> 48753 48754commit cc83b27217f7380041fea386ddb6d6d9b261617d 48755Author: Harald Welte <laforge@gnumonks.org> 48756Date: Mon Jul 7 00:58:05 2008 +0800 48757 48758 fix USB devices with multiple configurations 48759 48760 This patch fixes bugs in usbdcore*.c related to the use of devices 48761 with multiple configurations. 48762 48763 The original code made mistakes about the meaning of configuration value and 48764 configuration index, and the resulting off-by-one errors resulted in: 48765 48766 * SET_CONFIGURATION always selected the first configuration, no matter what 48767 wValue is being passed. 48768 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first 48769 configuration (index 0). 48770 48771 Signed-off-by: Harald Welte <laforge@openmoko.org> 48772 Acked-by: Markus Klotzbuecher <mk@denx.de> 48773 48774commit 06c53beae1a726e707971c555613f09b270a2461 48775Author: Wolfgang Denk <wd@denx.de> 48776Date: Thu Jul 10 13:16:09 2008 +0200 48777 48778 Fix some more print() format errors. 48779 48780 Signed-off-by: Wolfgang Denk <wd@denx.de> 48781 48782commit d4b5f3fa001228d76e2c3380cedadf804b802c2a 48783Author: Christian Eggers <christian@p2400.wgnetz.xx> 48784Date: Fri Jun 27 19:46:51 2008 +0200 48785 48786 Fix "usb part" command 48787 48788 Only print partition for selected device if user supplied the <dev> 48789 arg with the "usb part [dev]" command. 48790 48791 Signed-off-by: Christian Eggers <ceggers@gmx.de> 48792 Acked-by: Markus Klotzbuecher <mk@denx.de> 48793 48794commit e73b5212e0463a3db0af0a5c95c75bfb762ca973 48795Author: Harald Welte <laforge@gnumonks.org> 48796Date: Mon Jul 7 00:58:05 2008 +0800 48797 48798 fix USB devices with multiple configurations 48799 48800 This patch fixes bugs in usbdcore*.c related to the use of devices 48801 with multiple configurations. 48802 48803 The original code made mistakes about the meaning of configuration value and 48804 configuration index, and the resulting off-by-one errors resulted in: 48805 48806 * SET_CONFIGURATION always selected the first configuration, no matter what 48807 wValue is being passed. 48808 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first 48809 configuration (index 0). 48810 48811 Signed-off-by: Harald Welte <laforge@openmoko.org> 48812 Acked-by: Markus Klotzbuecher <mk@denx.de> 48813 48814commit e870690bdca154943ecadd5212d2d59c1b9d391b 48815Author: Stefan Roese <sr@denx.de> 48816Date: Thu Jul 10 10:10:54 2008 +0200 48817 48818 MTD/NAND: Fix printf format warning in nand code 48819 48820 This patch fixes NAND related printf format warning. Those warnings are 48821 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd 48822 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is 48823 really helpful. 48824 48825 Signed-off-by: Stefan Roese <sr@denx.de> 48826 48827commit 10943c9afa25694bd9999461f4e9e50ce22fff2b 48828Author: Stefan Roese <sr@denx.de> 48829Date: Thu Jul 10 10:00:45 2008 +0200 48830 48831 rtc: Fix printf format warning in m41t60.c 48832 48833 Signed-off-by: Stefan Roese <sr@denx.de> 48834 48835commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb 48836Author: Stefan Roese <sr@denx.de> 48837Date: Tue Jul 8 12:01:47 2008 +0200 48838 48839 pci: Move PCI device configuration check into a separate weak function 48840 48841 This patch moves the check, if a device should be skipped in PCI PNP 48842 configuration into the function pci_skip_dev(). This function is defined 48843 as weak so that it can be overwritten by a platform specific one if 48844 needed. The check if the device should get printed in the PCI summary upon 48845 bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function 48846 pci_print_dev() which is also defined as weak too. 48847 48848 Signed-off-by: Stefan Roese <sr@denx.de> 48849 48850commit b002144e1dc21374b1ef5281fe6b5d014af96650 48851Author: Stefan Roese <sr@denx.de> 48852Date: Thu Jul 10 09:58:06 2008 +0200 48853 48854 ppc4xx: Fix printf format warnings now visible with the updated format check 48855 48856 This patch fixes ppc4xx related printf format warning. Those warnings are 48857 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd 48858 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is 48859 really helpful. 48860 48861 Signed-off-by: Stefan Roese <sr@denx.de> 48862 48863commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3 48864Author: Stefan Roese <sr@denx.de> 48865Date: Wed Jul 9 17:33:57 2008 +0200 48866 48867 ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai 48868 48869 Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM. 48870 To support such configurations, we "only" map the first 2GB via the TLB's. We 48871 need some free virtual address space for the remaining peripherals like, SoC 48872 devices, FLASH etc. 48873 48874 Note that ECC is currently not supported on configurations with more than 2GB 48875 SDRAM. This is because we only map the first 2GB on such systems, and therefore 48876 the ECC parity byte of the remaining area can't be written. 48877 48878 Signed-off-by: Stefan Roese <sr@denx.de> 48879 48880commit cf1c2ed91df26903b956948f37f82de9e1158a89 48881Author: Larry Johnson <lrj@acm.org> 48882Date: Sat Jun 14 17:02:49 2008 -0400 48883 48884 ppc4xx: Remove implementation of testdram() from Korat board support 48885 48886 Signed-off-by: Larry Johnson <lrj@acm.org> 48887 Signed-off-by: Stefan Roese <sr@denx.de> 48888 48889commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e 48890Author: Larry Johnson <lrj@acm.org> 48891Date: Sat Jun 14 16:53:02 2008 -0400 48892 48893 ppc4xx: Update and add FDT to Korat board support 48894 48895 Signed-off-by: Larry Johnson <lrj@acm.org> 48896 Signed-off-by: Stefan Roese <sr@denx.de> 48897 48898commit 4188f0491886b3b486164e819c0a83fdb97efd7d 48899Author: Wolfgang Denk <wd@denx.de> 48900Date: Thu Jul 10 01:13:30 2008 +0200 48901 48902 Minor coding style cleanup; update CHANGELOG 48903 48904 Signed-off-by: Wolfgang Denk <wd@denx.de> 48905 48906commit 8915f1189c1d29d8be7f4de325702d90a8988219 48907Author: Paul Gortmaker <paul.gortmaker@windriver.com> 48908Date: Wed Jul 9 17:50:45 2008 -0400 48909 48910 e1000: add support for 82545GM 64bit PCI-X copper variant 48911 48912 This PCI-X e1000 variant works by just adding in the correct 48913 PCI IDs in the appropriate places. 48914 48915 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 48916 48917commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030 48918Author: Daniel Hellstrom <daniel@gaisler.com> 48919Date: Wed Jul 9 12:34:11 2008 +0000 48920 48921 SPARC: Build error fix 48922 48923 (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378) 48924 48925 This patch makes SPARC targets build again. It is caused by 48926 phys_addr_t and phys_size_t being defined in the wrong header 48927 file. include/lmb.h need those typedefs to build. 48928 48929 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 48930 48931commit 11ccc33fa21acce108f6b4a6936e3271af904c64 48932Author: Marcel Ziswiler <marcel@ziswiler.com> 48933Date: Wed Jul 9 08:17:15 2008 +0200 48934 48935 Many spelling fixes in README. 48936 48937 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 48938 48939commit dbab0691d2533560f7e91b92ae844046a9ad1df3 48940Author: Marcel Ziswiler <marcel@ziswiler.com> 48941Date: Wed Jul 9 08:17:06 2008 +0200 48942 48943 Minor spelling fix in comment. 48944 48945 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 48946 48947commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484 48948Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 48949Date: Tue Jul 8 14:54:58 2008 -0400 48950 48951 Round the serial port clock divisor value returned by calc_divisor() 48952 48953 Round the serial port clock divisor value returned by 48954 calc_divisor(). 48955 48956 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 48957 Signed-off-by: John Roberts <john.roberts@pwav.com> 48958 48959commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe 48960Author: Scott Wood <scottwood@freescale.com> 48961Date: Wed Jul 9 17:47:52 2008 -0500 48962 48963 NAND: ifdef-protect most of nand.h when using legacy NAND. 48964 48965 Some macros such as NAND_CTL_SETALE conflict between current and legacy 48966 NAND, being defined by the subsystem in the former case and the board 48967 config file in the latter. 48968 48969 Signed-off-by: Scott Wood <scottwood@freescale.com> 48970 48971commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e 48972Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 48973Date: Tue Jul 8 11:02:05 2008 -0400 48974 48975 ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS) 48976 48977 ARM: Fix for incorrect version of patch applied when 48978 adding support for the Lyrtech SFF-SDR board. 48979 48980 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 48981 Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com> 48982 48983commit 47042b363ee5022b8180c65d3f4558e7972c79cd 48984Author: Kyungmin Park <kmpark@infradead.org> 48985Date: Tue Jul 8 09:08:40 2008 +0900 48986 48987 Remove useless print message at apollon 48988 48989 Remove useless print message at apollon 48990 48991 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 48992 48993commit 98874ff329d4a5b32c467b43f6e966e1aa68479f 48994Author: Andy Fleming <afleming@freescale.com> 48995Date: Mon Jul 7 14:24:39 2008 -0500 48996 48997 Fix LMB type issues 48998 48999 The LMB code now uses phys_addr_t and phys_size_t. Also, there were a couple 49000 of casting problems in the bootm code that called the LMB functions.
49001 49002 Signed-off-by: Andy Fleming <afleming@freescale.com> 49003 49004commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54 49005Author: Kumar Gala <galak@kernel.crashing.org> 49006Date: Mon Jul 7 09:39:06 2008 -0500 49007 49008 Fix compiler warnings 49009 49010 gcc-4.3.x generates the following: 49011 49012 bootm.c: In function 'do_bootm_linux': 49013 bootm.c:208: warning: cast from pointer to integer of different size 49014 bootm.c:215: warning: cast from pointer to integer of different size 49015 49016 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 49017 49018commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698 49019Author: Harald Welte <laforge@gnumonks.org> 49020Date: Mon Jul 7 15:40:39 2008 +0800 49021 49022 Remove code duplication for setting the default environment 49023 49024 common/env_common.c (default_env): new function that resets the environment to 49025 the default value 49026 common/env_common.c (env_relocate): use default_env instead of own copy 49027 common/env_nand.c (env_relocate_spec): use default_env instead of own copy 49028 include/environment.h: added default_env prototype 49029 49030 Signed-off-by: Werner Almesberger <werner@openmoko.org> 49031 Signed-off-by: Harald Welte <laforge@openmoko.org> 49032 49033commit 99c2b434d37863df5dda5207a53760c6506fc2be 49034Author: Marcel Ziswiler <marcel@ziswiler.com> 49035Date: Sun Jun 22 16:13:46 2008 +0200 49036 49037 NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c. 49038 49039 The writeenv() and readenv() calls introduced by the recently added bad block 49040 management for environment variables were missing casts therefore producing 49041 compile time warnings. 49042 While at it fixing some typo in a comment and indentation. 49043 49044 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 49045 Signed-off-by: Scott Wood <scottwood@freescale.com> 49046 49047commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd 49048Author: Scott Wood <scottwood@freescale.com> 49049Date: Fri Jun 20 12:38:57 2008 -0500 49050 49051 NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution. 49052 49053 This is particularly problematic now that non-NAND-specific code is 49054 including <nand.h>, and thus all debugging code is being compiled 49055 regardless of whether it was requested, as reported by Scott McNutt 49056 <smcnutt@psyent.com>. 49057 49058 Signed-off-by: Scott Wood <scottwood@freescale.com> 49059 49060commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05 49061Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 49062Date: Thu Jun 12 19:27:58 2008 +0200 49063 49064 mmc: Move atmel_mci driver into drivers/mmc 49065 49066 This makes it easier to use the driver on other platforms. 49067 49068 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 49069 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49070 49071commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0 49072Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 49073Date: Thu Jun 12 19:27:57 2008 +0200 49074 49075 avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver 49076 49077 After we move the atmel_mci driver into drivers/mmc, we can't select 49078 it with CONFIG_MMC anymore. Introduce a new symbol specifically for 49079 this driver so that there's no ambiguity. 49080 49081 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 49082 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49083 49084commit 5ce13051a48c62bda9723df3b4778c492fb47f36 49085Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 49086Date: Thu Jun 12 19:27:56 2008 +0200 49087 49088 Create drivers/mmc subdirectory 49089 49090 In order to consolidate more of the various MMC drivers around the 49091 tree, we must first have a common place to put them. 49092 49093 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 49094 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49095 49096commit b502611b51f02718c2d1117d4981dabceb5af6de 49097Author: Joakim Tjernlund <joakim.tjernlund@transmode.se> 49098Date: Sun Jul 6 12:30:09 2008 +0200 49099 49100 Change env_get_char from a global function ptr to a function 49101 49102 This avoids an early global data reference. 49103 49104 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 49105 49106commit 27269417ade432189b234d9fbac98b54e37b978c 49107Author: Matvejchikov Ilya <matvejchikov@gmail.com> 49108Date: Sun Jul 6 13:57:58 2008 +0400 49109 49110 Some copy-n-paste fixes in printf usage 49111 49112 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com> 49113 49114commit 0e6989b9faf1588e8723535539e88a0df3c71356 49115Author: Matvejchikov Ilya <matvejchikov@gmail.com> 49116Date: Sun Jul 6 13:57:00 2008 +0400 49117 49118 FDT memory and pci node fixes for MPC8260ADS 49119 49120 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com> 49121 49122commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd 49123Author: Andrew Klossner <andrew@cesa.opbu.xerox.com> 49124Date: Mon Jul 7 06:41:14 2008 -0700 49125 49126 Fix printf errors. 49127 49128 The compiler will help find mismatches between printf formats and 49129 arguments if you let it. This patch adds the necessary attributes to 49130 declarations in include/common.h, then begins to correct the resulting 49131 compiler warnings. Some of these were bugs, e.g., "$d" instead of 49132 "%d" and incorrect arguments. Others were just annoying, like 49133 int-long mismatches on a system where both are 32 bits. It's worth 49134 fixing the annoying errors to catch the real ones. 49135 49136 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com> 49137 49138commit 417faf285b2527acb2de24c5cd3e2621d385408c 49139Author: Becky Bruce <becky.bruce@freescale.com> 49140Date: Wed Jul 9 11:09:41 2008 -0500 49141 49142 Allow print_size to print in GB 49143 49144 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 49145 49146commit e7c374529c87525c9aa463e0557c287887ae4e9e 49147Author: Jason McMullan <mcmullan@netapp.com> 49148Date: Sun Jun 8 23:56:00 2008 -0400 49149 49150 mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment 49151 49152 Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if 49153 they are set in the U-Boot environment. 49154 49155 Signed-off-by: Jason McMullan <mcmullan@netapp.com> 49156 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 49157 49158commit 0192d7d56e9320819dea262f49789ae18fdd2c72 49159Author: Stefan Roese <sr@denx.de> 49160Date: Tue Jul 8 12:57:14 2008 +0200 49161 49162 jedec_flash: Fix AM29DL800BB device ID 49163 49164 As pointed out by Jerry Hicks, this patch corrects the device ID of 49165 the Spansion AM29DL800BB NOR device. Verified against latest Spansion 49166 datasheet (rev C4 from Dezember 2006). 49167 49168 Signed-off-by: Stefan Roese <sr@denx.de> 49169 49170commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63 49171Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49172Date: Mon Jul 7 11:22:37 2008 +0900 49173 49174 sh: Fix compile error sh7763rdp board 49175 49176 Disable SH ether driver. 49177 49178 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49179 49180commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074 49181Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49182Date: Tue Jul 8 12:03:24 2008 +0900 49183 49184 sh: Fix SH-boards compile error 49185 49186 By Cleanup out-or-tree building for some boards (.depend) 49187 (commit:c8a3b109f07f02342d097b30908965f7261d9f15) 49188 because filse ware changed, some SH-boards have compile error. 49189 I revised this problem. 49190 49191 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49192 49193commit 3473ab737282b08ad61841fcbb14c4d264a93a8e 49194Author: Jason Jin <Jason.jin@freescale.com> 49195Date: Tue May 13 11:50:36 2008 +0800 49196 49197 Feed the watchdog in u-boot for 8610 board. 49198 49199 The watchdog on 8610 board is enabled by setting sw[6] 49200 to on. Once enabled, the watchdog can not be disabled 49201 by software. So feed the dog in u-boot is necessary for 49202 normal operation. 49203 49204 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 49205 49206commit 63676841ca2d603b13765f3f7b72ff1a61c23f90 49207Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 49208Date: Wed Jun 18 12:10:33 2008 -0400 49209 49210 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c. 49211 49212 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c. 49213 49214 Remove duplicate code in a if/else block in 49215 cpu/arm926ejs/davinci/lxt972.c. 49216 Fixed style issues. 49217 49218 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 49219 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 49220 49221commit fec61431a003f5778bafa2624073a571af8bec9f 49222Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 49223Date: Wed Jun 18 12:10:31 2008 -0400 49224 49225 Remove duplicate definitions in include/lxt971a.h. 49226 49227 Remove duplicate definitions in include/lxt971a.h. 49228 49229 Remove duplicate registers and bits definitions in 49230 include/lxt971a.h for standard MII registers, and 49231 use values in include/miiphy.h instead. 49232 49233 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 49234 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 49235 49236commit 9751ee0990f467941da0b095a4e995f863672d7a 49237Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49238Date: Wed Jun 11 21:05:00 2008 +0900 49239 49240 net: sh: Renesas SH7763 Ethernet device support 49241 49242 Renesas SH7763 has 2 channel Ethernet device. 49243 This is 10/100/1000 Base support. 49244 But this patch check 10/100 Base only. 49245 49246 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49247 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 49248 49249commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9 49250Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49251Date: Tue Jun 17 16:28:05 2008 +0900 49252 49253 sh: Update Renesas R2DPlus board 49254 49255 New NOR Flash board support and remove old type flash board config. 49256 And Remove network setting from config file. 49257 49258 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49259 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49260 49261commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c 49262Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49263Date: Tue Jun 17 16:28:01 2008 +0900 49264 49265 sh: Update Renesas R7780MP board 49266 49267 New NOR Flash board support and remove network setting from config file. 49268 49269 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49270 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49271 49272commit c001cd604e9f133743effbddb1c215b48e761c5a 49273Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49274Date: Tue Jun 17 16:27:56 2008 +0900 49275 49276 sh: Update Renesas Migo-R board 49277 49278 Remove network setting from config file. 49279 49280 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49281 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49282 49283commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e 49284Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49285Date: Tue Jun 17 16:27:52 2008 +0900 49286 49287 sh: Update Hitachi MS7722SE board 49288 49289 Remove network setting from config file. 49290 49291 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49292 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49293 49294commit 26209e48e8791670c93108029a5c31a30016c6df 49295Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49296Date: Tue Jun 17 16:27:48 2008 +0900 49297 49298 sh: Cleanup source code of SH7763RDP 49299 49300 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49301 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49302 49303commit 5cd5b2c96ef0025762931349d350287aec03ab47 49304Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49305Date: Tue Jun 17 16:27:44 2008 +0900 49306 49307 sh: Cleanup source code of R2DPlus 49308 49309 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49310 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49311 49312commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8 49313Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49314Date: Tue Jun 17 16:27:41 2008 +0900 49315 49316 sh: Cleanup source code of R7780MP 49317 49318 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49319 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49320 49321commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6 49322Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49323Date: Tue Jun 17 16:27:38 2008 +0900 49324 49325 sh: Cleanup source code of MS7722SE 49326 49327 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49328 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49329 49330commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691 49331Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49332Date: Tue Jun 17 16:27:34 2008 +0900 49333 49334 sh: Cleanup source code of MS7720SE 49335 49336 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49337 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49338 49339commit 3ab4827cbe409488ebea1a2ee5094783f2672214 49340Author: Wolfgang Denk <wd@denx.de> 49341Date: Mon Jul 7 00:45:03 2008 +0200 49342 49343 SH: fix out of tree building 49344 49345 Signed-off-by: Wolfgang Denk <wd@denx.de> 49346 49347commit 9047bfa1e737d787be460387dd6f45737eeceb10 49348Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49349Date: Thu Jul 3 23:16:06 2008 +0900 49350 49351 net: smc911x: Fix typo 49352 49353 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 49354 49355commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca 49356Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 49357Date: Wed Jul 2 18:54:08 2008 +0200 49358 49359 update mvBL-M7 board config 49360 49361 update mvBL-M7 config file to use UBOOT_VERSION and define 49362 CONFIG_HIGH_BATS. 49363 49364 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 49365 49366commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30 49367Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49368Date: Mon Jun 30 17:45:01 2008 +0900 49369 49370 net: fix compile problem in smc911x driver. 49371 49372 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49373 Acked-by: Ben Warren <biggerbadderben@gmail.com> 49374 49375commit 9fea65a6c469b1b474b27446feb58738baba2d31 49376Author: Michal Simek <monstr@monstr.eu> 49377Date: Tue Jun 24 09:54:09 2008 +0200 49378 49379 ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405 49380 49381 This change helps with better handling with others 49382 Xilinx based platform. 49383 49384 Signed-off-by: Michal Simek <monstr@monstr.eu> 49385 Acked-by: Stefan Roese <sr@denx.de> 49386 49387commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0 49388Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49389Date: Tue Jun 17 13:07:11 2008 +0900 49390 49391 net: ne2000: Move dev_addr variable from grobal to local. 49392 49393 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49394 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 49395 49396commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb 49397Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49398Date: Tue Jun 17 13:07:15 2008 +0900 49399 49400 net: ne2000: Fix compile error of NE2000 49401 49402 If enable DEBUG, can not compile ne2000 driver. 49403 49404 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 49405 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 49406 49407commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24 49408Author: Ben Warren <biggerbadderben@gmail.com> 49409Date: Mon Jun 23 22:57:27 2008 -0700 49410 49411 Add mechanisms for CPU and board-specific Ethernet initialization 49412 49413 This patch is the first step in cleaning up net/eth.c, by moving Ethernet 49414 initialization to CPU or board-specific code. Initial implementation is 49415 only on the Freescale TSEC controller, but others will be added soon. 49416 49417 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 49418 49419commit 7754f2be5d1835d263aad21b5a629526f3e680b0 49420Author: Wolfgang Denk <wd@denx.de> 49421Date: Sun Jul 6 01:21:46 2008 +0200 49422 49423 include/sha256.h: fix file permissions. 49424 49425 Signed-off-by: Wolfgang Denk <wd@denx.de> 49426 49427commit d3bcdf838e2991d58571308fa6e04ca335bc06e8 49428Author: Patrice Vilchez <patrice.vilchez@atmel.com> 49429Date: Tue May 27 11:15:29 2008 +0200 49430 49431 [AT91SAM9] Fix NAND FLASH timings 49432 49433 Fix NAND FLASH timings for at91sam9x evaluation kits. 49434 49435 New timings are based on application note 49436 "NAND Flash Support on AT91SAM9 Microcontrollers" available at 49437 http://atmel.com/dyn/resources/prod_documents/doc6255.pdf 49438 49439 Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com> 49440 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49441 Acked-by: Stelian Pop <stelian@popies.net> 49442 49443commit 19bd688484322fe62d1a66c8299da6ff9e967ff9 49444Author: Stelian Pop <stelian@popies.net> 49445Date: Thu May 22 00:15:40 2008 +0200 49446 49447 Fix boot from NOR due to incorrect reset delay. 49448 49449 AT91 RSTC registers are battery-backuped, so their values 49450 are not reset across power cycles. One of those registers, 49451 the AT91_RSTC_MR register, is being modified by U-Boot, in 49452 the ethernet initialisation routine, to generate a 500ms 49453 user reset. 49454 49455 Unfortunately, this value is not being restored afterwards, 49456 causing subsequent resets to also last for 500ms. 49457 49458 This long reset sequence causes problems (at least) in the 49459 boot sequence from NOR: by the time the CPU tries to load 49460 a program from the NOR flash, the latter is still in reset 49461 and not yet available. 49462 49463 Additionaly, this patch fixes a bug in the original code which 49464 caused the reset delay to last for 2s instead of 500ms. 49465 49466 Signed-off-by: Stelian Pop <stelian@popies.net> 49467 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49468 49469commit f492dd636fbbae529e17533995bc6e5813c007f6 49470Author: Wolfgang Denk <wd@denx.de> 49471Date: Fri Jul 4 20:11:49 2008 +0200 49472 49473 Update CHANGELOG 49474 49475 Signed-off-by: Wolfgang Denk <wd@denx.de> 49476 49477commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d 49478Author: Wolfgang Denk <wd@denx.de> 49479Date: Fri Jul 4 20:07:35 2008 +0200 49480 49481 CCM/SCM boards: fix out of tree building 49482 49483 Signed-off-by: Wolfgang Denk <wd@denx.de> 49484 49485commit ab4c3a490df9a964711556d2a05b0c787db45fde 49486Author: Wolfgang Denk <wd@denx.de> 49487Date: Thu Jul 3 23:22:27 2008 +0200 49488 49489 SCM board: fix build errors. 49490 49491 Signed-off-by: Wolfgang Denk <wd@denx.de> 49492 49493commit a566466f17ba0e2d2b6c250e77da678fb932470d 49494Author: Wolfgang Denk <wd@denx.de> 49495Date: Thu Jul 3 23:06:36 2008 +0200 49496 49497 IAD210 board: fix ``"ALIGN" redefined'' warning. 49498 49499 Signed-off-by: Wolfgang Denk <wd@denx.de> 49500 49501commit ad756314797c16fa5dca23e115aab881011f164f 49502Author: Wolfgang Denk <wd@denx.de> 49503Date: Thu Jul 3 23:00:24 2008 +0200 49504 49505 CCM board: fix build errors. 49506 49507 Signed-off-by: Wolfgang Denk <wd@denx.de> 49508 49509commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b 49510Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 49511Date: Wed Jul 2 18:54:08 2008 +0200 49512 49513 update mvBL-M7 board config 49514 49515 update mvBL-M7 config file to use UBOOT_VERSION. 49516 49517 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 49518 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 49519 49520commit ced209c50e80c25f13c083099b05044048d21f4f 49521Author: Wolfgang Denk <wd@denx.de> 49522Date: Thu Jul 3 22:39:21 2008 +0200 49523 49524 sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'" 49525 49526 Signed-off-by: Wolfgang Denk <wd@denx.de> 49527 49528commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e 49529Author: Wolfgang Denk <wd@denx.de> 49530Date: Thu Jul 3 22:34:08 2008 +0200 49531 49532 Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors 49533 49534 Signed-off-by: Wolfgang Denk <wd@denx.de> 49535 49536commit 730f298485984b011b6ee8f4acb511cb45a843dd 49537Author: Wolfgang Denk <wd@denx.de> 49538Date: Thu Jul 3 22:04:17 2008 +0200 49539 49540 lmb: fix "implicit declaration of function 'lmb_free'" warning 49541 49542 Signed-off-by: Wolfgang Denk <wd@denx.de> 49543 49544commit 322ef5e28d2dc62571afc699b00add22a8e006e4 49545Author: Wolfgang Denk <wd@denx.de> 49546Date: Wed Jul 2 23:53:23 2008 +0200 49547 49548 Cleanup: remove redundant deleting on *~ files 49549 49550 Signed-off-by: Wolfgang Denk <wd@denx.de> 49551 49552commit c8a3b109f07f02342d097b30908965f7261d9f15 49553Author: Wolfgang Denk <wd@denx.de> 49554Date: Wed Jul 2 23:49:18 2008 +0200 49555 49556 Cleanup out-or-tree building for some boards (.depend) 49557 49558 Signed-off-by: Wolfgang Denk <wd@denx.de> 49559 49560commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4 49561Author: Wolfgang Denk <wd@denx.de> 49562Date: Wed Jul 2 23:38:50 2008 +0200 49563 49564 Cleanup: fix out-of-tree building for some boards 49565 49566 Signed-off-by: Wolfgang Denk <wd@denx.de> 49567 49568commit 461fa68d20861811487944d22291db5a13410e20 49569Author: Wolfgang Denk <wd@denx.de> 49570Date: Wed Jul 2 23:00:14 2008 +0200 49571 49572 Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS) 49573 49574 Signed-off-by: Wolfgang Denk <wd@denx.de> 49575 49576commit 5981ebd32017e062b08aa6747cf591276f2db779 49577Author: Detlev Zundel <dzu@denx.de> 49578Date: Fri Jun 20 22:26:24 2008 +0200 49579 49580 fdt: Fix typo in variable name. 49581 49582 Signed-off-by: Detlev Zundel <dzu@denx.de> 49583 49584commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc 49585Author: Gary Jennejohn <garyj@denx.de> 49586Date: Thu Jun 19 11:11:19 2008 +0200 49587 49588 Add logos for RRvision board 49589 49590 Signed-off-by: Gary Jennejohn <garyj@denx.de> 49591 49592commit ee4ae38342142237ca85913f88ee570c1eb5ca7c 49593Author: Esben Haabendal <EsbenHaabendal@gmail.com> 49594Date: Wed Jun 18 11:03:57 2008 +0200 49595 49596 mpc8260: add fdt_fixup_ethernet support 49597 49598 Add support for updating mac-address and local-mac-address in fdt for 49599 all MPC8260 targets. 49600 49601 Signed-off-by: Esben Haabendal <eha@doredevelopment.dk> 49602 49603commit f6a69559d64498a04e1e0b087a9b920e5775f866 49604Author: Steven A. Falco <sfalco@harris.com> 49605Date: Thu Jun 12 13:24:42 2008 -0400 49606 49607 cmd_nvedit.c: clean up syntax highlighting 49608 49609 My text-editor (vim) has a bit of trouble syntax-highlighting the 49610 cmd_nvedit.c file, because it apparently does not parse C 49611 ifdef/else/endif. The following patch does not change the behavior of 49612 the code at all, but does allow the editor to properly 49613 syntax-highlight the file. 49614 49615 Signed-off-by: Steve Falco <sfalco@harris.com> 49616 49617commit 75678c807a6272ecc5541eb32898c93887f08400 49618Author: Steven A. Falco <sfalco@harris.com> 49619Date: Thu Jun 12 13:22:12 2008 -0400 49620 49621 Make setenv() return status 49622 49623 Currently, the setenv function does not return an error code. 49624 This patch allows to test for errors. 49625 49626 Signed-off-by: Steve Falco <sfalco@harris.com> 49627 49628commit 4928e97c8531283ca9b368b7c29a8a12e726562a 49629Author: Kumar Gala <galak@kernel.crashing.org> 49630Date: Wed Jun 11 10:14:06 2008 -0500 49631 49632 PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops 49633 49634 fls64, __ilog2_u64, ffs64 are variants that work on an u64, 49635 and fls is used to implement them. 49636 49637 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 49638 49639commit 83002a77cbdf383015ca384eff5fa31722d8e571 49640Author: Magnus Lilja <lilja.magnus@gmail.com> 49641Date: Mon Jun 9 22:58:48 2008 +0200 49642 49643 i.MX31: Cleanup comments in lowlevel_init.S. 49644 49645 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 49646 49647commit f8cc312bbee69257d741dc9f4062f4a0f5adf609 49648Author: Ben Warren <biggerbadderben@gmail.com> 49649Date: Sun Jun 8 23:28:33 2008 -0700 49650 49651 Move conditional compilation of MPC8XXX SPI driver to Makefile 49652 49653 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 49654 49655commit d92ea21bafb674ee2bf27447970b047845e7b0a2 49656Author: Juergen Kilb <J.Kilb@gmx.de> 49657Date: Sun Jun 8 17:59:53 2008 +0200 49658 49659 i.MX31: fixed CTRL-C detection 49660 49661 The Register URXD contains status information in bits [15..8]. 49662 With status bit 15 set, CTRL-C was reported as 0x8003 instead 49663 of 0x03. Therefore CTRL-C was not detected. 49664 To solve this, bits [15..8] were masked out now. 49665 49666 Signed-off-by: Juergen Kilb <J.Kilb@gmx.de> 49667 Acked-by: Felix Radensky <felix@embedded-sol.com> 49668 49669commit dd1c5523d6f44e842e69f2fcb50788c6060eab86 49670Author: Stefan Roese <sr@denx.de> 49671Date: Tue Jul 1 17:03:19 2008 +0200 49672 49673 ppc4xx: Fix 460EX/GT PCIe port initialization 49674 49675 This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was 49676 configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing 49677 this out. 49678 49679 Signed-off-by: Stefan Roese <sr@denx.de> 49680 49681commit b571afde0295b007a45055ee49f8822c753a5651 49682Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49683Date: Sat Jun 7 12:29:52 2008 +0200 49684 49685 add SHA256 support 49686 49687 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49688 Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com> 49689 49690commit 3bab76a26e03df4ff81342fcc16393ce37d9766b 49691Author: Marian Balakowicz <m8@semihalf.com> 49692Date: Fri Jun 6 23:07:40 2008 +0200 49693 49694 Delay FIT format check on sector based devices 49695 49696 Global FIT image operations like format check cannot be performed on 49697 a first sector data, defer them to the point when whole FIT image was 49698 uploaded to a system RAM. 49699 49700 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 49701 Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com> 49702 NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com> 49703 49704commit 9810263afec5ac5f38f92963bb3b6d799e4331d0 49705Author: Dave Liu <r63238@freescale.com> 49706Date: Tue Jun 3 17:38:19 2008 +0800 49707 49708 sata: wait for device updating signature to host 49709 49710 The driver need wait for the device updating signature to host. 49711 If we don't wait for it, the driver can not detect the device(disk) 49712 when the system powers up. 49713 49714 Signed-off-by: Dave Liu <daveliu@freescale.com> 49715 49716commit 745d8a0d3cea82e6d1753e14afb4588c34761b15 49717Author: Stefan Roese <sr@denx.de> 49718Date: Sat Jun 28 14:56:17 2008 +0200 49719 49720 ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic 49721 49722 This patch implements a fix provided by AMCC so that the lockup upon 49723 simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur 49724 anymore: 49725 49726 Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2] 49727 (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG, 49728 USB 2.0 host and SATA. 49729 49730 This errata is not officially available yet. I'll update the comment 49731 to add the errata number later. 49732 49733 Signed-off-by: Stefan Roese <sr@denx.de> 49734 49735commit 8b616edb118e37d05f6401389eaee1c636b22828 49736Author: Stuart Wood <stuart.wood@labxtechnologies.com> 49737Date: Mon Jun 2 16:42:19 2008 -0400 49738 49739 serial_pl010.c: add watchdog support 49740 49741 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com> 49742 49743commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b 49744Author: Stuart Wood <stuart.wood@labxtechnologies.com> 49745Date: Mon Jun 2 16:40:08 2008 -0400 49746 49747 jffs2_1pass.c: add watchdog support 49748 49749 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com> 49750 49751commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89 49752Author: Sascha Laue <sascha.laue@liebherr.com> 49753Date: Fri May 30 09:48:14 2008 +0200 49754 49755 Configure DSP POST; add watchdog reset to diag command 49756 49757 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com> 49758 49759commit f13526517859bf6b573e23ff47199e107d1009b5 49760Author: Tor Krill <tor@excito.com> 49761Date: Thu May 29 10:40:17 2008 +0200 49762 49763 Add sata sil3114 support 49764 49765 Signed-off-by: Tor Krill <tor@excito.com> 49766 49767commit e093a247628228100f405b6d7f6b1bfc16141938 49768Author: Wolfgang Denk <wd@denx.de> 49769Date: Sat Jun 28 23:34:37 2008 +0200 49770 49771 Coding Style Cleanup 49772 49773 Signed-off-by: Wolfgang Denk <wd@denx.de> 49774 49775commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83 49776Author: Wolfgang Denk <wd@denx.de> 49777Date: Sat Jun 28 23:16:01 2008 +0200 49778 49779 Update CHANGELOG 49780 49781 Signed-off-by: Wolfgang Denk <wd@denx.de> 49782 49783commit c7f879ec2b389c4f2bf726b293bd516f4c692e03 49784Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 49785Date: Wed May 21 13:58:41 2008 -0400 49786 49787 ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS) 49788 49789 This patch adds support for the Lyrtech SFF-SDR board, 49790 based on the TI DaVinci architecture (ARM926EJS). 49791 49792 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com> 49793 Signed-off-by: Philip Balister <philip@balister.org> 49794 Signed-off-by: Wolfgang Denk <wd@denx.de> 49795 49796commit 341188b9ccaa8d4462d772cc067aca8d7618633a 49797Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 49798Date: Thu May 22 11:09:59 2008 +0200 49799 49800 MMC: Consolidate MMC/SD command definitions 49801 49802 This moves the MMC and SD Card command definitions from 49803 include/asm/arch/mmc.h into include/mmc.h. These definitions are 49804 given by the MMC and SD Card standards, not by any particular 49805 architecture. 49806 49807 There's a lot more room for consolidation in the MMC drivers which 49808 I'm hoping to get done eventually, but this patch is a start. 49809 49810 Compile-tested for all avr32 boards as well as lpc2292sodimm and 49811 lubbock. This should cover all three mmc drivers in the tree. 49812 49813 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 49814 49815commit fa60edfc4c952626e048c0e065f654b3c1822fa5 49816Author: Kyungmin Park <kmpark@infradead.org> 49817Date: Wed May 21 14:38:08 2008 +0900 49818 49819 Use better Ethernet timings for apollon board 49820 49821 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 49822 49823commit 41c5eaa7253ed82bbae1eda5667755872c615164 49824Author: Andy Fleming <afleming@freescale.com> 49825Date: Mon Jun 16 13:58:56 2008 -0500 49826 49827 Resize device tree to allow space for board changes and the chosen node 49828 49829 Current code requires that a compiled device tree have space added to the end to 49830 leave room for extra nodes added by board code (and the chosen node). This 49831 requires that device tree creators anticipate how much space U-Boot will add to 49832 the tree, which is absurd. Ideally, the code would resize and/or relocate the 49833 tree when it needed more space, but this would require a systemic change to the 49834 fdt code, which is non-trivial. Instead, we resize the tree inside 49835 boot_relocate_fdt, reserving either the remainder of the bootmap (in the case 49836 where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size. 49837 49838 Signed-off-by: Andy Fleming <afleming@freescale.com> 49839 49840commit 7570a9941fc565922078679a72d246fe208d696d 49841Author: Andy Fleming <afleming@freescale.com> 49842Date: Mon Jun 16 13:58:55 2008 -0500 49843 49844 Fix an underflow bug in __lmb_alloc_base 49845 49846 __lmb_alloc_base can underflow if it fails to find free space. This was fixed 49847 in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc. This patch 49848 merely updates __lmb_alloc_base to resemble the current version in Linux. 49849 49850 Signed-off-by: Andy Fleming <afleming@freescale.com> 49851 49852commit 63796c4e61b207d2e635729d41b7a7f7d188b03c 49853Author: Andy Fleming <afleming@freescale.com> 49854Date: Mon Jun 16 13:58:54 2008 -0500 49855 49856 Add lmb_free 49857 49858 lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or 49859 lmb_reserve to temporarily reserve some memory. 49860 49861 Signed-off-by: Andy Fleming <afleming@freescale.com> 49862 49863commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d 49864Author: Andy Fleming <afleming@freescale.com> 49865Date: Mon Jun 16 13:58:53 2008 -0500 49866 49867 Add ALIGN() macro 49868 49869 ALIGN() returns the smallest aligned value greater than the passed 49870 in address or size. Taken from Linux. 49871 49872 Signed-off-by: Andy Fleming <afleming@freescale.com> 49873 49874commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2 49875Author: Stefan Roese <sr@denx.de> 49876Date: Tue Jun 24 17:15:22 2008 +0200 49877 49878 ppc4xx: Fix compilation problems with phys_size_t 49879 49880 This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx 49881 board specific files where it has been missing. 49882 49883 Signed-off-by: Stefan Roese <sr@denx.de> 49884 49885commit 28eab0d77352b84885f938759bf2612b7bf0bc44 49886Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 49887Date: Mon May 19 12:26:38 2008 +0200 49888 49889 Conditionally add -fno-stack-protector to CFLAGS 49890 49891 When compile-testing on powerpc, I get errors like this: 49892 49893 net/nfs.c:422: undefined reference to `__stack_chk_fail_local' 49894 49895 This seems to be because -fstack-protector is on by default, so 49896 let's explicitly disable it on all architectures that support the 49897 option. 49898 49899 The Ubuntu toolchain is affected by this problem, and according to 49900 Mike Frysinger, Gentoo has been running with SSP enabled for years. 49901 More and more distros are turning SSP on by default, so this problem 49902 is likely to get worse in the future. 49903 49904 Also, powerpc just happens to be one of the arches I do 49905 compile-testing on. There may be other arches affected by this too. 49906 49907 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 49908 49909commit dfd3be881c03a26e31f0dea4a42e76061fa610ac 49910Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49911Date: Sun May 18 19:09:52 2008 +0200 49912 49913 pcmcia/ti_pci1410a: Move compile condition to the Makefile 49914 49915 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49916 49917commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a 49918Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49919Date: Sun May 18 19:09:51 2008 +0200 49920 49921 pxa_pcmcia: Move compile condition to the Makefile 49922 49923 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49924 49925commit c9eff32881fb429101c937cf8c268f1d42e5c2a9 49926Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49927Date: Sun May 18 19:09:50 2008 +0200 49928 49929 marabun_pcmcia: Move compile condition to the Makefile 49930 49931 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 49932 49933commit 6a19c46cae43c16c528eddefae3db97134f1915d 49934Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 49935Date: Mon Jun 23 13:25:34 2008 +0200 49936 49937 fix non-working mvBL-M7 49938 49939 Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file. 49940 49941 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 49942 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 49943 49944commit 846f1574ddddeda2bc227655e687308695f41cdc 49945Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 49946Date: Mon Jun 23 11:40:56 2008 +0200 49947 49948 fix system config overwrite @ MPC834x and MPC8313 49949 49950 During 83xx setup the "System I/O configuration register high" gets 49951 overwritten with user defined value if CFG_SICRH is defined. 49952 49953 Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH 49954 must keep their reset value regardless of configuration. 49955 49956 On my board (using RGMII) those bits are set after reset - yet it's 49957 unclear where they come from. 49958 49959 The patch keeps both bits on MPC834x and MPC8313. 49960 49961 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 49962 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 49963 49964commit 4890246a2c5df90a74e2941e3673a49bbd36aee9 49965Author: Kim Phillips <kim.phillips@freescale.com> 49966Date: Tue Jun 17 17:45:27 2008 -0500 49967 49968 mpc83xx: move CPU_TYPE_ENTRY over to processor.h 49969 49970 to avoid this: 49971 49972 cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined 49973 In file included from cpu.c:33: 49974 /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition 49975 49976 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 49977 49978commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8 49979Author: Stefan Roese <sr@denx.de> 49980Date: Mon Jun 23 11:15:09 2008 +0200 49981 49982 ppc4xx: Fix problem in gpio_config() 49983 49984 As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted 49985 left by one. So the additional shift is bogus. 49986 49987 Signed-off-by: Stefan Roese <sr@denx.de> 49988 49989commit 40777812316fc252c941665c0f60c148fd79d50f 49990Author: Detlev Zundel <dzu@denx.de> 49991Date: Fri Jun 20 22:24:05 2008 +0200 49992 49993 fdt: Fix typo in variable name. 49994 49995 Signed-off-by: Detlev Zundel <dzu@denx.de> 49996 49997commit 5f723a3b98c630bde33de74351f2121691fdef14 49998Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 49999Date: Fri Jun 20 10:41:05 2008 +0200 50000
50001 avr32: Enable SPI flash support on ATNGW100 50002 50003 The ATNGW100 has 8MB DataFlash on board. Give users access to it through 50004 the new SPI flash framework. 50005 50006 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 50007 50008commit 5605ef6b5802921cbefe6a933a9dea3497396b5c 50009Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 50010Date: Fri Jun 20 12:44:28 2008 +0200 50011 50012 avr32: Fix SPI portmux initialization 50013 50014 Use the new GPIO manipulation functions to set up the chip select lines, 50015 and make sure both busses use GPIO for chip select control. 50016 50017 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 50018 50019commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab 50020Author: Peter Ma <pma@mediamatech.com> 50021Date: Sun Jun 1 22:59:24 2008 -0700 50022 50023 avr32: Add GPIO manipulation functions 50024 50025 Adds GPIO manipulation functions for AVR32 AP7 platform. 50026 50027 Signed-off-by: Peter Ma <pma@mediamatech.com> 50028 [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification] 50029 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 50030 50031commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a 50032Author: Wolfgang Grandegger <wg@grandegger.com> 50033Date: Thu Jun 5 13:02:30 2008 +0200 50034 50035 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver 50036 50037 This patch is based on the following patch sent a few minutes ago: 50038 "NAND FSL UPM: driver re-write using the hwcontrol callback" 50039 It is untested, of course. Anton, could you please give it a try. 50040 50041 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50042 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com> 50043 50044commit 96026d42fa4e646d28318c0a1438aac4b2017909 50045Author: Anatolij Gustschin <agust@denx.de> 50046Date: Thu Jun 12 12:40:11 2008 +0200 50047 50048 Fix 4xx build issue 50049 50050 Building for 4xx doesn't work since commit 4dbdb768: 50051 50052 In file included from 4xx_pcie.c:28: 50053 include/asm/processor.h:971: error: expected ')' before 'ver' 50054 make[1]: *** [4xx_pcie.o] Error 1 50055 50056 This patch fixes the problem. 50057 50058 Signed-off-by: Anatolij Gustschin <agust@denx.de> 50059 Acked-by: Stefan Roese <sr@denx.de> 50060 Acked-by: Kumar Gala <galak@kernel.crashing.org> 50061 50062commit a036b0443657fe0f4773786de9092251869f08ac 50063Author: Kumar Gala <galak@kernel.crashing.org> 50064Date: Thu Jun 19 01:45:50 2008 -0500 50065 50066 MPC8610HPCD: Report board id, board version and fpga version. 50067 50068 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50069 50070commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835 50071Author: Kumar Gala <galak@kernel.crashing.org> 50072Date: Thu Jun 19 01:45:27 2008 -0500 50073 50074 MPC8641HPCN: Report board id, board version and fpga version. 50075 50076 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50077 50078commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8 50079Author: Stefan Roese <sr@denx.de> 50080Date: Mon Jun 16 10:40:02 2008 +0200 50081 50082 cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably 50083 50084 This patch simplifies flash_toggle() (AMD commandset), which is used to 50085 detect if a FLASH device is still busy with erase/program operations. On 50086 800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation 50087 did not detect the busy state reliably, resulting in non erased sectors 50088 etc. This patch now simplifies this function by "just" comparing the 50089 complete data-word instead of ANDing it with the command-word (0x40) 50090 before the compatison. It is done the same way in the Linux implementation 50091 chip_ready() in cfi_cmdset_0002.c. 50092 50093 Signed-off-by: Stefan Roese <sr@denx.de> 50094 50095commit 9e4006bca3d9fb4a2d061996771036cb01e539d3 50096Author: Philip Balister <philip@balister.org> 50097Date: Mon Jun 16 08:58:07 2008 -0400 50098 50099 NAND: Add missing declaration to non-redundant saveenv(). 50100 50101 Signed-off-by: Scott Wood <scottwood@freescale.com> 50102 50103commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52 50104Author: Wolfgang Grandegger <wg@grandegger.com> 50105Date: Mon Jun 2 15:09:55 2008 +0200 50106 50107 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver 50108 50109 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50110 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com> 50111 Signed-off-by: Scott Wood <scottwood@freescale.com> 50112 50113commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f 50114Author: Stefan Roese <sr@denx.de> 50115Date: Tue Jun 10 15:34:11 2008 +0200 50116 50117 ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output 50118 50119 This patch disables the square wave output of the M41T62 RTC used on 50120 Canyonlands & Glacier. Here the explanation: 50121 50122 The serial real-time clock part used in the design is an 50123 STMicro M41T62. This part has a full-time 32KHz square wave 50124 output that is connected to the TmrClk input to the 50125 processor. The default state for this square wave output is 50126 enabled so the output runs continuously when the board is 50127 powered normally and also from the battery. The TmrClk input 50128 to the processor goes to ground when the power is removed 50129 from the board/processor, and therefore the running square 50130 wave output is driving ground which drains the battery quickly. 50131 50132 Signed-off-by: Stefan Roese <sr@denx.de> 50133 50134commit a94f22f08f280905926219e568568964cb9eeb9d 50135Author: Andy Fleming <afleming@freescale.com> 50136Date: Wed Jun 11 18:10:20 2008 -0500 50137 50138 Fix build issue with string.h and linux/string.h 50139 50140 This commit: 50141 commit 338cc038461a6c7709c5b86fd9a240209338a1ae 50142 Author: Wolfgang Denk <wd@denx.de> 50143 Date: Fri Jun 6 14:28:14 2008 +0200 50144 50145 tools/mkimage: fix compiler warnings on some systems. 50146 50147 Broke building on some systems, because the host's string.h was interfering 50148 with u-boot's linux/string.h. It doesn't look like we need the u-boot one if 50149 we're building for the host, so now we only include when building inside 50150 u-boot. 50151 50152 Signed-off-by: Andy Fleming <afleming@freescale.com> 50153 50154commit 9973e3c614721bbf169882ffc3be266a6611cd60 50155Author: Becky Bruce <becky.bruce@freescale.com> 50156Date: Mon Jun 9 16:03:40 2008 -0500 50157 50158 Change initdram() return type to phys_size_t 50159 50160 This patch changes the return type of initdram() from long int to phys_size_t. 50161 This is required for a couple of reasons: long int limits the amount of dram 50162 to 2GB, and u-boot in general is moving over to phys_size_t to represent the 50163 size of physical memory. phys_size_t is defined as an unsigned long on almost 50164 all current platforms. 50165 50166 This patch *only* changes the return type of the initdram function (in 50167 include/common.h, as well as in each board's implementation of initdram). It 50168 does not actually modify the code inside the function on any of the platforms; 50169 platforms which wish to support more than 2GB of DRAM will need to modify 50170 their initdram() function code. 50171 50172 Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc 50173 MPC8641HPCN. 50174 50175 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 50176 50177commit 391fd93ab23e15ab3dd58a54f5b609024009c378 50178Author: Becky Bruce <becky.bruce@freescale.com> 50179Date: Mon Jun 9 20:37:18 2008 -0500 50180 50181 Change lmb to use phys_size_t/phys_addr_t 50182 50183 This updates the lmb code to use phys_size_t 50184 and phys_addr_t instead of unsigned long. Other code 50185 which interacts with this code, like getenv_bootm_size() 50186 is also updated. 50187 50188 Booted on MPC8641HPCN, build-tested ppc, arm, mips. 50189 50190 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 50191 50192commit 61b09fc2952dc636017df4e7970e3de132276ba1 50193Author: Becky Bruce <becky.bruce@freescale.com> 50194Date: Mon Jun 9 20:37:17 2008 -0500 50195 50196 Change print_size to take phys_size_t 50197 50198 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 50199 50200commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe 50201Author: Becky Bruce <becky.bruce@freescale.com> 50202Date: Mon Jun 9 20:37:16 2008 -0500 50203 50204 Change bd/gd memsize/ram_size to be phys_size_t. 50205 50206 Currently, both are defined as an unsigned long, but 50207 should be phys_size_t. This should result in no real change, 50208 since phys_size_t is currently an unsigned long for all the 50209 default configs. Also add print_lnum to cmd_bdinfo to deal 50210 with the potentially wider memsize. 50211 50212 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 50213 50214commit ba04f7010958e88a8910f2a123fee53fdc72e013 50215Author: Kumar Gala <galak@kernel.crashing.org> 50216Date: Tue Jun 10 16:16:02 2008 -0500 50217 50218 FSL LAW: Add new interface to use the last free LAW 50219 50220 LAWs have the concept of priority so its useful to be able to allocate 50221 the lowest (highest number) priority. We will end up using this with the 50222 new DDR code. 50223 50224 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50225 50226commit 859a86a25c569d3665ff413d1d923394b8a961f3 50227Author: Kumar Gala <galak@kernel.crashing.org> 50228Date: Wed Jun 11 00:51:45 2008 -0500 50229 50230 85xx/86xx: Move to dynamic mgmt of LAWs 50231 50232 With the new LAW interface (set_next_law) we can move to letting the 50233 system allocate which LAWs are used for what purpose. This makes life 50234 a bit easier going forward with the new DDR code. 50235 50236 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50237 Signed-off-by: Andy Fleming <afleming@freescale.com> 50238 Acked-by: Jon Loeliger <jdl@freescale.com> 50239 Acked-by: Becky Bruce <becky.bruce@freescale.com> 50240 50241commit f060054dadbbe7027ca088eed806a3ef1f82fdb7 50242Author: Kumar Gala <galak@kernel.crashing.org> 50243Date: Wed Jun 11 00:44:10 2008 -0500 50244 50245 FSL LAW: Keep track of LAW allocations 50246 50247 Make it so we keep track of which LAWs have allocated and provide 50248 a function (set_next_law) which can allocate a LAW for us if one is 50249 free. 50250 50251 In the future we will move to doing more "dynamic" LAW allocation 50252 since the majority of users dont really care about what LAW number 50253 they are at. 50254 50255 Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them 50256 50257 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50258 Signed-off-by: Andy Fleming <afleming@freescale.com> 50259 50260commit ddde74a159caa6e18b481fec01d40b885aebb566 50261Author: Kumar Gala <galak@kernel.crashing.org> 50262Date: Mon Jun 9 22:31:57 2008 -0500 50263 50264 85xx: remove dummy board_early_init_f 50265 50266 A number of board ports have empty version of board_early_init_f 50267 for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F. 50268 50269 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50270 50271commit 81e56e9af0d43712db8efb843606a8d62eab454f 50272Author: Kumar Gala <galak@kernel.crashing.org> 50273Date: Mon Jun 9 18:55:38 2008 -0500 50274 50275 MPC8544DS: Update config.h 50276 50277 * Enable flash progress 50278 * remove CLEAR_LAW0 since we dont really use it 50279 50280 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50281 50282commit 978e81604c1b28526ed580df0fbe64eb8384e94f 50283Author: Kumar Gala <galak@kernel.crashing.org> 50284Date: Mon Jun 9 13:37:24 2008 -0500 50285 50286 85xx: Remove unused and unconfigured memory test code. 50287 50288 Remove unused and unconfigured DDR test code from FSL 85xx boards. 50289 Besides, other common code exists. 50290 50291 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50292 50293commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7 50294Author: Sergei Poselenov <sposelenov@emcraft.com> 50295Date: Fri Jun 6 15:42:45 2008 +0200 50296 50297 Socrates: Added FPGA base address update in FDT. 50298 50299 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 50300 50301commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4 50302Author: Sergei Poselenov <sposelenov@emcraft.com> 50303Date: Fri Jun 6 15:42:44 2008 +0200 50304 50305 Socrates: NAND support added. Changed the U-Boot base address and 50306 50307 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 50308 50309commit 248ae5cfc8bf69074d1da099dc495d8e06070547 50310Author: Sergei Poselenov <sposelenov@emcraft.com> 50311Date: Fri Jun 6 15:42:43 2008 +0200 50312 50313 NAND: Added support for 128-bit OOB, adapted 50314 50315 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 50316 50317commit 31ca0208612f2eb57690110d7c2815953650e47b 50318Author: Sergei Poselenov <sposelenov@emcraft.com> 50319Date: Fri Jun 6 15:42:42 2008 +0200 50320 50321 Socrates: added missed file with UPMA configuration data. 50322 50323 Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com> 50324 50325commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba 50326Author: Sergei Poselenov <sposelenov@emcraft.com> 50327Date: Fri Jun 6 15:42:41 2008 +0200 50328 50329 Socrates: Added FPGA mapping. LAWs and TLBs cleanup. 50330 50331 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 50332 50333commit 740280e68ccc0b971e613face7eaaa8bd1382b8c 50334Author: Sergei Poselenov <sposelenov@emcraft.com> 50335Date: Fri Jun 6 15:42:40 2008 +0200 50336 50337 Added the upmconfig() function for 85xx. 50338 50339 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 50340 Signed-off-by: Andy Fleming <afleming@freescale.com> 50341 50342commit d39e68514ff943930ee692cff3fde03532eb7fec 50343Author: Sergei Poselenov <sposelenov@emcraft.com> 50344Date: Fri Jun 6 15:42:39 2008 +0200 50345 50346 Socrates: config file cleanup. 50347 50348 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 50349 50350commit e8cc3f04b124f757af4528206e60d8eb715ae083 50351Author: Wolfgang Grandegger <wg@grandegger.com> 50352Date: Thu Jun 5 13:12:10 2008 +0200 50353 50354 TQM85xx: Change memory map to support Flash memory > 128 MiB 50355 50356 Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash 50357 memory. The current memory map only supports up to 128 MiB Flash. 50358 This patch adds the configuration option CONFIG_TQM_BIGFLASH. If 50359 set, up to 1 GiB flash is supported. To achieve this, the memory 50360 map has to be adjusted in great parts (for example the CCSRBAR is 50361 moved from 0xE0000000 to 0xA0000000). 50362 50363 If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new 50364 memory map also has to be considered in the kernel (changed 50365 CCSRBAR address, changed PCI IO base address, ...). Please use 50366 an appropriate Flat Device Tree blob (tqm8548.dtb). 50367 50368 Signed-off-by: Martin Krause <martin.krause@tqs.de> 50369 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50370 50371commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051 50372Author: Wolfgang Grandegger <wg@grandegger.com> 50373Date: Thu Jun 5 13:12:09 2008 +0200 50374 50375 TQM85xx: NAND support via local bus UPMB 50376 50377 This patch adds support for NAND FLASH on the TQM8548. It is disabled by 50378 default and can be enabled for the TQM8548 modules. It is now based on 50379 the re-written FSL NAND UPM driver. A patch has been posted earlier today 50380 with the subject: 50381 50382 "NAND FSL UPM: driver re-write using the hwcontrol callback" 50383 50384 Note that the R/B pin is not supported by that module requiring to use 50385 the specified maximum delay time. 50386 50387 Note: With NAND support enabled the size of the U-Boot image exceeds 50388 256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk, 50389 doubling the image size :-(. 50390 50391 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de> 50392 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50393 50394commit b9e8078bb3f3c48111a7081e27279938c3a445e1 50395Author: Wolfgang Grandegger <wg@grandegger.com> 50396Date: Thu Jun 5 13:12:08 2008 +0200 50397 50398 TQM8548: PCI express support 50399 50400 This patch adds support for PCI express cards. The board support 50401 now uses common FSL PCI init code, for both, PCI and PCIe on all 50402 TQM85xx modules. 50403 50404 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de> 50405 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50406 50407commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876 50408Author: Wolfgang Grandegger <wg@grandegger.com> 50409Date: Thu Jun 5 13:12:07 2008 +0200 50410 50411 TQM8548: Basic support for the TQM8548 modules 50412 50413 This patch adds basic support for the TQM8548 module from TQ-Components 50414 (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for 50415 eTSEC 3 and 4 50416 50417 Furthermore Flash buffer write has been enabled to speed up output to 50418 the Flash by approx. a factor of 10. 50419 50420 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de> 50421 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50422 50423commit 25991353204c78b094c3c1fec90182dcd607ab8f 50424Author: Wolfgang Grandegger <wg@grandegger.com> 50425Date: Thu Jun 5 13:12:06 2008 +0200 50426 50427 TQM85xx: Support for Flat Device Tree 50428 50429 This patch adds support for Linux kernels using the Flat Device Tree. 50430 It also re-defines the default environment settings for booting Linux 50431 with the FDT blob. 50432 50433 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50434 50435commit d9ee843d54c54776e1fdb86336ce554906a87331 50436Author: Wolfgang Grandegger <wg@grandegger.com> 50437Date: Thu Jun 5 13:12:05 2008 +0200 50438 50439 TQM85xx: Support for Intel 82527 compatible CAN controller 50440 50441 This patch adds initialization of the UPMC RAM to support up to two 50442 Intel 82527 compatible CAN controller on the TQM85xx modules. 50443 50444 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de> 50445 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50446 50447commit 518d5cfe72916323c746af1647764459914f555f 50448Author: Wolfgang Grandegger <wg@grandegger.com> 50449Date: Thu Jun 5 13:12:04 2008 +0200 50450 50451 TQM85xx: Bugfix in the SDRAM initialisation 50452 50453 The CS0_BNDS register is now set according to the detected 50454 memory size. 50455 50456 Signed-off-by Martin Krause <martin.krause@tqs.de> 50457 50458commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d 50459Author: Wolfgang Grandegger <wg@grandegger.com> 50460Date: Thu Jun 5 13:12:03 2008 +0200 50461 50462 TQM85xx: Fix chip select configuration for second FLASH bank 50463 50464 This patch fixes the re-calculation of the automatic chip select 50465 configuration for boards with two populated FLASH banks. 50466 50467 Signed-off-by: Martin Krause <martin.krause@tqs.de> 50468 50469commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f 50470Author: Wolfgang Grandegger <wg@grandegger.com> 50471Date: Thu Jun 5 13:12:02 2008 +0200 50472 50473 TQM85xx: Support for Spansion 'N' type flashes added 50474 50475 The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors, 50476 than the formerly used 'M' types (S29GLxxxM series), so the flash layout 50477 needs to be changed -> new start address of the environment. The macro 50478 definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be 50479 defined for boards with 'N' type flashes. 50480 50481 Signed-off-by: Martin Krause <martin.krause@tqs.de> 50482 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50483 50484commit 5d5bd838f76eade22c0ea40a500389f924d0da36 50485Author: Wolfgang Grandegger <wg@grandegger.com> 50486Date: Thu Jun 5 13:12:01 2008 +0200 50487 50488 TQM85xx: Fix CPM port pin configuration 50489 50490 Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560 50491 board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used 50492 as serial interface anyway. Worse, on some board variants configuring the 50493 pins for SCC1 leads to short circuits (for example on the TQM8541-BG). 50494 50495 Signed-off-by: Martin Krause <martin.krause@tqs.de> 50496 50497commit b99ba1679e8cd51b023e67098c89e606e47137d2 50498Author: Wolfgang Grandegger <wg@grandegger.com> 50499Date: Thu Jun 5 13:12:00 2008 +0200 50500 50501 TQM85xx: Various coding style fixes 50502 50503 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50504 50505commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00 50506Author: Gerald Van Baren <vanbaren@cideas.com> 50507Date: Tue Jun 10 22:15:58 2008 -0400 50508 50509 libfdt: Move the working_fdt pointer to cmd_fdt.c 50510 50511 The working_fdt pointer was declared in common/fdt_support.c but was 50512 not used there. Move it to common/cmd_fdt.c where it is used (it is 50513 also used in lib_ppc/bootm.c). 50514 50515 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 50516 50517commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e 50518Author: Kim Phillips <kim.phillips@freescale.com> 50519Date: Tue Jun 10 11:06:17 2008 -0500 50520 50521 fdt: unshadow global working fdt variable 50522 50523 differentiate with local variables of the same name by renaming the 50524 global 'fdt' variable 'working_fdt'. 50525 50526 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 50527 50528commit e1eb0e25d9d8fd8efdfb93f670a417663f386022 50529Author: Andy Fleming <afleming@freescale.com> 50530Date: Tue Jun 10 18:49:34 2008 -0500 50531 50532 socrates: Fix PCI clk fix patch 50533 50534 The submitted patch seems to have been more up-to-date, but an older patch was 50535 already in the repository. This patch encompasses the differences 50536 50537 Taken entirely from Sergei Poselenov <sposelenov@emcraft.com> 50538 50539 Signed-off-by: Andy Fleming <afleming@freescale.com> 50540 50541commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0 50542Author: Wolfgang Grandegger <wg@grandegger.com> 50543Date: Thu Jun 5 13:02:29 2008 +0200 50544 50545 NAND FSL UPM: driver re-write using the hwcontrol callback 50546 50547 This is a re-write of the NAND FSL UPM driver using the more universal 50548 hwcontrol callback (instead of the cmdfunc callback). Here is a brief 50549 list of furher modifications: 50550 50551 - For the time being, the UPM setup writing the UPM array has been 50552 removed from the driver and must now be done by the board specific 50553 code. 50554 50555 - The bus width definition in "struct fsl_upm_nand" is now in bits to 50556 comply with the corresponding Linux driver and 8, 16 and 32 bit 50557 accesses are supported. 50558 50559 - chip->dev_read is only set if fun->dev_ready != NULL, which is 50560 required for boards not connecting the R/B pin. 50561 50562 - A few issue have been fixed with MxMR bit manipulation like in the 50563 corresponding Linux driver. 50564 50565 Note: I think the "io_addr" field of "struct fsl_upm" could be removed 50566 as well, because the address is already determined by 50567 "nand->IO_ADDR_[RW]", but I'm not 100% sure. 50568 50569 This patch has been tested on a TQM8548 modules with the NAND chip 50570 Micron MT29F8G08FABWP. 50571 50572 This patch is based on the following patches posted to this list a few 50573 minutes ago: 50574 50575 PPC: add accessor macros to clear and set bits in one shot 50576 83xx/85xx/86xx: add more MxMR local bus definitions 50577 50578 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50579 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com> 50580 50581commit 6beecfbb542992eede5831240cd58678274683a9 50582Author: Wolfgang Grandegger <wg@grandegger.com> 50583Date: Thu Jun 5 13:11:59 2008 +0200 50584 50585 MPC85xx: Beautify boot output of L2 cache configuration 50586 50587 The boot output is now aligned poperly with other boot output 50588 lines, e.g.: 50589 50590 FLASH: 128 MB 50591 L2: 512 KB enabled 50592 50593 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50594 50595commit 398415114f0a705163a14543e9fef03f734b1ffa 50596Author: Wolfgang Grandegger <wg@grandegger.com> 50597Date: Wed Jun 4 12:45:22 2008 +0200 50598 50599 PPC: add accessor macros to clear and set bits in one shot 50600 50601 PPC: add accessor macros to clear and set bits in one shot 50602 50603 This patch adds macros from linux/include/asm-powerpc/io.h to clear and 50604 set bits in one shot using the in_be32, out_be32, etc. accessor functions. 50605 They are very handy to manipulate bits it I/O registers. 50606 50607 This patch is required for my forthcoming FSL NAND UPM driver re-write and 50608 the support for the TQM8548 module. 50609 50610 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50611 50612commit 4677988c7edc070c3786d3db7994abeca3ab82a0 50613Author: Wolfgang Grandegger <wg@grandegger.com> 50614Date: Wed Jun 4 13:52:17 2008 +0200 50615 50616 TQM: move TQM boards to board/tqc 50617 50618 Move all TQM board directories to the vendor specific directory "tqc" 50619 for modules from TQ-Components GmbH (http://www.tqc.de). 50620 50621 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50622 50623commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50 50624Author: Wolfgang Grandegger <wg@grandegger.com> 50625Date: Mon Jun 2 12:09:30 2008 +0200 50626 50627 83xx/85xx/86xx: add more MxMR local bus definitions 50628 50629 83xx/85xx/86xx: add more MxMR local bus definitions 50630 50631 This patch adds more macro definitions for the UPM Machine Mode Registers 50632 They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx 50633 common local bus definitions into include/asm-ppc/fsl_lbc.h. They are 50634 required for my forthcoming FSL NAND UPM driver re-write and the support 50635 for the TQM8548 module. 50636 50637 This patch is based on the following two patches from Anton Vorontsov: 50638 50639 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html 50640 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html 50641 50642 I leave coding style violation fixes, code beautification and name 50643 corrections to somebody else ;-(. 50644 50645 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 50646 50647commit c8c5fc266e4499e283c293ccb972863156aa4134 50648Author: Anton Vorontsov <avorontsov@ru.mvista.com> 50649Date: Thu May 29 18:14:56 2008 +0400 50650 50651 83xx/85xx: further localbus cleanups 50652 50653 Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names 50654 from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2. 50655 50656 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 50657 50658commit 42dbd667c88d496882d53e22656e89b654205492 50659Author: Anton Vorontsov <avorontsov@ru.mvista.com> 50660Date: Wed May 28 18:20:15 2008 +0400 50661 50662 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h 50663 50664 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could 50665 use it on MPC85xx and MPC86xx processors. 50666 50667 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 50668 50669commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769 50670Author: Kumar Gala <galak@kernel.crashing.org> 50671Date: Thu May 29 11:22:06 2008 -0500 50672 50673 85xx: Add setting of cache props in the device tree. 50674 50675 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50676 50677commit 4dbdb7681e243431530df0725627192a0c4aefda 50678Author: Kumar Gala <galak@kernel.crashing.org> 50679Date: Tue Jun 10 16:53:46 2008 -0500 50680 50681 85xx: expose cpu identification 50682 50683 The current cpu identification code is used just to return the name 50684 of the processor at boot. There are some other locations that the name 50685 is useful (device tree setup). Expose the functionality to other bits 50686 of code. 50687 50688 Also, drop the 'E' suffix and add it on by looking at the SVR version 50689 when we print this out. This is mainly to allow the most flexible use 50690 of the name. The device tree code tends to not care about the 'E' suffix. 50691 50692 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50693 50694commit 2329fe113d847e43cca8e4a0e4edd613b50b8492 50695Author: Kim Phillips <kim.phillips@freescale.com> 50696Date: Tue Jun 10 13:25:24 2008 -0500 50697 50698 mpc83xx: MVBLM7: minor build fixups 50699 50700 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 50701 50702commit a1293e549b56da135ef32ffca5b9d35a16aa6802 50703Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 50704Date: Tue Jun 10 09:14:05 2008 +0200 50705 50706 add MPC8343 based board mvBlueLYNX-M7 (board+make files) 50707 50708 Add MPC8343 based board mvBlueLYNX-M7. 50709 It's a single board stereo camera system. 50710 Please read doc/README.mvblm7 for details. 50711 50712 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 50713 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 50714 50715commit c005b93925ba49f07da2aa748527996d927e172f 50716Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 50717Date: Tue Jun 10 09:13:16 2008 +0200 50718 50719 add MPC8343 based board mvBlueLYNX-M7 (doc+config) 50720 50721 Add MPC8343 based board mvBlueLYNX-M7. 50722 It's a single board stereo camera system. 50723 Please read doc/README.mvblm7 for details. 50724 50725 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 50726 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 50727 50728commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3 50729Author: Anton Vorontsov <avorontsov@ru.mvista.com> 50730Date: Thu May 29 18:14:56 2008 +0400 50731 50732 83xx/85xx: further localbus cleanups 50733 50734 move the BRx_* and ORx_* left behind in mpc85xx.h 50735 50736 The same is needed for mpc8xx.h and mpc8260.h (defines are almost 50737 the same, just few differences which needs some attention though). 50738 50739 But the bad news for mpc8xx and mpc8260 is that there are a lot of users 50740 of these defines. So this cleanup I'll leave for the "better times". 50741 50742 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 50743 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 50744 50745commit bf30bb1f7c954d7855d9b23624b33b00c50b4697 50746Author: Anton Vorontsov <avorontsov@ru.mvista.com> 50747Date: Wed May 28 18:20:15 2008 +0400 50748 50749 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h 50750 50751 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could 50752 use it on MPC85xx and MPC86xx processors. 50753 50754 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 50755 Acked-by: Andy Fleming <afleming@freescale.com> 50756 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 50757 50758commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a 50759Author: Tor Krill <tor@excito.com> 50760Date: Mon Jun 2 15:09:30 2008 +0200 50761 50762 Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h 50763 50764 Signed-off-by: Tor Krill <tor@excito.com> 50765 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 50766 50767commit 3b904ccb93c3196727e2e9870cb1df903cab19ad 50768Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 50769Date: Mon Jun 9 23:37:44 2008 +0900 50770 50771 net: Conditional COBJS inclusion of network drivers 50772 50773 Replace COBJS-y with appropriate driver config names. 50774 50775 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 50776 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 50777 50778commit 2fb698bf50f4aff2485581a12fa634a07c040e4a 50779Author: Gerald Van Baren <vanbaren@cideas.com> 50780Date: Mon Jun 9 21:02:17 2008 -0400 50781 50782 Use strncmp() for the fdt command 50783 50784 Cleaner than doing multiple conditionals on characters. 50785 50786 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 50787 50788commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0 50789Author: Gerald Van Baren <vanbaren@cideas.com> 50790Date: Sat Jun 7 12:25:05 2008 -0400 50791 50792 The fdt boardsetup command criteria was not unique 50793 50794 It was checking just for "b", which is not unique with respect to the 50795 "boot" command. Change to check for "boa"[rdsetup]. 50796 50797 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 50798 50799commit 2f08bfa9526bae4f461e043530cfb903fec0d273 50800Author: David Gibson <david@gibson.dropbear.id.au> 50801Date: Tue May 20 17:19:11 2008 +1000 50802 50803 libfdt: Several cleanups to parameter checking 50804 50805 This patch makes a couple of small cleanups to parameter checking of 50806 libfdt functions. 50807 50808 - In several functions which take a node offset, we use an 50809 idiom involving fdt_next_tag() first to check that we have indeed been 50810 given a node offset. This patch adds a helper function 50811 _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag(). 50812 50813 - In fdt_rw.c in several places we have the expanded version 50814 of the RW_CHECK_HEADER() macro for no particular reason. This patch 50815 replaces those instances with an invocation of the macro; that's what 50816 it's for. 50817 50818 - In fdt_sw.c we rename the check_header_sw() function to 50819 sw_check_header() to match the analgous function in fdt_rw.c, and we 50820 provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER() 50821 functions in fdt_rw.c 50822 50823 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 50824 50825commit fec6d9ee7c10443f65ce1788ef818919167bbf2e 50826Author: Gerald Van Baren <vanbaren@cideas.com> 50827Date: Tue Jun 3 20:34:45 2008 -0400 50828 50829 Remove the deprecated CONFIG_OF_FLAT_TREE 50830 50831 Use CONFIG_OF_LIBFDT instead to support flattened device trees. It is 50832 cleaner, has better functionality, and is better supported. 50833 50834 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 50835 50836commit 62bcdda293efa752f8281fbd9da03822b27ce82f 50837Author: Gerald Van Baren <vanbaren@cideas.com> 50838Date: Tue Jun 3 20:26:29 2008 -0400 50839 50840 Change the stxxst to CONFIG_OF_LIBFDT 50841 50842 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change 50843 to CONFIG_OF_LIBFDT. 50844 50845 WARNING: It appears that this board lost its ability to boot via a 50846 flattened device tree prior to this changeset. 50847 50848 WARNING: This conversion was untested because I do not have a board to 50849 test it on. 50850 50851 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 50852 50853commit 589c04271d129729a8b01391453851ab9cc4069c 50854Author: Gerald Van Baren <vanbaren@cideas.com> 50855Date: Tue Jun 3 20:24:58 2008 -0400 50856 50857 Convert mpc7448hpc2 to CONFIG_OF_LIBFDT 50858 50859 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change 50860 to CONFIG_OF_LIBFDT. 50861 50862 WARNING: This conversion is untested because I do not have a board to 50863 test it on. 50864 50865 NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally) 50866 /aliases/ethernet1 property for the ethernet to work. 50867 50868 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 50869 50870commit ee1e35bede91debc8bff9b02f75574486033b652 50871Author: Kumar Gala <galak@kernel.crashing.org> 50872Date: Thu May 29 01:21:24 2008 -0500 50873 50874 85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it 50875 50876 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 50877 50878commit 3b9519fc50802436e417c839e69df7b2016cade5 50879Author: Becky Bruce <becky.bruce@freescale.com> 50880Date: Wed May 14 13:10:04 2008 -0500 50881 50882 MPC85xx: Change traps.c to not reference non-addressable memory 50883 50884 Currently, END_OF_RAM is used by the trap code to determine if 50885 we should attempt to access the stack pointer or not. However, 50886 on systems with a lot of RAM, only a subset of the RAM is 50887 guaranteed to be mapped in and accessible. Change END_OF_RAM 50888 to use get_effective_memsize() instead of using the raw ram 50889 size out of the bd. 50890 50891 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 50892 50893commit 7faddaecea52f585f538fdf9c2e61f85a789b19c 50894Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 50895Date: Mon Jun 9 13:39:57 2008 +0900 50896 50897 sh: Renesas Solutions SH7763RDP board support 50898 50899 SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC. 50900 In this patch, support SCIF, NOR Flash, and Ethernet. 50901 50902 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 50903 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 50904 50905commit 60179098a95eaa972007d7ec58e4c1588029720f 50906Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 50907Date: Fri Jun 6 16:24:13 2008 +0900 50908 50909 sh: Add support Renesas SH7763 50910 50911 Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other. 50912 This patch supprts CPU register's header file. 50913 50914 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 50915 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 50916 50917commit 08c5fabe181d663eec0feba5ecd02c0b78934a52 50918Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 50919Date: Fri Jun 6 16:16:08 2008 +0900 50920 50921 sh: SH7763 SCIF support 50922 50923 SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution, 50924 but only SCIF2 is different. This patch work all SCIF channel. 50925 50926 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> 50927 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 50928 50929commit 79b51ff8205f0354d5300570614c1d2db499679c 50930Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 50931Date: Sat Jun 7 20:51:59 2008 +0900 50932 50933 [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines 50934 50935 Also get rid of some #ifdefs in *.c files. 50936 50937 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 50938 50939commit 8bde63eb3f79d68f693201528dafc8ae7aa087de 50940Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 50941Date: Sat Jun 7 20:51:56 2008 +0900 50942 50943 [MIPS] Rename Alchemy processor configs into CONFIG_SOC_* 50944 50945 CONFIG_SOC_AU1X00 50946 50947 Common Alchemy Au1x00 stuff. All Alchemy processor based machines 50948 need to have this config as a system type specifier. 50949 50950 CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200, 50951 CONFIG_SOC_AU1500, CONFIG_SOC_AU1550 50952 50953 Machine type specifiers. Each port should have one of aboves. 50954 50955 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 50956 50957commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc 50958Author: Stuart Wood <stuart.wood@labxtechnologies.com> 50959Date: Fri May 30 16:05:28 2008 -0400 50960 50961 env_nand.c: Added bad block management for environment variables 50962 50963 Modified to check for bad blocks and to skipping over them when 50964 CFG_ENV_RANGE has been defined. 50965 CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND 50966 flash block size. 50967 50968 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com> 50969 Signed-off-by: Scott Wood <scottwood@freescale.com> 50970 50971commit 279726bd00558e80263d44581c44167625b7fb9a 50972Author: Becky Bruce <becky.bruce@freescale.com> 50973Date: Wed May 14 13:09:58 2008 -0500 50974 50975 MPC86xx: Change traps.c to not reference non-addressable memory 50976 50977 Currently, END_OF_RAM is used by the trap code to determine if 50978 we should attempt to access the stack pointer or not. However, 50979 on systems with a lot of RAM, only a subset of the RAM is 50980 guaranteed to be mapped in and accessible. Change END_OF_RAM 50981 to use get_effective_memsize() instead of using the raw ram 50982 size out of the bd to prevent us from trying to access 50983 non-mapped memory. 50984 50985 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 50986 50987commit 338cc038461a6c7709c5b86fd9a240209338a1ae 50988Author: Wolfgang Denk <wd@denx.de> 50989Date: Fri Jun 6 14:28:14 2008 +0200 50990 50991 tools/mkimage: fix compiler warnings on some systems. 50992 50993 Signed-off-by: Wolfgang Denk <wd@denx.de> 50994 50995commit b2815f79288d4da7a3ba18bdbd05120ce09d5622 50996Author: Stefan Roese <sr@denx.de> 50997Date: Fri Jun 6 16:10:41 2008 +0200 50998 50999 ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options 51000
51001 We use upper case letters for the AMCC processor defines (like 51002 CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and 51003 not CONFIG_440SPe. This patch fixes the last misspelled config options. 51004 51005 Signed-off-by: Stefan Roese <sr@denx.de> 51006 51007commit 72675dc6c06a48846d180106161d49dd714383cc 51008Author: Stefan Roese <sr@denx.de> 51009Date: Fri Jun 6 15:55:21 2008 +0200 51010 51011 ppc4xx: Unify AMCC's board config files (part 3/3) 51012 51013 This patch series unifies the AMCC eval board ports by introducing 51014 a common include header for all AMCC eval boards: 51015 51016 include/configs/amcc-common.h 51017 51018 This header now includes all common configuration options/defines which 51019 are removed from the board specific headers. 51020 51021 The reason for this is ease of maintenance and unified look and feel 51022 of all AMCC boards. 51023 51024 Signed-off-by: Stefan Roese <sr@denx.de> 51025 51026commit 490f204096d6e2c9940f67816f154a8125bab116 51027Author: Stefan Roese <sr@denx.de> 51028Date: Fri Jun 6 15:55:03 2008 +0200 51029 51030 ppc4xx: Unify AMCC's board config files (part 2/3) 51031 51032 This patch series unifies the AMCC eval board ports by introducing 51033 a common include header for all AMCC eval boards: 51034 51035 include/configs/amcc-common.h 51036 51037 This header now includes all common configuration options/defines which 51038 are removed from the board specific headers. 51039 51040 The reason for this is ease of maintenance and unified look and feel 51041 of all AMCC boards. 51042 51043 Signed-off-by: Stefan Roese <sr@denx.de> 51044 51045commit a8a11a9ed046b480a16e47a158f8f5300028dfa6 51046Author: Stefan Roese <sr@denx.de> 51047Date: Fri Jun 6 15:54:31 2008 +0200 51048 51049 ppc4xx: Unify AMCC's board config files (part 1/3) 51050 51051 This patch series unifies the AMCC eval board ports by introducing 51052 a common include header for all AMCC eval boards: 51053 51054 include/configs/amcc-common.h 51055 51056 This header now includes all common configuration options/defines which 51057 are removed from the board specific headers. 51058 51059 The reason for this is ease of maintenance and unified look and feel 51060 of all AMCC boards. 51061 51062 Signed-off-by: Stefan Roese <sr@denx.de> 51063 51064commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202 51065Author: Remy Bohmer <linux@bohmer.net> 51066Date: Thu Jun 5 13:03:36 2008 +0200 51067 51068 DM9000 fix status check fail 0x6d error for trizeps board 51069 51070 According to the Application Notes of the DM9000, only the 2 bits 0:1 of 51071 the status byte need to be checked to identify a valid packet in the fifo 51072 51073 But, The several different Application Notes do not all speak the same 51074 language on these bits. They do not disagree, but only 1 Application Note 51075 noted explicitly that only these 2 bits need to be checked. 51076 Even the datasheets do not mention anything about these 2 bits. 51077 51078 Because the old code, and the kernel check the whole byte, I left this piece 51079 untouched. 51080 51081 However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so 51082 it should work. 51083 51084 Notice, that the 2nd iteration through this receive loop (when a 2nd packet is 51085 in the fifo) is much shorter now, compared to the older U-boot driver code, 51086 so that we can maybe run into a hardware condition now that was never seen 51087 before, or maybe was seen very unfrequently. 51088 51089 Additionaly added a cleanup of a stack variable. 51090 51091 Signed-off-by: Remy Bohmer <linux@bohmer.net> 51092 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51093 51094commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413 51095Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51096Date: Thu Jun 5 22:29:00 2008 +0900 51097 51098 [MIPS] Update <asm/addrspace.h> header 51099 51100 - Fix traditional KSEG names 51101 - Replace PHYSADDR with CPHYSADDR 51102 51103 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51104 51105commit f0d5a6f060d00358b85c62a921a423ea8df71184 51106Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51107Date: Thu Jun 5 22:29:00 2008 +0900 51108 51109 [MIPS] mips_config.mk: Misc fixes 51110 51111 - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk) 51112 - Modify comments 51113 51114 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51115 51116commit 5f64d21c9a2998794f255b469165b91f092dfc2d 51117Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51118Date: Thu Jun 5 22:29:00 2008 +0900 51119 51120 [MIPS] Kill unused <version.h> inclusions 51121 51122 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51123 51124commit a55d48174cfd1a5bc184159513f48dcbbe409c83 51125Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51126Date: Thu Jun 5 22:29:00 2008 +0900 51127 51128 [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines 51129 51130 MIPS port has two problems in timer routines. One is now we assume CFG_HZ 51131 equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000 51132 in the U-Boot system. 51133 51134 The other is we don't have a proper time management counter like timestamp 51135 other ARCHs have. We need the 32-bit millisecond clock counter. 51136 51137 This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a 51138 32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number 51139 of calculated CP0 counter cycles in a CFG_HZ. 51140 51141 STRATEGY: 51142 51143 * Fix improper CFG_HZ value to have 1000 51144 51145 * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead. 51146 51147 * timer_init: initialize timestamp and set up the first timer expiration. 51148 Note that we don't need to initialize CP0 count/compare registers here 51149 as they have been already zeroed out on the system reset. Leave them as 51150 they are. 51151 51152 * get_timer: calculate how many timestamps have been passed, then return 51153 base-relative timestamp. Make sure we can easily count missed timestamps 51154 regardless of CP0 count/compare value. 51155 51156 * get_ticks: return the current timestamp, that is get_timer(0). 51157 51158 Most parts are from good old Linux v2.6.16 kernel. 51159 51160 v2: 51161 - Remove FIXME comments as they turned out to be trivial. 51162 - Use CP0 compare register as a global variable for expirelo. 51163 - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY 51164 instead. 51165 51166 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51167 51168commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25 51169Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51170Date: Thu Jun 5 22:29:00 2008 +0900 51171 51172 [MIPS] lib_mips/time.c: Fix udelay 51173 51174 What we have to do is just to wait for given micro-seconds. No need to 51175 take into account current time, get_timer and CFG_HZ. 51176 51177 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51178 51179commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03 51180Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51181Date: Thu Jun 5 22:28:59 2008 +0900 51182 51183 [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros 51184 51185 We already have many pre-defined CP0 access macros in <asm/mipsregs.h>. 51186 This patch replaces mips_{compare,count}_set and mips_count_get with 51187 existing macros. 51188 51189 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51190 51191commit 6b52cfe16cd539935e32bd8cf19146522e462a4d 51192Author: Remy Bohmer <linux@bohmer.net> 51193Date: Tue Jun 3 15:48:17 2008 +0200 51194 51195 Get rid of annoying/superfluous bad-checksum warning message 51196 51197 U-boot can complain a lot about 'checksum bad' when it is attached to the network. 51198 It is annoying for ordinary users who start to doubt the network connection 51199 in general when they see messages like this. 51200 51201 This is caused by the routine NetCksumOk() which cannot handle IP-headers longer 51202 than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them 51203 now before checking the checksum. 51204 51205 Signed-off-by: Remy Bohmer <linux@bohmer.net> 51206 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51207 51208commit d6ee5fa40c26970d39990c6fc4a2f20a97822650 51209Author: Remy Bohmer <linux@bohmer.net> 51210Date: Wed Jun 4 10:47:25 2008 +0200 51211 51212 Fix order for reading rx-status registers in 32bit mode of DM9000 51213 51214 A last minute cleanup before submitting the DM9000A patch series yesterday introduced 51215 a bug in reading the rx-status registers in 32bit mode only. 51216 This patch repairs this. 51217 51218 Signed-off-by: Remy Bohmer <linux@bohmer.net> 51219 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51220 51221commit 98291e2e689096420465074cce926b226d2e71b4 51222Author: Remy Bohmer <linux@bohmer.net> 51223Date: Tue Jun 3 15:26:26 2008 +0200 51224 51225 DM9000: Some minor code cleanups 51226 51227 Some lines of the U-boot DM9000x driver are longer than 80 characters, or 51228 need some other minor cleanup. 51229 51230 Signed-off-by: Remy Bohmer <linux@bohmer.net> 51231 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51232 51233commit 850ba7555dbd4ca8d14fc475b864d534797adab3 51234Author: Remy Bohmer <linux@bohmer.net> 51235Date: Tue Jun 3 15:26:25 2008 +0200 51236 51237 DM9000: Make driver work properly for DM9000A 51238 51239 The DM9000A network controller does not work with the U-boot DM9000x driver. 51240 Analysis showed that many incoming packets are lost. 51241 51242 The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to 51243 check for a valid rx packet be done on the interrupt status register, not 51244 directly by performing the dummy read and the rx status check as is currently 51245 the case in the u-boot driver. 51246 51247 When the recommended poll is done as suggested the driver starts working 51248 correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there 51249 can be more than 1 package in the fifo at the same time. 51250 51251 The driver must perform the rx-status check in a loop and read and handle all 51252 packages until there is no more left _after_ the interrupt RX flag is set. 51253 51254 This change has been tested with DM9000A, DM9000E, DM9000EP. 51255 51256 Signed-off-by: Remy Bohmer <linux@bohmer.net> 51257 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51258 51259commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d 51260Author: Remy Bohmer <linux@bohmer.net> 51261Date: Tue Jun 3 15:26:24 2008 +0200 51262 51263 DM9000: Improve eth_reset() routine 51264 51265 According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the 51266 reset procedure must be done twice to properly reset the DM9000 by means of software. 51267 This errata is not needed anymore for the DM9000A, but it does not bother it. 51268 51269 This change has been tested with DM9000A, DM9000E, DM9000EP. 51270 51271 Signed-off-by: Remy Bohmer <linux@bohmer.net> 51272 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51273 51274commit acba31847fad9ae40708cc2c9f3a634ec35f3416 51275Author: Remy Bohmer <linux@bohmer.net> 51276Date: Tue Jun 3 15:26:23 2008 +0200 51277 51278 DM9000: improve eth_send() routine 51279 51280 The eth_send routine of the U-boot DM9000x driver does not match the 51281 DM9000 or DM9000A application notes/programming guides. 51282 51283 This change improves the stability of the DM9000A network controller. 51284 51285 This change has been tested with DM9000A, DM9000E, DM9000EP. 51286 51287 Signed-off-by: Remy Bohmer <linux@bohmer.net> 51288 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51289 51290commit 134e266253c02a7832560da59d394989c4f64453 51291Author: Remy Bohmer <linux@bohmer.net> 51292Date: Tue Jun 3 15:26:22 2008 +0200 51293 51294 DM9000: repair debug logging 51295 51296 It seems that the debugging code of the DM9000x driver in U-boot has not been 51297 compiled for a long time, because it cannot compile... 51298 51299 Also rearranged some loglines to get more useful info while debugging. 51300 51301 Signed-off-by: Remy Bohmer <linux@bohmer.net> 51302 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51303 51304commit a101361bfe23c120321e45d114c0603b8e0763e9 51305Author: Remy Bohmer <linux@bohmer.net> 51306Date: Tue Jun 3 15:26:21 2008 +0200 51307 51308 DM9000: Add data bus-width auto detection. 51309 51310 The U-boot DM9000x driver contains a compile time bus-width definition for 51311 the databus connected to the network controller. 51312 51313 This compile check makes the code unclear, inflexible and is unneccessary. 51314 It can be asked to the network controller what its bus-width is by reading bits 51315 6 and 7 of the interrupt status register. 51316 51317 The linux kernel already uses a runtime mechanism to determine this bus-width, 51318 so the implementation below looks somewhat like that implementation. 51319 51320 This change has been tested with DM9000A, DM9000E, DM9000EP. 51321 51322 Signed-off-by: Remy Bohmer <linux@bohmer.net> 51323 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51324 51325commit 63a0afa0c32e5f4ea98a9439542870072437404d 51326Author: Stefan Roese <sr@denx.de> 51327Date: Wed Jun 4 19:19:20 2008 +0200 51328 51329 ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port 51330 51331 This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene) 51332 introduced by the commit: 51333 51334 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S 51335 51336 With this patch SDRAM will get initialized again and booting from NAND 51337 is working again. 51338 51339 Signed-off-by: Stefan Roese <sr@denx.de> 51340 Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com> 51341 51342commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc 51343Author: Wolfgang Denk <wd@denx.de> 51344Date: Tue May 27 14:19:30 2008 +0200 51345 51346 Socrates: Fix PCI bus frequency report 51347 51348 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 51349 51350commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f 51351Author: Tor Krill <tor@excito.com> 51352Date: Thu May 29 11:10:30 2008 +0200 51353 51354 Fix incorrect switch for IF_TYPE in part.c 51355 51356 Use correct field in block_dev_desc_t when writing interface type in 51357 dev_print. Error introduced in 574b3195. 51358 51359 Also added fix from Martin Krause 51360 51361 Signed-off-by: Tor Krill <tor@excito.com> 51362 51363commit b64b8a0bd310935b70af69ac970952f2b364ae56 51364Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 51365Date: Tue May 27 10:25:39 2008 +0200 51366 51367 Add size #defines for Altera Cyclone-II EP2C8 and EP2C20. 51368 51369 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 51370 51371commit 35ef877f0a8f6232cdef748f442fed5accb2b641 51372Author: Peter Tyser <ptyser@xes-inc.com> 51373Date: Thu May 22 18:56:52 2008 -0500 51374 51375 Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating 51376 51377 Removed unneeded command line history initialization. Also, the original 51378 code would access the 'initted' variable before relocation to SDRAM 51379 which resulted in erratic behavior since the bss is not initialized when 51380 executing from flash. 51381 51382 Signed-off-by: Peter Tyser <ptyser@xes-inc.com> 51383 51384commit 22f371b63038a4ecab04068877c1089e51a01ba1 51385Author: Grant Erickson <gerickson@nuovations.com> 51386Date: Wed May 21 13:28:30 2008 -0700 51387 51388 PPC4xx: Simplified post_word_{load, store} 51389 51390 This patch simplifies post_word_{load,store} by using the preprocessor 51391 to eliminate redundant, copy-and-pasted code. 51392 51393 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 51394 51395commit 9c048b523413ae5f3ff34e00cf57569c3368ab51 51396Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru> 51397Date: Wed May 7 21:25:33 2008 +0400 51398 51399 cfi_flash: enable M18 flash chips family support. 51400 51401 Added new command set ID. Buffered write command processing is changed 51402 in order to support M18 flash chips family. 51403 51404 Signed-off-by: Alexey Korolev <akorolev@infradead.org> 51405 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru> 51406 51407commit 93c56f212ccdadc182018f0769cb284426b88f1d 51408Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru> 51409Date: Wed May 7 21:24:44 2008 +0400 51410 51411 cfi_flash: support of long cmd in U-boot. 51412 51413 Some NOR flash chips needs support of commands with length grether than max 51414 value size of uchar. For example all M18 family chips use 0x1ff command in 51415 buffered write mode as value of program loops count. 51416 51417 Signed-off-by: Alexey Korolev <akorolev@infradead.org> 51418 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru> 51419 51420commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e 51421Author: Stefan Roese <sr@denx.de> 51422Date: Fri May 16 11:06:06 2008 +0200 51423 51424 DTT: Issue one-shot command on AD7414 (LM75 code) to read temp 51425 51426 On AD7414 the first value upon bootup is not read correctly. 51427 This is most likely because of the 800ms update time of the 51428 temp register in normal update mode. To get current values 51429 each time we issue the "dtt" command including upon powerup 51430 we switch into one-short mode. 51431 51432 This patch fixes the problem on AD7414 equipped boards (Sequoia, 51433 Canyonlands etc), that temp value printed in the bootup log was 51434 incorrect. 51435 51436 Signed-off-by: Stefan Roese <sr@denx.de> 51437 51438commit de5bfcf7b0425e032be12698252dbaa6b65a28c0 51439Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 51440Date: Fri May 30 16:55:06 2008 +0200 51441 51442 ppc4xx: Cleanup CPCI405 variant's config file 51443 51444 This patch removes some dead code from CPCI405 board's 51445 config files. JFFS2 support is also removed. It's not used and 51446 CPCI4052 does not build anymore without some size reduction. 51447 51448 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 51449 51450commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65 51451Author: Kenneth Johansson <kenneth@southpole.se> 51452Date: Thu May 29 16:32:33 2008 +0200 51453 51454 Remove shell variable UNDEF_SYM. 51455 51456 UNDEF_SYM is a shell variable in the main Makefile used to force the 51457 linker to add all u-boot commands to the final image. It has no use here. 51458 51459 Signed-off-by: Kenneth Johansson <kenneth@southpole.se> 51460 51461commit 8c66497e06bf803489c589df58ee591d71033274 51462Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51463Date: Fri May 16 11:10:35 2008 +0200 51464 51465 Add support for environment in SPI flash 51466 51467 This is pretty incomplete...it doesn't handle reading the environment 51468 before relocation, it doesn't support redundant environment, and it 51469 doesn't support embedded environment. But apart from that, it does 51470 seem to work. 51471 51472 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51473 51474commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4 51475Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51476Date: Fri May 16 11:10:34 2008 +0200 51477 51478 SPI Flash: Add "sf" command 51479 51480 This adds a new command, "sf" which can be used to manipulate SPI 51481 flash. Currently, initialization, reading, writing and erasing is 51482 supported. 51483 51484 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51485 51486commit d25ce7d24cc0f93881559f4009175ea305af65e8 51487Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51488Date: Fri May 16 11:10:33 2008 +0200 51489 51490 SPI Flash subsystem 51491 51492 This adds a new SPI flash subsystem. 51493 51494 Currently, only AT45 DataFlash in non-power-of-two mode is supported, 51495 but some preliminary support for other flash types is in place as 51496 well. 51497 51498 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51499 51500commit 60445cb5c3eb77ed1a07f2d908eef09174483698 51501Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com> 51502Date: Fri May 16 11:10:32 2008 +0200 51503 51504 atmel_spi: Driver for the Atmel SPI controller 51505 51506 This adds a driver for the SPI controller found on most AT91 and AVR32 51507 chips, implementing the new SPI API. 51508 51509 Changed in v4: 51510 - Update to new API 51511 - Handle zero-length transfers appropriately. The user may send a 51512 zero-length SPI transfer with SPI_XFER_END set in order to 51513 deactivate the chip select after a series of transfers with chip 51514 select active. This is useful e.g. when polling the status 51515 register of DataFlash. 51516 51517 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 51518 51519commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d 51520Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 51521Date: Fri May 16 11:10:31 2008 +0200 51522 51523 SPI API improvements 51524 51525 This patch gets rid of the spi_chipsel table and adds a handful of new 51526 functions that makes the SPI layer cleaner and more flexible. 51527 51528 Instead of the spi_chipsel table, each board that wants to use SPI 51529 gets to implement three hooks: 51530 * spi_cs_activate(): Activates the chipselect for a given slave 51531 * spi_cs_deactivate(): Deactivates the chipselect for a given slave 51532 * spi_cs_is_valid(): Determines if the given bus/chipselect 51533 combination can be activated. 51534 51535 Not all drivers may need those extra functions however. If that's the 51536 case, the board code may just leave them out (assuming they know what 51537 the driver needs) or rely on the linker to strip them out (assuming 51538 --gc-sections is being used.) 51539 51540 To set up communication parameters for a given slave, the driver needs 51541 to call spi_setup_slave(). This returns a pointer to an opaque 51542 spi_slave struct which must be passed as a parameter to subsequent SPI 51543 calls. This struct can be freed by calling spi_free_slave(), but most 51544 driver probably don't want to do this. 51545 51546 Before starting one or more SPI transfers, the driver must call 51547 spi_claim_bus() to gain exclusive access to the SPI bus and initialize 51548 the hardware. When all transfers are done, the driver must call 51549 spi_release_bus() to make the bus available to others, and possibly 51550 shut down the SPI controller hardware. 51551 51552 spi_xfer() behaves mostly the same as before, but it now takes a 51553 spi_slave parameter instead of a spi_chipsel function pointer. It also 51554 got a new parameter, flags, which is used to specify chip select 51555 behaviour. This may be extended with other flags in the future. 51556 51557 This patch has been build-tested on all powerpc and arm boards 51558 involved. I have not tested NIOS since I don't have a toolchain for it 51559 installed, so I expect some breakage there even though I've tried 51560 fixing up everything I could find by visual inspection. 51561 51562 I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and 51563 DataFlash drivers posted as a follow-up. I'd like some help testing 51564 other boards that use the existing SPI API. 51565 51566 But most of all, I'd like some comments on the new API. Is this stuff 51567 usable for everyone? If not, why? 51568 51569 Changed in v4: 51570 - Build fixes for various boards, drivers and commands 51571 - Provide common struct spi_slave definition that can be extended by 51572 drivers 51573 - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate 51574 - Make default bus and mode build-time configurable 51575 - Override default SPI bus ID and mode on mx32ads and imx31_litekit. 51576 51577 Changed in v3: 51578 - Add opaque struct spi_slave for controller-specific data associated 51579 with a slave. 51580 - Add spi_claim_bus() and spi_release_bus() 51581 - Add spi_free_slave() 51582 - spi_setup() is now called spi_setup_slave() and returns a 51583 struct spi_slave 51584 - soft_spi now supports four SPI modes (CPOL|CPHA) 51585 - Add bus parameter to spi_setup_slave() 51586 - Convert the new i.MX32 SPI driver 51587 - Convert the new MC13783 RTC driver 51588 51589 Changed in v2: 51590 - Convert the mpc8xxx_spi driver and the mpc8349emds board to the 51591 new API. 51592 51593 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 51594 Tested-by: Guennadi Liakhovetski <lg@denx.de> 51595 51596commit 289011207d999b2e4085150d2aa30d547ad9b800 51597Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51598Date: Fri May 16 11:10:30 2008 +0200 51599 51600 Move definition of container_of() to common.h 51601 51602 AVR32 and AT91SAM9 both have their own identical definitions of 51603 container_of() taken from the Linux kernel. Move it to common.h so 51604 that all architectures can use it. 51605 51606 container_of() is already used by some drivers, and will be used 51607 extensively by the new and improved SPI API. 51608 51609 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51610 51611commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b 51612Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51613Date: Fri May 16 11:08:11 2008 +0200 51614 51615 soft_i2c: Pull SDA high before reading 51616 51617 Spotted by Dean Capindale. 51618 51619 Systems that support open-drain GPIO properly are allowed provide an 51620 empty I2C_TRISTATE define. However, this means that we need to be 51621 careful not to drive SDA low when the slave is expected to respond. 51622 51623 This patch adds a missing I2C_SDA(1) to read_byte() required to 51624 tristate the SDA line on systems that support open-drain GPIO. 51625 51626 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 51627 51628commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2 51629Author: Stefan Roese <sr@denx.de> 51630Date: Mon May 19 11:34:53 2008 +0200 51631 51632 ppc4xx: Remove implementations of testdram() 51633 51634 This patch removes the used testdram() implementations of the board 51635 that are maintained by myself. 51636 51637 Signed-off-by: Stefan Roese <sr@denx.de> 51638 51639commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a 51640Author: Stefan Roese <sr@denx.de> 51641Date: Mon Jun 2 17:37:28 2008 +0200 51642 51643 ppc4xx: Remove superfluous dram_init() call or replace it by initdram() 51644 51645 Historically the 405 U-Boot port had a dram_init() call in early init 51646 stage. This function was still called from start.S and most of the time 51647 coded in assembler. This is not needed anymore (since a long time) and 51648 boards should implement the common initdram() function in C instead. 51649 51650 This patch now removed the dram_init() call from start.S and removes the 51651 empty implementations that are scattered through most of the 405 board 51652 ports. Some older board ports really implement this dram_init() though. 51653 These are: 51654 51655 csb272 51656 csb472 51657 ERIC 51658 EXBITGEN 51659 W7OLMC 51660 W7OLMG 51661 51662 I changed those boards to call this assembler dram_init() function now 51663 from their board specific initdram() instead. This *should* work, but please 51664 test again on those platforms. And it is perhaps a good idea that those 51665 boards use some common 405 SDRAM initialization code from cpu/ppc4xx at 51666 some time. So further patches welcome here. 51667 51668 Signed-off-by: Stefan Roese <sr@denx.de> 51669 51670commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2 51671Author: Stefan Roese <sr@denx.de> 51672Date: Mon Jun 2 17:22:11 2008 +0200 51673 51674 ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code 51675 51676 Signed-off-by: Stefan Roese <sr@denx.de> 51677 51678commit 39b32be18cd33b53a84065edcd4e465165cc5564 51679Author: Stefan Roese <sr@denx.de> 51680Date: Mon Jun 2 17:20:03 2008 +0200 51681 51682 ppc4xx: Fix common ECC generation code for 440GP style platforms 51683 51684 This patch makes the common 4xx ECC code really usable on 440GP style 51685 platforms. 51686 51687 Since the IBM DDR controller used on 440GP/GX/EP/GR is not register 51688 compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT 51689 we need to make some processor dependant defines used later on by the 51690 driver. 51691 51692 Signed-off-by: Stefan Roese <sr@denx.de> 51693 51694commit ec724f883ee3f3925e6c55027e8ffa70ada83303 51695Author: Stefan Roese <sr@denx.de> 51696Date: Mon Jun 2 17:13:55 2008 +0200 51697 51698 ppc4xx: Change Kilauea to use the common DDR2 init function 51699 51700 This patch changes the kilauea and kilauea_nand (for NAND booting) 51701 board port to not use a board specific DDR2 init routine anymore. Now 51702 the common code from cpu/ppc4xx is used. 51703 51704 Thanks to Grant Erickson for all his basic work on this 405EX early 51705 bootup. 51706 51707 Signed-off-by: Stefan Roese <sr@denx.de> 51708 51709commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba 51710Author: Stefan Roese <sr@denx.de> 51711Date: Mon Jun 2 14:59:21 2008 +0200 51712 51713 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2 51714 51715 This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all 51716 ppc4xx related SDRAM/DDR/DDR2 controller defines. 51717 51718 Signed-off-by: Stefan Roese <sr@denx.de> 51719 51720commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569 51721Author: Stefan Roese <sr@denx.de> 51722Date: Mon Jun 2 14:57:41 2008 +0200 51723 51724 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1 51725 51726 This patch removes all SDRAM related defines from the PPC4xx headers 51727 ppc405.h and ppc440.h. This is needed since now some 405 PPC's use 51728 the same SDRAM controller as 440 systems do (like 405EX and 440SP). 51729 51730 It also introduces new defines for the equipped SDRAM controller based on 51731 which PPC variant is used. There new defines are: 51732 51733 used on 405GR/CR/EP and some Xilinx Virtex boards. 51734 51735 used on 440GP/GX/EP/GR. 51736 51737 used on 440EPx/GRx. 51738 51739 used on 405EX/r/440SP/SPe/460EX/GT. 51740 51741 Signed-off-by: Stefan Roese <sr@denx.de> 51742 51743commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6 51744Author: Stefan Roese <sr@denx.de> 51745Date: Mon Jun 2 14:35:44 2008 +0200 51746 51747 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S 51748 51749 This patch consolidates the 405 and 440 parts of the NAND booting code 51750 selected via CONFIG_NAND_SPL. Now common code is used to initialize the 51751 SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc. 51752 Only *after* running from this location, nand_boot() is called. 51753 51754 Please note that the initsdram() call is now moved from nand_boot.c 51755 to start.S. I experienced problems with some boards like Kilauea 51756 (405EX), which don't have internal SRAM (OCM) and relocation needs to 51757 be done to SDRAM before the NAND controller can get accessed. When 51758 initdram() is called later on in nand_boot(), this can lead to problems 51759 with variables in the bss sections like nand_ecc_pos[]. 51760 51761 Signed-off-by: Stefan Roese <sr@denx.de> 51762 Acked-by: Scott Wood <scottwood@freescale.com> 51763 51764commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98 51765Author: Grant Erickson <gerickson@nuovations.com> 51766Date: Thu May 22 14:44:24 2008 -0700 51767 51768 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling 51769 51770 This patch (Part 2 of 2): 51771 51772 * Rolls up a suite of changes to enable correct primordial stack and 51773 global data handling when the data cache is used for such a purpose 51774 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS). 51775 51776 * Related to the first, unifies DDR2 SDRAM and ECC initialization by 51777 eliminating redundant ECC initialization implementations and moving 51778 redundant SDRAM initialization out of board code into shared 4xx 51779 code. 51780 51781 * Enables MCSR visibility on the 405EX(r). 51782 51783 * Enables the use of the data cache for initial RAM on 51784 both AMCC's Kilauea and Makalu and removes a redundant 51785 CFG_POST_MEMORY flag from each board's CONFIG_POST value. 51786 51787 - Removed, per Stefan Roese's request, defunct memory.c file for 51788 Makalu and rolled sdram_init from it into makalu.c. 51789 51790 With respect to the 4xx DDR initialization and ECC unification, there 51791 is certainly more work that can and should be done (file renaming, 51792 etc.). However, that can be handled at a later date on a second or 51793 third pass. As it stands, this patch moves things forward in an 51794 incremental yet positive way for those platforms that utilize this 51795 code and the features associated with it. 51796 51797 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 51798 Signed-off-by: Stefan Roese <sr@denx.de> 51799 51800commit c821b5f120bedf73867513466412587c6912a8f8 51801Author: Grant Erickson <gerickson@nuovations.com> 51802Date: Thu May 22 14:44:14 2008 -0700 51803 51804 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling 51805 51806 This patch (Part 1 of 2): 51807 51808 * Rolls up a suite of changes to enable correct primordial stack and 51809 global data handling when the data cache is used for such a purpose 51810 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS). 51811 51812 * Related to the first, unifies DDR2 SDRAM and ECC initialization by 51813 eliminating redundant ECC initialization implementations and moving 51814 redundant SDRAM initialization out of board code into shared 4xx 51815 code. 51816 51817 * Enables MCSR visibility on the 405EX(r). 51818 51819 * Enables the use of the data cache for initial RAM on 51820 both AMCC's Kilauea and Makalu and removes a redundant 51821 CFG_POST_MEMORY flag from each board's CONFIG_POST value. 51822 51823 - Removed, per Stefan Roese's request, defunct memory.c file for 51824 Makalu and rolled sdram_init from it into makalu.c. 51825 51826 With respect to the 4xx DDR initialization and ECC unification, there 51827 is certainly more work that can and should be done (file renaming, 51828 etc.). However, that can be handled at a later date on a second or 51829 third pass. As it stands, this patch moves things forward in an 51830 incremental yet positive way for those platforms that utilize this 51831 code and the features associated with it. 51832 51833 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 51834 Signed-off-by: Stefan Roese <sr@denx.de> 51835 51836commit a439680019e06171d4a5694b7992accce87f590e 51837Author: Grant Erickson <gerickson@nuovations.com> 51838Date: Wed May 21 13:28:30 2008 -0700 51839 51840 PPC4xx: Simplified post_word_{load, store} 51841 51842 This patch simplifies post_word_{load,store} by using the preprocessor 51843 to eliminate redundant, copy-and-pasted code. 51844 51845 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 51846 51847commit f979690ee337450b2030aba128f95b7a8d9881c0 51848Author: Kumar Gala <galak@kernel.crashing.org> 51849Date: Thu May 15 15:13:08 2008 -0500 51850 51851 Fix warnings from gcc-4.3.0 build on a ppc host 51852 51853 * The cfi_flash.c memset fix actual allows the board to boot so there is 51854 a bit more going on here than just resolving warnings associated with 51855 uninitialized variables. 51856 51857 * include/asm/bitops.h:302: warning: '__swab32p' is static but used in 51858 inline function 'ext2_find_next_zero_bit' which is not static 51859 51860 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 51861 51862commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e 51863Author: Becky Bruce <becky.bruce@freescale.com> 51864Date: Wed May 14 13:09:51 2008 -0500 51865 51866 MPC512x: Change traps.c to not reference non-addressable memory 51867 51868 Currently, END_OF_RAM is used by the trap code to determine if 51869 we should attempt to access the stack pointer or not. However, 51870 on systems with a lot of RAM, only a subset of the RAM is 51871 guaranteed to be mapped in and accessible. Change END_OF_RAM 51872 to use get_effective_memsize() instead of using the raw ram 51873 size out of the bd. 51874 51875 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 51876 51877commit 81673e9ae14b771cd13faf19947192599cae3959 51878Author: Kumar Gala <galak@kernel.crashing.org> 51879Date: Tue May 13 19:01:54 2008 -0500 51880 51881 Make sure common.h is the first include. 51882 51883 If common.h isn't first we can get CONFIG_ options defined in the 51884 board config file ignored. This can cause an issue if any of those 51885 config options impact the size of types of data structures 51886 (eg CONFIG_PHYS_64BIT). 51887 51888 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 51889 51890commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3 51891Author: Marian Balakowicz <m8@semihalf.com> 51892Date: Tue May 13 15:53:29 2008 +0200 51893 51894 Avoid initrd and logbuffer area overlaps 51895 51896 Add logbuffer to reserved LMB areas to prevent initrd allocation 51897 from overlaping with it. 51898 51899 Make sure to use correct logbuffer base address. 51900 51901 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 51902 51903commit 6956d53d9934862507f83f0e3255dfd4662e7482 51904Author: Sascha Laue <sascha.laue@liebherr.com> 51905Date: Tue May 13 13:29:54 2008 +0200 51906 51907 lwmon5: add memory-pattern-test to FPGA POST. 51908 51909commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35 51910Author: Becky Bruce <becky.bruce@freescale.com> 51911Date: Thu May 8 19:02:51 2008 -0500 51912 51913 PPC: 86xx Add bat registers to reginfo command 51914 51915 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 51916 51917commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9 51918Author: Becky Bruce <becky.bruce@freescale.com> 51919Date: Fri May 9 15:41:35 2008 -0500 51920 51921 PPC: Add print_bats() to lib_ppc/bat_rw.c 51922 51923 This function prints the values of all the BAT register 51924 pairs - I needed this for debug earlier this week; adding it to 51925 lib_ppc so others can use it (and add it to reginfo commands 51926 if so desired). 51927 51928 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 51929 51930commit c148f24c15743a02e855636e6bed013bd121f7f2 51931Author: Becky Bruce <becky.bruce@freescale.com> 51932Date: Thu May 15 21:29:04 2008 -0500 51933 51934 PPC: Change lib_ppc/bat_rw.c to use high bats 51935 51936 Currently, this code only deals with BATs 0-3, which makes 51937 it useless on systems that support BATs 4-7. Add the 51938 support for these registers. 51939 51940 Signed-off-by: Becky Bruce <Becky.bruce@freescale.com> 51941 51942commit 31d826722434931e1152a09d140187dcf72f8aac 51943Author: Becky Bruce <becky.bruce@freescale.com> 51944Date: Thu May 8 19:02:12 2008 -0500 51945 51946 PPC: Create and use CONFIG_HIGH_BATS 51947 51948 Change all code that conditionally operates on high bat 51949 registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS 51950 instead of the myriad ways this is done now. Define the option 51951 for every config for which high bats are supported (and 51952 enabled by early boot, on parts where they're not always 51953 enabled) 51954 51955 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 51956 51957commit aa3b8bf9c30065bb2ea852799d32db5020598495 51958Author: Wolfgang Grandegger <wg@grandegger.com> 51959Date: Wed May 28 19:55:19 2008 +0200 51960 51961 E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter 51962 51963 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 51964 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51965 51966commit ff36fbb2e7583fb808eef773f511489c7a9c2df3 51967Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 51968Date: Wed May 28 13:06:25 2008 -0500 51969 51970 ColdFire: Add 10 base ethernet support for mcf5445x 51971 51972 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 51973 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 51974 51975commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba 51976Author: Jason McMullan <mcmullan@netapp.com> 51977Date: Fri May 30 00:53:38 2008 +0900 51978 51979 mips: Add an 'include/asm/errno.h', like all other architectures 51980 51981 All other u-boot architectures have an include/asm/errno.h, so 51982 this change adds it to the mips include/asm-mips headers also. 51983 51984 Stolen from Linux 2.6.25. 51985 51986 Signed-off-by: Jason McMullan <mcmullan@netapp.com> 51987 51988commit e2ad8426624bac457acc6925b6ff408e9bf20466 51989Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51990Date: Fri May 30 00:53:38 2008 +0900 51991 51992 [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros 51993 51994 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51995 51996commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194 51997Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 51998Date: Fri May 30 00:53:38 2008 +0900 51999 52000 [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
52001 52002 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 52003 52004commit bf462ae450a7f2eeeddc699ed345b391e3263540 52005Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 52006Date: Fri May 30 00:53:37 2008 +0900 52007 52008 [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups 52009 52010 No functional changes. 52011 52012 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 52013 52014commit 89a1550ec6b74452274a7a23127936e2c7eec711 52015Author: Jason McMullan <mcmullan@netapp.com> 52016Date: Fri May 30 00:53:37 2008 +0900 52017 52018 mips: If CONFIG_CMD_SPI is defined, call spi_init() 52019 52020 The mips architecture currently does not call 'spi_init()' in the generic 52021 board initialization routine is CONFIG_CMD_SPI is defined. 52022 52023 This patch rectifies that problem. 52024 52025 Signed-off-by: Jason McMullan <mcmullan@netapp.com> 52026 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 52027 52028commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3 52029Author: Jason McMullan <mcmullan@netapp.com> 52030Date: Fri May 30 00:53:37 2008 +0900 52031 52032 [MIPS] lib_mips/board.c: Add nand_init 52033 52034 This patch adds the standard 'nand_init()' call to the mips generic 52035 'board_init_r()' call, bringing MIPS in line with the other architectures. 52036 52037 Signed-off-by: Jason McMullan <mcmullan@netapp.com> 52038 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 52039 52040commit d6ac2ed893c2168738aee01579d6283af8d37045 52041Author: Scott Wood <scottwood@freescale.com> 52042Date: Thu May 22 10:49:46 2008 -0500 52043 52044 Remove prototypes of nand_init() in favor of including nand.h. 52045 52046 Likewise with onenand_init(). 52047 52048 Signed-off-by: Scott Wood <scottwood@freescale.com> 52049 52050commit 229c56f07a82eacda8c8720cb146fc9be0f6db54 52051Author: Scott Wood <scottwood@freescale.com> 52052Date: Thu May 22 10:49:00 2008 -0500 52053 52054 Make onenand_uboot.h self-sufficient. 52055 52056 Don't assume types are provided by previously included headers. 52057 52058 Signed-off-by: Scott Wood <scottwood@freescale.com> 52059 52060commit 9723bbb46abb7b2ca24eead5114a3faa58060c20 52061Author: Dirk Behme <dirk.behme@gmail.com> 52062Date: Wed Jan 16 14:26:59 2008 +0100 52063 52064 nand: Correct NAND erase percentage output 52065 52066 For NAND erase sizes smaller than one NAND erase block, erase 52067 percentage output becomes grater than 100% e.g. 52068 52069 -- cut -- 52070 > nand info 52071 Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB 52072 > nand erase 0x100000 0x2000 52073 NAND erase: device 0 offset 0x100000, size 0x2000 52074 Erasing at 0x100000 -- 200% complete. 52075 OK 52076 > 52077 -- cut -- 52078 52079 Correct this and give user a warning that more is erased than specified: 52080 52081 -- cut -- 52082 > nand erase 0x100000 0x2000 52083 NAND erase: device 0 offset 0x100000, size 0x2000 52084 Warning: Erase size 0x00002000 smaller than one erase block 0x00004000 52085 Erasing 0x00004000 instead 52086 Erasing at 0x100000 -- 100% complete. 52087 OK 52088 > 52089 -- cut -- 52090 52091 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 52092 52093commit 5922db6c0948506be91e0de44e7a6863a18a417f 52094Author: Stelian Pop <stelian@popies.net> 52095Date: Tue May 13 17:31:24 2008 +0200 52096 52097 Cleanup nand_info[] declaration. 52098 52099 The nand_info array is declared as extern in several .c files. 52100 Those days, nand.h contains a reference to the array, so there is 52101 no need to declare it elsewhere. 52102 52103 Signed-off-by: Stelian Pop <stelian@popies.net> 52104 Signed-off-by: Scott Wood <scottwood@freescale.com> 52105 52106commit 135f0a7488af2947adbe4b40b79280bdfe5e9886 52107Author: Scott Wood <scottwood@freescale.com> 52108Date: Mon May 19 09:30:43 2008 -0500 52109 52110 NAND: Provide a sane default for NAND_MAX_CHIPS. 52111 52112 This allows the header to be included regardless of whether a board's 52113 config file provides NAND-related defininitions. 52114 52115 Signed-off-by: Scott Wood <scottwood@freescale.com> 52116 52117commit a8092c021d27f27f4b323b7d49979ca01b3fc19d 52118Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52119Date: Mon May 26 12:19:10 2008 +0200 52120 52121 avr32: Fix theoretical race in udelay() 52122 52123 If the specified delay is very short, the cycle counter may go past the 52124 "end" time we are waiting for before we get around to reading it. 52125 52126 Fix it by checking the different between the cycle count "now" and the 52127 cycle count at the beginning. This will work as long as the delay 52128 measured in number of cycles is below 2^31. 52129 52130 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52131 52132commit 48ea623eae8674793372e3e7c95e72e5a44d7a95 52133Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52134Date: Wed May 21 13:01:09 2008 +0200 52135 52136 avr32: Compile atmel_mci.o conditionally 52137 52138 Remove #ifdef CONFIG_MMC from the source file and use conditional 52139 compilation in the Makefile instead. 52140 52141 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52142 52143commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0 52144Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52145Date: Thu May 22 12:28:25 2008 +0200 52146 52147 avr32: Fix wrong error flags in atmel_mci driver 52148 52149 Make sure we check for CRC errors when sending commands that use CRC 52150 checking. 52151 52152 Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 52153 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52154 52155commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49 52156Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52157Date: Wed May 21 11:10:59 2008 +0200 52158 52159 avr32: Fix two warnings in atmel_mci.c 52160 52161 The warnings are harmless but annoying. Let's fix them. 52162 52163 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52164 52165commit a23e277c4a3a2bbc42d237aae29da3a8971e757f 52166Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52167Date: Mon May 19 11:36:28 2008 +0200 52168 52169 avr32: Rework SDRAM initialization code 52170 52171 This cleans up the SDRAM initialization and related code a bit, and 52172 allows faster booting. 52173 52174 * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h 52175 * Remove memory test from sdram_init() and make caller responsible 52176 for verifying the SDRAM and determining its size. 52177 * Remove base_address member from struct sdram_config (was sdram_info) 52178 * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT 52179 * Add support for a common STK1000 hack: 16MB SDRAM instead of 8. 52180 52181 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52182 52183commit 95107b7c028806919630bf02c653aa8f4f867c94 52184Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52185Date: Mon May 19 11:27:37 2008 +0200 52186 52187 avr32: Do stricter stack checking in the exception handler 52188 52189 Don't do a stack dump if the stack pointer is outside the memory area 52190 reserved for stack. 52191 52192 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52193 52194commit caf83ea888a0220f41747d0b7748fa43b4a4bd49 52195Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52196Date: Fri May 2 15:32:57 2008 +0200 52197 52198 avr32: Use the same entry point for reset and exception handling 52199 52200 Since the reset vector is always aligned to a very large boundary, we 52201 can save a couple of KB worth of alignment padding by placing the 52202 exception vectors at the same address. 52203 52204 Deciding which one it is is easy: If we're handling an exception, the 52205 CPU is in Exception mode. If we're starting up after reset, the CPU is 52206 in Supervisor mode. So this adds a very minimal overhead to the reset 52207 path (only executed once) and the exception handling path (normally 52208 never executed at all.) 52209 52210 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52211 52212commit 0c16eed2189a190bd5655b33c029f809a9b31128 52213Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52214Date: Fri May 2 15:24:22 2008 +0200 52215 52216 avr32: Put memset in its own section 52217 52218 All C code is compiled with -ffunction-sections -fdata-sections. 52219 Assembly functions should get their own sections as well so that 52220 everything looks consistent. 52221 52222 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52223 52224commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020 52225Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52226Date: Fri May 2 15:21:40 2008 +0200 52227 52228 avr32: Rename pm_init() as clk_init() and make SoC-specific 52229 52230 pm_init() was always more about clock initialization than anything 52231 else. Dealing with PLLs, clock gating and such is also inherently 52232 SoC-specific, so move it into a SoC-specific directory. 52233 52234 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52235 52236commit 4f5972c3b2454c22957f2842cfe64ec8118e015b 52237Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52238Date: Wed Apr 30 16:15:57 2008 +0200 52239 52240 avr32: Use new-style Makefile for the at32ap platform 52241 52242 This makes it easier to avoid compiling certain files later. 52243 52244 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52245 52246commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213 52247Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52248Date: Wed Apr 30 14:36:47 2008 +0200 52249 52250 avr32: Remove unused file cpu/at32ap/pm.c 52251 52252 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52253 52254commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2 52255Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52256Date: Wed Apr 30 14:19:28 2008 +0200 52257 52258 avr32: Clean up the HMATRIX code 52259 52260 Rework the HMATRIX configuration interface so that it becomes easier 52261 to configure the HMATRIX for boards with special needs, and add new 52262 parts. 52263 52264 The HMATRIX header file has been split into a general, 52265 chip-independent part with register definitions, etc. and a 52266 chip-specific part with SFR bitfield definitions and master/slave 52267 identifiers. 52268 52269 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52270 52271commit 0a2e48792dd372c90b80059f3235e67a567e16fc 52272Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52273Date: Thu Nov 22 12:14:11 2007 +0100 52274 52275 avr32: Add support for the ATSTK1006 board 52276 52277 This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on 52278 board. It's currently in production and will be available soon. 52279 52280 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52281 52282commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440 52283Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52284Date: Tue Apr 29 12:53:05 2008 +0200 52285 52286 avr32: Get rid of the .flashprog section 52287 52288 The .flashprog section was only needed back when we were running 52289 directly from flash, and it's even more useless on NGW100 since it 52290 uses the CFI flash driver which never used this workaround in the 52291 first place. 52292 52293 Remove it on STK1000 as well, and get rid of all the associated code and 52294 annotations. 52295 52296 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52297 52298commit cdd42c0c7a5205fc380912d83229069a71ea3abf 52299Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52300Date: Wed Apr 30 13:09:56 2008 +0200 52301 52302 avr32: Use correct condition around macb clock accessors 52303 52304 get_macb_pclk_rate() and get_macb_hclk_rate() should be available when 52305 the chip has a MACB controller, not when it has a USART. 52306 52307 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52308 52309commit f793a3581901ff39c2abb94012d9bbc8573ccf02 52310Author: David Brownell <david-b@pacbell.net> 52311Date: Wed Apr 16 22:57:58 2008 -0700 52312 52313 avr32: Disable the AP7000 internal watchdog on startup 52314 52315 This patch forces the watchdog off in all cases. That will at least 52316 get rid of the constant reboot cycle, though it won't let the watchdog 52317 actually run in the new kernels: its probe() comes up with a polite 52318 warning. 52319 52320 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52321 52322commit 55ac7a7490b55da56659f95d82a0c83b9756df27 52323Author: David Brownell <david-b@pacbell.net> 52324Date: Fri Feb 22 12:54:39 2008 -0800 52325 52326 avr32: stk1002 and ngw100 convergence 52327 52328 Make STK1002 and NGW100 boards act more alike: 52329 - STK boards can use as many arguments as NGW 52330 - STK boards don't need to manage FPGAs either 52331 - NGW commands should match STK ones 52332 52333 Also spell U-Boot right in prompts for STK1002 and NGW100. 52334 52335 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 52336 [haavard.skinnemoen@atmel.com: update STK100[34] as well] 52337 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 52338 52339commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54 52340Author: Sergei Poselenov <sposelenov@emcraft.com> 52341Date: Tue May 27 13:47:00 2008 +0200 52342 52343 Socrates: Fix PCI bus frequency report 52344 52345 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52346 52347commit 791e1dba8de76ad8e762a7badb869f224a1f8b82 52348Author: Sergei Poselenov <sposelenov@emcraft.com> 52349Date: Tue May 27 11:49:13 2008 +0200 52350 52351 Socrates: Added USB support. 52352 52353 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52354 52355commit 5a904e5637cff1d708dc67098004f83ba9e84c54 52356Author: Sergei Poselenov <sposelenov@emcraft.com> 52357Date: Tue May 27 11:35:02 2008 +0200 52358 52359 USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO 52360 52361 In case of several PCI USB controllers on a board this variable 52362 specifys which controller to use. 52363 See doc/README.generic_usb_ohci for details. 52364 52365 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52366 52367commit 2f7468aeba60e1288030a8d007c4e63bd3f13221 52368Author: Sergei Poselenov <sposelenov@emcraft.com> 52369Date: Tue May 27 10:36:07 2008 +0200 52370 52371 Socrates: add support for DS75 Digital Thermo Sensor on I2C bus. 52372 52373 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52374 52375commit 83e9d7a2614d4006b92690afa3390c291734267e 52376Author: Sergei Poselenov <sposelenov@emcraft.com> 52377Date: Mon May 26 18:16:04 2008 +0200 52378 52379 Socrates: Config file cleanup. 52380 52381 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52382 52383commit 602cac1389b755b223272f2328a47e6f8c240848 52384Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52385Date: Sat May 24 12:47:46 2008 +0200 52386 52387 MAKEALL: add at91 list 52388 52389 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52390 52391commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0 52392Author: Ron Madrid <ron_madrid@sbcglobal.net> 52393Date: Fri May 23 15:37:05 2008 -0700 52394 52395 Add Marvell 88E1118 support for TSEC 52396 52397 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net> 52398 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 52399 52400commit 557b377d8bfc8b833b6e749457bcdfa298331a24 52401Author: Jens Gehrlein <sew_s@tqs.de> 52402Date: Mon May 5 14:06:11 2008 +0200 52403 52404 smc911x: add 16 bit support 52405 52406 Signed-off-by: Jens Gehrlein <sew_s@tqs.de> 52407 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 52408 52409commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb 52410Author: Christian Eggers <ceggers@gmx.de> 52411Date: Wed May 21 21:29:10 2008 +0200 52412 52413 Fix endianess conversion in usb_ohci.c 52414 52415 Sorry, I forgot this line: 52416 52417 Signed-off-by: Christian Eggers <ceggers@gmx.de> 52418 52419 I think this must be swapped (result may be equal). 52420 52421commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596 52422Author: Christian Eggers <ceggers@gmx.de> 52423Date: Wed May 21 22:12:00 2008 +0200 52424 52425 USB: replace old swap_ with proper endianess conversion macros 52426 52427 Signed-off-by: Christian Eggers <ceggers@gmx.de> 52428 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 52429 52430commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c 52431Author: Christian Eggers <ceggers@gmx.de> 52432Date: Wed May 21 21:29:10 2008 +0200 52433 52434 Fix endianess conversion in usb_ohci.c 52435 52436 Signed-off-by: Christian Eggers <ceggers@gmx.de> 52437 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 52438 52439commit 477434c63c2ea5baa5c6c4e43500786f436511ff 52440Author: Sergei Poselenov <sposelenov@emcraft.com> 52441Date: Thu May 22 01:15:53 2008 +0200 52442 52443 USB: add support for multiple PCI OHCI controllers 52444 52445 Add new configuration variable CONFIG_PCI_OHCI_DEVNO. 52446 In case of several PCI USB controllers on a board this variable 52447 specifys which controller to use. 52448 52449 Also add USB support for sokrates board. 52450 52451 See doc/README.generic_usb_ohci for details. 52452 52453 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52454 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 52455 52456commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77 52457Author: Wolfgang Denk <wd@denx.de> 52458Date: Wed May 21 16:56:08 2008 +0200 52459 52460 Fix some whitespace issues 52461 52462 introduced by 53677ef18 "Big white-space cleanup." 52463 52464 Signed-off-by: Wolfgang Denk <wd@denx.de> 52465 52466commit 4416603aeb06861b468b06a981e52c3ff805db7b 52467Author: York Sun <yorksun@freescale.com> 52468Date: Mon May 12 14:36:39 2008 -0500 52469 52470 Make ads5121 out-of-tree compiling safe 52471 52472 Reuse the existing DIU driver in board/freescale/common. 52473 52474 Signed-off-by: York Sun <yorksun@freescale.com> 52475 52476commit 0e1bad47cd345c76c91a64caf41011e431b62599 52477Author: York Sun <yorksun@freescale.com> 52478Date: Mon May 5 10:20:01 2008 -0500 52479 52480 Adding DIU support for Freescale 5121ADS 52481 52482 Add DIU and cfb console support to FSL 5121ADS board. 52483 52484 Use #define CONFIG_VIDEO in config file to enable fb console. 52485 52486 Signed-off-by: York Sun <yorksun@freescale.com> 52487 52488commit a48ff68d235e671176f6b496c44246dbe5e0a93f 52489Author: York Sun <yorksun@freescale.com> 52490Date: Mon May 5 10:20:00 2008 -0500 52491 52492 Replace DPRINTF with debug 52493 52494 Remove DPRINTF macro and replace it with generic debug macro. 52495 52496 Signed-off-by: York Sun <yorksun@freescale.com> 52497 52498commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d 52499Author: York Sun <yorksun@freescale.com> 52500Date: Mon May 5 10:19:59 2008 -0500 52501 52502 Move pixel clock setting to board file 52503 52504 The clock divider has different format in 5121 and 8610. This patch moves it to 52505 board specific code. 52506 52507 Signed-off-by: York Sun <yorksun@freescale.com> 52508 52509commit 53677ef18e25c97ac613349087c5cb33ae5a2741 52510Author: Wolfgang Denk <wd@denx.de> 52511Date: Tue May 20 16:00:29 2008 +0200 52512 52513 Big white-space cleanup. 52514 52515 This commit gets rid of a huge amount of silly white-space issues. 52516 Especially, all sequences of SPACEs followed by TAB characters get 52517 removed (unless they appear in print statements). 52518 52519 Also remove all embedded "vim:" and "vi:" statements which hide 52520 indentation problems. 52521 52522 Signed-off-by: Wolfgang Denk <wd@denx.de> 52523 52524commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b 52525Author: Sergei Poselenov <sposelenov@emcraft.com> 52526Date: Thu May 8 17:46:23 2008 +0200 52527 52528 socrates: fix second TSEC configuration (it is actually TSEC3) 52529 52530 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52531 52532commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f 52533Author: Sergei Poselenov <sposelenov@emcraft.com> 52534Date: Thu May 8 14:17:08 2008 +0200 52535 52536 Fixed reset for socrates 52537 52538 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52539 52540commit e18575d5f589a62e19c70d471d4b4e27cad3af56 52541Author: Sergei Poselenov <sposelenov@emcraft.com> 52542Date: Wed May 7 15:10:49 2008 +0200 52543 52544 socrates: changes to support FDT 52545 52546 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52547 Signed-off-by: Wolfgang Denk <wd@denx.de> 52548 52549commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0 52550Author: Sergei Poselenov <sposelenov@emcraft.com> 52551Date: Wed Apr 30 11:42:50 2008 +0200 52552 52553 Initial support for "Socrates" board 52554 52555 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 52556 52557commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b 52558Author: Yuri Tikhonov <yur@emcraft.com> 52559Date: Thu May 8 15:46:42 2008 +0200 52560 52561 POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags. 52562 52563 This way we become able to utilize the full post_log_word for POST 52564 activities (overwise, POST ECC, which has 0x8000 ID, could be 52565 erroneously treated as started in post_output_backlog() even if there 52566 was actually no POST ECC run (because of OCM POST failure, for 52567 example). 52568 52569 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 52570 52571commit 7845d49094c81321021b50a4dbb8864d2f3777e4 52572Author: Yuri Tikhonov <yur@emcraft.com> 52573Date: Thu May 8 15:46:02 2008 +0200 52574 52575 POST: mark OCM test as POST_STOP 52576 52577 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 52578 52579commit 28a385065882d6cb6ac5f443311ff87887ed7c13 52580Author: Yuri Tikhonov <yur@emcraft.com> 52581Date: Thu May 8 15:45:26 2008 +0200 52582 52583 POST: add POST_STOP flag 52584 52585 Don't run futher tests in case of a test fails that is marked as 52586 POST_STOP. 52587 52588 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 52589 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 52590 52591commit a525145d8110d15b4389d23c3ea8a78f22509d3f 52592Author: Yuri Tikhonov <yur@emcraft.com> 52593Date: Thu May 8 15:44:16 2008 +0200 52594 52595 POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround) 52596 52597 Switch the OCM testid with the codec one. The reason is that current 52598 implementation requires the POST_ROM testid to fit into lower 16 52599 bits, and the codec test will never run with POST_ROM hopefully. 52600 52601 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 52602 52603commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd 52604Author: Yuri Tikhonov <yur@emcraft.com> 52605Date: Thu May 8 15:43:28 2008 +0200 52606 52607 lwmon5: enable OCM post test on lwmon5 board 52608 52609 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 52610 52611commit 6e8ec682268493b8d098f99e17b1ce71b4448977 52612Author: Yuri Tikhonov <yur@emcraft.com> 52613Date: Thu May 8 15:42:47 2008 +0200 52614 52615 POST: OCM test added. 52616 52617 Added OCM test to POST layer. This version runs before all other tests 52618 but doesn't yet interrupt post sequence on failure. 52619 52620 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 52621 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 52622 52623commit 6891260bdd935a382c95d9fa333922b0dfded68a 52624Author: Yuri Tikhonov <yur@emcraft.com> 52625Date: Thu May 8 15:40:39 2008 +0200 52626 52627 POST: typo fix 52628 52629 Signed-off-by: Ilya Yanok <yanok@emcraft.com> 52630 52631commit 727f63334676e760877d43bfb8f0e9331ac8b101 52632Author: Hebbar <gururajakr@sanyo.co.in> 52633Date: Tue May 20 02:16:36 2008 -0700 52634 52635 common/usb.c: fix incorrect escape sequence 52636 52637 Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in> 52638 52639commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa 52640Author: York Sun <yorksun@freescale.com> 52641Date: Thu May 15 15:26:27 2008 -0500 52642 52643 Fix 8313ERDB board configuration 52644 52645 Change LCRR clock ratio from 2 to 4 to commodate VSC7385. 52646 Correct TSEC1 vs TSEC2 assignment. 52647 Define ETHADDR and ETH1ADDR always. 52648 52649 Signed-off-by: York Sun <yorksun@freescale.com> 52650 Signed-off-by: Timur Tabi <timur@freescale.com> 52651 52652commit 2c289e320dcfb3760e99cf1d765cb067194a1202 52653Author: Jon Loeliger <jdl@freescale.com> 52654Date: Mon May 19 09:47:25 2008 -0500 52655 52656 mpc86xx: Removed unused and unconfigured memory test code. 52657 52658 Besides, other common code exists. 52659 52660 Signed-off-by: Jon Loeliger <jdl@freescale.com> 52661 52662commit 180a90abdae72587c0f679edf8991455e559440d 52663Author: Wolfgang Denk <wd@denx.de> 52664Date: Mon May 19 12:47:11 2008 +0200 52665 52666 Release v1.3.3 52667 52668 Update CHANGELOG for release. 52669 52670 Signed-off-by: Wolfgang Denk <wd@denx.de> 52671 52672commit 16bedc661de0dae767b1377d8413373a3fbcfa79 52673Author: Stefan Roese <sr@denx.de> 52674Date: Mon May 19 07:14:38 2008 +0200 52675 52676 ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection 52677 52678 When SATA is selected (via jumper J6) we need to disable the first PCIe 52679 node in the device tree, so that Linux doesn't initialize it. Otherwise 52680 the Linux SATA driver will fail to detect the devices. 52681 52682 The same goes the other way around too. So if PCIe is selected we need 52683 to disable the SATA node in the device tree. 52684 52685 This is because PCIe port 0 and SATA on 460EX share the same pins 52686 (multiplexed) and we have to configure in U-Boot which peripheral is 52687 enabled. 52688 52689 Signed-off-by: Stefan Roese <sr@denx.de> 52690 52691commit 3cc27b426aeefe2930f911692e9df3143fb2565f 52692Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52693Date: Sun May 18 19:09:58 2008 +0200 52694 52695 i386: Fix multiple definitions of __show_boot_progress 52696 52697 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52698 52699commit 311f3446930c1e64c12026c1cfd00500b05be52d 52700Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52701Date: Sun May 18 19:09:57 2008 +0200 52702 52703 sc530_spunk: add missing SOBJS entry 52704 52705 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52706 52707commit a559317143b4f95927b08cd388707e6f077e95fa 52708Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52709Date: Sun May 18 19:09:56 2008 +0200 52710 52711 sc520_spunk: Fix flash 52712 52713 flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules 52714 flash.c:398: error: label at end of compound statement 52715 52716 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52717 52718commit 91f221317af64191ee8caf303ea9305943158691 52719Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52720Date: Sun May 18 19:09:49 2008 +0200 52721 52722 drivers/pcmcia: add missing i82365 52723 52724 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52725 52726commit dd223944132f97ffa52977ea95e5a52428f5cc2f 52727Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52728Date: Sun May 18 19:09:47 2008 +0200 52729 52730 i386/bootm: remove unused var 52731 52732 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52733 52734commit a9da341df19b32ad2ecb58ce529f7e4fada7814e 52735Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52736Date: Sun May 18 19:09:45 2008 +0200 52737 52738 example/gitignore: update with all generated examples 52739 52740 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52741 52742commit a38dc3ea8614f8b0c41e432b445a9959b9711295 52743Author: Wolfgang Denk <wd@denx.de> 52744Date: Thu May 15 00:42:45 2008 +0200 52745 52746 TQM8272: fix out-of-tree building 52747 52748 ...and add to MAKEALL script 52749 52750 Signed-off-by: Wolfgang Denk <wd@denx.de> 52751 52752commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf 52753Author: Wolfgang Denk <wd@denx.de> 52754Date: Wed May 14 23:34:53 2008 +0200 52755 52756 environment: fix bug introduced by commit a8409f4f1ac8 52757 52758 env_get_char is not a function, but a pointer to one. 52759 52760 Signed-off-by: Wolfgang Denk <wd@denx.de> 52761 52762commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf 52763Author: Gary Jennejohn <garyj@denx.de> 52764Date: Wed May 14 13:39:22 2008 +0200 52765 52766 ppc4xx: QUAD100HD: Allow the environment to be put into flash. 52767 52768 After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect. Also 52769 use a redundant environment. 52770 52771 Signed-off-by: Gary Jennejohn <garyj@denx.de> 52772 52773commit cda2a4a9961fd4341b7db305cb22fc05957e8b77 52774Author: Wolfgang Denk <wd@denx.de> 52775Date: Wed May 14 13:55:30 2008 +0200 52776 52777 Fix config files for out-of-tree building 52778 52779 Several board/<...>/config.mk files include dynamically built (by 52780 the Makefile) config files but used the wrong file name of 52781 $(TOPDIR)/board/$(BOARDDIR)/config.tmp 52782 instead if the correct 52783 $(OBJTREE)/board/$(BOARDDIR)/config.tmp 52784 52785 The bug is nasty because the build result is correct for the (normal) 52786 in-tree builds, and because 'sinclude' is used no errors get raised 52787 even for out-of-tree build tests. But out-of-tree builds use an 52788 incomplete and thus usually incorrect configuration... 52789 52790 Signed-off-by: Wolfgang Denk <wd@denx.de> 52791 52792commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8 52793Author: Stefan Roese <sr@denx.de> 52794Date: Wed May 14 13:40:03 2008 +0200 52795 52796 ppc4xx: Fix bogus Canyonlands config.mk 52797 52798 This patch fixes the canyonlands config.mk file to enable correct 52799 out-of-tree builds. Thanks to Wolfgang Denk for spotting this. 52800 52801 Signed-off-by: Stefan Roese <sr@denx.de> 52802 52803commit fdd1247a66d788a3446244f6fde9955a93c26322 52804Author: Stefan Roese <sr@denx.de> 52805Date: Wed May 14 10:32:32 2008 +0200 52806 52807 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build 52808 52809 Canyonlands has a file ddr2_fixed.c which needs special treatment when 52810 building in separate directory. It has to be linked to build directory 52811 otherwise it is not seen. 52812 52813 Signed-off-by: Stefan Roese <sr@denx.de> 52814 52815commit a8409f4f1ac84c36273c1a1e341189662521bcfb 52816Author: Wolfgang Denk <wd@denx.de> 52817Date: Wed May 14 12:22:49 2008 +0200 52818 52819 environment: cleanup prototype declarations of env functions. 52820 52821 Signed-off-by: Wolfgang Denk <wd@denx.de> 52822 52823commit cf39b07948015c480b72a6e732cf7d839aa93a9e 52824Author: Wolfgang Denk <wd@denx.de> 52825Date: Wed May 14 12:21:48 2008 +0200 52826 52827 linkstation_HGLAN: Fix out of tree building. 52828 52829 Signed-off-by: Wolfgang Denk <wd@denx.de> 52830 52831commit 085551c05ca09e6c491ea11a1c6727a36776a545 52832Author: Stefan Roese <sr@denx.de> 52833Date: Wed May 14 10:32:32 2008 +0200 52834 52835 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build 52836 52837 Canyonlands has a file ddr2_fixed.c which needs special treatment when 52838 building in separate directory. It has to be linked to build directory 52839 otherwise it is not seen. 52840 52841 Signed-off-by: Stefan Roese <sr@denx.de> 52842 52843commit 1510b82d50615f344e89d42533e8224cce067dc0 52844Author: Wolfgang Denk <wd@denx.de> 52845Date: Tue May 13 23:15:52 2008 +0200 52846 52847 Makefile: fix "error: version_autogenerated.h: No such file or directory" 52848 52849 Signed-off-by: Wolfgang Denk <wd@denx.de> 52850 52851commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4 52852Author: Stelian Pop <stelian@popies.net> 52853Date: Tue May 13 17:31:24 2008 +0200 52854 52855 Cleanup nand_info[] declaration. 52856 52857 The nand_info array is declared as extern in several .c files. 52858 Those days, nand.h contains a reference to the array, so there is 52859 no need to declare it elsewhere. 52860 52861 Signed-off-by: Stelian Pop <stelian@popies.net> 52862 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52863 52864commit 70fab1908fc1734a403711eaabbef546bc4b77dc 52865Author: Stefan Roese <sr@denx.de> 52866Date: Tue May 13 20:22:01 2008 +0200 52867 52868 ppc4xx: Add 405EX(r) revision C PVR definitions and detection code 52869 52870 Signed-off-by: Stefan Roese <sr@denx.de> 52871 52872commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6 52873Author: Wolfgang Denk <wd@denx.de> 52874Date: Mon May 12 01:11:21 2008 +0200 52875 52876 Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option" 52877 52878 This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 52879 which broke many PowerPC boards. 52880 52881commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc 52882Author: Wolfgang Denk <wd@denx.de> 52883Date: Mon May 12 00:56:28 2008 +0200 52884 52885 Revert "Avoid initrd and logbuffer area overlaps" 52886 52887 This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888 52888 which breaks building on all PPC boards that don't use a log buffer. 52889 52890commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b 52891Author: Nick Spence <nick.spence@freescale.com> 52892Date: Sat May 10 14:02:04 2008 -0700 52893 52894 Fix offset calculation for multi-type legacy images. 52895 52896 Calculation of tail was incorrect when size % 4 == 0. 52897 52898 New code removes the conditional and does the same thing but with arithmetic 52899 52900 Signed-off-by: Nick Spence <nick.spence@freescale.com> 52901 52902commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4 52903Author: Wolfgang Denk <wd@denx.de> 52904Date: Mon May 12 00:40:58 2008 +0200 52905 52906 Revert "Change env_get_char from a global function ptr to a function." 52907 52908 This reverts commit c0559be371b2a64b1a817088c3308688e2182f93 52909 which is known to break booting from dataflash and NAND. 52910 52911commit 20e5ed137483823aaea5178169f3b144c7a4d9e0 52912Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52913Date: Sun May 11 23:13:57 2008 +0200 52914 52915 API: remove duplicate syscall check 52916 52917 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52918 52919commit 67e3beb52c320b0a31cf030716c99392cde2d532 52920Author: Stelian Pop <stelian@popies.net> 52921Date: Fri May 9 21:46:51 2008 +0200 52922 52923 AT91: Cleanup unused config header file definitions. 52924 52925 CONFIG_ENV_OVERWRITE is commented out in the config header files, 52926 so let's cleanup the files by removing the whole definition. 52927 52928 Signed-off-by: Stelian Pop <stelian@popies.net> 52929 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52930 52931commit 19883aede2ac0a522493bfb2b35a7dbb200071b1 52932Author: Stelian Pop <stelian@popies.net> 52933Date: Thu May 8 14:52:34 2008 +0200 52934 52935 Support AT91CAP9 revC CPUs 52936 52937 The AT91CAP9 revC CPU has a few differences over the previous, 52938 revB CPU which was distributed in small quantities only (revA was 52939 an internal Atmel product only). 52940 52941 The revC silicon needs a special initialisation sequence to 52942 switch from the internal (imprecise) RC oscillator to the 52943 external 32k clock. 52944 52945 Signed-off-by: Stelian Pop <stelian@popies.net> 52946 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52947 52948commit 098b7b4b441b12c2a64dd517930f43c793542759 52949Author: Stelian Pop <stelian@popies.net> 52950Date: Thu May 8 14:52:33 2008 +0200 52951 52952 Use custom logo for Atmel boards 52953 52954 This patch adds a custom vendor logo for the Atmel AT91 boards. 52955 52956 Signed-off-by: Stelian Pop <stelian@popies.net> 52957 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52958 52959commit 761c70b80cdd3bead40146b96a8e713d6ae01632 52960Author: Stelian Pop <stelian@popies.net> 52961Date: Thu May 8 14:52:32 2008 +0200 52962 52963 AT91SAM9RLEK: hook up the ATMEL LCD driver 52964 52965 This patch makes the necessary adaptations (PIO configurations and 52966 defines in config header file) to hook up the Atmel LCD driver to the 52967 AT91SAM9RLEK board. 52968 52969 Signed-off-by: Stelian Pop <stelian@popies.net> 52970 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52971 52972commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f 52973Author: Stelian Pop <stelian@popies.net> 52974Date: Thu May 8 14:52:31 2008 +0200 52975 52976 AT91SAM9263EK: hook up the ATMEL LCD driver 52977 52978 This patch makes the necessary adaptations (PIO configurations and 52979 defines in config header file) to hook up the Atmel LCD driver to the 52980 AT91SAM9263EK board. 52981 52982 Signed-off-by: Stelian Pop <stelian@popies.net> 52983 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52984 52985commit 820f2a958325061a446115f3035e48e4726b3390 52986Author: Stelian Pop <stelian@popies.net> 52987Date: Thu May 8 14:52:30 2008 +0200 52988 52989 AT91SAM9261EK: hook up the ATMEL LCD driver 52990 52991 This patch makes the necessary adaptations (PIO configurations and 52992 defines in config header file) to hook up the Atmel LCD driver to the 52993 AT91SAM9261EK board. 52994 52995 Signed-off-by: Stelian Pop <stelian@popies.net> 52996 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 52997 52998commit c139b17d20c8371c1e0a8d7fb27c11050cf86304 52999Author: Stelian Pop <stelian@popies.net> 53000Date: Thu May 8 14:52:29 2008 +0200
53001 53002 AT91CAP9ADK: hook up the ATMEL LCD driver 53003 53004 This patch makes the necessary adaptations (PIO configurations and 53005 defines in config header file) to hook up the Atmel LCD driver to the 53006 AT91CAP9ADK board. 53007 53008 Signed-off-by: Stelian Pop <stelian@popies.net> 53009 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53010 53011commit 39cf480484fcce5c04a590ee1c30be0c17b02c34 53012Author: Stelian Pop <stelian@popies.net> 53013Date: Fri May 9 21:57:18 2008 +0200 53014 53015 Add ATMEL LCD driver 53016 53017 This patch adds support for the ATMEL LCDC driver which is used on some 53018 AT91 and AVR platforms. 53019 53020 Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and 53021 AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy. 53022 53023 Signed-off-by: Stelian Pop <stelian@popies.net> 53024 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53025 53026commit 2118ebb44dc40f8117c94950fd95799a9ef821b2 53027Author: Stelian Pop <stelian@popies.net> 53028Date: Thu May 8 18:52:25 2008 +0200 53029 53030 AT91SAM9RLEK support 53031 53032 This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK 53033 board. 53034 53035 Signed-off-by: Stelian Pop <stelian@popies.net> 53036 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53037 53038commit 8e429b3eee23927c1222679f6b6f53667b21595c 53039Author: Stelian Pop <stelian@popies.net> 53040Date: Thu May 8 18:52:23 2008 +0200 53041 53042 AT91SAM9263EK support 53043 53044 This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK 53045 board. 53046 53047 Signed-off-by: Stelian Pop <stelian@popies.net> 53048 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53049 53050commit d99a8ff66d8ae87e5c87590ed2e4ead629540607 53051Author: Stelian Pop <stelian@popies.net> 53052Date: Thu May 8 20:52:22 2008 +0200 53053 53054 AT91SAM9261EK support 53055 53056 This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK 53057 board. 53058 53059 Signed-off-by: Stelian Pop <stelian@popies.net> 53060 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53061 53062commit 86c8c8a414988c50104a3b02c29f50af2be738c0 53063Author: Stelian Pop <stelian@popies.net> 53064Date: Thu May 8 20:52:21 2008 +0200 53065 53066 AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND 53067 53068 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND 53069 in order to cope with the changes in DataFlash partitionning scheme 53070 (cset c3a60cb3). 53071 53072 Signed-off-by: Stelian Pop <stelian@popies.net> 53073 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53074 53075commit 96996ac25d5222611a8888968db6e53a6d3726da 53076Author: Stelian Pop <stelian@popies.net> 53077Date: Thu May 8 20:52:20 2008 +0200 53078 53079 AT91SAM9260EK: Normalize BOOTARGS 53080 53081 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from 53082 DataFlash or from NAND), and gives to Linux a fully specified mtdparts 53083 variable. 53084 53085 Signed-off-by: Stelian Pop <stelian@popies.net> 53086 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53087 53088commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a 53089Author: Stelian Pop <stelian@popies.net> 53090Date: Thu May 8 20:52:19 2008 +0200 53091 53092 AT91SAM9260EK: Normalize SPI timings 53093 53094 This patch changes the SPI timings to closely match the ones 53095 used by the Linux kernel and the Atmel's own bootstrap project. 53096 53097 Signed-off-by: Stelian Pop <stelian@popies.net> 53098 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53099 53100commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935 53101Author: Stelian Pop <stelian@popies.net> 53102Date: Thu May 8 20:52:18 2008 +0200 53103 53104 AT91SAM9260EK: Handle 8 or 16 bit NAND 53105 53106 The Atmel boards can handle 8 or 16 bit NAND memories. This patch 53107 makes the support configurable in the board config header file 53108 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16). 53109 53110 Signed-off-by: Stelian Pop <stelian@popies.net> 53111 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53112 53113commit ab52640fc01624e208424e527af0b7b3a5a65a12 53114Author: Stelian Pop <stelian@popies.net> 53115Date: Thu May 8 20:52:17 2008 +0200 53116 53117 AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND 53118 53119 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND 53120 in order to cope with the changes in DataFlash partitionning scheme 53121 (cset c3a60cb3). 53122 53123 Signed-off-by: Stelian Pop <stelian@popies.net> 53124 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53125 53126commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270 53127Author: Stelian Pop <stelian@popies.net> 53128Date: Thu May 8 20:52:16 2008 +0200 53129 53130 AT91CAP9ADK: Normalize BOOTARGS 53131 53132 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from 53133 DataFlash or from NAND), and gives to Linux a fully specified mtdparts 53134 variable. 53135 53136 Signed-off-by: Stelian Pop <stelian@popies.net> 53137 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53138 53139commit 93da48b910511911ce110656e17ed733c8ac4c45 53140Author: Stelian Pop <stelian@popies.net> 53141Date: Thu May 8 20:52:15 2008 +0200 53142 53143 AT91CAP9ADK: Normalize SPI timings 53144 53145 This patch changes the SPI timings to closely match the ones 53146 used by the Linux kernel and the Atmel's own bootstrap project. 53147 53148 Signed-off-by: Stelian Pop <stelian@popies.net> 53149 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53150 53151commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0 53152Author: Stelian Pop <stelian@popies.net> 53153Date: Thu May 8 20:52:14 2008 +0200 53154 53155 AT91CAP9ADK: Handle 8 or 16 bit NAND 53156 53157 The Atmel boards can handle 8 or 16 bit NAND memories. This patch 53158 makes the support configurable in the board config header file 53159 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16). 53160 53161 Signed-off-by: Stelian Pop <stelian@popies.net> 53162 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53163 53164commit 11b162bae058e96c7929e358d4adff2bee6c2cc4 53165Author: Stelian Pop <stelian@popies.net> 53166Date: Thu May 8 20:52:13 2008 +0200 53167 53168 Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms 53169 53170 All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch 53171 below avoids the duplication of u-boot.lds by putting the file in the 53172 cpu directory instead of the board one. 53173 53174 Signed-off-by: Stelian Pop <stelian@popies.net> 53175 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53176 53177commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece 53178Author: Stelian Pop <stelian@popies.net> 53179Date: Thu May 8 20:52:12 2008 +0200 53180 53181 Add proper copyright notices in Atmel boards Makefiles 53182 53183 The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete 53184 copyright notice. This patch adds the missing pieces. 53185 53186 Signed-off-by: Stelian Pop <stelian@popies.net> 53187 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53188 53189commit e817a042cef6164bf26fee86f90326f2ec9e6745 53190Author: Stelian Pop <stelian@popies.net> 53191Date: Thu May 8 20:52:11 2008 +0200 53192 53193 Add copyright information in Atmel boards partition.c 53194 53195 When Ulf did the dataflash.c cleanup, he didn't add his copyright on 53196 the new created files. This patch fixes the problem. 53197 53198 Signed-off-by: Stelian Pop <stelian@popies.net> 53199 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53200 53201commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19 53202Author: Stelian Pop <stelian@popies.net> 53203Date: Thu May 8 20:52:10 2008 +0200 53204 53205 Update origin and copyright information in arch-at91sam9 header files 53206 53207 When doing the AT91CAP9/AT91SAM9 port, a number of header files were 53208 copied from the Linux kernel sources. This patch explicitly specifies 53209 this origin for all the copied headers, and for those missing copyright 53210 information, adds it. 53211 53212 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded 53213 in the latest kernel sources by 'at91sam9_smc.h'. 53214 53215 The copyright information has been confirmed by the AT91 Linux kernel 53216 maintainer, Andrew Victor <avictor.za@gmail.com>. 53217 53218 Signed-off-by: Stelian Pop <stelian@popies.net> 53219 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53220 53221commit 79dd1712689d6a5031d7cbff54957049680751c7 53222Author: Markus Klotzbücher <mk@denx.de> 53223Date: Thu May 8 16:00:55 2008 +0200 53224 53225 ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config 53226 53227 When using dhcp/bootp the "netmask" environment variable is not set 53228 because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is 53229 desireable, so the following patch adds this this option to the board 53230 config. 53231 53232 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 53233 Signed-off-by: Stefan Roese <sr@denx.de> 53234 53235commit 869d14b4cc2e47de2ddcb117bad0407a44436684 53236Author: Stefan Roese <sr@denx.de> 53237Date: Sat May 10 10:30:36 2008 +0200 53238 53239 ppc4xx: Update Makalu defconfig to use device-tree booting as default 53240 53241 This patch reworks the default environment on Makalu. Now "net_nfs" for 53242 example uses the device-tree style booting formerly know as "net_nfs_fdt". 53243 Also the addresses in RAM were changed because of the new image booting 53244 support, which check for image overwriting. So the addresses needed to 53245 get adjusted. 53246 53247 Signed-off-by: Stefan Roese <sr@denx.de> 53248 53249commit f3612a7b199cab3942f60d9c1392eb39d58cc699 53250Author: Becky Bruce <bgill@freescale.com> 53251Date: Wed May 7 13:28:16 2008 -0500 53252 53253 PPC: fix map_physmem build warning 53254 53255 map_physmem currently generates a warning when CONFIG_PHYS_64BIT is 53256 enabled. This quiets the warning. 53257 53258 Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com> 53259 53260commit 36f32675f40292002ee1fed252c180a43022d2d4 53261Author: Becky Bruce <bgill@freescale.com> 53262Date: Wed May 7 13:24:57 2008 -0500 53263 53264 Update pci code to use phys_addr_t 53265 53266 Physical addrs need to be represented by phys_addr_t, not 53267 unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT 53268 are going to fail mightily. 53269 53270 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 53271 53272commit 91a616741fc128cdb88f39bddcd4d72fe17466d0 53273Author: Nick Spence <nick.spence@freescale.com> 53274Date: Thu May 8 22:32:22 2008 -0700 53275 53276 Support legacy multi-type images without FDT section. 53277 53278 This patch enables legacy multi-type images containing only a Linux kernel 53279 and root file system to be loaded, maintaining compatibility with previous 53280 versions of u-boot. 53281 53282 This is required when using old image files such as a Linux 2.4 kernel / 53283 filesystem. 53284 53285 Signed-off-by: Nick Spence <nick.spence@freescale.com> 53286 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 53287 53288commit 881031d9732783b7aeae2198fc7eb480ae8974a6 53289Author: Wolfgang Denk <wd@denx.de> 53290Date: Sat May 10 00:38:02 2008 +0200 53291 53292 Update CHANGELOG. 53293 53294 Signed-off-by: Wolfgang Denk <wd@denx.de> 53295 53296commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774 53297Author: Wolfgang Denk <wd@denx.de> 53298Date: Sat May 10 00:36:09 2008 +0200 53299 53300 post/cpu/ppc4xx/Makefile: line length cleanup 53301 53302 Signed-off-by: Wolfgang Denk <wd@denx.de> 53303 53304commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d 53305Author: Stelian Pop <stelian@popies.net> 53306Date: Thu May 8 22:52:09 2008 +0200 53307 53308 Fix @ -> <at> substitution 53309 53310 When applying the AT91CAP9 patches upstream, something transformed 53311 the '@' character into the ' <at> ' sequence. 53312 53313 The patch below restores the original form in all the places where 53314 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which 53315 were copied from AT91CAP9, and a couple of other files where the 53316 ' <at> ' sequence was present). 53317 53318 Signed-off-by: Stelian Pop <stelian@popies.net> 53319 53320commit 9606b3c81b3c47a1d58514e9a232c6f461a17597 53321Author: Stelian Pop <stelian@popies.net> 53322Date: Thu May 8 22:52:10 2008 +0200 53323 53324 Update origin and copyright information in arch-at91sam9 header files 53325 53326 When doing the AT91CAP9/AT91SAM9 port, a number of header files were 53327 copied from the Linux kernel sources. This patch explicitly specifies 53328 this origin for all the copied headers, and for those missing copyright 53329 information, adds it. 53330 53331 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded 53332 in the latest kernel sources by 'at91sam9_smc.h'. 53333 53334 The copyright information has been confirmed by the AT91 Linux kernel 53335 maintainer, Andrew Victor <avictor.za@gmail.com>. 53336 53337 Signed-off-by: Stelian Pop <stelian@popies.net> 53338 53339commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1 53340Author: Stelian Pop <stelian@popies.net> 53341Date: Thu May 8 22:52:11 2008 +0200 53342 53343 Add copyright information in Atmel boards partition.c 53344 53345 When Ulf did the dataflash.c cleanup, he didn't add his copyright on 53346 the new created files. This patch fixes the problem. 53347 53348 Signed-off-by: Stelian Pop <stelian@popies.net> 53349 53350commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3 53351Author: Guennadi Liakhovetski <lg@denx.de> 53352Date: Thu May 8 10:09:27 2008 +0200 53353 53354 mx31ads: fix 32kHz clock handling 53355 53356 According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz 53357 oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value. 53358 Also fix a typo when verifying a jumper configuration. While at it, make 53359 two needlessly global functions static. 53360 53361 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 53362 53363commit 1b5605ca57fbb364f4d78eeee28b974ed875e888 53364Author: Marian Balakowicz <m8@semihalf.com> 53365Date: Wed May 7 13:10:04 2008 +0200 53366 53367 Avoid initrd and logbuffer area overlaps 53368 53369 Add logbuffer to reserved LMB areas to prevent initrd allocation 53370 from overlaping with it. 53371 53372 Make sure to use correct logbuffer base address. 53373 53374 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 53375 53376commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b 53377Author: Marian Balakowicz <m8@semihalf.com> 53378Date: Wed May 7 13:08:54 2008 +0200 53379 53380 ppc: Cleanup get_effective_memsize() use 53381 53382 Removed duplicated effective memory size calculation code. 53383 53384 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 53385 53386commit 273c37d843d5b581090378016cd12dd9c586907b 53387Author: Marian Balakowicz <m8@semihalf.com> 53388Date: Wed May 7 09:03:53 2008 +0200 53389 53390 Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled 53391 53392 Recent modifcations to LOGBUFFER handling code were incorrecly 53393 introduced to fit_check_kernel() routine during 53394 "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing", 53395 commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f. 53396 53397 This patch cleans up this merge issue. 53398 53399 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 53400 53401commit bc11756daff89a3de09ca80adac962b88cf06e6e 53402Author: Grant Erickson <gerickson@nuovations.com> 53403Date: Tue May 6 20:16:15 2008 -0700 53404 53405 Propagate Error Status to the Shell on fw_printenv Errors 53406 53407 Changed implementation such that fw_printenv returns failure status 53408 when one or more specified variables do not exist or when incorrect 53409 command syntax is used. 53410 53411 This aids scripting fw_printenv such that the script can key of the 53412 return status rather than relying on standard error "scraping". 53413 53414 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 53415 Signed-off-by: Wolfgang Denk <wd@denx.de> 53416 53417commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6 53418Author: Grant Erickson <gerickson@nuovations.com> 53419Date: Tue May 6 16:18:00 2008 -0700 53420 53421 Fix Compilation Errors with 'tools/env/fw_printenv' 53422 53423 In the current top-of-tree, 1.3.3.-rc2, the optional tool 53424 'tools/env/fw_printenv' fails to compile for two reasons: 53425 53426 1) The header watchdog.h cannot be found. 53427 2) The header zlib.h is picked up from the tool chain rather than the 53428 project causing a prototype conflict for crc32. 53429 53430 This patch addresses both of these issues. 53431 53432 Platforms Tested On: 53433 - AMCC "Kilauea" 53434 53435 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 53436 53437commit 597f6c26a18b389903a64692bacbf9a1ca69355b 53438Author: James Yang <James.Yang@freescale.com> 53439Date: Mon May 5 10:22:53 2008 -0500 53440 53441 Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating 53442 53443 When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't 53444 work before relocating to RAM because command history is written into 53445 a global array that is not writable before relocation. This patch 53446 defers to the no-editing and no-history code in readline_into_buffer() 53447 if it is called before relocation. 53448 53449 Signed-off-by: James Yang <James.Yang@freescale.com> 53450 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 53451 53452commit 726c0f1e5f108dccea052965123b95837d2bd402 53453Author: Detlev Zundel <dzu@denx.de> 53454Date: Mon May 5 16:11:22 2008 +0200 53455 53456 cosmetic: Adjust coding style for switch statements to be consistent 53457 53458 Signed-off-by: Detlev Zundel <dzu@denx.de> 53459 53460commit 574b319512b13e10800f0045e39b993f4ca25e42 53461Author: Detlev Zundel <dzu@denx.de> 53462Date: Mon May 5 16:11:21 2008 +0200 53463 53464 Fix disk type output in disk/part.c 53465 53466 Signed-off-by: Detlev Zundel <dzu@denx.de> 53467 53468commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171 53469Author: Vlad Lungu <vlad.lungu@windriver.com> 53470Date: Mon May 5 14:20:03 2008 +0300 53471 53472 Mail address change, documentation modified 53473 53474 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com> 53475 53476commit 4d49b28038e2819088e8356a77212fc95a89ce5a 53477Author: Michal Simek <monstr@monstr.eu> 53478Date: Sun May 4 15:42:41 2008 +0200 53479 53480 microblaze: Repare intc handling 53481 53482 Signed-off-by: Michal Simek <monstr@monstr.eu> 53483 53484commit 878b3b1e193e570caf3e96ad8e31e561f68d0287 53485Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53486Date: Sun May 4 15:17:52 2008 +0200 53487 53488 include/gitignore: update to all architectures 53489 53490 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53491 53492commit 1df368aed3b8bc240fe1595d290b0e91b22961da 53493Author: Marcel Ziswiler <marcel@ziswiler.com> 53494Date: Mon May 5 02:12:06 2008 +0200 53495 53496 ide: Remove spurious second include of io.h 53497 53498 Removed the second include, with all the #ifdef around as suggested by Wolfgang. 53499 53500 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 53501 53502commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c 53503Author: Adrian Filipi <adrian.filipi@eurotech.com> 53504Date: Tue May 6 16:46:37 2008 -0400 53505 53506 Fix some typos 53507 53508 This patch fixes three typos. 53509 The first is a repetition of CONFIG_CMD_BSP. 53510 The second makes the #endif comment match its #if. 53511 The third is a spelling error. 53512 53513 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com> 53514 53515commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb 53516Author: Grant Erickson <gerickson@nuovations.com> 53517Date: Sun May 4 16:45:01 2008 -0700 53518 53519 Recognize 'powerpc' As an Alias for IH_ARCH_PPC 53520 53521 Add support for the recognition of 'powerpc' as an alias for the PowerPC 53522 architecture type since Linux is already trending in that direction, 53523 preferring 'powerpc' to 'ppc'. 53524 53525 Signed-off-by: Grant Erickson <gerickson@nuovations.com> 53526 53527commit f5a24259190c388c2527bdc49fee34577d862cc7 53528Author: Wheatley Travis <Travis.Wheatley@freescale.com> 53529Date: Fri May 2 13:35:15 2008 -0700 53530 53531 7450 and 86xx L2 cache invalidate bug corrections 53532 53533 The 7610 and related parts have an L2IP bit in the L2CR that is 53534 monitored to signal when the L2 cache invalidate is complete whereas the 53535 7450 and related parts utilize L2I for this purpose. However, the 53536 current code does not account for this difference. Additionally the 86xx 53537 L2 cache invalidate code used an "andi" instruction where an "andis" 53538 instruction should have been used. 53539 53540 This patch addresses both of these bugs. 53541 53542 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com> 53543 Acked-By: Jon Loeliger <jdl@freescale.com> 53544 53545commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72 53546Author: Wolfgang Denk <wd@denx.de> 53547Date: Fri May 9 10:16:13 2008 +0200 53548 53549 Avoid infinite loop "Generating include/autoconf.mk" 53550 53551 Fix a bogus circular dependency that caused an infinite loop of 53552 "Generating include/autoconf.mk" again and again. 53553 53554 Signed-off-by: Wolfgang Denk <wd@denx.de> 53555 53556commit 567fb852178dbf59529d7301620a3f3732a4b02d 53557Author: Stelian Pop <stelian@popies.net> 53558Date: Thu May 8 22:52:09 2008 +0200 53559 53560 Fix @ -> <at> substitution 53561 53562 When applying the AT91CAP9 patches upstream, something transformed 53563 the '@' character into the ' <at> ' sequence. 53564 53565 The patch below restores the original form in all the places where 53566 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which 53567 were copied from AT91CAP9, and a couple of other files where the 53568 ' <at> ' sequence was present). 53569 53570 Signed-off-by: Stelian Pop <stelian@popies.net> 53571 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53572 53573commit 73ccb3410a0785593cda7aee455dfc51f790e281 53574Author: Gary Jennejohn <gary.jennejohn@freenet.de> 53575Date: Mon Apr 28 14:04:32 2008 +0200 53576 53577 ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board 53578 53579 Signed-off-by: Gary Jennejohn <garyj@denx.de> 53580 Signed-off-by: Stefan Roese <sr@denx.de> 53581 53582commit ef2642625cbfb1c3695e3478d08ae515052a4950 53583Author: Stefan Roese <sr@denx.de> 53584Date: Thu May 8 11:10:46 2008 +0200 53585 53586 ppc4xx: Kilauea: Fix incorrect FPGA FIFO address 53587 53588 Signed-off-by: Stefan Roese <sr@denx.de> 53589 53590commit a00eccfebc954ad9485161efeca7d9aaf626d530 53591Author: Stefan Roese <sr@denx.de> 53592Date: Thu May 8 11:05:15 2008 +0200 53593 53594 ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards 53595 53596 This patch adds fdt (flattened device tree) support to all remaining AMCC 53597 eval boards. Most newer boards already support device tree. With this patch, 53598 all AMCC boards now enable device tree passing from U-Boot to Linux 53599 arch/powerpc kernels. 53600 53601 Signed-off-by: Stefan Roese <sr@denx.de> 53602 53603commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3 53604Author: Stefan Roese <sr@denx.de> 53605Date: Thu May 8 11:01:09 2008 +0200 53606 53607 ppc4xx: Add weak default ft_board_setup() routine 53608 53609 This patch adds a default ft_board_setup() routine to the 4xx fdt code. 53610 This routine is defined as weak and can be overwritten by a board specific 53611 one if needed. 53612 53613 Signed-off-by: Stefan Roese <sr@denx.de> 53614 53615commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01 53616Author: Stefan Roese <sr@denx.de> 53617Date: Thu May 8 10:48:58 2008 +0200 53618 53619 ppc4xx: acadia: Add fdt support and fix section overlap problem 53620 53621 This patch adds fdt (flattened device tree) support to the AMCC 53622 Acadia eval board. This increases the image size and it doesn't 53623 fit anymore into 256kByte. Since we didn't want to remove features 53624 from the configuration, we decided to increase the U-Boot image size 53625 (add one flash sector). 53626 53627 Also changed the default environment definition to make it 53628 independent of such changes. 53629 53630 Signed-off-by: Stefan Roese <sr@denx.de> 53631 53632commit 4adb3023de75bc150f088c8935db340930ad38c8 53633Author: Ira Snyder <iws@ovro.caltech.edu> 53634Date: Tue Apr 29 11:18:54 2008 -0700 53635 53636 ppc4xx: Add device tree support to AMCC Yosemite 53637 53638 Add support for booting with a device tree blob. This is needed to boot 53639 ARCH=powerpc kernels. Also add support for setting the eth0 mac address 53640 via the ethaddr variable. 53641 53642 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu> 53643 Signed-off-by: Stefan Roese <sr@denx.de> 53644 53645commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b 53646Author: Dave Mitchell <dmitchell@amcc.com> 53647Date: Wed May 7 09:00:23 2008 -0700 53648 53649 ppc4xx: Fix typos in 460GT/EX FBDV array 53650 53651 Corrected two typos in the 460GT/EX FBDV array. 53652 53653 Signed-off-by: Dave Mitchell <dmitchell@amcc.com> 53654 Signed-off-by: Stefan Roese <sr@denx.de> 53655 53656commit 66f5fa9263629271edc86178b1f224e3c9aab2b3 53657Author: Andy Fleming <afleming@freescale.com> 53658Date: Wed May 7 16:54:31 2008 -0500 53659 53660 85xx: Limit CPU2 workaround to parts that have the errata 53661 53662 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com> 53663 Signed-off-by: Andy Fleming <afleming@freescale.com> 53664 53665commit a5fe514e8ace564300d2c1d73846ddff49654243 53666Author: Lee Nipper <lee.nipper@freescale.com> 53667Date: Fri Apr 25 15:44:45 2008 -0500 53668 53669 mpc83xx: system performance settings for MPC8349EMDS. 53670 53671 These same settings are used on MPC8349ITX, and 53672 improve performance on MPC8349EMDS. 53673 53674 Signed-off-by: Lee Nipper <lee.nipper@freescale.com> 53675 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 53676 53677commit 49387dba910e485640b575e920ee463b7e611dc3 53678Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 53679Date: Tue May 6 13:22:52 2008 +0900 53680 53681 [MIPS] cpu/mips/cache.S: Fix build warning 53682 53683 Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0), 53684 warns illegal global symbol references by bal (and jal also) instruction. 53685 This does not happen with the latest binutils v2.18. 53686 53687 Here's an example on gth2_config: 53688 53689 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 53690 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 53691 c -EB -c -o cache.o cache.S 53692 cache.S: Assembler messages: 53693 cache.S:243: Warning: Pretending global symbol used as branch target is local. 53694 cache.S:250: Warning: Pretending global symbol used as branch target is local. 53695 53696 In principle, gas might be sensitive to global symbol references in PIC 53697 code because they should be processed through GOT (global offset table). 53698 But if `bal' instruction is used, it results in PC-based offset jump. 53699 This is the cause of this warning. 53700 53701 In practice, we know it doesn't matter whether PC-based reference or GOT- 53702 based. As for this case, both will work before/after relocation. But let's 53703 fix the code. 53704 53705 This patch explicitly sets up a target address, then jump there. 53706 Here's an example of disassembled code with/without this patch. 53707 53708 90000668: 1485ffef bne a0,a1,90000628 <mips_cache_reset+0x20> 53709 9000066c: ac80fffc sw zero,-4(a0) 53710 90000670: 01402821 move a1,t2 53711 -90000674: 0411ffba bal 90000560 <mips_init_icache> 53712 -90000678: 01803021 move a2,t4 53713 -9000067c: 01602821 move a1,t3 53714 -90000680: 0411ffcc bal 900005b4 <mips_init_dcache> 53715 -90000684: 01a03021 move a2,t5 53716 -90000688: 03000008 jr t8 53717 -9000068c: 00000000 nop 53718 +90000674: 01803021 move a2,t4 53719 +90000678: 8f8f83ec lw t7,-31764(gp) 53720 +9000067c: 01e0f809 jalr t7 53721 +90000680: 00000000 nop 53722 +90000684: 01602821 move a1,t3 53723 +90000688: 01a03021 move a2,t5 53724 +9000068c: 8f8f81e0 lw t7,-32288(gp) 53725 +90000690: 01e0f809 jalr t7 53726 +90000694: 00000000 nop 53727 +90000698: 03000008 jr t8 53728 +9000069c: 00000000 nop 53729 53730 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 53731 53732commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3 53733Author: Vlad Lungu <vlad.lungu@windriver.com> 53734Date: Mon May 5 14:04:00 2008 +0300 53735 53736 Allow building mips versions with ELDK 3.1.1 53737 53738 .gpword works only with local symbols on certain binutils versions 53739 53740 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com> 53741 53742commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d 53743Author: Wolfgang Denk <wd@denx.de> 53744Date: Mon May 5 12:52:36 2008 +0200 53745 53746 MAKEALL: add inka4x0 board 53747 53748 Signed-off-by: Wolfgang Denk <wd@denx.de> 53749 53750commit b83dcc13ae7b2dab394bfef6f699750d11490ee2 53751Author: Wolfgang Denk <wd@denx.de> 53752Date: Sun May 4 21:34:23 2008 +0200 53753 53754 kb9202 board: fix build problem. 53755 53756 Signed-off-by: Wolfgang Denk <wd@denx.de> 53757 53758commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869 53759Author: Wolfgang Denk <wd@denx.de> 53760Date: Sun May 4 12:10:33 2008 +0200 53761 53762 Prepare for v1.3.3-rc3 53763 53764 Update ChNAGELOG, minor white space cleanup. 53765 53766 Signed-off-by: Wolfgang Denk <wd@denx.de> 53767 53768commit 7c0773fde6100b61be2558cb5d8c442a3194aecb 53769Author: Wolfgang Denk <wd@denx.de> 53770Date: Sun May 4 00:35:15 2008 +0200 53771 53772 drivers/net/tsec.c: Fix typo. 53773 53774 Signed-off-by: Wolfgang Denk <wd@denx.de> 53775 53776commit aa737945e6f37a5de5dbad550a7694e0cb2a8120 53777Author: Mike Frysinger <vapier@gentoo.org> 53778Date: Fri May 2 21:45:12 2008 -0400 53779 53780 version_autogenerated.h: use printf rather than echo -n 53781 53782 Some systems are dumb and do not implement the -n flag to echo (like OS X). 53783 Convert the Makefile to use printf as this should work everywhere. 53784 53785 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 53786 Signed-off-by: Wolfgang Denk <wd@denx.de> 53787 53788commit 4acc2a108ad0a669165924704a6cb083f9138242 53789Author: Mike Frysinger <vapier@gentoo.org> 53790Date: Fri May 2 18:17:50 2008 -0400 53791 53792 fix building when saveenv is disabled in some setups 53793 53794 If you enable environment in the flash, but disable the embedded 53795 option, and you disable the saveenv command, then the #if nested 53796 logic will trigger a compile failure: 53797 env_flash.c: In function 'env_relocate_spec': 53798 env_flash.c:399: error: 'flash_addr' undeclared (first use in this function) 53799 The fix is to add CMD_SAVEENV ifdef protection like everywhere else. 53800 53801 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 53802 53803commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7 53804Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com> 53805Date: Fri May 2 16:10:04 2008 -0400 53806 53807 SBC8548: fix address mask to allow 64M flash 53808 53809 Fix incorrect mask to enable all 64MB of onboard flash. 53810 Previously U-Boot incorrectly mapped only 8MB of flash, this 53811 patch correctly maps all the available flash. 53812 53813 Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com> 53814 53815commit 3648085c464c8c22ef76fab006ca4344d3796124 53816Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53817Date: Fri May 2 19:48:56 2008 +0200 53818 53819 qemu_mips: add README 53820 53821 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53822 53823commit 6fdd002689190a0022c7b3dbab37fcba724580ce 53824Author: Marcel Ziswiler <marcel@ziswiler.com> 53825Date: Fri May 2 02:35:59 2008 +0200 53826 53827 Fix misspelled comment 53828 53829 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 53830 53831commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1 53832Author: Mike Frysinger <vapier@gentoo.org> 53833Date: Thu May 1 04:13:05 2008 -0400 53834 53835 mkimage: make mmap() checks consistent 53836 53837 The mmap() related code is full of inconsistent casts/constants when 53838 it comes to error checking, and may break when building on some 53839 systems (like ones that do not implicitly define the caddr_t type). 53840 Let's just avoid the whole mess by writing the code nice and clean in 53841 the first place. 53842 53843 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 53844 53845commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a 53846Author: Marcel Ziswiler <marcel@ziswiler.com> 53847Date: Thu May 1 09:05:34 2008 +0200 53848 53849 Fix defined but not used build warning 53850 53851 - warning: 'srom' defined but not used 53852 53853 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 53854 53855commit b71190f3250aaffcc81c35f6cfd3498cb7c48013 53856Author: Marcel Ziswiler <marcel@ziswiler.com> 53857Date: Thu May 1 09:05:26 2008 +0200 53858 53859 Fix implicit declaration build warnings 53860 53861 - warning: implicit declaration of function ‘serial_initialize’ 53862 53863 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 53864 53865commit 9acde129cc3f9c1b3bc11a821480dd446774d618 53866Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 53867Date: Tue Apr 29 19:18:32 2008 +0200 53868 53869 TSEC: add config options for VSC8601 RGMII PHY 53870 53871 The Vitesse VSC8601 RGMII PHY has internal delay for both Rx 53872 and Tx clock lines. They are configured using 2 bits in extended 53873 register 0x17. 53874 Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have 53875 been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay. 53876 53877 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 53878 Acked-by: Andy Fleming <afleming@freescale.com> 53879 Acked-by: Ben Warren <biggerbadderben@gmail.com> 53880 -- 53881 53882 drivers/net/tsec.c | 6 ++++++ 53883 drivers/net/tsec.h | 3 +++ 53884 2 files changed, 9 insertions(+), 0 deletions(-) 53885 53886commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8 53887Author: Wolfgang Denk <wd@denx.de> 53888Date: Sat May 3 23:07:15 2008 +0200 53889 53890 Revert "ColdFire: Get information from the correct GCC" 53891 53892 This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a 53893 (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40). 53894 53895commit c4e5f52a58d278eebb87f476e353972c5dacea40 53896Author: Wolfgang Denk <wd@denx.de> 53897Date: Sat May 3 22:25:00 2008 +0200 53898 53899 config.mk: use correct (cross) compiler 53900 53901 Some config.mk files reference $(CC) to test for specific tool chain 53902 features, so make sure $(CC) gets set before including any such 53903 config files. 53904 53905 This patch replaces commit b7166e05a5 ("ColdFire: Get information from 53906 the correct GCC"). 53907 53908 Signed-off-by: Wolfgang Denk <wd@denx.de> 53909 53910commit 27c38689d0cfde0e444239345f97b5eecc9f4067 53911Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53912Date: Thu May 1 02:13:44 2008 +0200 53913 53914 pxa: fix previous definition on cpu init 53915 53916 start.S:183:1: warning: "ICMR" redefined 53917 In file included from start.S:33: 53918 include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition 53919 start.S:187:1: warning: "RCSR" redefined 53920 ... 53921 53922 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53923 53924commit 6d12e697de794d700767f22f950e3026ccf4daf6 53925Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53926Date: Thu May 1 02:13:43 2008 +0200 53927 53928 pxa: fix pcmcia operation on 'i' may be undefined 53929 53930 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53931 Signed-off-by: Wolfgang Denk <wd@denx.de> 53932 53933commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f 53934Author: Kumar Gala <galak@kernel.crashing.org> 53935Date: Wed Apr 30 16:24:35 2008 -0500 53936 53937 MPC8610HPCD: Drop -O2 from the build flags 53938 53939 Make the flags use -Os like all other boards 53940 53941 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 53942 53943commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd 53944Author: Stefan Roese <sr@denx.de> 53945Date: Wed Apr 30 15:50:39 2008 +0200 53946 53947 RTC: Fix month offset by one problem in M41T62 RTC driver 53948 53949 This patch fixes a problem with the month being read and written 53950 incorrectly (offset by one). This only gets visible by also using 53951 the Linux driver (rtc-m41t80). 53952 53953 Tested on AMCC Canyonlands. 53954 53955 Signed-off-by: Stefan Roese <sr@denx.de> 53956 53957commit 141ba1cad8e6598a2466e7e2976c6a12285df619 53958Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 53959Date: Sat May 3 13:51:44 2008 +0900 53960 53961 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker 53962 53963 Current trick to pick up GNU assembler minor version uses a dot(.) as a 53964 delimiter, and take the second field to obtain minor version number. But 53965 as can be expected, this doesn't work with a version string which has 53966 dots more than needs. 53967 53968 Here's an example: 53969 53970 $ mips-linux-gnu-as --version | grep 'GNU assembler' 53971 GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215 53972 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2 53973 2-129) 2 53974 $ 53975 53976 This patch restricts the version format to 2.XX.XX... This will work 53977 in most cases. 53978 53979 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' 53980 2.18.50.20080215 53981 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2 53982 18 53983 $ 53984 53985 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 53986 53987commit ea638951acead7f1086c908c0b9f086beab82a22 53988Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 53989Date: Sat May 3 13:51:28 2008 +0900 53990 53991 [MIPS] cpu/mips/cache.S: Add dcache_enable 53992 53993 Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482, 53994 "allow ports to override bootelf behavior") requires ports to have this 53995 function. 53996 53997 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 53998 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 53999 54000commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
54001Author: Wolfgang Denk <wd@denx.de> 54002Date: Thu May 1 21:30:16 2008 +0200 54003 54004 onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts 54005 54006 Onenand needs a version of memcpy() which performs 16 bit accesses 54007 only; make sure the name does not conflict with the standard 54008 function. 54009 54010 Signed-off-by: Wolfgang Denk <wd@denx.de> 54011 54012commit 12bc4e94251c369c529ffa505cf58b148c372f7f 54013Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54014Date: Wed Apr 30 22:38:17 2008 +0200 54015 54016 cmd_nand: fix warning: str2long ncompatible pointer type 54017 54018 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54019 54020commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd 54021Author: Timur Tabi <timur@freescale.com> 54022Date: Fri Apr 4 11:16:11 2008 -0500 54023 54024 Fix calculation of I2C clock for some 86xx chips 54025 54026 Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2. 54027 There is no pattern that can be used to determine which chips use which 54028 frequency, so the only way to determine is to look up the actual SOC 54029 designation and use the right value for that SOC. 54030 54031 Signed-off-by: Timur Tabi <timur@freescale.com> 54032 54033commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9 54034Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 54035Date: Wed Apr 30 12:11:19 2008 -0500 54036 54037 ColdFire: Fix ethernet hang issue for mcf547x_8x 54038 54039 The ethernet hang is caused by receiving buffer in DRAM is not 54040 yet ready due to access cycles require longer time in DRAM. 54041 Relocate DMA buffer descriptors from DRAM to internal SRAM. 54042 54043 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 54044 54045commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca 54046Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 54047Date: Wed Apr 30 12:10:47 2008 -0500 54048 54049 ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c 54050 54051 Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com> 54052 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 54053 54054commit b7166e05a513c0806b63b9dfb6f1d77645cede2a 54055Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 54056Date: Wed Apr 30 12:10:23 2008 -0500 54057 54058 ColdFire: Get information from the correct GCC 54059 54060 Signed-off-by: Kurt Mahan <kmahan@freescale.com> 54061 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 54062 54063commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9 54064Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com> 54065Date: Wed Apr 30 18:02:59 2008 +0200 54066 54067 Fix warning in env_nand.c if compiled for DaVinci Schmoogie 54068 54069 Fix warnings 54070 54071 nv_nand.c: In function 'saveenv': 54072 env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type 54073 env_nand.c: In function 'env_relocate_spec': 54074 env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type 54075 54076 if compiled for davinci_schmoogie_config. 54077 54078 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 54079 Ack by: Sergey Kubushyn <ksi@koi8.net> 54080 54081commit 33a4a70d48d622cc4950c60a84fec23b9421f23e 54082Author: Anatolij Gustschin <agust@denx.de> 54083Date: Wed Apr 30 13:34:40 2008 +0200 54084 54085 Fix warnings while compiling net/net.c for MPC8610HPCD board 54086 54087 MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS 54088 causing overriding default -Os option. New gcc (ver. 4.2.2) 54089 produces warnings while compiling net/net.c file with -O2 54090 option. The patch is an attempt to fix this. 54091 54092 Signed-off-by: Anatolij Gustschin <agust@denx.de> 54093 54094commit 58b575e575c25fdf8c88141e145db201f3092149 54095Author: Sascha Laue <Sascha.Laue@gmx.biz> 54096Date: Wed Apr 30 15:23:38 2008 +0200 54097 54098 lwmon5: fix offset error in sysmon0 POST 54099 54100 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com> 54101 Signed-off-by: Wolfgang Denk <wd@denx.de> 54102 54103commit e7419b243a373de4ee042f7d4f45f66de787240d 54104Author: Sascha Laue <Sascha.Laue@gmx.biz> 54105Date: Wed Apr 30 15:16:35 2008 +0200 54106 54107 lwmon5: fix manual merge error in POST 54108 54109 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com> 54110 54111commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a 54112Author: Wolfgang Denk <wd@denx.de> 54113Date: Wed Apr 30 17:46:26 2008 +0200 54114 54115 cmd_nand.c: fix another 'incompatible pointer type' warning. 54116 54117 Signed-off-by: Wolfgang Denk <wd@denx.de> 54118 54119commit de109d909707e2dfe806be5efc3cdb103b47c8ad 54120Author: Wolfgang Denk <wd@denx.de> 54121Date: Wed Apr 30 17:25:07 2008 +0200 54122 54123 Makefile: fix parallel builds 54124 54125 This problem shows up with parallel builds only; it results in 54126 somewhat cryptic error messages like 54127 54128 $ JOBS=-j6 MAKEALL netstar 54129 Configuring for netstar board... 54130 arm-linux-ld: cannot find -lgeneric 54131 make[1]: *** [eeprom.srec] Error 1 54132 54133 A few boards (like netstar and voiceblue) need some libraries for 54134 building; however, the board Makefile does not contain any such 54135 dependencies which may cause problems with parallel builds. Adding 54136 such dependencies is difficult as we would also have to provide build 54137 rules, which already exist in the respective library Makefiles. 54138 54139 To solve this, we make sure that all libraries get built before the 54140 board code. 54141 54142 Signed-off-by: Wolfgang Denk <wd@denx.de> 54143 54144commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f 54145Author: Stefan Roese <sr@denx.de> 54146Date: Wed Apr 30 14:51:36 2008 +0200 54147 54148 ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module 54149 54150 This patch changes the Canyonlands/Glacier fixed DDR2 controller setup 54151 used for NAND booting to match the values needed for the new 512MB 54152 DIMM modules shipped with the productions boards: 54153 54154 Crucial: CT6464AC667.8FB 54155 54156 Signed-off-by: Stefan Roese <sr@denx.de> 54157 54158commit ea9202a659dc75996facf1475f1866a19a9d3129 54159Author: Stefan Roese <sr@denx.de> 54160Date: Wed Apr 30 10:49:43 2008 +0200 54161 54162 ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c 54163 54164 This patch fixes a problem with DIMMs that have 8 banks. Now the 54165 MCIF0_MBxCF register will be setup correctly for this setup too. 54166 54167 This was noticed with the 512MB DIMM on Canyonlands/Glacier. 54168 54169 Signed-off-by: Stefan Roese <sr@denx.de> 54170 54171commit 76617299358ebba260ecc02d33e8e75d8d13dd3b 54172Author: Wolfgang Denk <wd@denx.de> 54173Date: Tue Apr 29 23:41:06 2008 +0200 54174 54175 Prepare v1.3.3-rc2, again. 54176 54177 Signed-off-by: Wolfgang Denk <wd@denx.de> 54178 54179commit b7fcc4c13993782342cf5cd20d237a6281648a0b 54180Author: Wolfgang Denk <wd@denx.de> 54181Date: Tue Apr 29 23:35:24 2008 +0200 54182 54183 Prepare v1.3.3-rc2 54184 54185 Signed-off-by: Wolfgang Denk <wd@denx.de> 54186 54187commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4 54188Author: Wolfgang Denk <wd@denx.de> 54189Date: Tue Apr 29 23:32:20 2008 +0200 54190 54191 common/env_nand.c: fix one more incompatible pointer type issue 54192 54193 Signed-off-by: Wolfgang Denk <wd@denx.de> 54194 54195commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f 54196Author: Wolfgang Denk <wd@denx.de> 54197Date: Tue Apr 29 21:33:08 2008 +0200 54198 54199 post/board/lwmon5/sysmon.c: fix manual merge error. 54200 54201 Signed-off-by: Wolfgang Denk <wd@denx.de> 54202 54203commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a 54204Author: Kumar Gala <galak@kernel.crashing.org> 54205Date: Tue Apr 29 12:54:59 2008 -0500 54206 54207 85xx: Add -mno-spe to e500/85xx builds 54208 54209 Newer gcc's might be configured to enable autovectorization by default. 54210 If we happen to build with one of those compilers we will get SPE 54211 instructions in random code. 54212 54213 -mno-spe disables the compiler for automatically generating SPE 54214 instructions without our knowledge. 54215 54216 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54217 54218commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5 54219Author: Kumar Gala <galak@kernel.crashing.org> 54220Date: Tue Apr 29 10:18:34 2008 -0500 54221 54222 Update .gitignore for zlib.h 54223 54224 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54225 54226commit 45239cf4152109caa925145ccd433529902df887 54227Author: Kumar Gala <galak@kernel.crashing.org> 54228Date: Tue Apr 29 10:27:08 2008 -0500 54229 54230 85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs 54231 54232 All the 85xx and 86xx UM describe the register as timing_cfg_3 54233 not as ext_refrec. 54234 54235 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54236 54237commit ef7d30b14394e4c4a153118f5845760cadada02a 54238Author: Kumar Gala <galak@kernel.crashing.org> 54239Date: Tue Apr 29 10:28:34 2008 -0500 54240 54241 85xx/86xx: Rename DDR init address and init extended address register 54242 54243 Rename init_addr and init_ext_addr to match the docs between 54244 85xx and 86xx. Both now use 'init_addr' and 'init_ext_addr'. 54245 54246 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54247 54248commit cf6cc014270549684873a5972d2595052c468cb6 54249Author: Kumar Gala <galak@kernel.crashing.org> 54250Date: Mon Apr 28 02:24:04 2008 -0500 54251 54252 85xx: Additional fixes and cleanup of MP code 54253 54254 * adjust __spin_table alignment to match ePAPR v0.94 spec 54255 * loop over all cpus when determing who is up. This fixes an issue if 54256 the "boot cpu" isn't core0. The "boot cpu" will already be in the 54257 cpu_up_mask so there is no harm 54258 * Added some protection in the code to ensure proper behavior. These 54259 changes are explicitly needed but don't hurt: 54260 - Added eieio to ensure the "hot word" of the table is written after 54261 all other table updates have occurred. 54262 - Added isync to ensure we don't prefetch loading of table entries 54263 until we a released 54264 54265 These issues we raised by Dave Liu. 54266 54267 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54268 54269commit b2d527a8b9fb50afccbaf79b5540952585cdc760 54270Author: Yuri Tikhonov <yur@emcraft.com> 54271Date: Tue Apr 29 15:06:41 2008 +0200 54272 54273 lwmon5: minor clean-up to include/configs/lwmon5.h 54274 54275 LWMON5 DSPIC POST uses the watch-dog scratch register. So, make 54276 the CFG_DSPIC_TEST_ADDR definition more readable. 54277 54278 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 54279 54280commit f4c4d21a885ccc222fd0acdf653b683249e85117 54281Author: Stefan Roese <sr@denx.de> 54282Date: Tue Apr 29 16:08:05 2008 +0200 54283 54284 ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time 54285 54286 Signed-off-by: Stefan Roese <sr@denx.de> 54287 54288commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8 54289Author: Yuri Tikhonov <yur@emcraft.com> 54290Date: Tue Apr 29 13:32:45 2008 +0200 54291 54292 ppc flush_cache: add watch-dog triggering into the loops. 54293 54294 Some boards (e.g. lwmon5) need rather a frequent watch-dog 54295 kicking. Since the time it takes for the flush_cache() function 54296 to complete its job depends on the size of data being flushed, one 54297 may encounter watch-dog resets on such boards when, for example, 54298 download big files over ethernet. 54299 54300 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 54301 54302commit cab99d6f3281ab6784feccf98b9b425daa58418a 54303Author: Stefan Roese <sr@denx.de> 54304Date: Tue Apr 29 14:44:54 2008 +0200 54305 54306 ppc4xx: Fix compilation warning in denali_spd_ddr2.c 54307 54308 Signed-off-by: Stefan Roese <sr@denx.de> 54309 54310commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70 54311Author: Stefan Roese <sr@denx.de> 54312Date: Tue Apr 29 14:12:07 2008 +0200 54313 54314 ppc4xx: Fix Katmai CFG_MONITOR_LEN 54315 54316 Signed-off-by: Stefan Roese <sr@denx.de> 54317 54318commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7 54319Author: Stefan Roese <sr@denx.de> 54320Date: Tue Apr 29 13:57:07 2008 +0200 54321 54322 ppc4xx: Complete remove bogus dflush() 54323 54324 Since the current dflush() implementation is know to have some problems 54325 (as seem on lwmon5 ECC init) this patch removes it completely and replaces 54326 it by using clean_dcache_range(). 54327 54328 Tested on Katmai with ECC DIMM. 54329 54330 Signed-off-by: Stefan Roese <sr@denx.de> 54331 54332commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc 54333Author: Stefan Roese <sr@denx.de> 54334Date: Tue Apr 29 13:36:51 2008 +0200 54335 54336 ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range() 54337 54338 As it seems the "old" ECC initialization routine by using dflush() didn't 54339 write all lines in the dcache back to memory on lwmon5. This could lead 54340 to ECC error upon Linux booting. This patch changes the program_ecc() 54341 routine to now use clean_dcache_range() instead of dflush(). 54342 clean_dcache_range() uses dcbst which is exactly what we want in this 54343 case. 54344 54345 Since dflush() is known is cause problems, this routine will be 54346 removed completely and replaced by clean_dcache_range() with an 54347 additional patch. 54348 54349 Signed-off-by: Stefan Roese <sr@denx.de> 54350 54351commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757 54352Author: Yuri Tikhonov <yur@emcraft.com> 54353Date: Mon Apr 28 18:19:34 2008 +0200 54354 54355 POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs. 54356 54357 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 54358 54359commit eea5a743a2193ef2a05b9bc6dc447ba241416f35 54360Author: Markus Brunner <super.firetwister@googlemail.com> 54361Date: Mon Apr 28 08:47:47 2008 +0200 54362 54363 ppc4xx: Fixup ebc clock in FDT for 405GP/EP 54364 54365 On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb 54366 and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc 54367 doesn't exist. 54368 54369 Signed-off-by: Markus Brunner <super.firetwister@gmail.com> 54370 54371commit 2ef7503a593c77a80c2a054011970227c4b62774 54372Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54373Date: Thu Apr 24 07:57:17 2008 +0200 54374 54375 NE2000: Fix regresssion introduced by e710185aae90 on non AX88796 54376 54377 Move non-inlied functions into specific drivers file 54378 Set get_prom as weak 54379 54380 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54381 Signed-off-by: Vlad Lungu <vlad@comsys.ro> 54382 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 54383 54384commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b 54385Author: Guennadi Liakhovetski <lg@denx.de> 54386Date: Thu Apr 3 17:04:19 2008 +0200 54387 54388 net: make ARP timeout configurable 54389 54390 Currently the timeout waiting for an ARP reply is hard set to 5 seconds. 54391 On i.MX31ADS due to a hardware "strangeness" up to four first IP packets 54392 to the boards get lost, which typically are ARP replies. By configuring 54393 the timeout to a lower value we significantly improve the first network 54394 transfer time on this board. The timeout is specified in milliseconds, 54395 later internally it is converted to deciseconds, because it has to be 54396 converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on 54397 different boards. 54398 54399 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 54400 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 54401 54402commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1 54403Author: Guennadi Liakhovetski <lg@denx.de> 54404Date: Thu Apr 3 13:36:18 2008 +0200 54405 54406 minor cs8900 driver clean up 54407 54408 Remove a redundant register definition, clean up some coding style 54409 violations. 54410 54411 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 54412 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 54413 54414commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10 54415Author: Wolfgang Denk <wd@denx.de> 54416Date: Mon Apr 28 22:01:04 2008 +0200 54417 54418 jffs2_1pass.c: fix incompatible pointer type warning 54419 54420 Signed-off-by: Wolfgang Denk <wd@denx.de> 54421 54422commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9 54423Author: Sascha Laue <Sascha.Laue@gmx.biz> 54424Date: Tue Apr 1 10:10:18 2008 +0200 54425 54426 lwmon5: update dsPIC POST spezification 54427 54428 The specification for the lwmon5 board dsPIC POST got changed. 54429 Also add defines for the temperatures and voltages. 54430 54431 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com> 54432 54433commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7 54434Author: Sascha Laue <Sascha.Laue@gmx.biz> 54435Date: Tue Apr 1 15:13:03 2008 +0200 54436 54437 Fix watchdog POST for lwmon5 54438 54439 If the hardware watchdog detects a voltage error, the watchdog sets 54440 GPIO62 to low. The watchdog POST has to detect this low level. 54441 54442 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i> 54443 Signed-off-by: Wolfgang Denk <wd@denx.de> 54444 54445commit dd5748bcd669f46aeb6686c1b341323843738ccc 54446Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 54447Date: Mon Apr 28 14:37:14 2008 +0200 54448 54449 rtl8169: fix compiler warnings 54450 54451 Fix multiple compiler warnings related to argument type mismatch. 54452 54453 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 54454 54455commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1 54456Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 54457Date: Mon Apr 28 14:36:06 2008 +0200 54458 54459 IDE: fix compiler warnings 54460 54461 The IDE driver can use 32-bit addresses in LBA mode, in which case it 54462 spits multiple warnings during compilation. Fix them. 54463 54464 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 54465 54466commit db9084de28c46ac81c8f681722cb0d7411be4d7f 54467Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 54468Date: Mon Apr 28 14:35:57 2008 +0200 54469 54470 LinkStation: fix compiler warning, add a maintainer 54471 54472 out_8 wants a pointer to an unsigned as the first argument. Add a 54473 maintainer for Linkstation boards. 54474 54475 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 54476 54477commit c71abba3cb67b063f789f17abf6c7447727c0cd5 54478Author: Wolfgang Denk <wd@denx.de> 54479Date: Mon Apr 28 14:55:12 2008 +0200 54480 54481 cmd_nand.c: fix "differ in signedness" problem 54482 54483 Signed-off-by: Wolfgang Denk <wd@denx.de> 54484 54485commit f2c288a35341ad02ac03b1563d786763c9c8f159 54486Author: Wolfgang Denk <wd@denx.de> 54487Date: Mon Apr 28 12:48:47 2008 +0200 54488 54489 pcnet.c: fix a merge issue 54490 54491 Signed-off-by: Wolfgang Denk <wd@denx.de> 54492 54493commit 4ca79f477ebd25a6872e6196d80e2f5eff441376 54494Author: Wolfgang Denk <wd@denx.de> 54495Date: Mon Apr 28 12:08:18 2008 +0200 54496 54497 NAND: fix some strict-aliasing compiler warnings 54498 54499 Signed-off-by: Wolfgang Denk <wd@denx.de> 54500 54501commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115 54502Author: Stefan Roese <sr@denx.de> 54503Date: Mon Apr 28 11:37:14 2008 +0200 54504 54505 ppc4xx: Fix compile warning of hcu4 board 54506 54507 Signed-off-by: Stefan Roese <sr@denx.de> 54508 54509commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1 54510Author: Wolfgang Denk <wd@denx.de> 54511Date: Mon Apr 28 11:31:23 2008 +0200 54512 54513 MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom' 54514 54515 Signed-off-by: Wolfgang Denk <wd@denx.de> 54516 54517commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59 54518Author: Guennadi Liakhovetski <lg@denx.de> 54519Date: Mon Apr 28 00:25:32 2008 +0200 54520 54521 mx31ads: fix loadaddr environment variable define 54522 54523 Arithmetic expressions do not get evaluated under stringification. Remove 54524 default network configuration, add DHCP command support. Thanks to Felix 54525 Radensky for reporting. 54526 54527 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 54528 54529commit 144eec777ac07bcb12bd38245a5a289f694a7f98 54530Author: Wolfgang Denk <wd@denx.de> 54531Date: Mon Apr 28 10:55:24 2008 +0200 54532 54533 katmai: fix section overlap problem 54534 54535 Since we didn't want to remove features from the configuration, we 54536 decided to increase the U-Boot image size (add one flash sector). 54537 54538 Also changed the default environment definition to make it 54539 independent of such changes. 54540 54541 Signed-off-by: Wolfgang Denk <wd@denx.de> 54542 Acked-by: Stefan Roese <sr@denx.de> 54543 54544commit 941d696d25624e3cc65ebf924199541acf52d74e 54545Author: Wolfgang Denk <wd@denx.de> 54546Date: Mon Apr 28 10:55:24 2008 +0200 54547 54548 katmai: fix section overlap problem 54549 54550 Since we didn't want to remove features from the configuration, we 54551 decided to increase the U-Boot image size (add one flash sector). 54552 54553 Also changed the default environment definition to make it 54554 independent of such changes. 54555 54556 Signed-off-by: Wolfgang Denk <wd@denx.de> 54557 Acked-by: Stefan Roese <sr@denx.de> 54558 54559commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466 54560Author: Kumar Gala <galak@kernel.crashing.org> 54561Date: Sat Apr 26 11:44:44 2008 -0500 54562 54563 post: Fix building with O= 54564 54565 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54566 54567commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c 54568Author: Wolfgang Denk <wd@denx.de> 54569Date: Sat Apr 26 01:55:00 2008 +0200 54570 54571 Prepare v1.3.3-rc1 54572 54573 Signed-off-by: Wolfgang Denk <wd@denx.de> 54574 54575commit 19cf2ec90d8ce52da60c1693693c4048cb810967 54576Author: Wolfgang Denk <wd@denx.de> 54577Date: Sat Apr 26 01:25:39 2008 +0200 54578 54579 post/Makefile: make sure to use the correct flags 54580 54581 ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a" 54582 messages to be printed. 54583 54584 Signed-off-by: Wolfgang Denk <wd@denx.de> 54585 54586commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2 54587Author: Wolfgang Denk <wd@denx.de> 54588Date: Sat Apr 26 00:34:42 2008 +0200 54589 54590 Coding Style cleanup, update CHANGELOG 54591 54592 Signed-off-by: Wolfgang Denk <wd@denx.de> 54593 54594commit f9204e15173834ff8d123e36279ce49c3c6c74fc 54595Author: Magnus Lilja <lilja.magnus@gmail.com> 54596Date: Sun Apr 20 10:38:12 2008 +0200 54597 54598 i.MX31: Enable SPI and MC13783/RTC support for the Litekit board 54599 54600 This patch enables SPI and MC13783/RTC support for the Litekit board. 54601 54602 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 54603 54604commit f97abbfb47d9e407354e157cae3f6369e460cd37 54605Author: Ed Swarthout <Ed.Swarthout@freescale.com> 54606Date: Fri Apr 25 01:08:32 2008 -0500 54607 54608 MPC8544DS: decode pcie3 end-point configuration correctly. 54609 54610 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 54611 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54612 54613commit 292188e15523c165c4269403fdcd33c26d89176e 54614Author: Roy Zang <tie-fei.zang@freescale.com> 54615Date: Fri Apr 25 00:55:09 2008 -0500 54616 54617 MPC8544DS: Removes the unknown flash message information 54618 54619 This patch removes the unknown flash message information: 54620 '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB' 54621 This unknown flash message is caused by PromJet. 54622 Some of the board user is unhappy with this information. 54623 54624 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 54625 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54626 54627commit b2115757403beef0ac6bc2c6c3b24f31256a75d2 54628Author: Kim Phillips <kim.phillips@freescale.com> 54629Date: Thu Apr 24 14:07:38 2008 -0500 54630 54631 mpc83xx: bump loadaddr over fdtaddr to 0x500000 54632 54633 this seems as a good compromise between human memory, typing, 54634 and last but not least, to accommodate for current and future kernel bloat. 54635 54636 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 54637 Acked-by: Dave Liu <daveliu@freescale.com> 54638 54639commit be5a7190265a34d968578ff266549c60f6f57654 54640Author: Dave Liu <r63238@freescale.com> 54641Date: Tue Apr 15 13:12:23 2008 +0800 54642 54643 mpc83xx: clean up the readme for 83xx boards 54644 54645 1. correct the typo 54646 2. correct the memory map for 837xerdb board 54647 54648 Signed-off-by: Dave Liu <daveliu@freescale.com> 54649 54650commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff 54651Author: Dave Liu <r63238@freescale.com> 54652Date: Tue Apr 15 13:11:11 2008 +0800 54653 54654 mpc83xx: remove the unused CPM's stuff 54655 54656 The MPC83xx family never have CPM block, so remove it from 83xx. 54657 54658 Signed-off-by: Dave Liu <daveliu@freescale.com> 54659 54660commit c63ad6325a8ac0097a54b418a3288926b0484b18 54661Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 54662Date: Fri Apr 18 16:29:40 2008 +0200 54663 54664 cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST 54665 54666 This patch adds a configurable flash auto protection list that can be used 54667 to make U-Boot protect flash regions in flash_init(). 54668 54669 The idea has been discussed on the u-boot mailing list starting 54670 on Nov 18th, 2007. 54671 54672 Even this patch brings a new feature it is used as a bugfix for 4xx 54673 platforms where flash_init() does not completely protect the 54674 monitor's flash range in all situations. 54675 54676 U-Boot protects the flash range from CFG_MONITOR_BASE to 54677 (CFG_MONITOR_BASE + monitor_flash_len - 1) by default. This does not 54678 include the reset vector at 0xfffffffc. 54679 54680 Example: 54681 #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}} 54682 54683 This config option will auto protect the last 512k of flash that 54684 contains the bootloader on board like APC405 and PMC405. 54685 54686 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 54687 54688commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848 54689Author: Stefan Roese <sr@denx.de> 54690Date: Fri Apr 25 13:59:03 2008 +0200 54691 54692 ppc4xx: Remove double defines in lwmon5.h 54693 54694 introduced with latest lwmon5/POST merge 54695 54696 Signed-off-by: Stefan Roese <sr@denx.de> 54697 54698commit 7590378fb9c686709492ceb142825cd058255956 54699Author: Bartlomiej Sieka <tur@semihalf.com> 54700Date: Fri Apr 25 13:54:02 2008 +0200 54701 54702 Use watchdog-aware functions when calculating hashes of images - take two 54703 54704 Some files didn't get updated properly with the "Use watchdog-aware 54705 functions when calculating hashes of images" commit, this commit 54706 fixes this. 54707 54708 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 54709 Signed-off-by: Wolfgang Denk <wd@denx.de> 54710 54711commit 8e048c438e20ec89b49da5f085f8f756eba6e587 54712Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 54713Date: Fri Apr 25 12:01:39 2008 +0200 54714 54715 ppc4xx: Add bootcount limit handling for APC405 boards 54716 54717 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 54718 54719commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe 54720Author: Bartlomiej Sieka <tur@semihalf.com> 54721Date: Fri Apr 25 12:10:09 2008 +0200 54722 54723 Use watchdog-aware functions when calculating hashes of images 54724 54725 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 54726 54727commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3 54728Author: Wolfgang Denk <wd@denx.de> 54729Date: Fri Apr 25 12:44:08 2008 +0200 54730 54731 USB: fix more GCC 4.2.x aliasing warnings 54732 54733 Signed-off-by: Wolfgang Denk <wd@denx.de> 54734 Acked-by: Markus Klotzbuecher <mk@denx.de> 54735 54736commit aff4f86448f6586930f0a3be7fc4b0ddcf450980 54737Author: Wolfgang Denk <wd@denx.de> 54738Date: Fri Apr 25 12:41:53 2008 +0200 54739 54740 lib_generic/crc32.c: add missing #include <watchdog.h> 54741 54742 Signed-off-by: Wolfgang Denk <wd@denx.de> 54743 54744commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef 54745Author: Wolfgang Denk <wd@denx.de> 54746Date: Fri Apr 25 11:52:21 2008 +0200 54747 54748 lib_generic/crc32.c: fix compile problem 54749 54750 Signed-off-by: Wolfgang Denk <wd@denx.de> 54751 54752commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b 54753Author: Stefan Roese <sr@denx.de> 54754Date: Tue Apr 22 12:20:32 2008 +0200 54755 54756 ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt 54757 54758 The PCIe root-complex/endpoint setup as configured via the "pcie_mode" 54759 environment variable will now get passed to the Linux kernel by setting 54760 the device_type property of the PCIe device tree node. For normal root- 54761 complex configuration it will keep its defaults value of "pci" and for 54762 endpoint configuration it will get changed to "pci-endpoint". 54763 54764 Signed-off-by: Stefan Roese <sr@denx.de> 54765 54766commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7 54767Author: Yuri Tikhonov <yur@emcraft.com> 54768Date: Thu Apr 24 10:30:53 2008 +0200 54769 54770 lwmon5: watchdog POST fix 54771 54772 Use the GPT0_MASKx registers as the temporary storage for watch-dog 54773 timer POST test instead of GPT0_COMPx. The latter 54774 (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header. 54775 54776 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 54777 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 54778 54779commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9 54780Author: Kim Phillips <kim.phillips@freescale.com> 54781Date: Mon Apr 21 18:10:14 2008 -0500 54782 54783 lib_ppc: Revert "Make MPC83xx one step closer to full relocation." 54784 54785 This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has 54786 proven problematic getting right from the start at least on 83xx and 54787 4xx. 54788 54789 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 54790 54791commit a99715b8ebfc500f3f40e01b36b64d473938443d 54792Author: Detlev Zundel <dzu@denx.de> 54793Date: Fri Apr 18 14:50:01 2008 +0200 54794 54795 Realining some header definitions. 54796 54797 Signed-off-by: Detlev Zundel <dzu@denx.de> 54798 54799commit 4acbc6c7f993cae409c424615415a3e76820f13d 54800Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54801Date: Thu Apr 24 07:57:16 2008 +0200 54802 54803 NE2000: coding style cleanup 54804 54805 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54806 54807commit b4aff1ffaf7120032c653357c007faa14f74d29d 54808Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54809Date: Wed Apr 23 00:11:47 2008 +0900 54810 54811 qemu-mips.h: Add CFI support 54812 54813 CONFIG_ENV_OVERWRITE is also added. 54814 54815 This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD. 54816 54817 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54818 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 54819 54820commit 4a1f11b45a82908e5b0df602d703082413a6b7ed 54821Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 54822Date: Tue Apr 22 22:47:27 2008 +0900 54823 54824 doc/README.mips: Add MIPS notes 54825 54826 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 54827 54828commit 215b01bba8bc662d35f72b084700b192d367dfb4 54829Author: Bartlomiej Sieka <tur@semihalf.com> 54830Date: Tue Apr 22 12:27:56 2008 +0200 54831 54832 Add support for calculating hashes with watchdog triggering 54833 54834 Implement watchodg-aware variants of hash calculation functions: 54835 - crc32_wd() 54836 - md5_wd() 54837 - sha1_csum_wd() 54838 The above functions calculate the hash of the input buffer in chunks, 54839 triggering the watchdog after processing each chunk. The chunk size 54840 is given as a function call parameter. 54841 54842 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 54843 54844commit 8875e3abab986df930167ce5c1ac4f95dcacc81c 54845Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 54846Date: Wed Apr 23 11:02:12 2008 +0900 54847 54848 qemu-mips: Cleanup whitespace, indentation, etc. 54849 54850 No functional change. 54851 54852 This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD. 54853 Then I re-created from scratch, and changed more lines than the original. 54854 54855 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54856 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 54857 54858commit 386563197e3a50b0e97ad9aae87f57d9aab909ab 54859Author: Vlad Lungu <vlad@comsys.ro> 54860Date: Wed Oct 10 23:02:09 2007 +0300 54861 54862 Fixed pcnet io_base 54863 54864 Bus and phys address are not always the same 54865 54866 Signed-off-by: Vlad Lungu <vlad@comsys.ro> 54867 54868commit 11ea26fd1cb63c91403fe04a6eea975cd418603f 54869Author: Wolfgang Denk <wd@denx.de> 54870Date: Thu Apr 24 23:44:26 2008 +0200 54871 54872 drivers/net/pcnet.c: Coding Style cleanup. 54873 54874 Signed-off-by: Wolfgang Denk <wd@denx.de> 54875 54876commit 899ef7b84578b7cafadfd78488c2fd2aac93f636 54877Author: Vlad Lungu <vlad@comsys.ro> 54878Date: Wed Oct 10 23:04:23 2007 +0300 54879 54880 Added Am79C970A chip id to pcnet 54881 54882 Signed-off-by: Vlad Lungu <vlad@comsys.ro> 54883 54884commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5 54885Author: Magnus Lilja <lilja.magnus@gmail.com> 54886Date: Sun Apr 20 10:35:03 2008 +0200 54887 54888 i.MX31: Fix architecture numbers for ADS and Litekit boards 54889 54890 Correct the Linux architecture number for i.MX31 Litekit and ADS boards. 54891 54892 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 54893 54894commit e7ae84d6c7288790e88639f57cb60daf89c11369 54895Author: Magnus Lilja <lilja.magnus@gmail.com> 54896Date: Sun Apr 20 10:36:36 2008 +0200 54897 54898 i.MX31: Use symbolic names for Litekit membases. 54899 54900 Use symbolic names instead of hard coded addresses for Litekit membases. 54901 54902 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 54903 54904commit 2ef1d9b6030d02f576b1bcd9fec948e602522012 54905Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54906Date: Sat Apr 19 17:59:20 2008 +0200 54907 54908 Fix show_boot_progress prototype 54909 54910 in commit fad634071 "make show_boot_progress () weak." 54911 show_boot_progress is supposed to be declared as weak but declared as 54912 inline instead. 54913 54914 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54915 54916commit edbed247a14d70b94958010f736621212285de91 54917Author: Bartlomiej Sieka <tur@semihalf.com> 54918Date: Fri Apr 18 12:39:23 2008 +0200 54919 54920 Memory footprint optimizations 54921 54922 As suggested by Wolfgang Denk: 54923 - image printing functions: 54924 - remove wrappers 54925 - remove indentation prefix from functions' signatures 54926 - merge getenv_verify and getenv_autostart into one parametrized function 54927 54928 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 54929 54930commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8 54931Author: Guennadi Liakhovetski <lg@denx.de> 54932Date: Tue Apr 15 13:33:11 2008 +0200 54933 54934 MX31ADS environment variable update, spi and rtc support 54935 54936 Update MX31ADS default environment to better match the flash layout and 54937 the memory map, support SPI and RTC. 54938 54939 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 54940 54941commit 022f12163595b9a55380c6d77c3119b93d6a9a4b 54942Author: Kumar Gala <galak@kernel.crashing.org> 54943Date: Mon Apr 21 09:28:36 2008 -0500 54944 54945 85xx: Round up frequency calculations to get reasonable output 54946 54947 eg. because of rounding error we can get 799Mhz instead of 800Mhz. 54948 54949 Introduced DIV_ROUND_UP and roundup taken from linux kernel. 54950 54951 Signed-off-by: Dejan Minic <minic@freescale.com> 54952 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com> 54953 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54954 Acked-by: Andy Fleming <afleming@freescale.com> 54955 54956commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6 54957Author: Kumar Gala <galak@kernel.crashing.org> 54958Date: Wed Apr 23 16:58:04 2008 -0500 54959 54960 fsl_pci: Only modify registers if we have them 54961 54962 pme_msg_det exists only on PCIe controllers only set it if we are a "bridge". 54963 54964 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 54965 54966commit 83fe32334337def160b302aa9d152d808bfcc68e 54967Author: Markus Klotzbücher <mk@denx.de> 54968Date: Wed Apr 23 10:57:33 2008 +0200 54969 54970 USB: remove a cpu bug workaround for an unsupported architecture. 54971 54972 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 54973 54974commit f957576cb53e6cfab412709cfc8db1afd39d21c3 54975Author: Markus Klotzbücher <mk@denx.de> 54976Date: Wed Apr 23 10:53:23 2008 +0200 54977 54978 USB: fix those pesky aliasing warnings issued by gcc-4.2 54979 54980 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 54981 Signed-off-by: Detlev Zundel <dzu@denx.de> 54982 54983commit 89cdab788f3716b335fefb60b836ebcf975aceab 54984Author: Mike Frysinger <vapier@gentoo.org> 54985Date: Mon Mar 31 11:02:01 2008 -0400 54986 54987 crc32: use uint32_t rather than unsigned long 54988 54989 The envcrc.c does sizeof(unsigned long) when calculating the crc, but 54990 this is done with the build toolchain instead of the target tool 54991 chain, so if the build is a 64bit system but the target is 32bits, 54992 the size will obviously be wrong. This converts all unsigned long 54993 stuff related to crc32 to uint32_t types. Compile tested only: output 54994 of ./tools/envcrc when run on a 32bit build system matches that of a 54995 64bit build system. 54996 54997 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 54998 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 54999 55000commit 80c40b765b3642ddb9f3392b7898715aab44a29c
55001Author: Dirk Behme <dirk.behme@googlemail.com> 55002Date: Wed Mar 26 09:53:29 2008 +0100 55003 55004 ARM: Davinci: Fix DM644x timer overflow handling and cleanup 55005 55006 Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code. 55007 55008 Changes: 55009 55010 - Remove *_masked() functions as noted by Wolfgang 55011 55012 - Adapt register naming to recent TI spec (sprue26, March 2007) 55013 55014 - Fix reset_timer() handling 55015 55016 - 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. 55017 55018 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179 55019 55020 - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV). 55021 55022 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing! 55023 55024 Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware. 55025 55026 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 55027 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> 55028 55029commit a6e6fc610e39dec41b79680413d4ed38145bd3c8 55030Author: Sergei Poselenov <sposelenov@emcraft.com> 55031Date: Wed Apr 9 16:09:41 2008 +0200 55032 55033 Added watchdog triggering calls in the "mtest" test function. 55034 55035 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 55036 55037commit d32a874b9b4c1e949ee38be7790f6bf6d6143451 55038Author: Yuri Tikhonov <yur@emcraft.com> 55039Date: Sun Apr 6 19:19:14 2008 +0200 55040 55041 lwmon5 watchdog: limit trigger rate 55042 55043 Limit the rate of h/w watch-dog triggering on the LWMON5 board by 55044 the CONFIG_WD_MAX_RATE value. 55045 55046 Note that an earlier version of this patch which used microseconds 55047 instead of ticks dis not work. The problem was that we used 55048 usec2ticks() to convert microseconds into ticks. usec2ticks() uses 55049 get_tbclk(), which in turn calls get_sys_info(). It turns out that 55050 this function does a lot of prolonged operations (like divisions) 55051 which take too much time so we do not trigger the watchdog in time, 55052 and it resets the system. 55053 55054 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 55055 55056commit 2d2b994a30bb100774dc747ae9865b7f95285a88 55057Author: Yuri Tikhonov <yur@emcraft.com> 55058Date: Mon Mar 31 10:51:37 2008 +0200 55059 55060 POST: move CONFIG_POST to Makefiles 55061 55062 Introduce the new logical option CONFIG_HAS_POST which is set when the 55063 platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles 55064 to determine should the POST libs be compiled for the selected target 55065 platform, or not. 55066 55067 To avoid breaking u-boot linking process, the empty post/libpost.a file is 55068 created for platforms which do not have POSTs. 55069 55070 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 55071 Signed-off-by: Wolfgang Denk <wd@denx.de> 55072 55073commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1 55074Author: Yuri Tikhonov <yur@emcraft.com> 55075Date: Mon Mar 31 10:49:34 2008 +0200 55076 55077 POST: preparations for moving CONFIG_POST to Makefiles 55078 55079 Remove CONFIG_POST ifdefs from the post/ source files. 55080 55081 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 55082 Signed-off-by: Wolfgang Denk <wd@denx.de> 55083 55084commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e 55085Author: Stefan Roese <sr@denx.de> 55086Date: Tue Apr 22 14:14:20 2008 +0200 55087 55088 ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage 55089 55090 This patch fixes the Canyonlands and Glacier default environment to better 55091 fit to the arch/powerpc device-tree kernels. The variables dealing with 55092 arch/ppc booting are removed, since these boards are supported only in 55093 arch/powerpc. Glacier uses the same config file as Canyonlands. 55094 55095 Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU. 55096 55097 Signed-off-by: Stefan Roese <sr@denx.de> 55098 55099commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b 55100Author: Stefan Roese <sr@denx.de> 55101Date: Tue Apr 22 14:06:42 2008 +0200 55102 55103 ppc4xx: Small coding style cleanup for the latest esd patches 55104 55105 Signed-off-by: Stefan Roese <sr@denx.de> 55106 55107commit 79941d63bc03aed8c48d7602f18217cc200ee931 55108Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55109Date: Mon Apr 21 18:01:07 2008 +0200 55110 55111 ppc4xx: Update CPU strapping for PMC440 boards 55112 55113 This patch removes the temporary 'test' strapping option 55114 of the sbe command. The '667' strapping option now uses 55115 a PLB/PCI divider of 3. 55116 55117 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55118 55119commit f00cf3193a6635355b121e90debb2f54e777e7da 55120Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55121Date: Mon Apr 21 14:42:21 2008 +0200 55122 55123 ppc4xx: Remove unused APC405 strataflash driver 55124 55125 The APC405 board support has been migrated to use the common 55126 CFI flash driver. 55127 55128 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55129 55130commit 1c686676a86473bbd92151f0544e109413f6ed06 55131Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55132Date: Mon Apr 21 14:42:17 2008 +0200 55133 55134 ppc4xx: Update APC405 configuration 55135 55136 - enable esd's auto_update mechanism 55137 - support alternative flash layout on rev. 1.8 boards 55138 - update default environment 55139 - use common CFI flash driver 55140 - coding style cleanup 55141 55142 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55143 55144commit 0b9872515a521bf7866dc24b85ddce708e60d702 55145Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55146Date: Mon Apr 21 14:42:11 2008 +0200 55147 55148 ppc4xx: Update APC405 board support 55149 55150 - enable esd's auto_update mechanism 55151 - fix LCD support on latest hardware revision (uses other LCD controller) 55152 - support alternative flash layout on rev. 1.8 boards 55153 - coding style cleanup 55154 55155 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55156 55157commit 83975d02e225e231960784972e7820a8b303756b 55158Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55159Date: Mon Apr 21 14:42:06 2008 +0200 55160 55161 ppc4xx: update esd's common auto_update code for 405 boards 55162 55163 - Coding style cleanup (long lines) 55164 - improve handling of protected flash regions 55165 - remove dead code 55166 55167 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55168 55169commit b9233fe5d59cb25d975071616bd1035d6f4c2285 55170Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55171Date: Mon Apr 21 14:41:59 2008 +0200 55172 55173 ppc4xx: Update esd's common LCD code for 405 boards 55174 55175 - Coding style cleanup (long lines) 55176 - Add s1d13505 support 55177 - Make some functions return a result code instead of void 55178 55179 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55180 55181commit dea68189424c3f1242427a8146a3861bf093173c 55182Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55183Date: Mon Apr 21 11:36:55 2008 +0200 55184 55185 ppc4xx: Update FPGA image for APC405 boards 55186 55187 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55188 55189commit 2a05b152924acfcec3b037693329e517e6d3578f 55190Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55191Date: Mon Apr 21 11:36:08 2008 +0200 55192 55193 ppc4xx: Update bootlogo for APC405 boards 55194 55195 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55196 55197commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c 55198Author: Stefan Roese <sr@denx.de> 55199Date: Fri Apr 18 16:41:31 2008 +0200 55200 55201 ppc4xx: Add dcache_enable() for 440 55202 55203 dcache_enable() was missing for 440 and the patch 55204 017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf 55205 "] behavior uses this function. 55206 55207 Note: Currently the cache handling functions like 55208 d/icache_disable/enable() are NOP's on 440. This may be changed in the 55209 future. 55210 55211 Signed-off-by: Stefan Roese <sr@denx.de> 55212 55213commit a49e0d177a0749614b316ec847fb623f09c82c07 55214Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55215Date: Mon Apr 21 11:19:04 2008 +0200 55216 55217 video: Add missing free for logo memory 55218 55219 This patch adds two missing free()s. 55220 55221 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55222 55223commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42 55224Author: Troy Kisky <troy.kisky@boundarydevices.com> 55225Date: Mon Sep 24 16:41:43 2007 -0700 55226 55227 PATCH - Fix oob data copied into supplied buffer 55228 55229 This patch correctly sets the oobavail variable 55230 and fixes a bug where the oob data was not valid when 55231 there where multiple groups in oobfree. 55232 55233 First segment fixes a typo 55234 Second segment fixes a bug where oob data may be copied incorrectly. 55235 Third segment adds an error message when exiting due to write protect. 55236 Forth segment fixes a bug where oobavail may be set incorrectly. 55237 55238 Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com> 55239 55240commit e1d09680f64b452adde89ed9fe28a77c56bedc9a 55241Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55242Date: Fri Apr 18 17:24:32 2008 +0200 55243 55244 ppc4xx: Fix sys_get_info() for 405GP(r) 55245 55246 This patch assigns the correct EBC clock for 405GP(r) CPUs 55247 to PPC4xx_SYS_INFO structure. Without this patch U-Boot 55248 uses an uninitialized EBC clock in its startup message. 55249 55250 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 55251 55252commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7 55253Author: Wolfgang Denk <wd@denx.de> 55254Date: Sun Apr 20 15:39:38 2008 -0700 55255 55256 Makefile: remove nand_spl/System.map when cleaning up. 55257 55258commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b 55259Author: Wolfgang Denk <wd@denx.de> 55260Date: Sun Apr 20 15:35:52 2008 -0700 55261 55262 MAKEALL: sort entries / lists. 55263 55264 Signed-off-by: Wolfgang Denk <wd@denx.de> 55265 55266commit 0878af169b181868a105b5c33f3a6423e2c9fd60 55267Author: Kumar Gala <galak@kernel.crashing.org> 55268Date: Fri Apr 18 11:29:01 2008 -0500 55269 55270 85xx: Fix size of cpu-release-addr property 55271 55272 The cpu-release-addr is defined as always being a 64-bit quanity regardless 55273 if we are running on a 32-bit or 64-bit machine. 55274 55275commit 88353a985109562a639b2f8a0c90d77011bfe374 55276Author: Timur Tabi <timur@freescale.com> 55277Date: Fri Apr 4 11:15:58 2008 -0500 55278 55279 Fix calculation of I2C clock for some 85xx chips 55280 55281 Some 85xx chips use CCB as the base clock for the I2C. Some use CCB/2, and 55282 some use CCB/3. There is no pattern that can be used to determine which 55283 chips use which frequency, so the only way to determine is to look up the 55284 actual SOC designation and use the right value for that SOC. 55285 55286 Update immap_85xx.h to include the GUTS PORDEVSR2 register. 55287 55288 Signed-off-by: Timur Tabi <timur@freescale.com> 55289 55290commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e 55291Author: Wolfgang Denk <wd@denx.de> 55292Date: Fri Apr 18 11:44:27 2008 -0700 55293 55294 Fix build breakage casued by commit c0559be371b2 55295 55296 Change env_get_char from a global function ptr to a function. 55297 55298 Signed-off-by: Wolfgang Denk <wd@denx.de> 55299 55300commit 268a804d7e2fa07b64211fd2f9a9615db4539f23 55301Author: Wolfgang Denk <wd@denx.de> 55302Date: Fri Apr 18 10:53:41 2008 -0700 55303 55304 Coding Style cleanup, update CHANGELOG. 55305 55306 Signed-off-by: Wolfgang Denk <wd@denx.de> 55307 55308commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7 55309Author: Mike Frysinger <vapier@gentoo.org> 55310Date: Tue Apr 8 14:00:57 2008 -0400 55311 55312 Add support for u-boot in svn and localversion-* files 55313 55314 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 55315 55316commit d23ff6827decf121461fbc5622612fd7effe207e 55317Author: Guennadi Liakhovetski <lg@denx.de> 55318Date: Thu Apr 3 17:04:22 2008 +0200 55319 55320 MX31ADS network and flash updates 55321 55322 This patch allows U-Boot to use buffered writes to the Spansion NOR 55323 flash installed on this board, and eliminates long delays in network 55324 transfers after the board startup. 55325 55326 Also modify flash layout to embed main and redundant environment 55327 blocks in the U-Boot image. 55328 55329 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 55330 55331commit b5dc9b304d289831f291843ff88a45cbdf1a6290 55332Author: Guennadi Liakhovetski <lg@denx.de> 55333Date: Mon Apr 14 10:53:12 2008 +0200 55334 55335 Support for the MX31ADS evaluation board from Freescale 55336 55337 This patch adds support for the MX31ADS evaluation board from Freescale, 55338 initialization code is copied from RedBoot sources, also provided by 55339 Freescale. 55340 55341 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 55342 55343commit 499e7831e1baaac6bfb959213f1950c216fbc5ba 55344Author: Stefan Roese <sr@denx.de> 55345Date: Tue Apr 8 10:33:29 2008 +0200 55346 55347 ppc4xx: Change Canyonlands to support booting from 2k page NAND devices 55348 55349 Signed-off-by: Stefan Roese <sr@denx.de> 55350 55351commit 5e182dce04d68cc94407a1b1fa09307f2bb96719 55352Author: Stefan Roese <sr@denx.de> 55353Date: Tue Apr 8 10:33:28 2008 +0200 55354 55355 ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM 55356 55357 Signed-off-by: Stefan Roese <sr@denx.de> 55358 55359commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825 55360Author: Stefan Roese <sr@denx.de> 55361Date: Tue Apr 8 10:33:27 2008 +0200 55362 55363 ppc4xx: Add Glacier NAND booting target 55364 55365 Signed-off-by: Stefan Roese <sr@denx.de> 55366 55367commit 46f373838e384a4c23d13581b1dfa5acb66b5810 55368Author: Stefan Roese <sr@denx.de> 55369Date: Tue Apr 8 10:31:00 2008 +0200 55370 55371 nand_spl: Update nand_spl to support 2k page size NAND devices 55372 55373 This patch adds support for booting from 2k page sized NAND device 55374 (e.g. Micron 29F2G08AAC). 55375 55376 Tested on AMCC Canyonlands. 55377 55378 Signed-off-by: Stefan Roese <sr@denx.de> 55379 55380commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04 55381Author: Anatolij Gustschin <agust@denx.de> 55382Date: Thu Apr 17 18:18:00 2008 +0200 55383 55384 Fix crash on sequoia in ppc_4xx_eth_init 55385 55386 Currently U-Boot crashes in ppc_4xx_eth_init on sequoia 55387 with cache enabled (TLB Parity exeption). This patch 55388 fixes the problem. 55389 55390 Signed-off-by: Anatolij Gustschin <agust@denx.de> 55391 55392commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b 55393Author: Anatolij Gustschin <agust@denx.de> 55394Date: Thu Apr 17 18:15:27 2008 +0200 55395 55396 ppc4xx: Fix crash on sequoia with cache enabled 55397 55398 Currently U-Boot crashes on sequoia board in CPU POST if 55399 cache is enabled (CONFIG_4xx_DCACHE defined). The cache 55400 won't be disabled by change_tlb before CPU POST because 55401 there is an insufficient adress range check since 55402 CFG_MEM_TOP_HIDE was introduced. This patch tries to fix 55403 this problem. 55404 55405 Signed-off-by: Anatolij Gustschin <agust@denx.de> 55406 55407commit 43c509254fab375c49936498da944658117ed07c 55408Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 55409Date: Thu Apr 17 23:35:13 2008 +0900 55410 55411 Use jr as register jump instruction 55412 55413 Current assembler codes are inconsistent in the way of register jump 55414 instruction usage; some use jr, some use j. Of course GNU as allows both 55415 usages, but as can be expected from `Jump Register' the mnemonic `jr' is 55416 more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage 55417 at all. 55418 55419 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 55420 55421commit 7ce63709828d37b08866e537339a169bd0db2bd3 55422Author: Guennadi Liakhovetski <lg@denx.de> 55423Date: Tue Apr 15 14:15:30 2008 +0200 55424 55425 RTC driver for MC13783 55426 55427 MC13783 is a multifunction IS with an SPI interface to the host. This 55428 driver handles the RTC controller in this chip. 55429 55430 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 55431 55432commit 38254f45b0b412332726c90d3184ad47479fcffb 55433Author: Guennadi Liakhovetski <lg@denx.de> 55434Date: Tue Apr 15 14:14:25 2008 +0200 55435 55436 New i.MX31 SPI driver 55437 55438 This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far 55439 only implemented and tested on i.MX31, can with a modified register layout 55440 and definitions be used for i.MX27, I think, MXC CPUs have similar SPI 55441 controllers too. 55442 55443 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 55444 55445commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38 55446Author: Magnus Lilja <lilja.magnus@gmail.com> 55447Date: Tue Apr 15 19:09:10 2008 +0200 55448 55449 Fix name of i.MX31 boards in config file header 55450 55451 Correct the name of the i.MX31 Litekit and phyCORE boards in config files. 55452 55453 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com> 55454 55455commit a49864593e083a5d0779fb9ca98e5a0f2053183d 55456Author: Mike Frysinger <vapier@gentoo.org> 55457Date: Sun Apr 13 19:42:19 2008 -0400 55458 55459 allow ports to override go behavior 55460 55461 Split the arch-specific logic out of the common go code and into a dedicated 55462 weak function called do_go_exec() that lives in cpu directories. This will 55463 need review from i386/nios people to make sure I didn't break them. 55464 55465commit 017e9b7925f74878d0e9475388cca9bda5ef9482 55466Author: Mike Frysinger <vapier@gentoo.org> 55467Date: Sun Apr 13 19:42:18 2008 -0400 55468 55469 allow ports to override bootelf behavior 55470 55471 Change the bootelf setup function into a dedicated weak function called 55472 do_bootelf_exec. This way ports can control the behavior however they 55473 like before/after calling the ELF entry point. 55474 55475commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7 55476Author: Ulf Samuelsson <ulf@atmel.com> 55477Date: Sat Apr 12 20:56:03 2008 +0200 55478 55479 Reorder ARM boards in Makefile 55480 55481 Rearrange ARM boards in Makefile so that ARM926EJ-S boards 55482 are no longer under ARM92xT header. 55483 55484 Signed-off-by: Ulf Samuelsson <ulf@atmel.com> 55485 Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 55486 55487commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688 55488Author: Ulf Samuelsson <ulf@atmel.com> 55489Date: Sat Apr 12 20:29:44 2008 +0200 55490 55491 Clean up dataflash partitioning 55492 55493 This patch removes the board dependent parts from 55494 "drivers/mtd/dataflash.c". 55495 Each board relying on this, will have the appropriate 55496 code in a new file, "partition.c" in the board directory. 55497 board Makefiles updated to use the file. 55498 55499 The dataflash partitions are aligned on sector/page boundaries. 55500 55501 The CONFIG_NEW_DF_PARTITION was used to create named partitions 55502 This is now the default operation, and the CONFIG variable is removed. 55503 55504 Signed-off-by: Ulf Samuelsson <ulf@atmel.com> 55505 55506commit 51ecde946fec511a16346e498204ca10ad71080d 55507Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 55508Date: Sat Apr 12 14:08:45 2008 +0200 55509 55510 gitignore: udpate stgit generated and .patch file 55511 55512 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 55513 55514commit 66e39818e95f51ee1c1dd2094407a8929543fa6d 55515Author: Wolfgang Denk <wd@denx.de> 55516Date: Fri Apr 18 00:15:36 2008 -0700 55517 55518 Get rid of redundant copy of renamed header file. 55519 55520 Signed-off-by: Wolfgang Denk <wd@denx.de> 55521 55522commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc 55523Author: Vlad Lungu <vlad@comsys.ro> 55524Date: Fri Apr 11 21:20:14 2008 +0300 55525 55526 Fix dependency generation for older gcc versions 55527 55528 With gcc 3.3.3 at least, compilation fails with 55529 55530 Generating include/autoconf.mk 55531 gcc: compilation of header file requested 55532 make: *** [include/autoconf.mk] Error 1 55533 55534 since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba. 55535 55536 Signed-off-by: Vlad Lungu <vlad@comsys.ro> 55537 55538commit cb1c4896905ab22fcd982e6a8a539f0031942e71 55539Author: Marian Balakowicz <m8@semihalf.com> 55540Date: Fri Apr 11 11:07:49 2008 +0200 55541 55542 Restore the ability to continue booting after legacy image overwrite 55543 55544 Before new uImage code was merged, bootm code allowed for the kernel image to 55545 get overwritten during decompresion. new uImage introduced a check for image 55546 overwrites and refused to boot the image that got overwritten. This patch 55547 restores the old behavior. It also adds a warning when the image overwriten is 55548 a multi-image file, because in such case accessing componentes other than the 55549 first one will fail. 55550 55551 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 55552 55553commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036 55554Author: Marian Balakowicz <m8@semihalf.com> 55555Date: Fri Apr 11 11:07:43 2008 +0200 55556 55557 ppc: Fix ftd_blob variable init when processing raw blob 55558 55559 Set fdt_blob variable before its value is printed out. 55560 55561 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 55562 55563commit 3d36be030043cd841a2551d00a395135e363a64b 55564Author: Jason Wessel <jason.wessel@windriver.com> 55565Date: Thu Apr 10 14:30:16 2008 -0500 55566 55567 Remove all the search paths from the .lds files. 55568 55569 The cross compiler is responsible for providing the correct libraries 55570 and the logic to find the linking libraries. 55571 55572 Signed-off-by: Jason Wessel <jason.wessel@windriver.com> 55573 55574commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58 55575Author: Bartlomiej Sieka <tur@semihalf.com> 55576Date: Mon Apr 14 15:44:16 2008 +0200 55577 55578 Boot-related documentation update 55579 55580 - document 'bootm_low' and 'bootm_size' environment variables 55581 - update inaccurate CFG_BOOTMAPSZ entry 55582 55583 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 55584 55585commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a 55586Author: Guennadi Liakhovetski <lg@denx.de> 55587Date: Wed Apr 9 17:34:08 2008 +0200 55588 55589 Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code" 55590 55591 Restore logic reverted by commit 55592 55593 commit 80767a6cead9990d9e77e62be947843c2c72f469 55594 Author: Peter Pearse <peter.pearse@arm.com> 55595 Date: Wed Sep 5 16:04:41 2007 +0100 55596 55597 Changed API name to coloured_led.h 55598 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC 55599 Tidied other cpu/arm920t/start.S code 55600 55601 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 55602 55603commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf 55604Author: Mike Frysinger <vapier@gentoo.org> 55605Date: Tue Apr 8 10:24:24 2008 -0400 55606 55607 Remove conflicting NAND ID 55608 55609 There are two NAND entries with ID 0xDC and this obviously causes problems. 55610 In the kernel, they punted the first entry, so we should do the same. 55611 55612 See this upstream e-mail for more info: 55613 http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html 55614 55615 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> 55616 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 55617 55618commit 188e94c370621708d13547d58dbc6ed3c5602aa8 55619Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 55620Date: Tue Apr 8 16:20:35 2008 +0900 55621 55622 cpu/mips/cpu.c: Fix flush_cache bug 55623 55624 Cache operations have to take line address (addr), not start_addr. 55625 I noticed this bug when debugging ping failure. 55626 55627 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 55628 55629commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4 55630Author: Martin Krause <martin.krause@tqs.de> 55631Date: Thu Apr 3 14:29:01 2008 +0200 55632 55633 TQM5200: fix default IDE reset level 55634 55635 Before the first call of ide_reset(), the level of the IDE reset 55636 signal on the TQM5200 is low (reset asserted). This patch sets the 55637 default value to high (reset not asserted). 55638 55639 Currently this patch fixes no real problem, but it is cleaner to 55640 assert the reset signal only on demand, and not permanently. 55641 55642 Signed-off-by: Martin Krause <martin.krause@tqs.de> 55643 55644commit c61e033d6e8abb7b4060ee36060961e1399f6079 55645Author: Detlev Zundel <dzu@denx.de> 55646Date: Thu Apr 3 14:18:48 2008 +0200 55647 55648 mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING 55649 55650 Signed-off-by: Detlev Zundel <dzu@denx.de> 55651 55652commit f308572e19eb7fe63aa3d41f214cde4c23c9800f 55653Author: Detlev Zundel <dzu@denx.de> 55654Date: Thu Apr 3 14:18:47 2008 +0200 55655 55656 mgcoge, mgsuv: rename 'addcon' to 'addcons' 55657 55658 The latter name with 13 users is already established, so we will use 55659 that. 55660 55661 Signed-off-by: Detlev Zundel <dzu@denx.de> 55662 55663commit e175eacc87c3a9e4dad0799fee0e95732520afc7 55664Author: Martin Krause <martin.krause@tqs.de> 55665Date: Thu Apr 3 13:37:56 2008 +0200 55666 55667 IDE: fix bug in reset sequence 55668 55669 According to the ata (ata5) specification the RESET- signal 55670 shall be asserted for at least 25 us. Without this patch, 55671 the RESET- signal is asserted on some boards for only < 1 us 55672 (e. g. on the TQM5200). This patch adds a general delay of 55673 25 us to the RESET- signal. 55674 55675 Without this patch a Platinum 4 GiB CF card is not recognised 55676 properly on boards with a TQM5200 (STK52xx, TB5200). 55677 55678 Signed-off-by: Martin Krause <martin.krause@tqs.de> 55679 55680commit 813bea96a960916c72b4a3a7df840151529c26ce 55681Author: Sascha Laue <Sascha.Laue@gmx.biz> 55682Date: Thu Apr 3 14:43:11 2008 +0200 55683 55684 lwmon5: disable CONFIG_ZERO_BOOTDELAY 55685 55686 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com> 55687 55688commit 53eec6f1d25932e76d63ccb14082792b0b96bf41 55689Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 55690Date: Wed Apr 2 08:03:58 2008 +0200 55691 55692 ds174x: Fix warning on return in rtc_get and rtc_set functions 55693 55694 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 55695 55696commit a253b38bf50c85227c33ca0febc870ee49d1588e 55697Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 55698Date: Wed Apr 2 08:03:57 2008 +0200 55699 55700 cmd_log.c: Fix assignment differ in signedness 55701 55702 In function 'logbuff_init_ptrs': 55703 cmd_log.c:79: warning: pointer targets in assignment differ in signedness 55704 55705 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 55706 55707commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df 55708Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in> 55709Date: Wed Apr 2 11:04:43 2008 +0530 55710 55711 Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c 55712 55713 Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in> 55714 55715commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d 55716Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 55717Date: Tue Apr 1 14:07:10 2008 +0200 55718 55719 s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame 55720 55721 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 55722 55723commit c08fb3ea36d19b1640b7906264581e9105534399 55724Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 55725Date: Tue Apr 15 10:24:14 2008 +0200 55726 55727 Additional PCI IDs for IDE and network controllers 55728 55729 These PCI IDs are required by the Linkstation platforms. 55730 55731 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 55732 55733commit c0559be371b2a64b1a817088c3308688e2182f93 55734Author: Joakim Tjernlund <joakim.tjernlund@transmode.se> 55735Date: Mon Apr 14 23:01:50 2008 +0200 55736 55737 Change env_get_char from a global function ptr to a function. 55738 55739 This avoids an early global data reference. 55740 55741 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 55742 55743commit 3e0f331c05d72f140715c1e9fca991927e44d422 55744Author: Guennadi Liakhovetski <lg@denx.de> 55745Date: Tue Apr 29 12:35:08 2008 +0000 55746 55747 Clean up smsc911x driver 55748 55749 Replace direct register address derefencing with accessor functions. 55750 Restrict explicitly 32-bit bus-width, extend affected configurations 55751 respectively. 55752 55753 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 55754 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 55755 55756commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd 55757Author: Sascha Hauer <s.hauer@pengutronix.de> 55758Date: Tue Apr 15 00:08:20 2008 -0400 55759 55760 This patch adds a driver for the following smsc network controllers: 55761 LAN9115 55762 LAN9116 55763 LAN9117 55764 LAN9215 55765 LAN9216 55766 LAN9217 55767 55768 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 55769 Signed-off-by: Guennadi Liakhovetski<lg@denx.de> 55770 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 55771 55772commit 3dfd4aab929cccddb63d9ea509967861e1333b52 55773Author: Sascha Laue <Sascha.Laue@gmx.biz> 55774Date: Tue Apr 1 15:13:03 2008 +0200 55775 55776 Fix watchdog POST for lwmon5 55777 55778 If the hardware watchdog detects a voltage error, the watchdog sets 55779 GPIO62 to low. The watchdog POST has to detect this low level. 55780 55781 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i> 55782 55783commit 24b448448a917e52806f82660a5c9d47608894fb 55784Author: Dave Liu <r63238@freescale.com> 55785Date: Tue Apr 1 15:22:11 2008 +0800 55786 55787 ata: update the libata.h from ata.h of linux kernel 55788 55789 Current libata.h of u-boot is out of sync from linux kernel, 55790 this patch make it be consistent with linux kernel. 55791 55792 Signed-off-by: Dave Liu <daveliu@freescale.com> 55793 Signed-off-by: Tor Krill <tor@excito.com> 55794 55795commit f8f9dc98883f66f59eb0601da65808e6b139c87c 55796Author: Kumar Gala <galak@kernel.crashing.org> 55797Date: Mon Mar 31 11:59:27 2008 -0500 55798 55799 Allow use of ARCH=powerpc when building 55800 55801 The linux kernel is now mostly ARCH=powerpc, so to make life easier 55802 allow use to use ARCH=powerpc and convert it to ARCH=ppc. 55803 55804 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 55805 55806commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0 55807Author: Kyungmin Park <kmpark@infradead.org> 55808Date: Mon Mar 31 10:40:54 2008 +0900 55809 55810 Add apollon board MAINTAINERS entry 55811 55812 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 55813 55814commit 77e475cc0ed1832160017d364be32a0be9ff02a9 55815Author: Kyungmin Park <kmpark@infradead.org> 55816Date: Mon Mar 31 10:40:36 2008 +0900 55817 55818 Fix OneNAND read 55819 55820 It should access with 16-bit instead of 8-bit 55821 55822 Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND. 55823 55824 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 55825 55826commit a9da2b41079d230db3a5641625311983f85ce1fb 55827Author: Kyungmin Park <kmpark@infradead.org> 55828Date: Mon Mar 31 10:40:19 2008 +0900 55829 55830 Fix OneNAND erase command 55831 55832 It mis-calculates the block address. 55833 Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand. 55834 55835 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 55836 55837commit 61525f2ffa156665a66908fda47dbf29d65ea579 55838Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 55839Date: Mon Mar 31 01:32:15 2008 +0200 55840 55841 Support for LinkStation / KuroBox HD and HG PPC models 55842 55843 This patch is based on the port by Mihai Georgian (see linkstation.c for 55844 Copyright information) and implements support for LinkStation / KuroBox HD 55845 and HG PPC models from Buffalo Technology, whereby HD is deactivated at 55846 the moment, pending network driver fixing. 55847 55848 Notice to users: this is pretty much a barebone port. Support for network 55849 on HG models is already in the U-Boot mainline, but you might also want 55850 patches to switch fan / phy modes depending on the negotiated ethernet 55851 parameters. This patch also doesn't support console switching, booting EM 55852 mode, Buffalo specific ext2 magic number. So, if you want to use any of 55853 those, you need additional patches. Otherwise this patche provides a fully 55854 functional u-boot with a network console on your system. 55855 55856 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 55857 55858commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea 55859Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 55860Date: Sun Mar 30 01:22:13 2008 -0500 55861 55862 Add CONFIG_MII_INIT support to related boards 55863 55864 Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in 55865 cmd_init.c. Add CONFIG_MII_INIT to board configuration files 55866 that use mii_init() in cmd_init.c. 55867 55868 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 55869 Acked-by: Ben Warren <biggerbadderben@gmail.com> 55870 55871commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4 55872Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 55873Date: Sun Mar 30 01:19:06 2008 -0500 55874 55875 Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards 55876 55877 Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define 55878 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files. 55879 55880 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 55881 55882commit e99ccb488181d012248c6be30b2093e950319fc5 55883Author: Kumar Gala <galak@kernel.crashing.org> 55884Date: Thu Mar 27 11:46:38 2008 -0500 55885 55886 Introduce phys_size_t and move phys_addr_t into asm/types.h 55887 55888 Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's 55889 that have larger physical addresses like 44x, 85xx, and 86xx. 55890 55891 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 55892 55893commit 20a14a42a25f72e379f38460b8a8484667536795 55894Author: Andy Fleming <afleming@freescale.com> 55895Date: Wed Apr 2 16:19:07 2008 -0500 55896 55897 Rename include/md5.h to include/u-boot/md5.h 55898 55899 Some systems have md5.h installed in /usr/include/. This isn't the 55900 desired file (we want the one in include/md5.h). This will avoid the 55901 conflict. This fixes the host tools building problem by creating a new 55902 directory for U-Boot specific header files. 55903 55904 [Patch by Andy Fleming, modified to use separate directory by Wolfgang 55905 Denk] 55906 55907 Signed-off-by: Wolfgang Denk <wd@denx.de> 55908 Signed-off-by: Andy Fleming <afleming@freescale.com> 55909 Acked-by: Timur Tabi <timur@freescale.com> 55910 55911commit f297b7a1ec87433f66320d89d993e1bc738c66b8 55912Author: Dave Liu <r63238@freescale.com> 55913Date: Thu Mar 27 18:51:17 2008 +0800 55914 55915 drivers: code clean up 55916 55917 Signed-off-by: Dave Liu <daveliu@freescale.com> 55918 55919commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597 55920Author: Dave Liu <r63238@freescale.com> 55921Date: Thu Mar 27 18:50:41 2008 +0800 55922 55923 drivers: clean up the ata_piix.h 55924 55925 Signed-off-by: Dave Liu <daveliu@freescale.com> 55926 55927commit e8f7ba404f1409606962815ecc955a06984b08b3 55928Author: Dave Liu <r63238@freescale.com> 55929Date: Thu Mar 27 18:49:56 2008 +0800 55930 55931 doc: english polishing for README.sata 55932 55933 according to gvb's suggestion, polishing for the doc. 55934 55935 Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com> 55936 Signed-off-by: Dave Liu <daveliu@freescale.com> 55937 55938commit 3e3f766a5274d204780460e1879723b565296d34 55939Author: Kumar Gala <galak@kernel.crashing.org> 55940Date: Wed Mar 26 18:53:28 2008 -0500 55941 55942 Fix warnings introduced by I2C bus speed setting patch 55943 55944 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 55945 55946commit 3c735e7437150e8615f26930c7819db85634276d 55947Author: eran liberty <eran.liberty@gmail.com> 55948Date: Thu Mar 27 00:50:49 2008 +0100 55949 55950 Altera Stratix II support 55951 55952 Adds Support for Altera's Stratix II. 55953 55954 Within your board specific init file you will have to call 55955 55956 1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off); 55957 2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc); 55958 55959 Altera_desc* contines (for example): 55960 { 55961 Altera_StratixII, /* part type */ 55962 passive_serial, /* interface type */ 55963 1, /* bytes of data part can accept */ 55964 (void *)(&funcs), /* interface function table */ 55965 0L, /* base interface address */ 55966 0 /* implementation specific cookie */ 55967 } 55968 55969 funcs is the interface. It is of type altera_board_specific_func. 55970 It looks like this: 55971 altera_board_specific_func func = { 55972 pre_fn, 55973 config_fn, 55974 status_fn, 55975 done_fn, 55976 clk_fn, 55977 data_fn, 55978 abort_fn, 55979 post_fn, 55980 }; 55981 55982 you will have to implement these functions, which is usually bit 55983 banging some gpio. 55984 55985 Signed-off-by: Eran Liberty <liberty@extricom.com> 55986 55987commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335 55988Author: Wolfgang Denk <wd@denx.de> 55989Date: Sun Apr 13 14:32:54 2008 -0700 55990 55991 Update CHANGELOG 55992 55993 Signed-off-by: Wolfgang Denk <wd@denx.de> 55994 55995commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7 55996Author: Sascha Hauer <s.hauer@pengutronix.de> 55997Date: Wed Mar 26 20:41:17 2008 +0100 55998 55999 Phytec Phycore-i.MX31 support 56000
56001 This patch adds support for the Phytec Phycore-i.MX31 board 56002 56003 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 56004 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56005 56006commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1 56007Author: Sascha Hauer <s.hauer@pengutronix.de> 56008Date: Wed Mar 26 20:41:09 2008 +0100 56009 56010 mx31 litekit support 56011 56012 This patch adds support for the mx31 litekit board 56013 56014 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 56015 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56016 56017commit cdace0661208754a53019ea0dc7b803a040e0939 56018Author: Sascha Hauer <s.hauer@pengutronix.de> 56019Date: Wed Mar 26 20:40:49 2008 +0100 56020 56021 add an i2c driver for mx31 56022 56023 This patch adds an i2c driver for Freescale i.MX processors 56024 56025 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 56026 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56027 56028commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6 56029Author: Sascha Hauer <s.hauer@pengutronix.de> 56030Date: Wed Mar 26 20:40:42 2008 +0100 56031 56032 core support for Freescale mx31 56033 56034 This patch adds the core support for Freescale mx31 56035 56036 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 56037 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56038 56039commit 7ec68862a27c8f6f6d566228de8f6724d964a939 56040Author: Wolfgang Denk <wd@denx.de> 56041Date: Sun Apr 13 14:19:23 2008 -0700 56042 56043 Fix compile error 56044 56045 ...as suggested by Peter Pearse 56046 56047 Signed-off-by: Wolfgang Denk <wd@denx.de> 56048 56049commit 5252ed95204bdf55bec5a90ea69860bf2f78c643 56050Author: Sascha Hauer <s.hauer@pengutronix.de> 56051Date: Wed Mar 26 20:40:36 2008 +0100 56052 56053 Separate omap24xx specific code from arm1136 56054 56055 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 56056 to cpu/arm1136/omap24xx. 56057 56058 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 56059 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56060 56061commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a 56062Author: Mike Frysinger <vapier@gentoo.org> 56063Date: Tue Jan 29 18:21:05 2008 -0500 56064 56065 disable caches before booting an app for Blackfin apps 56066 56067 It isn't generally save to execute applications outside of U-Boot with caches 56068 enabled due to the way the Blackfin processor handles caches (requires 56069 software assistance). This patch disables caches before booting an ELF or 56070 just booting raw code. The previous discussion on the patch was that we 56071 wanted to use weaks instead, but that proved to not be feasible when multiple 56072 symbols are involved, which puts us back at the ifdef solution. I've 56073 minimized the ugliness by moving the setup step outside of the main function. 56074 56075 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 56076 56077commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32 56078Author: Wolfgang Denk <wd@denx.de> 56079Date: Sun Apr 13 10:03:54 2008 -0700 56080 56081 ppc: Get rid of unused machine type definitions 56082 56083 Signed-off-by: Wolfgang Denk <wd@denx.de> 56084 56085commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4 56086Author: Wolfgang Denk <wd@denx.de> 56087Date: Sun Apr 13 09:59:26 2008 -0700 56088 56089 Coding Style cleanup; update CHANGELOG 56090 56091 Signed-off-by: Wolfgang Denk <wd@denx.de> 56092 56093commit 7754f33c6fb7a2c050388d20bf3847038558bdcf 56094Author: Larry Johnson <lrj@acm.org> 56095Date: Thu Feb 21 13:58:11 2008 -0500 56096 56097 LM73 bug fix for negative temperatures and cleanup 56098 56099 When the LM73 temperature sensor measures a temperature below 0 C, the 56100 current driver does not perform sign extension, so the result returned is 56101 512 C too high. This patch fixes the problem, and does general cleanup 56102 of the code. 56103 56104 Signed-off-by: Larry Johnson <lrj@acm.org> 56105 56106commit 96ef831f713289afba19da0c8f905e99da2b23e0 56107Author: Guennadi Liakhovetski <lg@denx.de> 56108Date: Thu Apr 3 13:36:02 2008 +0200 56109 56110 cfi_flash: Support buffered writes on non-standard Spansion NOR flash 56111 56112 Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit 56113 series require different addresses for buffered write commands. Define a 56114 configuration option to support buffered writes on those chips. A more 56115 elegant solution would be to automatically detect those chips by parsing 56116 their CFI records, but that would require introduction of a fixup table 56117 into the cfi_flash driver. 56118 56119 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56120 56121commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44 56122Author: Lee Nipper <lee.nipper@freescale.com> 56123Date: Thu Apr 10 09:35:06 2008 -0500 56124 56125 mpc83xx: Update DIMM data bus width test to support 40-bit width 56126 56127 32-bit wide ECC memory modules report 40-bit width. 56128 Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'. 56129 56130 Signed-off-by: Lee Nipper <lee.nipper@freescale.com> 56131 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 56132 56133commit 5fb5a689d822ca61e814bd523fc930af335242fa 56134Author: Dave Liu <r63238@freescale.com> 56135Date: Mon Mar 31 17:05:12 2008 +0800 56136 56137 mpc83xx: Fix the bug of serdes initialization 56138 56139 Currently the serdes will not be initializated due to the 56140 partid's error. 56141 56142 Signed-off-by: Dave Liu <daveliu@freescale.com> 56143 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 56144 56145commit 2000784818f043db7ca60e2846a72d097766b894 56146Author: Dave Liu <r63238@freescale.com> 56147Date: Thu Apr 3 16:28:29 2008 +0800 56148 56149 mpc83xx: Fix the SATA clock setting of 837x targets 56150 56151 Currently the SATA controller clock is configured as CSB clock, 56152 usually the CSB clock is 400/333/266MHz. 56153 56154 However, The SATA IP block is only guaranteed to operate up to 56155 200 MHz as stated in the HW spec. 56156 56157 The bug is reported by Joe D'Abbraccio <ljd015@freescale.com> 56158 56159 This patch makes the SATA clock as half of CSB clock. 56160 56161 Signed-off-by: Dave Liu <daveliu@freescale.com> 56162 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 56163 56164commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672 56165Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56166Date: Wed Apr 2 13:41:21 2008 +0200 56167 56168 mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb' 56169 56170 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56171 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 56172 56173commit 97b3ecb575a92fa34c1765229dbc06f2b662f139 56174Author: Kumar Gala <galak@kernel.crashing.org> 56175Date: Wed Apr 9 04:20:57 2008 -0500 56176 56177 85xx: Fix detection of MP cpu spin up 56178 56179 We were looking at the wrong memory offset to determine of a secondary 56180 cpu had been spun up or not. Also added a warning message if the 56181 all the secondary cpus we expect don't spin up. 56182 56183 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 56184 56185commit f3e04bdc3f360c66801a9048956e61e41a16edba 56186Author: Kumar Gala <galak@kernel.crashing.org> 56187Date: Tue Apr 8 10:45:50 2008 -0500 56188 56189 85xx: Use SVR_SOC_VER instead of SVR_VER 56190 56191 The recent change introduced by 'Update SVR numbers to expand support' 56192 now requires that we use SVR_SOC_VER instead of SVR_VER if we want 56193 to compare against a particular processor id. 56194 56195 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 56196 56197commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7 56198Author: Eugene O'Brien <eugene.obrien@advantechamt.com> 56199Date: Fri Apr 11 10:00:35 2008 -0400 56200 56201 ppc4xx: Fix power mgt definitions for PPC440 56202 56203 Corrected DCR addresses of PPC440EP power management registers. 56204 56205 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com> 56206 56207commit 950a392464e616b4590bc4501be46e2d7d162dea 56208Author: Wolfgang Denk <wd@denx.de> 56209Date: Fri Apr 11 15:11:26 2008 +0200 56210 56211 Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18: 56212 56213 Reverting became necessary after it turned out that the patches in 56214 the u-boot-arm repo were modified, and in some cases corrupted. 56215 56216 This reverts the following commits: 56217 56218 066bebd6353e33af3adefc3404560871699e9961 56219 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6 56220 c88ae20580b2b01487b4cdcc8b2a113f551aee36 56221 a147e56f03871bba4f05058d5e04ce7deb010b04 56222 d6674e0e2a6a1f033945f78838566210d3f28c95 56223 8c8463cce44d849e37744749b32d38e1dfb12e50 56224 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d 56225 8bf69d81782619187933a605f1a95ee1d069478d 56226 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d 56227 a574a73852a527779234e73e17e7597fd8128882 56228 1377b5583a48021d983e1fd565f7d40c89e84d63 56229 1704dc20917b4f71e373e2c888497ee666d40380 56230 56231 Signed-off-by: Wolfgang Denk <wd@denx.de> 56232 56233commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13 56234Author: Stefan Roese <sr@denx.de> 56235Date: Fri Apr 11 07:02:29 2008 +0200 56236 56237 ppc4xx: Update Kilauea defconfig to use device-tree booting as default 56238 56239 This patch reworks the default environment on Kilauea/Haleakala. Now 56240 "net_nfs" for exmaple uses the device-tree style booting formerly know 56241 as "net_nfs_fdt". Also the addresses in RAM were changed because of the 56242 new image booting support, which check for image overwriting. So the 56243 addresses needed togeet adjusted. 56244 56245 Signed-off-by: Stefan Roese <sr@denx.de> 56246 56247commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28 56248Author: Stefan Roese <sr@denx.de> 56249Date: Wed Apr 9 11:58:02 2008 +0200 56250 56251 ppc4xx: Fix Canyonlands default environment to work with new image support 56252 56253 Since the new image support checks for image overwriting, the default 56254 environment needs to get adjusted to use correct addresses. 56255 56256 Signed-off-by: Stefan Roese <sr@denx.de> 56257 56258commit dfc6c7b647dba7ab86749616f0e9e5740deed422 56259Author: Stefan Roese <sr@denx.de> 56260Date: Wed Apr 9 11:54:11 2008 +0200 56261 56262 ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE 56263 56264 The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step 56265 closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But 56266 on 4xx systems _start currently cannot be used for this calculation. 56267 So revert back to the original version for now. 56268 56269 Signed-off-by: Stefan Roese <sr@denx.de> 56270 56271commit f91374f65eae8b42cac329e06ba1c54728278efb 56272Author: Michal Simek <monstr@monstr.eu> 56273Date: Fri Mar 28 12:49:52 2008 +0100 56274 56275 microblaze: Sort microblaze boards in MAKEALL script 56276 56277commit 62032deb7214c6d9b4396297e2aaa559bc2f8495 56278Author: Michal Simek <monstr@monstr.eu> 56279Date: Fri Mar 28 11:58:45 2008 +0100 56280 56281 microblaze: clean microblaze_config.mk 56282 56283 FLAGS are generated by U-BOOT generator. 56284 Board specific FLAGS are in board directory 56285 56286 Signed-off-by: Michal Simek <monstr@monstr.eu> 56287 56288commit cf5c679ca04a6b54bf53a55b8b9c29335b387287 56289Author: Michal Simek <monstr@monstr.eu> 56290Date: Fri Mar 28 12:47:19 2008 +0100 56291 56292 microblaze: xupv2p fix config file for supporting FDT 56293 56294commit 188dc16b189143573b1ed90e584bf866d75cdd12 56295Author: Michal Simek <monstr@monstr.eu> 56296Date: Fri Mar 28 11:53:02 2008 +0100 56297 56298 microblaze: ml401 fix config file for supporting FDT 56299 56300 Signed-off-by: Michal Simek <monstr@monstr.eu> 56301 56302commit 4c6a6f02e239236261333759997eeaf86b30b54c 56303Author: Michal Simek <monstr@monstr.eu> 56304Date: Fri Mar 28 11:22:48 2008 +0100 56305 56306 microblaze: ml401 - add ifdef for GPIO 56307 56308 Signed-off-by: Michal Simek <monstr@monstr.eu> 56309 56310commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7 56311Author: Michal Simek <monstr@monstr.eu> 56312Date: Fri Mar 28 12:13:03 2008 +0100 56313 56314 microblaze: clean uart16550 and uartlite handling 56315 56316 Signed-off-by: Michal Simek <monstr@monstr.eu> 56317 56318commit 0b20f250877441460fb79d72192954abe8498834 56319Author: Michal Simek <monstr@monstr.eu> 56320Date: Fri Mar 28 11:08:31 2008 +0100 56321 56322 microblaze: Add Emaclite driver to Makefile 56323 56324 Signed-off-by: Michal Simek <monstr@monstr.eu> 56325 56326commit 868cde5310f88234b774878e4f06e79df10a88b3 56327Author: Michal Simek <monstr@monstr.eu> 56328Date: Fri Mar 28 11:08:01 2008 +0100 56329 56330 microblaze: Add Emac driver to Makefile 56331 56332 Signed-off-by: Michal Simek <monstr@monstr.eu> 56333 56334commit 6f961b4f461f6cbb83a467d468a02e6078c2b327 56335Author: Michal Simek <monstr@monstr.eu> 56336Date: Fri Mar 28 12:42:29 2008 +0100 56337 56338 microblaze: add Emac ethernet driver 56339 56340commit 89c53891b18cbafd29ab8931b40e27ad231b6085 56341Author: Michal Simek <monstr@monstr.eu> 56342Date: Fri Mar 28 12:41:56 2008 +0100 56343 56344 microblaze: add Emaclite ethernet driver 56345 56346commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb 56347Author: Michal Simek <monstr@monstr.eu> 56348Date: Fri Mar 28 11:04:01 2008 +0100 56349 56350 microblaze: ML401 and XUPV2P remove emac and emaclite reference 56351 56352 Signed-off-by: Michal Simek <monstr@monstr.eu> 56353 56354commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57 56355Author: Michal Simek <monstr@monstr.eu> 56356Date: Fri Mar 28 10:59:32 2008 +0100 56357 56358 microblaze: remove old setting for emac driver 56359 56360 Signed-off-by: Michal Simek <monstr@monstr.eu> 56361 56362commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57 56363Author: Michal Simek <monstr@monstr.eu> 56364Date: Fri Mar 28 10:58:15 2008 +0100 56365 56366 microblaze: Clean Makefile from ancient emac driver 56367 56368 Signed-off-by: Michal Simek <monstr@monstr.eu> 56369 56370commit ab68f921d9c741830f721c3d879c13a0c5597183 56371Author: Daniel Hellstrom <daniel@gaisler.com> 56372Date: Fri Mar 28 10:20:43 2008 +0100 56373 56374 SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information. 56375 56376 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56377 56378commit 6ed8a43a19bb0275501bc286007daafa923552cf 56379Author: Daniel Hellstrom <daniel@gaisler.com> 56380Date: Wed Mar 26 23:38:48 2008 +0100 56381 56382 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. 56383 56384 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56385 56386commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12 56387Author: Daniel Hellstrom <daniel@gaisler.com> 56388Date: Wed Mar 26 23:34:47 2008 +0100 56389 56390 SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information. 56391 56392 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56393 56394commit 823edd8a66ed50af5aaba0c79567f67061e4d79a 56395Author: Daniel Hellstrom <daniel@gaisler.com> 56396Date: Fri Mar 28 10:06:52 2008 +0100 56397 56398 SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information. 56399 56400 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56401 56402commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135 56403Author: Daniel Hellstrom <daniel@gaisler.com> 56404Date: Wed Mar 26 23:26:48 2008 +0100 56405 56406 SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information. 56407 56408 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56409 56410commit b330990c2f36ee4a8bb318360e1c8ba965269ab6 56411Author: Daniel Hellstrom <daniel@gaisler.com> 56412Date: Fri Mar 28 10:00:33 2008 +0100 56413 56414 SPARC: Added support for SPARC LEON2 SOC Processor. 56415 56416 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56417 56418commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a 56419Author: Daniel Hellstrom <daniel@gaisler.com> 56420Date: Wed Mar 26 23:00:38 2008 +0100 56421 56422 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. 56423 56424 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56425 56426commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4 56427Author: Daniel Hellstrom <daniel@gaisler.com> 56428Date: Wed Mar 26 22:51:29 2008 +0100 56429 56430 SPARC: Added support for SPARC LEON3 SOC processor. 56431 56432 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56433 56434commit bf3d8b31169546fcddb4737391e1893fb12d033a 56435Author: Daniel Hellstrom <daniel@gaisler.com> 56436Date: Fri Mar 28 08:29:26 2008 +0100 56437 56438 SPARC: added SPARC support for new uimage in common code. 56439 56440 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56441 56442commit 00ab32c85405a4fe65fd4128243086210fc90a21 56443Author: Daniel Hellstrom <daniel@gaisler.com> 56444Date: Wed Mar 26 22:36:03 2008 +0100 56445 56446 SPARC: added SPARC board information to the command bdinfo. 56447 56448 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56449 56450commit c2f02da21a3f37f0878554eebc785e04fdc4e128 56451Author: Daniel Hellstrom <daniel@gaisler.com> 56452Date: Fri Mar 28 09:47:00 2008 +0100 56453 56454 SPARC: Added generic support for SPARC architecture. 56455 56456 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56457 56458commit e54ec0f016803e4d9524ff71f7971bda0c51b287 56459Author: Stefan Roese <sr@denx.de> 56460Date: Thu Apr 3 14:50:34 2008 +0200 56461 56462 ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3 56463 56464 This patch fixes a problem with the RGMII setup of the 460GT. The 460GT 56465 has 2 RGMII instances and we need to configure the 2nd RGMII instance 56466 for the EMAC2+3 channels. 56467 56468 Signed-off-by: Stefan Roese <sr@denx.de> 56469 56470commit c2a545ce33b26d80337f80b533828839249fb1c9 56471Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56472Date: Wed Apr 2 08:03:56 2008 +0200 56473 56474 MPC8xx: Fix libfdt support introduced in commit 77ff7b74 56475 56476 fdt.c: In function 'ft_cpu_setup': 56477 fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32' 56478 fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32' 56479 fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet' 56480 fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory' 56481 56482 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56483 56484commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b 56485Author: Andy Fleming <afleming@freescale.com> 56486Date: Mon Mar 31 20:45:56 2008 -0500 56487 56488 Fix fdt set command to conform to dts spec 56489 56490 The fdt set command was treating properties specified as <00> and <0011> 56491 as byte streams, rather than as an array of cells. As we already have 56492 syntax for expressing the desire for a stream of bytes ([ xx xx ...]), 56493 we should use the <> syntax to describe arrays of cells, which are always 56494 32-bits per element. If we imagine this likely (IMHO) scenario: 56495 56496 > fdt set /ethernet-phy@1 reg <1> 56497 56498 With the old code, this would create a bad fdt, since the reg cell would be 56499 made to be one byte in length. But the cell must be 4 bytes, so this would 56500 break mysteriously. 56501 56502 Also, the dts spec calls for constants inside the angle brackets (<>) 56503 to conform to C constant standards as they pertain to base. 56504 Take this scenario: 56505 56506 > fdt set /ethernet@f00 reg <0xe250000\ 0x1000> 56507 56508 The old fdt command would complain that it couldn't parse that. Or, if you 56509 wanted to specify that a certain clock ran at 33 MHz, you'd be required to 56510 do this: 56511 56512 > fdt set /mydev clock <1f78a40> 56513 56514 Whereas the new code will accept decimal numbers. 56515 56516 While I was in there, I extended the fdt command parser to handle property 56517 strings which are split across multiple arguments: 56518 56519 > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 > 56520 > fdt p /ethernet@f00 56521 ethernet@f00 { 56522 interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>; 56523 }; 56524 56525 Lastly, the fdt print code was rearranged slightly to print arrays of cells 56526 if the length of the property is a multiple of 4 bytes, and to not print 56527 leading zeros. 56528 56529 Signed-off-by: Andy Fleming <afleming@freescale.com> 56530 56531commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56 56532Author: Stefan Roese <sr@denx.de> 56533Date: Wed Apr 2 08:39:33 2008 +0200 56534 56535 ppc4xx: Canyonlands: Init SATA/PCIe port correctly 56536 56537 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA 56538 interface. This usage can be configured with the jumper J6. This patch 56539 correctly configures the SATA/PCIe PHY for SATA usage when this jumper 56540 is installed. 56541 56542 Signed-off-by: Stefan Roese <sr@denx.de> 56543 56544commit 6fe2946f198481254a6ee9600d7456b8316a4083 56545Author: Kim Phillips <kim.phillips@freescale.com> 56546Date: Fri Mar 28 17:37:49 2008 -0500 56547 56548 remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code 56549 56550 finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d, 56551 "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T" 56552 started. 56553 56554 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 56555 56556commit b5873f1732b92a25690e1513b90dfb0d644f6697 56557Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56558Date: Tue Apr 1 07:30:51 2008 +0200 56559 56560 dataflash: Move CONFIG_HAS_DATAFLASH to Makefile 56561 56562 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56563 56564commit 2d934ea51f276522b532f870a820e844ff480b5b 56565Author: Tor Krill <tor@excito.com> 56566Date: Fri Mar 28 15:29:45 2008 +0100 56567 56568 Add Vitesse 8601 support to TSEC driver 56569 56570 Add phy_info for Vitesse VSC8601. 56571 Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation. 56572 56573 Signed-off-by: Tor Krill <tor@excito.com> 56574 Reviewed-by: Kim Phillips <kim.phillips@freescale.com> 56575 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 56576 56577commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31 56578Author: Daniel Hellstrom <daniel@gaisler.com> 56579Date: Mon Mar 31 14:25:00 2008 +0000 56580 56581 SPARC: added SMC91111 driver in and out macros for LEON processors. 56582 56583 This patch makes SPARC/LEON processors able to read and write 56584 to the SMC91111 chip using the chip external I/O bus of the memory 56585 controller. This patchs defines the standard in and out macros 56586 expected by the SMC9111 driver. 56587 56588 To access that I/O bus one must set up the memory controller 56589 (MCTRL or FTMCTRL) correctly. It is assumed that the user sets 56590 up this correctly when the other MCTRL parameters are set up. It 56591 can be set up from the board configuration header file. 56592 56593 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 56594 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 56595 56596commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6 56597Author: Stelian Pop <stelian@popies.net> 56598Date: Wed Mar 26 18:52:34 2008 +0100 56599 56600 Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards 56601 56602 Signed-off-by: Stelian Pop <stelian@popies.net> 56603 56604commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3 56605Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56606Date: Mon Mar 31 21:31:04 2008 +0200 56607 56608 AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile 56609 56610 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56611 56612commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7 56613Author: Stelian Pop <stelian@popies.net> 56614Date: Wed Mar 26 18:52:33 2008 +0100 56615 56616 Add support for AT91SAM9260EK 56617 56618 Support for booting from internal DataFlash, external DataFlash card 56619 or NAND flash is available. 56620 56621 Signed-off-by: Stelian Pop <stelian@popies.net> 56622 56623commit 1762f13b4aab88b685b1722f17dada247945624b 56624Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56625Date: Mon Mar 31 21:20:49 2008 +0200 56626 56627 AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile 56628 56629 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56630 56631commit 761712188b353494defb2b644491ff73d0daaa6f 56632Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56633Date: Mon Mar 31 21:12:17 2008 +0200 56634 56635 AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile 56636 56637 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56638 56639commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687 56640Author: Stelian Pop <stelian@popies.net> 56641Date: Wed Mar 26 20:52:32 2008 +0100 56642 56643 Port AT91CAP9 to the new headers 56644 56645 Adapt the existing AT91CAP9 code to the new headers and APIs. 56646 56647 Signed-off-by: Stelian Pop <stelian@popies.net> 56648 56649commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa 56650Author: Stelian Pop <stelian@popies.net> 56651Date: Wed Mar 26 19:52:31 2008 +0100 56652 56653 Finish header files reworking 56654 56655 Replace AT91CAP9.h file with several splitted header files coming 56656 from the Linux kernel. 56657 56658 This is part 2 of the replacement: more header imports and edits. 56659 56660 Signed-off-by: Stelian Pop <stelian@popies.net> 56661 56662commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4 56663Author: Stelian Pop <stelian@popies.net> 56664Date: Wed Mar 26 19:52:30 2008 +0100 56665 56666 Import several header files from Linux 56667 56668 Replace AT91CAP9.h file with several splitted header files coming 56669 from the Linux kernel. 56670 56671 This is part 1 of the replacement: pristine header files import. 56672 56673 Signed-off-by: Stelian Pop <stelian@popies.net> 56674 56675commit a8a78f2d99dc1bd30dc3595da118539b506c6118 56676Author: Stelian Pop <stelian@popies.net> 56677Date: Wed Mar 26 20:52:28 2008 +0100 56678 56679 Move at91cap9 specific files to at91sam9 directory 56680 56681 AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a 56682 common infrastructure can be used. Let this infrastructure be 56683 named after the AT91SAM9 family, and move the existing AT91CAP9 56684 files to the new place. 56685 56686 Signed-off-by: Stelian Pop <stelian@popies.net> 56687 56688commit 61106a565870ff503f92b251b94bd7afef889a04 56689Author: Stelian Pop <stelian@popies.net> 56690Date: Wed Mar 26 21:52:27 2008 +0100 56691 56692 Use timer_init() instead of board supplied interrupt_init() 56693 56694 The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by 56695 the board, so use timer_init() instead of interrupt_init(). 56696 56697 Signed-off-by: Stelian Pop <stelian@popies.net> 56698 56699commit 5604e2178c5218fbfdba2e4293ca7652e829ac25 56700Author: Stelian Pop <stelian@popies.net> 56701Date: Wed Mar 26 21:52:36 2008 +0100 56702 56703 Cleanup DataFlash partition handling 56704 56705 DataFlash partition information has become a mess. This patch 56706 defines a single partition scheme for Atmel DataFlashes. This partition 56707 scheme will be used by all AT91CAP9 and AT91SAM9 boards. 56708 56709 Signed-off-by: Stelian Pop <stelian@popies.net> 56710 56711commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42 56712Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56713Date: Fri Mar 28 08:47:45 2008 -0500 56714 56715 ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S 56716 56717 When the version_string function in start.S is not 4-byte align, 56718 it will cause the compiler generates "unaligned opcodes detected 56719 in executable segment". This issue affects all ColdFire CPUs. 56720 By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if 56721 it is not aligned. 56722 56723 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56724 Acked-by: John Rigby <jrigby@freescale.com> 56725 56726commit bae61eefe15b4d454060a7140e49ae58322be803 56727Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56728Date: Tue Mar 25 15:41:15 2008 -0500 56729 56730 ColdFire: Add dspi and serial flash support for MCF5445x 56731 56732 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56733 Acked-by: John Rigby <jrigby@freescale.com> 56734 56735commit 48ead7a7a922fceaf494e352abfab8216a41b417 56736Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56737Date: Tue Mar 18 17:37:01 2008 -0500 56738 56739 ColdFire: Remove R5200 board 56740 56741 This board never went into production 56742 56743 Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com> 56744 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56745 Acked-by: John Rigby <jrigby@freescale.com> 56746 56747commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8 56748Author: Matthew Fettke <[matthew.fettke@gmail.com]> 56749Date: Thu Jan 24 14:02:32 2008 -0600 56750 56751 ColdFire: Added M5275EVB support. 56752 56753 Signed-off-by: Matthew Fettke <mfettke@videon-central.com> 56754 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56755 Acked-by: John Rigby <jrigby@freescale.com> 56756 56757commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b 56758Author: Matthew Fettke <[matthew.fettke@gmail.com]> 56759Date: Mon Feb 4 15:38:20 2008 -0600 56760 56761 ColdFire: Added MCF5275 cpu support. 56762 56763 Signed-off-by: Matthew Fettke <mfettke@videon-central.com> 56764 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56765 Acked-by: John Rigby <jrigby@freescale.com> 56766 56767commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b 56768Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56769Date: Mon Mar 17 12:14:11 2008 -0500 56770 56771 ColdFire: Define bootdelay in configuration file for M52277EVB 56772 56773 Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com> 56774 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56775 Acked-by: John Rigby <jrigby@freescale.com> 56776 56777commit 77878f16cedee17161ff2336990970fffc6cea35 56778Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56779Date: Mon Mar 17 12:09:07 2008 -0500 56780 56781 ColdFire: Fix second memory Chipselect for M5475EVB 56782 56783 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56784 Acked-by: John Rigby <jrigby@freescale.com> 56785 56786commit 43d60642395a550956cb21d287c8cfa563913d28 56787Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56788Date: Thu Mar 13 14:26:32 2008 -0500 56789 56790 ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282 56791 56792 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 56793 Acked-by: John Rigby <jrigby@freescale.com> 56794 56795commit eb14ebe813a0cb5d47905228da446a5ad692473b 56796Author: Larry Johnson <lrj@acm.org> 56797Date: Sun Mar 30 20:33:04 2008 -0500 56798 56799 ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup 56800 56801 Signed-off-by: Larry Johnson <lrj@acm.org> 56802 56803commit 02e3892021112f21067d9ed1d04ae4182725ba52 56804Author: Stefan Roese <sr@denx.de> 56805Date: Mon Mar 31 12:20:48 2008 +0200 56806 56807 ppc4xx: Small whitespace fix of esd patches 56808 56809 Signed-off-by: Stefan Roese <sr@denx.de> 56810 56811commit 034394abb524785047c815f00dde8cdbdc1593c5 56812Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 56813Date: Sun Mar 30 18:52:44 2008 +0200 56814 56815 ppc4xx: Cleanup PMC440 board support 56816 56817 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 56818 56819commit a6cc6c37188d85c25d167a4515da86f48d9a583e 56820Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 56821Date: Sun Mar 30 18:52:06 2008 +0200 56822 56823 ppc4xx: Add ptm configuration variables for PMC440 56824 56825 Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms 56826 environment variables. 56827 56828 Cleanup pci_target_init. 56829 56830 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 56831 56832commit 7c91f51a2fe296909147f1646a1412729dd10b1d 56833Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 56834Date: Sun Mar 30 18:01:15 2008 +0200 56835 56836 ppc4xx: Minor updates for DU440 boards 56837 56838 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 56839 56840commit d5bffeb868d6b4d462f558dac43011027b6644b7 56841Author: Mike Frysinger <vapier@gentoo.org> 56842Date: Tue Feb 19 00:54:20 2008 -0500 56843 56844 Blackfin: cleanup and overhaul common board init functions 56845 56846 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 56847 56848commit b86b3416f874358acaf07519e7620cdb2145f75b 56849Author: Mike Frysinger <vapier@gentoo.org> 56850Date: Tue Feb 19 00:50:58 2008 -0500 56851 56852 Blackfin: cleanup lib_blackfin/cache.c 56853 56854 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 56855 56856commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44 56857Author: Mike Frysinger <vapier@gentoo.org> 56858Date: Sun Mar 30 15:46:13 2008 -0400 56859 56860 Blackfin: unify cpu and boot modes 56861 56862 All of the duplicated code for Blackfin processors and boot modes have been 56863 unified. After all, the core is the same for all processors, just the 56864 peripheral set differs (which gets handled in the drivers). 56865 56866 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 56867 56868commit 880cc4381ea8360248cddcdf87a64566745a5724 56869Author: Stelian Pop <stelian@popies.net> 56870Date: Wed Mar 26 22:52:35 2008 +0100 56871 56872 Fix CFG_NO_FLASH compilation. 56873 56874 Many Atmel boards have no "real" (NOR) flash on board, and rely only 56875 on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to 56876 be present in a board configuration file, while still enabling flash 56877 commands like 'flinfo', 'protect', etc. 56878 56879 Signed-off-by: Stelian Pop <stelian@popies.net> 56880 56881commit 9ce7e53abd039decea1af67aec81bbd5df7a2593 56882Author: Mike Frysinger <vapier@gentoo.org> 56883Date: Tue Feb 19 00:58:13 2008 -0500 56884 56885 Blackfin: BF537-stamp: cleanup spi flash driver 56886 56887 This punts the old spi flash driver for a new/generalized one until the 56888 common one can be integrated. 56889 56890 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 56891 56892commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b 56893Author: Ben Warren <biggerbadderben@gmail.com> 56894Date: Sun Mar 30 11:34:34 2008 -0400 56895 56896 Fix macro typo in common/cmd_mii.c 56897 56898 This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206. I 56899 actually applied the wrong patch. 56900 56901 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 56902 56903commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d 56904Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56905Date: Sun Mar 30 16:39:53 2008 +0200 56906 56907 use correct at91rm9200 register name in m501sk board 56908 56909 This fixes a naming bug for at91rm9200 lowlevel init code: 56910 NOR boot flash is on chipselect 0, not chipselect 2. This 56911 makes code use the register name from chip datasheets. 56912 56913 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 56914 56915commit 480ed1dea103a1c8f4591afc77d2de3c7868d983 56916Author: David Brownell <david-b@pacbell.net> 56917Date: Fri Jan 18 12:55:00 2008 -0800 56918 56919 use correct at91rm9200 register name 56920 56921 This fixes a naming bug for at91rm9200 lowlevel init code: 56922 NOR boot flash is on chipselect 0, not chipselect 2. This 56923 makes code use the register name from chip datasheets. 56924 56925 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 56926 56927commit a3543d6dc52b0ba9c64016687cf32d600b31a476 56928Author: David Brownell <david-b@pacbell.net> 56929Date: Fri Jan 18 12:45:45 2008 -0800 56930 56931 add missing ARM boards to MAKEALL 56932 56933 Add some missing ARM boards to MAKEALL. These build correctly, 56934 unlike several of the boards already listed. 56935 56936 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> 56937 56938commit 066bebd6353e33af3adefc3404560871699e9961 56939Author: Peter Pearse <peter.pearse@arm.com> 56940Date: Sun Mar 30 11:34:09 2008 +0100 56941 56942 Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c 56943 to prevent compilation error. 56944 56945 Signed-off-by: Peter Pearse <peter.pearse@arm.com> 56946 56947commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6 56948Author: Guennadi Liakhovetski <[lg@denx.de]> 56949Date: Sun Mar 30 11:32:30 2008 +0100 56950 56951 Support for the MX31ADS evaluation board from Freescale 56952 56953 This patch adds support for the MX31ADS evaluation board from Freescale, 56954 initialization code is copied from RedBoot sources, also provided by Freescale. 56955 56956 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56957 56958commit c88ae20580b2b01487b4cdcc8b2a113f551aee36 56959Author: Sascha Hauer <s.hauer@pengutronix.de> 56960Date: Sun Mar 30 11:32:27 2008 +0100 56961 56962 Phytec Phycore-i.MX31 support 56963 56964 This patch adds support for the Phytec Phycore-i.MX31 board 56965 56966 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 56967 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56968 56969commit a147e56f03871bba4f05058d5e04ce7deb010b04 56970Author: Sascha Hauer <s.hauer@pengutronix.de> 56971Date: Sun Mar 30 11:32:24 2008 +0100 56972 56973 mx31 litekit support 56974 56975 This patch adds support for the mx31 litekit board 56976 56977 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 56978 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56979 56980commit d6674e0e2a6a1f033945f78838566210d3f28c95 56981Author: Sascha Hauer <s.hauer@pengutronix.de> 56982Date: Sun Mar 30 11:32:21 2008 +0100 56983 56984 add SMSC LAN9x1x Network driver 56985 56986 This patch adds a driver for the following smsc network controllers: 56987 LAN9115 56988 LAN9116 56989 LAN9117 56990 LAN9215 56991 LAN9216 56992 LAN9217 56993 56994 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 56995 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 56996 56997commit 8c8463cce44d849e37744749b32d38e1dfb12e50 56998Author: Sascha Hauer <s.hauer@pengutronix.de> 56999Date: Sun Mar 30 11:32:16 2008 +0100 57000
57001 add an i2c driver for mx31 57002 57003 This patch adds an i2c driver for Freescale i.MX processors 57004 57005 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 57006 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 57007 57008commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d 57009Author: Sascha Hauer <s.hauer@pengutronix.de> 57010Date: Sun Mar 30 11:30:43 2008 +0100 57011 57012 core support for Freescale mx31 57013 57014 This patch adds the core support for Freescale mx31 57015 57016 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 57017 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 57018 57019commit 8bf69d81782619187933a605f1a95ee1d069478d 57020Author: Sascha Hauer <s.hauer@pengutronix.de> 57021Date: Sun Mar 30 11:28:46 2008 +0100 57022 57023 Separate omap24xx specific code from arm1136 57024 57025 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx. 57026 57027 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> 57028 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 57029 57030commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d 57031Author: Peter Pearse <peter.pearse@arm.com> 57032Date: Sun Mar 30 11:23:05 2008 +0100 57033 57034 Add pmdra into MAKEALL 57035 57036 Signed-off-by: Peter Pearse <peter.pearse@arm.com> 57037 57038commit a574a73852a527779234e73e17e7597fd8128882 57039Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]> 57040Date: Sun Mar 30 11:21:58 2008 +0100 57041 57042 Adds support for the Prodrive PMDRA board, based on a DM6441 57043 57044 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl> 57045 57046commit 1377b5583a48021d983e1fd565f7d40c89e84d63 57047Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]> 57048Date: Sun Mar 30 11:11:34 2008 +0100 57049 57050 Removes all board specific code from the arch. part for DM644x (DaVinci) boards 57051 57052 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl> 57053 57054commit 1704dc20917b4f71e373e2c888497ee666d40380 57055Author: Dirk Behme <dirk.behme@gmail.com> 57056Date: Sun Mar 30 11:09:01 2008 +0100 57057 57058 - Remove *_masked() functions as noted by Wolfgang 57059 - Adapt register naming to recent TI spec (sprue26, March 2007) 57060 - Fix reset_timer() handling 57061 - As reported by Pieter [1] the overflow fix introduced a 57062 delay of factor 16 (e.g 2 seconds became 32). While the 57063 overflow fix is basically okay, it missed to divide udelay by 57064 16, too. Fix this. 57065 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179 57066 - Remove software division of timer count value (DIV(x) 57067 macro) and do it in hardware (TIM_CLK_DIV). 57068 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> 57069 and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for 57070 the hints & testing! 57071 57072 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 57073 57074 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> 57075 57076commit ac3315c26e143c31680750c9c13f027efbcc887e 57077Author: Andre Schwarz <andre.schwarz@matrix-vision.de> 57078Date: Thu Mar 6 16:45:44 2008 +0100 57079 57080 new PHY @ e1000 - 2nd try 57081 57082 Add 82541ER device with latest integrated IGP2 PHY. 57083 Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom. 57084 57085 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 57086 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 57087 57088commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8 57089Author: Daniel Hellstrom <daniel@gaisler.com> 57090Date: Fri Mar 28 20:22:53 2008 +0100 57091 57092 SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver. 57093 57094 GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without 57095 a debug link (EDCL). The GRETH core is documented in GRIP.pdf 57096 available at www.gaisler.com. 57097 57098 If the GRETH has GigaBit support (GBIT, Scatter gather, checksum 57099 offloading etc.) can be determined by a bit in the control register. 57100 The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode. 57101 57102 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 57103 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 57104 57105commit 233a8bcd94997f3f345833a3b82e836222f2a206 57106Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com> 57107Date: Mon Mar 17 17:08:22 2008 -0500 57108 57109 Add CONFIG_MII_INIT in cmd_mii.c 57110 57111 Provide common configuration in do_mii() to execute mii_init() 57112 for all cpu architectures 57113 57114 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 57115 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 57116 57117commit f605479de2deb11e834f31dfdb0af107c86aced6 57118Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com> 57119Date: Mon Mar 17 17:08:16 2008 -0500 57120 57121 ColdFire: Fix FEC transmit issue for MCF5275 57122 57123 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 57124 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 57125 57126commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746 57127Author: Aras Vaichas <arasv@magtech.com.au> 57128Date: Wed Mar 26 09:43:57 2008 +1100 57129 57130 DHCP request fix for Windows Server 2003 57131 57132 Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional 57133 delay before sending "DHCP Request" in net/bootp.c. Required to overcome 57134 interoperability problems with Windows Server 200x DHCP server when U-Boot 57135 client responds too fast for server to handle. 57136 57137 Signed-off-by: Aras Vaichas <arasv@magtech.com.au> 57138 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 57139 57140commit 97bf85d784fbed485e652eb907589ad0d5cb7262 57141Author: Daniel Hellstrom <daniel@gaisler.com> 57142Date: Fri Mar 28 20:40:19 2008 +0100 57143 57144 MTD/CFI: flash_read64 is defined a weak function (for SPARC) 57145 57146 SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address. 57147 SPARC CPUs implement flash_read64 which calls __raw_readq. 57148 57149 For current SPARC architectures (LEON2 and LEON3) each read from the 57150 FLASH must lead to a cache miss. This is because FLASH can not be set 57151 non-cacheable since program code resides there, and alternatively disabling 57152 cache is poor from performance view, or doing a cache flush between each 57153 read is even poorer. 57154 57155 Forcing a cache miss on a SPARC is done by a special instruction "lda" - 57156 load alternative space, the alternative space number (ASI) is processor 57157 implementation spcific and can be found by including <asm/processor.h>. 57158 57159 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com> 57160 57161commit 70431e8a7393b6b793f77957f95b999fc9a269b8 57162Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 57163Date: Fri Mar 28 15:41:25 2008 +0100 57164 57165 Make MPC83xx one step closer to full relocation. 57166 57167 Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx 57168 and use GOT relative reference. 57169 57170 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 57171 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 57172 57173commit 5b2793a3f3de34d439232b05acc8af67a028fd35 57174Author: Michael Barkowski <michael.barkowski@freescale.com> 57175Date: Thu Mar 27 14:34:43 2008 -0400 57176 57177 mpc8323erdb: fix EEPROM page size and get MAC from EEPROM 57178 57179 This patch fixes eeprom page size so that you can now write more than 57180 64 bytes at a time. 57181 57182 It also makes the board take MAC addresses, if found, from EEPROM. 57183 57184 User should place up to 4 addresses at offset 0x7f00, for 57185 eth{,1,2,3}addr. Any unused addresses should be zero. This group of 57186 four six-byte values should have it's CRC at the end. crc32 and 57187 eeprom commands can be used to accomplish this. 57188 57189 If CRC fails, MAC addresses come from the environment. If CRC 57190 succeeds, the environment is overwritten at startup. 57191 57192 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com> 57193 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 57194 57195commit 8f325cff31f6e745e6540014b131b9a97f61944c 57196Author: Michael Barkowski <michael.barkowski@freescale.com> 57197Date: Fri Mar 28 15:15:38 2008 -0400 57198 57199 mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE 57200 57201 Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB 57202 controller on the PCI bus in Linux on the MPC8323ERDB. 57203 57204 This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's 57205 config file. 57206 57207 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com> 57208 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 57209 57210commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9 57211Author: Kim Phillips <kim.phillips@freescale.com> 57212Date: Fri Mar 28 10:19:07 2008 -0500 57213 57214 mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code 57215 57216 in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6, 57217 85xx's "Update SVR numbers to expand support", simplify SPRIDR processing 57218 and processor ID display. Add REVID_{MAJ,MIN}OR macros to make 57219 REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR 57220 convenience macros. 57221 57222 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 57223 57224commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af 57225Author: Kim Phillips <kim.phillips@freescale.com> 57226Date: Fri Mar 28 10:18:53 2008 -0500 57227 57228 mpc83xx: display ddr frequency in board_add_ram_info banner 57229 57230 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 57231 57232commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482 57233Author: Kim Phillips <kim.phillips@freescale.com> 57234Date: Fri Mar 28 10:18:40 2008 -0500 57235 57236 mpc83xx: unreinvent mem_clk 57237 57238 delete ddr_clk and use mem_clk instead. Rename other ddr_*_clk to 57239 mem_*_clk for consistency's sake. 57240 57241 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 57242 57243commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536 57244Author: Kim Phillips <kim.phillips@freescale.com> 57245Date: Fri Mar 28 14:31:23 2008 -0500 57246 57247 mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards 57248 57249 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 57250 57251commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393 57252Author: Dave Liu <r63238@freescale.com> 57253Date: Wed Mar 26 22:57:19 2008 +0800 57254 57255 mpc83xx: enable the SATA interface on mpc837xemds board 57256 57257 Enable the first two SATA interfaces on MPC837xEMDS board, 57258 The two SATA ports are on LYNX1. (SATA0/1 on J4/5) 57259 57260 Signed-off-by: Dave Liu <daveliu@freescale.com> 57261 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 57262 57263commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a 57264Author: Dave Liu <r63238@freescale.com> 57265Date: Wed Mar 26 22:56:36 2008 +0800 57266 57267 mpc83xx: initialize serdes for MPC837xEMDS boards 57268 57269 This patch is stolen from Anton Vorontsov's patch 57270 for mpc837xerdb boards. 57271 57272 The reference clk and xcorevdd voltage of serdes1/2 57273 is same between mpc837xemds and mpc837xerdb. 57274 57275 8377E: LYNX1- 2 SATA LYNX2- 2 PCIE 57276 8378E: LYNX1- 2 SGMII LYNX2- 2 PCIE 57277 8379E: LYNX1- 2 SATA LYNX2- 2 SATA 57278 57279 Signed-off-by: Dave Liu <daveliu@freescale.com> 57280 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 57281 57282commit cc8e839abc80887ae832767b5930d40edd6d7eb7 57283Author: Stefan Roese <sr@denx.de> 57284Date: Fri Mar 28 14:09:04 2008 +0100 57285 57286 ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision 57287 57288 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA 57289 interface. This usage can be configured with the jumper J6. This patch 57290 displays the current configuration upon bootup and changes the PCIe 57291 init loop, to only initialize the availabel PCIe slots. 57292 57293 Signed-off-by: Stefan Roese <sr@denx.de> 57294 57295commit 90447ecbbac8572457b6d8903073ac3f120995ba 57296Author: Tor Krill <tor@excito.com> 57297Date: Fri Mar 28 11:29:10 2008 +0100 57298 57299 MTD/CFI: Add support for 16bit legacy AMD flash 57300 57301 Add entry for 512Kx16 AMD flash to jedec_table. 57302 Read out 16bit device id if chipwidth is 16bit. 57303 Fixed coding style after Stefans feedback 57304 57305 Signed-off-by: Tor Krill <tor@excito.com> 57306 57307commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e 57308Author: Stefan Roese <sr@denx.de> 57309Date: Fri Mar 28 11:02:53 2008 +0100 57310 57311 ppc: Small change to CFG_MEM_TOP_HIDE description 57312 57313 Signed-off-by: Stefan Roese <sr@denx.de> 57314 57315commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00 57316Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57317Date: Thu Mar 27 15:44:12 2008 +0900 57318 57319 sh: Add support stat structure and stat.h 57320 57321 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57322 57323commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09 57324Author: Mark Jonas <toertel@gmail.com> 57325Date: Sat Mar 22 19:27:52 2008 +0100 57326 57327 sh: Removed warning when compiling drivers/serial/serial_sh.c. 57328 57329 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> 57330 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57331 57332commit f309fa38929ffba71230c02330ffa42f4bba6333 57333Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57334Date: Wed Mar 12 18:02:57 2008 +0900 57335 57336 sh: Remove disable_ctrlc function from R7780MP 57337 57338 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57339 57340commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3 57341Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57342Date: Wed Mar 12 17:55:15 2008 +0900 57343 57344 sh: Add maintainer of R7780MP to MAINTAINER file 57345 57346 Update MAINTAINER entry for R7780MP. And fix maintainer's name. 57347 57348 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57349 57350commit f5e2466f7baa887a7df0c536333eea8231333497 57351Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57352Date: Tue Mar 25 17:11:24 2008 +0900 57353 57354 sh: Add support Renesas Solutions R2D plus board 57355 57356 R2D plus is SH reference board used with SH7751R. 57357 This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface, 57358 one PCI bus, VGA, and two Ethernet controller. 57359 57360 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57361 57362commit e92c95180bb5bc5fd4051598a9d60beaba48988d 57363Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57364Date: Wed Mar 12 12:15:29 2008 +0900 57365 57366 sh: Add support SH4 cache control 57367 57368 Add support SH4 cache control and flash_cache function 57369 57370 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57371 57372commit 28e5efde4d925fcb34901d0030d0648de2da7e89 57373Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57374Date: Mon Mar 24 01:53:01 2008 +0900 57375 57376 sh: Add support PCI host driver for SH7751/SH7751R 57377 57378 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57379 57380commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721 57381Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57382Date: Mon Mar 24 02:11:26 2008 +0900 57383 57384 sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci 57385 57386 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57387 57388commit 566933278101c144d75361ea682678a326c1290d 57389Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57390Date: Wed Mar 12 12:10:28 2008 +0900 57391 57392 sh: Add support SuperH SH7751/SH7751R 57393 57394 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57395 57396commit 3313e0e26224fc9a0c445124f3455058c696df84 57397Author: Mark Jonas <toertel@gmail.com> 57398Date: Mon Mar 10 11:37:10 2008 +0100 57399 57400 sh: Added support for SH7720 based board MPR2. 57401 57402 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com> 57403 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57404 57405commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f 57406Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57407Date: Thu Mar 6 14:05:53 2008 +0900 57408 57409 sh: Fix receive FIFO level register of SH4A 57410 57411 Receive FIFO level register is different in SH4A. 57412 Because register is different, cannot occasionally receive data. 57413 57414 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57415 57416commit c133c1fb0b590662206b0eba70f4478ee0300a9a 57417Author: Yusuke Goda <goda.yusuke@renesas.com> 57418Date: Tue Mar 11 12:55:12 2008 +0900 57419 57420 sh: Add support Renesas Solutions R7780MP 57421 57422 Renesas Solutions R7780MP is a reference board on SH7780. 57423 This board has serial, 10/100 base Ethernet deivice, CF slot 57424 and VGA devices. This board can set extension board. 57425 Extension board has 10/100/1000 base Ethernet device, PCI slot, 57426 S-ATA, iDVR slot. 57427 57428 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com> 57429 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57430 57431commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28 57432Author: Yusuke Goda <goda.yusuke@renesas.com> 57433Date: Wed Mar 5 14:30:02 2008 +0900 57434 57435 sh: Add support PCI of SuperH and SH7780 57436 57437 This patch add support PCI of SuperH base code and SH7780 specific code. 57438 57439 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com> 57440 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57441 57442commit b55523efff2ae11f0b9ae3cc405893c32eb78156 57443Author: Yusuke Goda <goda.yusuke@renesas.com> 57444Date: Wed Mar 5 14:23:26 2008 +0900 57445 57446 sh: Add support SH7780 57447 57448 SH7780 is CPU of Renesas Technology. 57449 This CPU has 57450 - CPU clock 400MHz 57451 - PCI support 57452 - DDR-SDRAM controller 57453 - etc ... 57454 57455 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com> 57456 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57457 57458commit c2042f5952a686c414031309b8f244513bf578f0 57459Author: goda.yusuke <goda.yusuke@renesas.com> 57460Date: Fri Jan 25 20:46:36 2008 +0900 57461 57462 sh: Add support Renesas Solutions Migo-R board 57463 57464 Migo-R is a board based on SH7722 and has may devices. 57465 In this patch, supported SCIF, NOR flash and Ethernet. 57466 57467 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com> 57468 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 57469 57470commit 74d1e66d22dac91388bc538b2fe19f735edc5b82 57471Author: Bartlomiej Sieka <tur@semihalf.com> 57472Date: Thu Mar 27 15:06:40 2008 +0100 57473 57474 Fix host tool build breakage, take two 57475 57476 Revert commit 87c8431f and fix build breakage so that the build continues 57477 to work on FC systems. 57478 57479 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 57480 57481commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6 57482Author: Stefan Roese <sr@denx.de> 57483Date: Wed Mar 19 09:36:47 2008 +0100 57484 57485 ppc4xx: Enable ECC on LWMON5 57486 57487 Since all ECC related problems seem to be resolved on LWMON5, this patch 57488 now enables ECC support. 57489 57490 We have to write the ECC bytes by zeroing and flushing in smaller 57491 steps, since the whole 256MByte takes too long for the external 57492 watchdog. 57493 57494 Signed-off-by: Stefan Roese <sr@denx.de> 57495 57496commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb 57497Author: Larry Johnson <lrj@acm.org> 57498Date: Mon Mar 17 11:10:35 2008 -0500 57499 57500 ppc4xx: Updates to Korat-specific code 57501 57502 This patch contains updates for changes for the Korat PPC440EPx board. 57503 These changes include: 57504 57505 (1) Support for "permanent" and "upgradable" copies of U-Boot, as 57506 described in the new "doc/README.korat" file; 57507 57508 (2) a new memory map for the registers in the board's CPLD; 57509 57510 (3) a revised format for manufacturer's data in serial EEPROM; and 57511 57512 (4) changes to track updates to U-Boot for the Sequoia board. 57513 57514 Signed-off-by: Larry Johnson <lrj@acm.org> 57515 57516commit f766cdf89b3a2a7634b8c5869f606150e332036c 57517Author: Markus Brunner <super.firetwister@gmail.com> 57518Date: Thu Mar 27 10:46:25 2008 +0100 57519 57520 ppc4xx: PPC405EP Set EMAC noise filter bits 57521 57522 This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359 57523 which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally 57524 disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set. 57525 57526 Signed-off-by: Markus Brunner <super.firetwister@gmail.com> 57527 Signed-off-by: Stefan Roese <sr@denx.de> 57528 57529commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991 57530Author: Mike Nuss <mike@terascala.com> 57531Date: Wed Feb 20 11:54:20 2008 -0500 57532 57533 ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx 57534 57535 On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured 57536 after startup to change the speed of the clocks. This patch adds the 57537 option CFG_PLL_RECONFIG. If this option is set to 667, the CPU 57538 initialization code will reconfigure the PLL to run the system with a CPU 57539 frequency of 667MHz and PLB frequency of 166MHz, without the need for an 57540 external EEPROM. 57541 57542 Signed-off-by: Mike Nuss <mike@terascala.com> 57543 Acked-by: Stefan Roese <sr@denx.de> 57544 57545commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1 57546Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 57547Date: Thu Mar 27 09:12:40 2008 +0100 57548 57549 new-image: Fix host tool build breakage 57550 57551 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com> 57552 57553commit 6fb4b640562a10daff0dbe537638d511b5b48650 57554Author: Stefan Roese <sr@denx.de> 57555Date: Thu Mar 27 10:24:03 2008 +0100 57556 57557 ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined 57558 57559 Signed-off-by: Stefan Roese <sr@denx.de> 57560 57561commit 9462732a3ec551c11862450902cd8ee1bedea6d9 57562Author: Stefan Roese <sr@denx.de> 57563Date: Wed Mar 19 10:23:43 2008 +0100 57564 57565 ppc4xx: Add fdt support to Prodrive alpr 57566 57567 Since this board will probably be ported to arch/powerpc in the 57568 near future, we add device tree support now. This way we are 57569 "ready" for arch/powerpc from now on. 57570 57571 Signed-off-by: Stefan Roese <sr@denx.de> 57572 57573commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150 57574Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl> 57575Date: Mon Mar 17 09:27:56 2008 +0100 57576 57577 ppc4xx: Enable cache support on the ALPR board 57578 57579 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl> 57580 57581commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69 57582Author: Stefan Roese <sr@denx.de> 57583Date: Wed Mar 26 10:14:11 2008 +0100 57584 57585 ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched" 57586 57587 If CFG_MEM_TOP_HIDE is defined in the board config header, this specified 57588 memory area will get subtracted from the top (end) of ram and won't get 57589 "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel 57590 should gets passed the now "corrected" memory size and won't touch it 57591 either. This should work for arch/ppc and arch/powerpc. Only Linux board 57592 ports in arch/powerpc with bootwrapper support, which recalculate the 57593 memory size from the SDRAM controller setup, will have to get fixed 57594 in Linux additionally. 57595 57596 This patch enables this config option on some PPC440EPx boards as a workaround 57597 for the CHIP 11 errata. Here the description from the AMCC documentation: 57598 57599 CHIP_11: End of memory range area restricted access. 57600 Category: 3 57601 57602 Overview: 57603 The 440EPx DDR controller does not acknowledge any 57604 transaction which is determined to be crossing over the 57605 end-of-memory-range boundary, even if the starting address is 57606 within valid memory space. Any such transaction from any PLB4 57607 master will result in a PLB time-out on PLB4 bus. 57608 57609 Impact: 57610 In case of such misaligned bursts, PLB4 masters will not 57611 retrieve any data at all, just the available data up to the 57612 end of memory, especially the 440 CPU. For example, if a CPU 57613 instruction required an operand located in memory within the 57614 last 7 words of memory, the DCU master would burst read 8 57615 words to update the data cache and cross over the 57616 end-of-memory-range boundary. Such a DCU read would not be 57617 answered by the DDR controller, resulting in a PLB4 time-out 57618 and ultimately in a Machine Check interrupt. The data would 57619 be inaccessible to the CPU. 57620 57621 Workaround: 57622 Forbid any application to access the last 256 bytes of DDR 57623 memory. For example, make your operating system believe that 57624 the last 256 bytes of DDR memory are absent. AMCC has a patch 57625 that does this, available for Linux. 57626 57627 This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards: 57628 lwmon5, korat, sequoia 57629 57630 The other remaining 440EPx board were intentionally not included 57631 since it is not clear to me, if they use the end of ram for some 57632 other purpose. This is unclear, since these boards have CONFIG_PRAM 57633 defined and even comments like this: 57634 57635 PMC440.h: 57636 /* esd expects pram at end of physical memory. 57637 * So no logbuffer at the moment. 57638 */ 57639 57640 It is strongly recommended to not use the last 256 bytes on those 57641 boards too. Patches from the board maintainers are welcome. 57642 57643 Signed-off-by: Stefan Roese <sr@denx.de> 57644 57645commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b 57646Author: Stefan Roese <sr@denx.de> 57647Date: Thu Mar 27 10:09:05 2008 +0100 57648 57649 ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT) 57650 57651 Signed-off-by: Stefan Roese <sr@denx.de> 57652 57653commit d56a3ce179688cde61073a3690e21703d68fafd7 57654Author: Stefan Roese <sr@denx.de> 57655Date: Tue Mar 25 17:51:13 2008 +0100 57656 57657 ppc4xx: Correctly pass phyiscal FLASH base address into dtb 57658 57659 The routine ft_board_setup() configures the EBC NOR mappings for the 57660 Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from 57661 0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS 57662 problem, we need to pass the corrected address here too. 57663 57664 Signed-off-by: Stefan Roese <sr@denx.de> 57665 57666commit 9ad31989de12ce5c67b07c4867ead47465655c4b 57667Author: Stefan Roese <sr@denx.de> 57668Date: Wed Mar 19 16:35:12 2008 +0100 57669 57670 ppc4xx: Fix compilation warning in 4xx_enet.c 57671 57672 Signed-off-by: Stefan Roese <sr@denx.de> 57673 57674commit 4c9e855734c523900322a7c3cdd9099b4f51b51d 57675Author: Stefan Roese <sr@denx.de> 57676Date: Wed Mar 19 16:20:49 2008 +0100 57677 57678 ppc4xx: Add AMCC Glacier 406GT eval board support 57679 57680 This patch adds support for the AMCC Glacier 460GT eval board. 57681 The main difference to the Canyonlands board are listed here: 57682 57683 - 4 ethernet ports instead of 2 57684 - no SATA port 57685 - no USB port 57686 57687 Currently EMAC2+3 are not working. This will be fixed in a later 57688 release. 57689 57690 Signed-off-by: Stefan Roese <sr@denx.de> 57691 57692commit d8bd643141af4710d7f1b69bbab6b760de0af0a1 57693Author: Stefan Roese <sr@denx.de> 57694Date: Thu Mar 27 08:47:26 2008 +0100 57695 57696 ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear 57697 57698 Signed-off-by: Stefan Roese <sr@denx.de> 57699 57700commit b9670dd85be6e0496ef2e231043c23cad9b1d903 57701Author: Anatolij Gustschin <agust@denx.de> 57702Date: Wed Mar 26 21:05:43 2008 +0100 57703 57704 Fix out of tree building issue 57705 57706 Currently U-Boot building in some external directory 57707 doesn't work. This patch tries to fix the problem. 57708 57709 Signed-off-by: Anatolij Gustschin <agust@denx.de> 57710 57711commit d4ee711d8a5c366ee3f857c26b927d12e66614ff 57712Author: Anatolij Gustschin <agust@denx.de> 57713Date: Wed Mar 26 18:13:33 2008 +0100 57714 57715 README: update documentation (availability, links, etc.) 57716 57717 Fix typo in README 57718 57719 Signed-off-by: Anatolij Gustschin <agust@denx.de> 57720 57721commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f 57722Author: Anatolij Gustschin <agust@denx.de> 57723Date: Wed Mar 26 17:47:44 2008 +0100 57724 57725 Fix compilation error in cmd_usb.c 57726 57727 This patch fixes compilation error 57728 cmd_usb.c: In function 'do_usb': 57729 cmd_usb.c:552: error: void value not ignored as it ought to be 57730 57731 Signed-off-by: Anatolij Gustschin <agust@denx.de> 57732 57733commit d8c82db482d6b535d12b419d6440b88bf7091c9b 57734Author: Timur Tabi <timur@freescale.com> 57735Date: Fri Mar 14 17:45:29 2008 -0500 57736 57737 Add support for setting the I2C bus speed in fsl_i2c.c 57738 57739 Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying 57740 the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro, 57741 but fsl_i2c.c ignores it and uses conservative value when programming the 57742 I2C bus speed. 57743 57744 Signed-off-by: Timur Tabi <timur@freescale.com> 57745 Acked-by: Andy Fleming <afleming@freescale.com> 57746 57747commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e 57748Author: Wolfgang Denk <wd@denx.de> 57749Date: Thu Mar 27 00:03:57 2008 +0100 57750 57751 Coding style cleanup, update CHANGELOG 57752 57753 Signed-off-by: Wolfgang Denk <wd@denx.de> 57754 57755commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4 57756Author: Dave Liu <r63238@freescale.com> 57757Date: Wed Mar 26 22:55:32 2008 +0800 57758 57759 drivers: add the support for Freescale SATA controller 57760 57761 Add the Freescale on-chip SATA controller driver to u-boot, 57762 The SATA controller is used on the 837x and 8315 targets, 57763 The driver can be used to load kernel, fs and dtb. 57764 57765 The features list: 57766 - 1.5/3 Gbps link speed 57767 - LBA48, LBA28 support 57768 - DMA and FPDMA support 57769 - Two ports support 57770 57771 Signed-off-by: Dave Liu <daveliu@freescale.com> 57772 57773commit bede87f4c87c3ccd868cc60ebf792e0560c6d024 57774Author: Dave Liu <r63238@freescale.com> 57775Date: Wed Mar 26 22:54:44 2008 +0800 57776 57777 ata: add the readme for SATA command line 57778 57779 Signed-off-by: Dave Liu <daveliu@freescale.com> 57780 57781commit cd54081cd479e542fc399b8a40651ff11a1ad849 57782Author: Dave Liu <r63238@freescale.com> 57783Date: Wed Mar 26 22:53:24 2008 +0800 57784 57785 ata: enable the sata initialize on boot up 57786 57787 Signed-off-by: Dave Liu <daveliu@freescale.com> 57788 57789commit 69386383c5c2b323c66495b0b0cef6a9714d83bf 57790Author: Dave Liu <r63238@freescale.com> 57791Date: Wed Mar 26 22:52:36 2008 +0800 57792 57793 ata: add the fis struct for SATA 57794 57795 Signed-off-by: Dave Liu <daveliu@freescale.com> 57796 57797commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc 57798Author: Dave Liu <r63238@freescale.com> 57799Date: Wed Mar 26 22:51:44 2008 +0800 57800 57801 ata: add the libata support 57802 57803 add simple libata support in u-boot 57804 57805 Signed-off-by: Dave Liu <daveliu@freescale.com> 57806 57807commit 8e9bb43429e50df55fa41932cbe65841ff579220 57808Author: Dave Liu <r63238@freescale.com> 57809Date: Wed Mar 26 22:50:45 2008 +0800 57810 57811 ata: make the ata_piix driver using new SATA framework 57812 57813 original ata_piix driver is using IDE framework, not real 57814 SATA framework. For now, the ata_piix driver is only used 57815 by x86 sc520_cdp board. This patch makes the ata_piix driver 57816 use the new SATA framework, so 57817 57818 - remove the duplicated command stuff 57819 - remove the CONFIG_CMD_IDE define in the sc520_cdp.h 57820 - add the CONFIG_CMD_SATA define to sc520_cdp.h 57821 57822 Signed-off-by: Dave Liu <daveliu@freescale.com> 57823 57824commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe 57825Author: Dave Liu <r63238@freescale.com> 57826Date: Wed Mar 26 22:49:44 2008 +0800 57827 57828 ata: add the support for SATA framework 57829 57830 - add the SATA framework 57831 - add the SATA command line 57832 57833 Signed-off-by: Dave Liu <daveliu@freescale.com> 57834 57835commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c 57836Author: Dave Liu <r63238@freescale.com> 57837Date: Wed Mar 26 22:48:18 2008 +0800 57838 57839 ata: merge the header of ata_piix driver 57840 57841 move the sata.h from include/ to drivers/block/ata_piix.h 57842 57843 Signed-off-by: Dave Liu <daveliu@freescale.com> 57844 57845commit 9eef62804d9695425b24c87b46a61a7fa74afee0 57846Author: Dave Liu <r63238@freescale.com> 57847Date: Wed Mar 26 22:47:06 2008 +0800 57848 57849 ata: merge the ata_piix driver 57850 57851 move the cmd_sata.c from common/ to drivers/ata_piix.c, 57852 the cmd_sata.c have some part of ata_piix controller drivers. 57853 consolidate the driver to have better framework. 57854 57855 Signed-off-by: Dave Liu <daveliu@freescale.com> 57856 57857commit b9e749e95354f33eb5dc6653c6db7d502adb95fe 57858Author: Markus Klotzbuecher <mk@denx.de> 57859Date: Wed Mar 26 18:26:43 2008 +0100 57860 57861 USB, Storage: fix a bug introduced in commit 57862 f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info 57863 to only print only information on one storage device, but not for 57864 multiple. 57865 57866 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 57867 57868commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360 57869Author: Anatolij Gustschin <agust@denx.de> 57870Date: Wed Mar 26 17:47:44 2008 +0100 57871 57872 Fix compilation error in cmd_usb.c 57873 57874 This patch fixes compilation error 57875 cmd_usb.c: In function 'do_usb': 57876 cmd_usb.c:552: error: void value not ignored as it ought to be 57877 57878 Signed-off-by: Anatolij Gustschin <agust@denx.de> 57879 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 57880 57881commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15 57882Author: Kumar Gala <galak@kernel.crashing.org> 57883Date: Wed Mar 26 08:53:53 2008 -0500 57884 57885 85xx: Add cpu_mp_lmb_reserve helper to reserve boot page 57886 57887 Provide a board_lmb_reserve helper function to ensure we reserve 57888 the page of memory we are using for the boot page translation code. 57889 57890 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 57891 57892commit 79679d80021ab095e639e250ca472fe526da02e2 57893Author: Kumar Gala <galak@kernel.crashing.org> 57894Date: Wed Mar 26 08:34:25 2008 -0500 57895 57896 85xx: Update multicore boot mechanism to ePAPR v0.81 spec 57897 57898 The following changes are needed to be inline with ePAPR v0.81: 57899 57900 * r4, r5 and now always set to 0 on boot release 57901 * r7 is used to pass the size of the initial map area (IMA) 57902 * EPAPR_MAGIC value changed for book-e processors 57903 * changes in the spin table layout 57904 * spin table supports a 64-bit physical release address 57905 57906 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 57907 57908commit 25eedb2c1958a13110c7de1fc809b624053cc69c 57909Author: Jon Loeliger <jdl@freescale.com> 57910Date: Wed Mar 19 15:02:07 2008 -0500 57911 57912 FSL: Clean up board/freescale/common/Makefile 57913 57914 Each file that can be built here now follows some 57915 CONFIG_ option so that they are appropriately built 57916 or not, as needed. And CONFIG_ defines were added 57917 to various board config files to make sure that happens. 57918 57919 The other board/freescale/*/Makefiles no longer need 57920 to reach up and over into ../common to build their 57921 individually needed files any more. 57922 57923 Boards that are CDS specific were renamed with cds_ prefix. 57924 57925 Signed-off-by: Jon Loeliger <jdl@freescale.com> 57926 57927commit a5af4b358a7caa9c0aa374d4d894bf762ec37669 57928Author: Kumar Gala <galak@kernel.crashing.org> 57929Date: Wed Feb 27 22:00:27 2008 -0600 57930 57931 85xx: Fix merge duplication 57932 57933 ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate. 57934 57935 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 57936 57937commit 5893b3d0a4084f87a06a5d3dc03db91206818941 57938Author: James Yang <James.Yang@freescale.com> 57939Date: Tue Feb 12 16:35:07 2008 -0600 57940 57941 85xx: Expand CCSR space with more DDR controller registers. 57942 57943 Signed-off-by: James Yang <James.Yang@freescale.com> 57944 Signed-off-by: Jon Loeliger <jdl@freescale.com> 57945 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 57946 57947commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85 57948Author: James Yang <James.Yang@freescale.com> 57949Date: Fri Feb 8 18:05:08 2008 -0600 57950 57951 85xx: Speed up get_ddr_freq() and get_bus_freq() 57952 57953 get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were 57954 called. However, get_sys_info() recalculates extraneous information when 57955 called each time. Have get_ddr_freq() and get_bus_freq() return memoized 57956 values from global_data instead. 57957 57958 Signed-off-by: James Yang <James.Yang@freescale.com> 57959 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 57960 57961commit e9ea679918fbc9a53fa2f2a904aac874ea736036 57962Author: James Yang <James.Yang@freescale.com> 57963Date: Fri Feb 8 16:46:27 2008 -0600 57964 57965 85xx: Show DDR memory data rate in addition to the memory clock frequency. 57966 57967 Show the DDR memory data rate in addition to the memory clock 57968 frequency. For DDR/DDR2 memories the memory data rate is 2x the 57969 memory clock. 57970 57971 Signed-off-by: James Yang <James.Yang@freescale.com> 57972 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 57973 57974commit 591933ca6eabc440e6ed6967233aaf56fce464a3 57975Author: James Yang <James.Yang@freescale.com> 57976Date: Fri Feb 8 16:44:53 2008 -0600 57977 57978 85xx: get_tbclk() speed up and rounding fix 57979 57980 Speed up get_tbclk() by referencing pre-computed bus clock 57981 frequency value from global data instead of sys_info_t. Fix 57982 rounding of result to nearest; previously it was rounding 57983 upwards. 57984 57985 Signed-off-by: James Yang <James.Yang@freescale.com> 57986 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 57987 57988commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6 57989Author: Andy Fleming <afleming@freescale.com> 57990Date: Wed Feb 6 01:19:40 2008 -0600 57991 57992 Update SVR numbers to expand support 57993 57994 FSL has taken to using SVR[16:23] as an SOC sub-version field. This 57995 is used to distinguish certain variants within an SOC family. To 57996 account for this, we add the SVR_SOC_VER() macro, and update the SVR_* 57997 constants to reflect the larger value. We also add SVR numbers for all 57998 of the current variants. Finally, to make things neater, rather than 57999 use an enormous switch statement to print out the CPU type, we create 58000 and array of SVR/name pairs (using a macro), and print out the CPU name
58001 that matches the SVR SOC version. 58002 58003 Signed-off-by: Andy Fleming <afleming@freescale.com> 58004 58005commit b83eef440cf3cef816172ccbb5897ccd8e403cf3 58006Author: Andy Fleming <afleming@freescale.com> 58007Date: Wed Feb 6 01:12:57 2008 -0600 58008 58009 Add the Freescale PCI device IDs 58010 58011 Signed-off-by: Andy Fleming <afleming@freescale.com> 58012 58013commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd 58014Author: Kumar Gala <galak@kernel.crashing.org> 58015Date: Thu Feb 14 11:04:23 2008 -0600 58016 58017 85xx: Added support for multicore boot mechanism 58018 58019 Added the cpu command that provides a generic mechanism to get status, 58020 reset, and release secondary cores in multicore processors. 58021 58022 Added support for using the ePAPR defined spin-table mechanism on 85xx. 58023 58024 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 58025 Signed-off-by: Andy Fleming <afleming@freescale.com> 58026 58027commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64 58028Author: Kumar Gala <galak@kernel.crashing.org> 58029Date: Thu Jan 17 16:48:33 2008 -0600 58030 58031 85xx: Added support for multicore boot mechanism 58032 58033 Added the cpu command that provides a generic mechanism to get status, 58034 reset, and release secondary cores in multicore processors. 58035 58036 Added support for using the ePAPR defined spin-table mechanism on 85xx. 58037 58038 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 58039 58040commit f69766e4b5d47ecd3aa58677a8da875694f364f2 58041Author: Kumar Gala <galak@kernel.crashing.org> 58042Date: Wed Jan 30 14:55:14 2008 -0600 58043 58044 85xx: Add the concept of CFG_CCSRBAR_PHYS 58045 58046 When we go to 36-bit physical addresses we need to keep the concept of 58047 the physical CCSRBAR address seperate from the virtual one. 58048 58049 For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR 58050 58051 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 58052 58053commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e 58054Author: Wolfgang Denk <wd@denx.de> 58055Date: Wed Mar 26 15:38:47 2008 +0100 58056 58057 Coding style cleanup. 58058 58059 Signed-off-by: Wolfgang Denk <wd@denx.de> 58060 58061commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660 58062Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 58063Date: Wed Mar 26 13:02:13 2008 +0100 58064 58065 Add CFG_RTC_DS1337_NOOSC to turn off OSC output 58066 58067 The default settings for RTC DS1337 keeps the OSC 58068 output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to 58069 turn it off. 58070 58071 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 58072 58073commit 438a4c11260b4ea9805039b0b4f92f9df5306b02 58074Author: Wolfgang Denk <wd@denx.de> 58075Date: Wed Mar 26 11:48:46 2008 +0100 58076 58077 Cleanup coding style, update CHANGELOG 58078 58079 Signed-off-by: Wolfgang Denk <wd@denx.de> 58080 58081commit 218ca724c08ca8a649f0917cf201cf23d4b33f39 58082Author: Wolfgang Denk <wd@denx.de> 58083Date: Wed Mar 26 10:40:12 2008 +0100 58084 58085 README: update documentation (availability, links, etc.) 58086 58087 Signed-off-by: Wolfgang Denk <wd@denx.de> 58088 58089commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 58090Author: Aras Vaichas <arasv@magtech.com.au> 58091Date: Tue Mar 25 12:09:07 2008 +1100 58092 58093 USB Storage, add meaningful return value 58094 58095 This patch changes the "usb storage" command to return success if it 58096 finds a USB storage device, otherwise it returns error. 58097 58098 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 58099 58100commit 18e69a35efbb078403db0c0063986470dad7d082 58101Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58102Date: Fri Mar 14 23:20:18 2008 +0300 58103 58104 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role 58105 58106 Linux understands "host" (default), "peripheral" and "otg" (broken). 58107 Though, U-Boot doesn't restrict dr_mode variable to these values (think 58108 of renames in future). 58109 58110 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58111 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 58112 58113commit c7604783b236e368f225efb7b3efb418fe20b404 58114Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58115Date: Fri Mar 14 23:20:30 2008 +0300 58116 58117 tsec: fix link detection for the RTL8211B PHY 58118 58119 RTL8211B sets link state register after autonegotiation complete, 58120 so with bootdelay=0 RTL8211B will report lack of the link. 58121 58122 To fix this, we should wait for aneg to complete, even if the 58123 link is currently down. 58124 58125 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58126 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 58127 58128commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4 58129Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58130Date: Mon Mar 24 20:47:09 2008 +0300 58131 58132 mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups 58133 58134 device_type = "soc" is being deprecated, newer device trees will use 58135 "fsl,soc" and/or "fsl,immr" for the soc nodes. 58136 58137 This patch also adds clock-frequency property for soc nodes (the same 58138 value as bus-frequency). 58139 58140 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58141 58142commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07 58143Author: Joe D'Abbraccio <ljd015@freescale.com> 58144Date: Mon Mar 24 13:00:59 2008 -0400 58145 58146 Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock 58147 58148 With the original value of 1/2 clock cycle delay, the system ran relatively 58149 stable except when we run benchmarks that are intensive users of memory. 58150 When I run samba connected disk with a HDBENCH test, the system locks-up 58151 or reboots sporadically. 58152 58153 Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com> 58154 58155commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923 58156Author: Scott Wood <scottwood@freescale.com> 58157Date: Mon Mar 24 12:44:13 2008 -0500 58158 58159 mpc83xx: Set PCI I/O bus-address base to zero. 58160 58161 The device trees for these boards describe PCI I/O as starting from 58162 address zero from the device's perspective. 58163 58164 Placing I/O elsewhere may cause problems with certain PCI boards, and may 58165 cause problems with Linux. 58166 58167 Signed-off-by: Scott Wood <scottwood@freescale.com> 58168 58169commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e 58170Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58171Date: Mon Mar 24 20:47:05 2008 +0300 58172 58173 mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK 58174 58175 At least on the "33MHz Pilot" board crystal is actually 33.3MHz. 58176 This patch fixes "system time drifting" problem. 58177 58178 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58179 58180commit 3a0cfdd576dc9b16d1468d37339182607c697fb7 58181Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58182Date: Mon Mar 24 20:47:02 2008 +0300 58183 58184 mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS 58185 58186 This is needed to update /choosen/linux,stdout-path properly. 58187 58188 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58189 58190commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9 58191Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58192Date: Mon Mar 24 20:47:00 2008 +0300 58193 58194 mpc83xx: MPC8360E-RDK: add dhcp command 58195 58196 Plus modify environment to use it and remove bootfile env variable, 58197 it is internal and CONFIG_BOOTFILE is used for these purposes. 58198 58199 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58200 58201commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa 58202Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58203Date: Mon Mar 24 20:46:57 2008 +0300 58204 58205 mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc 58206 58207 Current DDR setup easily causes memory corruption, this patch fixes it. 58208 58209 Also fix TIMING_CFG0_MRS_CYC definition. 58210 58211 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58212 58213commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a 58214Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58215Date: Mon Mar 24 20:46:53 2008 +0300 58216 58217 mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI 58218 58219 This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen 58220 controller and FHCI (QE USB). 58221 58222 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58223 58224commit 7ad959490962e6842648d87d4bd795ea6cdcce67 58225Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58226Date: Mon Mar 24 20:46:51 2008 +0300 58227 58228 mpc83xx: MPC8360E-RDK: add support for NAND 58229 58230 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58231 58232commit 9a3e832aeb491861d029991241572ebdf4b5b61b 58233Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58234Date: Mon Mar 24 20:46:46 2008 +0300 58235 58236 mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode 58237 58238 This is needed for BCM PHYs to work on this board. 58239 58240 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58241 58242commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e 58243Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58244Date: Mon Mar 24 20:46:34 2008 +0300 58245 58246 uec: add support for Broadcom BCM5481 Gigabit PHY 58247 58248 This patch adds basic support for Broadcom BCM5481 PHY. 58249 58250 RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is 58251 Peter Barada <peterb@logicpd.com>. 58252 58253 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58254 58255commit 6a600c3a1876bc203445df4f0fd6b12648259666 58256Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58257Date: Mon Mar 24 20:46:28 2008 +0300 58258 58259 uec: add support for RGMII_RXID interface mode 58260 58261 PHY drivers will use it to setup software delay between RXD and RXC 58262 signals. 58263 58264 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58265 58266commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d 58267Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58268Date: Mon Mar 24 20:46:24 2008 +0300 58269 58270 uec: add support for gbit mii status readings 58271 58272 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58273 58274commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d 58275Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58276Date: Mon Mar 24 17:40:47 2008 +0300 58277 58278 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards 58279 58280 This is primarily for the early console support. 58281 58282 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58283 58284commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635 58285Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58286Date: Mon Mar 24 17:40:43 2008 +0300 58287 58288 83xx: initialize serdes for MPC837XRDB boards 58289 58290 On the MPC8377ERDB: 2 SATA and 2 PCI-E. 58291 On the MPC8378ERDB: 2 PCI-E 58292 On the MPC8379ERDB: 4 SATA 58293 58294 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58295 58296commit 453316a2a19642d8afcbca7452e40a6b44a197b1 58297Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58298Date: Mon Mar 24 17:40:32 2008 +0300 58299 58300 83xx: serdes setup routines 58301 58302 This patch adds few routines to configure serdes on 837x targets. 58303 58304 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58305 58306commit a796cdf9c377cb4e5d61d1079a296608f8fbd903 58307Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58308Date: Mon Mar 24 17:40:27 2008 +0300 58309 58310 83xx: split COBJS onto separate lines 58311 58312 ..plus get rid of some #ifdefs in the .c files. 58313 58314 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58315 58316commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3 58317Author: Anton Vorontsov <avorontsov@ru.mvista.com> 58318Date: Mon Mar 24 17:40:23 2008 +0300 58319 58320 83xx: nand support for MPC837XRDB boards 58321 58322 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 58323 58324commit 82e45a204190593e8613145a928f998fb8c909c4 58325Author: Jerry Van Baren <gvb.uboot@gmail.com> 58326Date: Tue Mar 18 21:44:41 2008 -0400 58327 58328 Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS. 58329 58330 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 58331 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 58332 58333commit 0fa7a1b4719e325fce332689fb8754ec166191ff 58334Author: Michael Barkowski <michael.barkowski@freescale.com> 58335Date: Thu Mar 20 13:15:39 2008 -0400 58336 58337 mpc8323erdb: remove RTC and add EEPROM 58338 58339 There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM. 58340 58341 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com> 58342 Acked-by: Kim Phillips <kim.phillips@freescale.com> 58343 58344commit 5bbeea86eb6afb872374cd23217cb3c1018443ed 58345Author: Michael Barkowski <michael.barkowski@freescale.com> 58346Date: Thu Mar 20 13:15:34 2008 -0400 58347 58348 mpc8323erdb: Improve the system performance 58349 58350 The following changes are based on kernel UCC ethernet performance: 58351 58352 1. Make the CSB bus pipeline depth as 4, and enable the repeat mode 58353 2. Optimize transactions between QE and CSB. Added CFG_SPCR_OPT 58354 switch to enable this setting. 58355 58356 The following changes are based on the App Note AN3369 and 58357 verified to improve memory latency using LMbench: 58358 58359 3. CS0_CONFIG[AP_n_EN] is changed from 1 to 0 58360 4. CS0_CONFIG[ODT_WR_CONFIG] set to 1. Was a reserved setting 58361 previously. 58362 5. TIMING_CFG_1[WRREC] is changed from 3clks to 2clks (based on 58363 Twr=15ns, and this was already the setting in DDR_MODE) 58364 6. TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on 58365 Trp=15ns) 58366 7. TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on 58367 Tras=40ns) 58368 8. TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on 58369 Trcd=15ns) 58370 9. TIMING_CFG_1[REFREC] changed from 21 clks to 11clks. (based on 58371 Trfc=75ns) 58372 10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks. (based 58373 on Tfaw=50ns) 58374 11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based 58375 on CL=3 and WL=2). 58376 58377 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com> 58378 Acked-by: Kim Phillips <kim.phillips@freescale.com> 58379 58380commit fc549c871f43933396a5b3e21d897023d4b31b8d 58381Author: Michael Barkowski <michael.barkowski@freescale.com> 58382Date: Thu Mar 20 13:15:28 2008 -0400 58383 58384 mpc8323erdb: use readable DDR config macros 58385 58386 Use available shift/mask macros to define DDR configuration. 58387 58388 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com> 58389 Acked-by: Kim Phillips <kim.phillips@freescale.com> 58390 58391commit 89c7784ed90ba50301eec521144f95111e472906 58392Author: Timur Tabi <timur@freescale.com> 58393Date: Fri Feb 8 13:15:55 2008 -0600 58394 58395 83xx: Add Vitesse VSC7385 firmware uploading 58396 58397 Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload 58398 the Vitesse VSC7385 firmware. Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET. 58399 Cleaned up the board header files to make selecting the VSC7385 easier to 58400 control. 58401 58402 Signed-off-by: Timur Tabi <timur@freescale.com> 58403 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 58404 58405commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc 58406Author: Timur Tabi <timur@freescale.com> 58407Date: Fri Feb 8 13:15:54 2008 -0600 58408 58409 NET: Add Vitesse VSC7385 firmware uploading 58410 58411 The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX 58412 and other boards. A small firwmare must be uploaded to its on-board memory 58413 before it can be enabled. This patch adds the code which uploads firmware 58414 (but not the firmware itself). 58415 58416 Previously, this feature was provided by a U-Boot application that was 58417 made available only on Freescale BSPs. The VSC7385 firmware must still 58418 be obtained separately, but at least there is no longer a need for a separate 58419 application. 58420 58421 Signed-off-by: Timur Tabi <timur@freescale.com> 58422 Acked-by: Ben Warren <biggerbadderben@gmail.com> 58423 58424commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855 58425Author: Wolfgang Denk <wd@denx.de> 58426Date: Wed Mar 26 00:52:10 2008 +0100 58427 58428 Coding Style cleanyp; update CHANGELOG 58429 58430 Signed-off-by: Wolfgang Denk <wd@denx.de> 58431 58432commit 43ddd9c820fec44816188f53346b464e20b3142d 58433Author: Jerry Van Baren <gvb.uboot@gmail.com> 58434Date: Sat Mar 22 14:23:49 2008 -0400 58435 58436 Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T 58437 58438 These defines embedded the u-boot env variables and/or the bd_t structure 58439 in the fdt blob. The conclusion of discussion on the u-boot email list 58440 was that embedding these in the fdt blob is not useful: there are better 58441 ways of passing the data (in fact, the fdt blob itself replaces the 58442 bd_t struct). 58443 58444 The only board that enables these is the stxxtc and they don't appear 58445 to be used by linux. 58446 58447 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 58448 Acked-by: Kim Phillips <kim.phillips@freescale.com> 58449 58450commit 22ed2285743359fd1fe73e411dff914b2256e68f 58451Author: Stefan Roese <sr@denx.de> 58452Date: Mon Mar 17 10:49:25 2008 +0100 58453 58454 rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile 58455 58456 Signed-off-by: Stefan Roese <sr@denx.de> 58457 58458commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d 58459Author: Kyungmin Park <kmpark@infradead.org> 58460Date: Mon Mar 17 08:54:06 2008 +0900 58461 58462 Add Flex-OneNAND booting support 58463 58464 Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array 58465 using a NOR Flash interface. This on-chip integration enables system designers 58466 to reduce external system logic and use high-density NAND Flash 58467 in applications that would otherwise have to use more NOR components. 58468 58469 Flex-OneNAND enables users to configure to partition it into SLC and MLC areas 58470 in more flexible way. While MLC area of Flex-OneNAND can be used to store data 58471 that require low reliability and high density, SLC area of Flex-OneNAND 58472 to store data that need high reliability and high performance. Flex-OneNAND 58473 can let users take advantage of storing these two different types of data 58474 into one chip, which is making Flex-OneNAND more cost- and space-effective. 58475 58476 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 58477 58478commit c512389cc4a10253249271ff6c887c6dab1f0db2 58479Author: André Schwarz <andre.schwarz@matrix-vision.de> 58480Date: Thu Mar 13 13:50:52 2008 +0100 58481 58482 MPC5200: support setup without FEC 58483 58484 Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is 58485 defined. Systems without FEC, i.e. no FEC node in DTB, should be possible. 58486 58487 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de> 58488 Acked-by: Grant Likely <grant.likely@secretlab.ca> 58489 58490commit aa3511e422946041ef626f80a05ae5e8bfc700e6 58491Author: Jon Loeliger <jdl@freescale.com> 58492Date: Wed Mar 5 18:05:46 2008 -0600 58493 58494 FSL: Move board/mpc8266ads under board/freescale 58495 58496 Signed-off-by: Jon Loeliger <jdl@freescale.com> 58497 58498commit 7f1d846e5c5754449c286587d099d85246062772 58499Author: Jon Loeliger <jdl@freescale.com> 58500Date: Wed Mar 5 18:05:47 2008 -0600 58501 58502 FSL: Move board/mpc7448hpc2 under board/freescale 58503 58504 Signed-off-by: Jon Loeliger <jdl@freescale.com> 58505 58506commit b7e24d283e34727c2a6cdfdac2e09a426c579b73 58507Author: Jon Loeliger <jdl@freescale.com> 58508Date: Wed Mar 5 18:05:45 2008 -0600 58509 58510 FSL: Move board/mpc8260ads under board/freescale 58511 58512 Signed-off-by: Jon Loeliger <jdl@freescale.com> 58513 58514commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97 58515Author: goda.yusuke <goda.yusuke@renesas.com> 58516Date: Wed Mar 5 17:08:33 2008 +0900 58517 58518 net: Add support AX88796L ethernet device 58519 58520 AX88796L is device of NE2000 compatible. 58521 This patch support AX88796L ethernet device. 58522 58523 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com> 58524 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 58525 58526commit e0a6140dd381e1eed1ada2291166ef2616d8822b 58527Author: Wolfgang Denk <wd@denx.de> 58528Date: Tue Mar 25 22:50:41 2008 +0100 58529 58530 ne2000 driver: change #ifdef to Makefile conditional compilation 58531 58532 Signed-off-by: Wolfgang Denk <wd@denx.de> 58533 58534commit e710185aae90c64d39c2d453e40e58ceefe4f250 58535Author: goda.yusuke <goda.yusuke@renesas.com> 58536Date: Wed Mar 5 17:08:20 2008 +0900 58537 58538 net: Divided code of NE2000 ethernet driver 58539 58540 There are more devices of the NE2000 base. 58541 A present code is difficult for us to support more devices. 58542 To support more NE2000 clone devices, separated the function. 58543 58544 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com> 58545 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 58546 58547commit 395bce4f59a507a60a475f7ee46bed47de9482df 58548Author: Mike Frysinger <vapier@gentoo.org> 58549Date: Sun Feb 24 23:58:13 2008 -0500 58550 58551 net/Blackfin: move on-chip MAC driver into drivers/net/ 58552 58553 The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board 58554 directory, but it is not board specific, so relocate it to the drivers dir 58555 so that other Blackfin ports can utilize it. 58556 58557 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 58558 58559commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a 58560Author: Mike Frysinger <vapier@gentoo.org> 58561Date: Sun Feb 24 23:52:35 2008 -0500 58562 58563 smc91111: use SSYNC() rather than asm(ssync) for Blackfin 58564 58565 Since the "ssync" instruction may have hardware anomalies associated with 58566 it, have the smc91111 driver use the SSYNC macro rather than invoking it 58567 directly. We workaround all the anomalies via this macro. 58568 58569 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 58570 58571commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138 58572Author: Bryan O'Donoghue <bodonoghue@codehermit.ie> 58573Date: Sun Feb 17 22:57:47 2008 +0000 58574 58575 8xx: Update OF support on 8xx 58576 58577 This patch does some shifting around of OF support on 8xx. 58578 58579 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie> 58580 58581commit 9c666a7db0b2285a270c68810889ce7d5dba304b 58582Author: Kumar Gala <galak@kernel.crashing.org> 58583Date: Fri Feb 15 15:16:18 2008 -0600 58584 58585 ppc: Allow boards to specify how much memory they can map 58586 58587 For historical reasons we limited the stack to 256M because some boards 58588 could only map that much via BATS. However newer boards are capable of 58589 mapping more memory (for example 85xx is capble of doing up to 2G). 58590 58591 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 58592 58593commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb 58594Author: Bryan O'Donoghue <bodonoghue@codehermit.ie> 58595Date: Fri Feb 15 01:05:58 2008 +0000 58596 58597 8xx : Add OF support to Adder875 board port - resubmit 58598 58599 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie> 58600 58601commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d 58602Author: Kumar Gala <galak@kernel.crashing.org> 58603Date: Thu Feb 14 20:44:42 2008 -0600 58604 58605 Add setexpr command 58606 58607 Add a simple expr style command that will set an env variable as the result 58608 of the command. This allows us to do simple math in shell. The following 58609 operations are supported: &, |, ^, +, -, *, /. 58610 58611 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 58612 58613commit 3f105faa64b9826e088711fdfcaa70cb1230397a 58614Author: Jon Loeliger <jdl@freescale.com> 58615Date: Wed Mar 5 17:27:48 2008 -0600 58616 58617 FSL: Move board/mpc7448hpc2 under board/freescale 58618 58619 Signed-off-by: Jon Loeliger <jdl@freescale.com> 58620 58621commit 449c703374a8868453425e15da7e2f76221b72e4 58622Author: Jon Loeliger <jdl@freescale.com> 58623Date: Wed Mar 5 17:21:43 2008 -0600 58624 58625 FSL: Move board/mpc8266ads under board/freescale 58626 58627 Signed-off-by: Jon Loeliger <jdl@freescale.com> 58628 58629commit 5863577989ad689427bb750107e9a75f1c1645d2 58630Author: Jon Loeliger <jdl@freescale.com> 58631Date: Wed Mar 5 16:41:41 2008 -0600 58632 58633 FSL: Move board/mpc8260ads under board/freescale 58634 58635 Signed-off-by: Jon Loeliger <jdl@freescale.com> 58636 58637commit 8a773983957ee6c4aa344469b742f29c7d26afbd 58638Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58639Date: Tue Mar 25 21:30:08 2008 +0900 58640 58641 [MIPS] Move gth2_config from ARM section to MIPS 58642 58643 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58644 58645commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15 58646Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58647Date: Tue Mar 25 21:30:07 2008 +0900 58648 58649 [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB 58650 58651 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58652 58653commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459 58654Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58655Date: Tue Mar 25 21:30:07 2008 +0900 58656 58657 [MIPS] Fix dcache_status() 58658 58659 You can't judge UNCACHED by Config.K0 LSB. 58660 58661 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58662 58663commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34 58664Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58665Date: Tue Mar 25 21:30:07 2008 +0900 58666 58667 [MIPS] Introduce _machine_restart 58668 58669 Handles machine specific functions by using weak functions. 58670 58671 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58672 58673commit decaba6f5cf386d569ac3997bebb871b966c6b18 58674Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58675Date: Tue Mar 25 21:30:07 2008 +0900 58676 58677 [MIPS] Cleanup CP0 Status initialization 58678 58679 Add setup_c0_status from Linux. For the moment we disable interrupts, set 58680 CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for 58681 reset-time configuration and will work well across most processors. 58682 58683 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58684 58685commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23 58686Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58687Date: Tue Mar 25 21:30:07 2008 +0900 58688 58689 [MIPS] Initialize CP0 Cause before setting up CP0 Status register 58690 58691 Without this change, we'll be suffering from deffered WATCH exception 58692 once Status.EXL is cleared. Make sure Cause.WP is cleared. 58693 58694 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58695 58696commit 26138623230ca2bad3c78e05a65527ea70c8b688 58697Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58698Date: Tue Mar 25 21:30:07 2008 +0900 58699 58700 [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init() 58701 58702 Move things to appropriate place. 58703 58704 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58705 58706commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895 58707Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58708Date: Tue Mar 25 21:30:06 2008 +0900 58709 58710 [MIPS] Implement flush_cache() 58711 58712 We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you 58713 don't need to do Hit_Invalidate_I, but flush_cache() needs it since this 58714 function is used not only in U-Boot specfic programs but also at loading 58715 target binaries. 58716 58717 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58718 58719commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d 58720Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58721Date: Tue Mar 25 21:30:06 2008 +0900 58722 58723 [MIPS] Fix I-/D-cache initialization loops 58724 58725 Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I 58726 again per a loop for I-cache initialization. But according to 'See MIPS 58727 Run', we're encouraged to use three separate loops rather than combining 58728 them *for both I- and D-cache*. This patch tries to fix this. 58729 58730 In accordance with fixing above, mips_init_[id]cache are separated from 58731 mips_cache_reset(), and rewrite cache loops are completely rewritten with 58732 useful macros. 58733 58734 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58735 58736commit 1898840797c7f50799377bd5b285a8a93a82c419 58737Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58738Date: Tue Mar 25 21:30:06 2008 +0900 58739 58740 [MIPS] Replace memory clearance code with f_fill64 58741 58742 This routine fills memory with zero by 64 bytes, and is 64-bit capable. 58743 58744 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58745 58746commit 2f5d414ccb4024dd0992ff6b22561732dbc73590 58747Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58748Date: Tue Mar 25 21:30:06 2008 +0900 58749 58750 [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros 58751 58752 This patch replaces the current function definitions with NESTED, LEAF 58753 and END macro. They specify some more additional information about the 58754 function; an alignment of symbol, type of symbol, stack frame usage, etc. 58755 These information explicitly tells the assembler and the debugger about 58756 the types of code we want to generate. 58757 58758 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58759 58760commit 282223a607c611425fa33f5428f8eae6636972bb 58761Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58762Date: Tue Mar 25 11:43:17 2008 +0900 58763 58764 [MIPS] asm headers' updates 58765 58766 Make some asm headers adjusted to the latest Linux kernel. 58767 58768 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58769 58770commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd 58771Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58772Date: Tue Mar 25 11:39:29 2008 +0900 58773 58774 [MIPS] Request for the 'mips_cache_lock()' removal 58775 58776 The initial intension of having mips_cache_lock() was to use the cache 58777 as memory for temporary stack use so that a C environment can be set up 58778 as early as possible. 58779 58780 But now mips_cache_lock() follow lowlevel_init(). We've already have the 58781 real memory initilaized at this point, therefore we could/should use it. 58782 No reason to lock at all. 58783 58784 Other problems: 58785 58786 Cache locking is not consistent across MIPS implementaions. Some imple- 58787 mentations don't support locking at all. The style of locking varies - 58788 some support per line locking, others per way, etc. Some parts use bits 58789 in status registers instead of cache ops. Current mips_cache_lock() is 58790 not necessarily general-purpose. 58791 58792 And this is worthy of special mention; once U-Boot/MIPS locks the lines, 58793 they are never get unlocked, so the code relies on whatever gets loaded 58794 after U-Boot to re-initialize the cache and clear the locks. We're sup- 58795 posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented, 58796 but leave the situation as it is for a long time. 58797 58798 For these reasons, I proposed the removal of mips_cache_lock() from the 58799 global start-up code. 58800 58801 This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that 58802 *things have changed*. If he wants the same behavior as before, he needs 58803 to have CFG_INIT_RAM_LOCK_MIPS in his config file. 58804 58805 If we don't have any regression report through several releases, then 58806 we'll remove codes entirely. 58807 58808 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 58809 Acked-by: Andrew Dyer <amdyer@gmail.com> 58810 58811commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f 58812Author: Yuri Tikhonov <yur@emcraft.com> 58813Date: Mon Mar 24 11:30:54 2008 +0100 58814 58815 lwmon5 SYSMON POST: fix backlight control 58816 58817 If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be 58818 run on the board, then the SYSMON POST controls the display backlight 58819 (doesn't switch backlight ON if POST FAILED, and does switch the 58820 backlight ON if PASSED). 58821 58822 If not, then the video driver controls the display backlight (just 58823 switch ON the backlight upon initialization). 58824 58825 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 58826 58827commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8 58828Author: Yuri Tikhonov <yur@emcraft.com> 58829Date: Mon Mar 24 11:29:14 2008 +0100 58830 58831 lwmon5 SYSMON POST: fix handling of negative temperatures 58832 58833 Fix errors in the LWMON5 Sysmon POST for negative temperatures. 58834 58835 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 58836 58837commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 58838Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 58839Date: Fri Mar 7 16:04:25 2008 +0900 58840 58841 pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option 58842 58843 In current source code, when the device number of PCI is 0, process PCI 58844 bridge without fail. However, when the device number is 0, it is not PCI 58845 always bridge. There are times when device of PCI allocates. 58846 58847 When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when 58848 use this patch. 58849 58850 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 58851 Acked-by: Stefan Roese <sr@denx.de> 58852 58853commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb 58854Author: Yuri Tikhonov <yur@emcraft.com> 58855Date: Fri Mar 21 09:18:40 2008 +0100 58856 58857 LWMON5: fix dsPIC POST 58858 58859 Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST. 58860 58861 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> --- 58862 58863commit 388b82fddc7c05596f3f615f190da0448227dc82 58864Author: Bartlomiej Sieka <tur@semihalf.com> 58865Date: Thu Mar 20 23:23:13 2008 +0100 58866 58867 [new uImage] Enable new uImage support for the pcs440ep board. 58868 58869 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 58870 58871commit 95f4ec2b9c910c7261e6f060ea530d58b039692d 58872Author: Bartlomiej Sieka <tur@semihalf.com> 58873Date: Thu Mar 20 23:23:13 2008 +0100 58874 58875 [new uImage] Do not compile new uImage format support by default 58876 58877 Disable default building of new uImage format support in preparation 58878 for merge with the master. Support for new format can be enabled on 58879 a per-board basis, by defining the following in the board's config file: 58880 58881 #define CONFIG_FIT 1 58882 #define CONFIG_OF_LIBFDT 1 58883 58884 This can be optionally defined to give more verbose output: 58885 58886 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */ 58887 58888 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 58889 58890commit dafaede8a46c7159310239e036c93e31c6374487 58891Author: Bartlomiej Sieka <tur@semihalf.com> 58892Date: Thu Mar 20 23:20:31 2008 +0100 58893 58894 [new uImage] Disable debuging output in preparation for merge with master 58895 58896 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 58897 58898commit fbe7a155027beacebaee9b32e1ada781fe924bca 58899Author: Bartlomiej Sieka <tur@semihalf.com> 58900Date: Thu Mar 20 19:38:45 2008 +0100 58901 58902 [new uImage] Compilation and new uImage handling fixes for imxtract 58903 58904 Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in 58905 include/config_cmd_default.h. Fix few warnings and handling of new format 58906 images. 58907 58908 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 58909 58910commit 36cc8cbb3379d5166f882641123521735c469f92 58911Author: Bartlomiej Sieka <tur@semihalf.com> 58912Date: Thu Mar 20 23:10:19 2008 +0100 58913 58914 [new uImage] Fix autoscr command used with new uImage format 58915 58916 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 58917 58918commit 43142e817f0597be412e7cbe19413f5532eafa5d 58919Author: Bartlomiej Sieka <tur@semihalf.com> 58920Date: Thu Mar 20 23:10:19 2008 +0100 58921 58922 [new uImage] Fix *.its files location in documentation 58923 58924 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 58925 58926commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e 58927Author: Wolfgang Denk <wd@denx.de> 58928Date: Thu Mar 20 22:01:38 2008 +0100 58929 58930 lwmon5 POST: remove unreachable code 58931 58932 plus some coding style cleanup 58933 58934 Signed-off-by: Wolfgang Denk <wd@denx.de> 58935 58936commit b73a19e1609d0f705cbab8014ca17aefe89e4c76 58937Author: Yuri Tikhonov <yur@emcraft.com> 58938Date: Thu Mar 20 17:56:04 2008 +0300 58939 58940 LWMON5: POST RTC fix 58941 58942 Modify the RTC API to provide one a status for the time reported by 58943 the rtc_get() function: 58944 0 - a reliable time is guaranteed, 58945 < 0 - a reliable time isn't guaranteed (power fault, clock issues, 58946 and so on). 58947 58948 The RTC chip drivers are responsible for providing this info if the 58949 corresponding chip supports such functionality. If not - always 58950 report that the time is reliable. 58951 58952 The POST RTC test was modified to detect the RTC faults utilizing 58953 this new rtc_get() feature. 58954 58955 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 58956 58957commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5 58958Author: Martin Krause <martin.krause@tqs.de> 58959Date: Wed Mar 19 14:25:14 2008 +0100 58960 58961 TQM5200B: update MTD partition layout 58962 58963 - insert partition for dtb blob to TQM5200B MTD layout 58964 - set env variables dependent on the configured board 58965 (TQM5200 or TQM5200B) 58966 58967 Signed-off-by: Martin Krause <martin.krause@tqs.de> 58968 58969commit f0105727d132f56a21fa3ed8b162309cca6cac44 58970Author: Stefan Roese <sr@denx.de> 58971Date: Wed Mar 19 07:09:26 2008 +0100 58972 58973 CFI: Small cleanup for FLASH_SHOW_PROGRESS 58974 58975 With this patch we don't need that many #ifdef's in the code. It moves 58976 the subtraction into the macro and defines a NOP-macro when 58977 CONFIG_FLASH_SHOW_PROGRESS is not defined. 58978 58979 Signed-off-by: Stefan Roese <sr@denx.de> 58980 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 58981 58982commit 9a042e9ca512beaaa2cb450274313fc477141241 58983Author: Jerry Van Baren <gvb.uboot@gmail.com> 58984Date: Sat Mar 8 13:48:01 2008 -0500 58985 58986 Flash programming progress countdown. 58987 58988 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 58989 58990commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f 58991Author: Bartlomiej Sieka <tur@semihalf.com> 58992Date: Wed Mar 19 10:00:06 2008 +0100 58993 58994 [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org> 58995 58996 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 58997 58998commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1 58999Author: David Gibson <david@gibson.dropbear.id.au> 59000Date: Mon Feb 18 18:09:04 2008 +1100
59001 59002 libfdt: Remove no longer used code from fdt_node_offset_by_compatible() 59003 59004 Since fdt_node_offset_by_compatible() was converted to the new 59005 fdt_next_node() iterator, a chunk of initialization code became 59006 redundant, but was not removed by oversight. This patch cleans it up. 59007 59008 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 59009 59010commit d0ccb9b140b472039732de102fc14597eedb14df 59011Author: David Gibson <david@gibson.dropbear.id.au> 59012Date: Mon Feb 18 18:06:31 2008 +1100 59013 59014 libfdt: Trivial cleanup for CHECK_HEADER) 59015 59016 Currently the CHECK_HEADER() macro is defined local to fdt_ro.c. 59017 However, there are a handful of functions (fdt_move, rw_check_header, 59018 fdt_open_into) from other files which could also use it (currently 59019 they open-code something more-or-less identical). Therefore, this 59020 patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those 59021 places. 59022 59023 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 59024 59025commit fe30a354cdbb808b5f15366a935b151a4ccee74f 59026Author: Kumar Gala <galak@kernel.crashing.org> 59027Date: Wed Feb 20 14:32:36 2008 -0600 59028 59029 Fix fdt boardsetup command parsing 59030 59031 The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'. 59032 59033 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 59034 59035commit 804887e6001e2f00bea11431bf34d6d472512cda 59036Author: Kumar Gala <galak@kernel.crashing.org> 59037Date: Fri Feb 15 03:34:36 2008 -0600 59038 59039 Add sub-commands to fdt 59040 59041 fdt header - Display header info 59042 fdt bootcpu <id> - Set boot cpuid 59043 fdt memory <addr> <size> - Add/Update memory node 59044 fdt rsvmem print - Show current mem reserves 59045 fdt rsvmem add <addr> <size> - Add a mem reserve 59046 fdt rsvmem delete <index> - Delete a mem reserves 59047 59048 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 59049 59050commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07 59051Author: David Gibson <david@gibson.dropbear.id.au> 59052Date: Thu Feb 14 16:50:34 2008 +1100 59053 59054 libfdt: Fix NOP handling bug in fdt_add_subnode_namelen() 59055 59056 fdt_add_subnode_namelen() has a bug if asked to add a subnode to a 59057 node which has NOP tags interspersed with its properties. In this 59058 case fdt_add_subnode_namelen() will put the new subnode before the 59059 first NOP tag, even if there are properties after it, which will 59060 result in an invalid blob. 59061 59062 This patch fixes the bug, and adds a testcase for it. 59063 59064 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 59065 59066commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9 59067Author: David Gibson <david@gibson.dropbear.id.au> 59068Date: Tue Feb 12 11:58:31 2008 +1100 59069 59070 libfdt: Add and use a node iteration helper function. 59071 59072 This patch adds an fdt_next_node() function which can be used to 59073 iterate through nodes of the tree while keeping track of depth. This 59074 function is used to simplify the iteration code in a lot of other 59075 functions, and is also exported for use by library users. 59076 59077 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 59078 59079commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d 59080Author: David Gibson <david@gibson.dropbear.id.au> 59081Date: Fri Jan 11 14:55:05 2008 +1100 59082 59083 libfdt: Add fdt_set_name() function 59084 59085 This patch adds an fdt_set_name() function to libfdt, mirroring 59086 fdt_get_name(). This is a r/w function which alters the name of a 59087 given device tree node. 59088 59089 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 59090 59091commit 23e20aa6488e6c0622496549861bfdc74108debe 59092Author: Yuri Tikhonov <yur@pollux.denx.de> 59093Date: Tue Mar 18 13:33:30 2008 +0100 59094 59095 lwmon5: Fix register test logic to match the specific GDC h/w. 59096 59097 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59098 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59099 59100commit 46bc0a938779aa1d664b847d36b08aa00f22e539 59101Author: Yuri Tikhonov <yur@pollux.denx.de> 59102Date: Tue Mar 18 13:27:57 2008 +0100 59103 59104 Fix backlight in the lwmon5 POST. 59105 59106 Backlight was switched on even when temperature was too low. 59107 59108 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59109 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59110 59111commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf 59112Author: Yuri Tikhonov <yur@pollux.denx.de> 59113Date: Wed Feb 6 18:48:36 2008 +0100 59114 59115 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). 59116 59117 To enable this, alternative, configuration the U-Boot board configuration 59118 file for lwmon5 includes the definitions of alternative addresses for header 59119 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR). 59120 59121 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set, 59122 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the 59123 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h). 59124 59125 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59126 59127commit 0f009f781b5b88f25769e154ea4d42db13baf0c6 59128Author: Yuri Tikhonov <yur@pollux.denx.de> 59129Date: Mon Feb 4 17:11:53 2008 +0100 59130 59131 Add support for the lwmon5 board reset via GPIO58. 59132 59133 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59134 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59135 59136commit f694e32f93565ec1fa8d0226c584d6b89e931ed9 59137Author: Yuri Tikhonov <yur@pollux.denx.de> 59138Date: Mon Feb 4 17:09:55 2008 +0100 59139 59140 Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now. 59141 59142 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59143 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59144 59145commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c 59146Author: Yuri Tikhonov <yur@pollux.denx.de> 59147Date: Mon Feb 4 14:11:03 2008 +0100 59148 59149 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. 59150 59151 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59152 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59153 59154commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184 59155Author: Yuri Tikhonov <yur@pollux.denx.de> 59156Date: Mon Feb 4 14:10:42 2008 +0100 59157 59158 The patch adds new POST tests for the Lwmon5 board. These are: 59159 59160 * External Watchdog test; 59161 * dsPIC tests; 59162 * FPGA test; 59163 * GDC test; 59164 * Sysmon tests. 59165 59166 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59167 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59168 59169commit c2ed33efbfff5767bca236828e021c55fd547b6c 59170Author: Yuri Tikhonov <yur@pollux.denx.de> 59171Date: Mon Feb 4 14:10:01 2008 +0100 59172 59173 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP. 59174 59175 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59176 59177commit 3a5d1e7f1309998791702b2a559e3126781746b9 59178Author: Yuri Tikhonov <yur@pollux.denx.de> 59179Date: Tue Mar 18 13:33:30 2008 +0100 59180 59181 lwmon5: Fix register test logic to match the specific GDC h/w. 59182 59183 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59184 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59185 59186commit 0f855a1f056a8c22116a2103a3900cbfb669df0b 59187Author: Yuri Tikhonov <yur@pollux.denx.de> 59188Date: Tue Mar 18 13:27:57 2008 +0100 59189 59190 Fix backlight in the lwmon5 POST. 59191 59192 Backlight was switcehd on even when temperature was too low. 59193 59194 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59195 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59196 59197commit 2d991958b1e420fbfe17b128bd26ade74be5efcc 59198Author: Yuri Tikhonov <yur@pollux.denx.de> 59199Date: Wed Feb 6 18:48:36 2008 +0100 59200 59201 The patch introduces the alternative configuration of the log buffer for 59202 the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory), 59203 the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ..., 59204 PPC440EPX_GPT0_COMP5). 59205 59206 To enable this, alternative, configuration the U-Boot board configuration 59207 file for lwmon5 includes the definitions of alternative addresses for header 59208 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR). 59209 59210 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set, 59211 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the 59212 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h). 59213 59214 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59215 59216commit ff818b21b069f4bc9cb73373cc5a16014be101b7 59217Author: Yuri Tikhonov <yur@pollux.denx.de> 59218Date: Mon Feb 4 17:11:53 2008 +0100 59219 59220 Add support for the lwmon5 board reset via GPIO58. 59221 59222 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59223 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59224 59225commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411 59226Author: Yuri Tikhonov <yur@pollux.denx.de> 59227Date: Mon Feb 4 17:09:55 2008 +0100 59228 59229 Some fixes to dspic, fpga, and gdc post tests for lwmon5. 59230 Disable external watch-dog for now. 59231 59232 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59233 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59234 59235commit e262efe35742c1ad4b0966ff501efc26f34a0aec 59236Author: Yuri Tikhonov <yur@pollux.denx.de> 59237Date: Mon Feb 4 14:11:03 2008 +0100 59238 59239 The patch introduces the CRITICAL feature of POST tests. If the test 59240 marked as POST_CRITICAL fails then the alternative, post_critical, 59241 boot-command is used. If this command is not defined then U-Boot 59242 enters into interactive mode. 59243 59244 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59245 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59246 59247commit 65b20dcefc89618193fa51947968dada91e4c778 59248Author: Yuri Tikhonov <yur@pollux.denx.de> 59249Date: Mon Feb 4 14:10:42 2008 +0100 59250 59251 The patch adds new POST tests for the Lwmon5 board. 59252 These are: 59253 59254 * External Watchdog test; 59255 * dsPIC tests; 59256 * FPGA test; 59257 * GDC test; 59258 * Sysmon tests. 59259 59260 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59261 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 59262 59263commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1 59264Author: Yuri Tikhonov <yur@pollux.denx.de> 59265Date: Mon Feb 4 14:10:01 2008 +0100 59266 59267 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP. 59268 59269 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 59270 59271commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2 59272Author: Wolfgang Denk <wd@denx.de> 59273Date: Tue Mar 18 17:35:51 2008 +0100 59274 59275 HMI1001: fix compile problem. 59276 59277 Signed-off-by: Wolfgang Denk <wd@denx.de> 59278 59279commit 1f2a9970109cebf7446e0503b10b71f8673045ee 59280Author: Mike Frysinger <vapier@gentoo.org> 59281Date: Mon Feb 18 05:32:30 2008 -0500 59282 59283 Blackfin: BF537-stamp: drop board-specific flash driver for CFI 59284 59285 The parallel flash on the BF537-STAMP is CFI compliant, so there is no need 59286 for the board specific driver at all. Just use the common CFI driver. 59287 59288 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 59289 59290commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c 59291Author: Mike Frysinger <vapier@gentoo.org> 59292Date: Tue Feb 19 00:36:14 2008 -0500 59293 59294 Blackfin: add proper ELF markings to some assembly functions 59295 59296 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 59297 59298commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf 59299Author: Mike Frysinger <vapier@gentoo.org> 59300Date: Tue Feb 19 00:35:17 2008 -0500 59301 59302 Blackfin: new cplbinfo command for viewing cplb tables 59303 59304 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 59305 59306commit aadb72503cd1602349a5fe53356d5f55ecc1b900 59307Author: Mike Frysinger <vapier@gentoo.org> 59308Date: Mon Feb 18 05:37:51 2008 -0500 59309 59310 Blackfin: update MAINTAINERS list 59311 59312 Add maintainer information for the Blackfin boards. 59313 59314 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 59315 59316commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d 59317Author: Mike Frysinger <vapier@gentoo.org> 59318Date: Mon Feb 18 05:26:48 2008 -0500 59319 59320 Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU 59321 59322 Stop tying things to the processor that should be tied to other defines and 59323 change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build 59324 system to select the -mcpu option. 59325 59326 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 59327 59328commit 86a20fb920bd198105acf7b1191117f566d637ed 59329Author: Mike Frysinger <vapier@gentoo.org> 59330Date: Sat Feb 16 07:40:36 2008 -0500 59331 59332 Blackfin: move bootldr command to common code 59333 59334 This moves the Blackfin-common bootldr command out of the BF537-STAMP 59335 specific board directory and into the common directory so that all Blackfin 59336 boards may utilize it. 59337 59338 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 59339 59340commit decbe029b2a9d3333d02c433389b1c821eea96d7 59341Author: Heiko Schocher <hs@denx.de> 59342Date: Fri Mar 14 11:05:20 2008 +0100 59343 59344 mgcoge: update configuration 59345 59346 Fix configuration for mgcoge board 59347 59348 Signed-off-by: Heiko Schocher <hs@denx.de> 59349 59350commit c136724cda0219c49f1d4b346f00da29b14fdf14 59351Author: Wolfgang Denk <wd@denx.de> 59352Date: Sun Mar 16 01:22:59 2008 +0100 59353 59354 drivers/rtc/Makefile: keep list sorted 59355 59356 Signed-off-by: Wolfgang Denk <wd@denx.de> 59357 59358commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f 59359Author: Tor Krill <tor@excito.com> 59360Date: Sat Mar 15 15:40:26 2008 +0100 59361 59362 Add support for Intersil isl1208 RTC 59363 59364 Signed-off-by: Tor Krill <tor@excito.com> 59365 59366commit 0210cff3d079d97b2156b13685ee8de368e68a1a 59367Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 59368Date: Sat Mar 15 17:36:41 2008 +0100 59369 59370 cramfs: Fix ifdef 59371 59372 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 59373 59374commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4 59375Author: Wolfgang Denk <wd@denx.de> 59376Date: Sun Mar 16 01:12:58 2008 +0100 59377 59378 Conding style cleanup 59379 59380 Signed-off-by: Wolfgang Denk <wd@denx.de> 59381 59382commit 41712b4e8c95dff23354bcd620e1f9477160c190 59383Author: Stefan Roese <sr@denx.de> 59384Date: Wed Mar 5 12:31:53 2008 +0100 59385 59386 ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board 59387 59388 This patch adds USB OHCI support to the Canyonlands board port. It also 59389 enables EXT2 support. 59390 59391 Signed-off-by: Stefan Roese <sr@denx.de> 59392 59393commit 2596f5b9d353ff3e4387a3325d05740f16958038 59394Author: Stefan Roese <sr@denx.de> 59395Date: Wed Mar 5 12:29:32 2008 +0100 59396 59397 usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver 59398 59399 This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This 59400 way a board just needs to define this new option to enable the "force 59401 NoPowerSwitching mode" instead of adding new CPU/architecture defines 59402 to the USB source itself. 59403 59404 This new option will be used first with the new AMCC 460EX Canyonlands 59405 board port, which will be posted in a few days. 59406 59407 This patch also fixes a small compilation problem when DEBUG is enabled. 59408 59409 Signed-off-by: Stefan Roese <sr@denx.de> 59410 59411commit 71665ebf88408ff2acb762af47989fd4365b321a 59412Author: Stefan Roese <sr@denx.de> 59413Date: Mon Mar 3 17:27:02 2008 +0100 59414 59415 ppc4xx: Add Canyonlands NAND booting support 59416 59417 460EX doesn't support a fixed bootstrap option to boot from 512 byte page 59418 NAND devices. The only bootstrap option for NAND booting is option F for 59419 2k page devices. So to boot from a 512 bype page device, the I2C bootstrap 59420 EEPROM needs to be programmed accordingly. 59421 59422 This patch adds basic NAND booting support for the AMCC Canyonlands aval 59423 board and also adds support to the "bootstrap" command, to enable NAND 59424 booting I2C setting. 59425 59426 Tested with 512 byte page NAND device (32MByte) on Canyonlands. 59427 59428 Signed-off-by: Stefan Roese <sr@denx.de> 59429 59430commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2 59431Author: Stefan Roese <sr@denx.de> 59432Date: Tue Mar 11 16:53:00 2008 +0100 59433 59434 ppc4xx: Add AMCC Canyonlands support (460EX) (3/3) 59435 59436 This patch adds support for the AMCC Canyonlands 460EX evaluation 59437 board. 59438 59439 Signed-off-by: Stefan Roese <sr@denx.de> 59440 59441commit 6983fe21f774a924d3adb263a270bc2f301f2aa2 59442Author: Stefan Roese <sr@denx.de> 59443Date: Tue Mar 11 16:52:24 2008 +0100 59444 59445 ppc4xx: Add AMCC Canyonlands support (460EX) (2/3) 59446 59447 This patch adds support for the AMCC Canyonlands 460EX evaluation 59448 board. 59449 59450 Signed-off-by: Stefan Roese <sr@denx.de> 59451 59452commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1 59453Author: Stefan Roese <sr@denx.de> 59454Date: Tue Mar 11 16:51:17 2008 +0100 59455 59456 ppc4xx: Add AMCC Canyonlands support (460EX) (1/3) 59457 59458 This patch adds support for the AMCC Canyonlands 460EX evaluation 59459 board. 59460 59461 Signed-off-by: Stefan Roese <sr@denx.de> 59462 59463commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69 59464Author: Stefan Roese <sr@denx.de> 59465Date: Tue Mar 11 15:11:43 2008 +0100 59466 59467 ppc4xx: Add basic support for AMCC 460EX/460GT (5/5) 59468 59469 This patch adds basic support for the AMCC 460EX/460GT PPC's. 59470 59471 Signed-off-by: Stefan Roese <sr@denx.de> 59472 59473commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945 59474Author: Stefan Roese <sr@denx.de> 59475Date: Tue Mar 11 15:11:18 2008 +0100 59476 59477 ppc4xx: Add basic support for AMCC 460EX/460GT (4/5) 59478 59479 This patch adds basic support for the AMCC 460EX/460GT PPC's. 59480 59481 Signed-off-by: Stefan Roese <sr@denx.de> 59482 59483commit 999ecd5aca381984d8ebbeb207ece82a1c275577 59484Author: Stefan Roese <sr@denx.de> 59485Date: Tue Mar 11 15:07:10 2008 +0100 59486 59487 ppc4xx: Add basic support for AMCC 460EX/460GT (3/5) 59488 59489 This patch adds basic support for the AMCC 460EX/460GT PPC's. 59490 59491 Signed-off-by: Stefan Roese <sr@denx.de> 59492 59493commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a 59494Author: Stefan Roese <sr@denx.de> 59495Date: Tue Mar 11 15:05:50 2008 +0100 59496 59497 ppc4xx: Add basic support for AMCC 460EX/460GT (2/5) 59498 59499 This patch adds basic support for the AMCC 460EX/460GT PPC's. 59500 59501 Signed-off-by: Stefan Roese <sr@denx.de> 59502 59503commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492 59504Author: Stefan Roese <sr@denx.de> 59505Date: Tue Mar 11 15:05:26 2008 +0100 59506 59507 ppc4xx: Add basic support for AMCC 460EX/460GT (1/5) 59508 59509 This patch adds basic support for the AMCC 460EX/460GT PPC's. 59510 59511 Signed-off-by: Stefan Roese <sr@denx.de> 59512 59513commit 56e410178375d9f20be25fb24e180974f0ae120b 59514Author: Stefan Roese <sr@denx.de> 59515Date: Tue Feb 19 22:07:57 2008 +0100 59516 59517 ppc4xx: interrupt.c reworked 59518 59519 This patch is a rework of the 4xx interrupt handling done while 59520 adding the 460EX/GT support. Interrupts are needed on 4xx for the 59521 EMAC driver. 59522 59523 Signed-off-by: Stefan Roese <sr@denx.de> 59524 59525commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46 59526Author: Stefan Roese <sr@denx.de> 59527Date: Tue Feb 19 22:01:57 2008 +0100 59528 59529 ppc4xx: program_tlb now uses 64bit physical addess 59530 59531 This patch changes the physical addess parameter from 32bit to 64bit. 59532 This is needed for 36bit 4xx platforms to access areas located 59533 beyond the 4GB border, like SoC peripherals (EBC etc.). 59534 59535 Signed-off-by: Stefan Roese <sr@denx.de> 59536 59537commit c3307fa186af85771924c434997089b8104c0a46 59538Author: Stefan Roese <sr@denx.de> 59539Date: Tue Feb 19 21:58:25 2008 +0100 59540 59541 ppc4xx: miiphy.c reworked 59542 59543 While adding the 460EX/GT support I reworked the 4xx miiphy code. It 59544 badly neede some cleanup. 59545 59546 Signed-off-by: Stefan Roese <sr@denx.de> 59547 59548commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b 59549Author: Stefan Roese <sr@denx.de> 59550Date: Tue Feb 19 16:21:49 2008 +0100 59551 59552 rtc: Add M41T62 support 59553 59554 This patch add support for the STM M41T62 RTC. It is used and tested 59555 on the AMCC Canyonlands 406EX platform. 59556 59557 Signed-off-by: Stefan Roese <sr@denx.de> 59558 59559commit 217d383e201adc7f2271145ae345ea5eae2b7170 59560Author: Niklaus Giger <niklaus.giger@netstal.com> 59561Date: Mon Feb 25 18:46:43 2008 +0100 59562 59563 ppc4xx: Add 405GPr based MCU25 board specific files 59564 59565 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 59566 59567commit 75a66dcdb383863ad33f0534cfc27b7a86947dad 59568Author: Niklaus Giger <niklaus.giger@netstal.com> 59569Date: Mon Feb 25 18:46:42 2008 +0100 59570 59571 ppc4xx: Add 405GPr based MCU25 board config file 59572 59573 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 59574 59575commit b05f35436b733a240559e77e46bed8439665ecc5 59576Author: Niklaus Giger <niklaus.giger@netstal.com> 59577Date: Mon Feb 25 18:46:41 2008 +0100 59578 59579 ppc4xx: Add 405GPr based MCU25 board. Global files 59580 59581 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 59582 59583commit 14c27b35ac812a71abce6e3e2f4129d5e9313660 59584Author: Niklaus Giger <niklaus.giger@netstal.com> 59585Date: Mon Feb 25 18:37:02 2008 +0100 59586 59587 ppc4xx: HCU4/5. remove obsolete hcu_flash.c 59588 59589 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 59590 59591commit a079494853cc2bfeddb26673219db0b4b2b31566 59592Author: Niklaus Giger <niklaus.giger@netstal.com> 59593Date: Mon Feb 25 18:37:01 2008 +0100 59594 59595 ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY 59596 59597 Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with 59598 the FLASH_CFI_LEGACY et al. config options. 59599 59600 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 59601 59602commit e4170e5a50c8110f792bc37472833ae669d69951 59603Author: Stefan Roese <sr@denx.de> 59604Date: Tue Mar 11 13:52:25 2008 +0100 59605 59606 ppc4xx: Fix comment in 405EX DDR2 init code 59607 59608 Signed-off-by: Stefan Roese <sr@denx.de> 59609 59610commit 766529fccc860ecb9e955b4239dff69cd9e4ea09 59611Author: Bartlomiej Sieka <tur@semihalf.com> 59612Date: Fri Mar 14 16:22:34 2008 +0100 59613 59614 Add MD5 support to the new uImage format 59615 59616 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 59617 59618commit 0ede0c383530a418cf98be9122371a86573cd0db 59619Author: Bartlomiej Sieka <tur@semihalf.com> 59620Date: Fri Mar 14 16:22:34 2008 +0100 59621 59622 Add the MD5 algorithm 59623 59624 MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then 59625 calculated using the md5() function -- see include/md5.h for details. 59626 59627 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 59628 59629commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0 59630Author: Wolfgang Denk <wd@denx.de> 59631Date: Fri Mar 14 16:04:54 2008 +0100 59632 59633 tools/setlocalversion: use a git-describe-ish format 59634 59635 Change the automatic local version to have the form -nnnnn-gSHA1SUMID, 59636 where 'nnnnn' is the number of commits since the last tag (i.e., 59637 1.3.2-rc3). This makes it much easier to recognize "newer" versions 59638 and to see how much has been changed since the referenced tag. 59639 59640 Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f. 59641 59642 Signed-off-by: Wolfgang Denk <wd@denx.de> 59643 59644commit c6dc21c84de0f159a1752c5ebd33cff843f63609 59645Author: Wolfgang Denk <wd@denx.de> 59646Date: Thu Mar 13 14:32:03 2008 +0100 59647 59648 HMI1001: add support for MPC5200 Rev. B processors. 59649 59650 Signed-off-by: Wolfgang Denk <wd@denx.de> 59651 59652commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a 59653Author: Wolfgang Denk <wd@denx.de> 59654Date: Thu Mar 13 14:29:49 2008 +0100 59655 59656 TQM5200: remove dead code 59657 59658 This board never used a MGT5100 processor. 59659 59660 Signed-off-by: Wolfgang Denk <wd@denx.de> 59661 59662commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d 59663Author: Marian Balakowicz <m8@semihalf.com> 59664Date: Wed Mar 12 12:14:15 2008 +0100 59665 59666 [new uImage] Fix build issue on ARM 59667 59668 ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead. 59669 59670 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 59671 59672commit 3310c549a73a949430bfda90876df7552a1dab0c 59673Author: Marian Balakowicz <m8@semihalf.com> 59674Date: Wed Mar 12 12:13:13 2008 +0100 59675 59676 [new uImage] Add new uImage format documentation and examples 59677 59678 Create doc/uImage.FIT documentation directory with the following files: 59679 - command_syntax_extensions.txt : extended command syntax description 59680 - howto.txt : short usage howto 59681 - source_file_format.txt : internal new uImage format description 59682 59683 Add example image source files: 59684 - kernel.its 59685 - kernel_fdt.its 59686 - multi.its 59687 59688 Update README appropriately. 59689 59690 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59691 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 59692 59693commit 1ec73761d2e247078f4520a265d463e8b73391a2 59694Author: Marian Balakowicz <m8@semihalf.com> 59695Date: Wed Mar 12 10:35:52 2008 +0100 59696 59697 [new uImage] Fix definition of common bootm_headers_t fields 59698 59699 verify, autostart and lmb fields are used regardless of CONFIG_FIT 59700 setting, move their definitions to common section. 59701 59702 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59703 59704commit 1d1cb4270edc6a99276834064069717f9782c491 59705Author: Marian Balakowicz <m8@semihalf.com> 59706Date: Wed Mar 12 10:35:51 2008 +0100 59707 59708 [new uImage] Fix build problems on trab board 59709 59710 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59711 59712commit f773bea8e11f4a11c388dcee956b2444203e6b65 59713Author: Marian Balakowicz <m8@semihalf.com> 59714Date: Wed Mar 12 10:35:46 2008 +0100 59715 59716 [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used 59717 59718 Save FIT configuration provied in the first bootm argument and use it 59719 when to get ramdisk/FDT subimages when second and third (ramdisk/FDT) 59720 arguments are not specified. 59721 59722 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59723 59724commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae 59725Author: Marian Balakowicz <m8@semihalf.com> 59726Date: Wed Mar 12 10:33:01 2008 +0100 59727 59728 [new uImage] More verbose kernel image uncompress error message 59729 59730 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59731 59732commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0 59733Author: Marian Balakowicz <m8@semihalf.com> 59734Date: Wed Mar 12 10:33:01 2008 +0100 59735 59736 [new uImage] Use show_boot_progress() for new uImage format 59737 59738 This patch allocates a set of show_boot_progress() IDs for new uImage format 59739 and adds show_boot_progress() calls in new uImage format handling code. 59740 59741 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59742 59743commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720 59744Author: Marian Balakowicz <m8@semihalf.com> 59745Date: Wed Mar 12 10:33:01 2008 +0100 59746 59747 [new uImage] Add new uImage fromat support to fpga command 59748 59749 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59750 59751commit 09475f7527460e426c0e0628fc5b8f3754fbaa23 59752Author: Marian Balakowicz <m8@semihalf.com> 59753Date: Wed Mar 12 10:33:01 2008 +0100 59754 59755 [new uImage] Add new uImage format handling to other bootm related commands 59756 59757 Updated commands: 59758 59759 docboot - cmd_doc.c 59760 fdcboot - cmd_fdc.c 59761 diskboot - cmd_ide.c 59762 nboot - cmd_nand.c 59763 scsiboot - cmd_scsi.c 59764 usbboot - cmd_usb.c 59765 59766 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59767 59768commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338 59769Author: Marian Balakowicz <m8@semihalf.com> 59770Date: Wed Mar 12 10:33:00 2008 +0100 59771 59772 [new uImage] Add new uImage format support to imgextract command 59773 59774 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59775 59776commit 424c4abdd175d2c470510df8ce0e32d3f463ec16 59777Author: Marian Balakowicz <m8@semihalf.com> 59778Date: Wed Mar 12 10:33:00 2008 +0100 59779 59780 [new uImage] Add new uImage format support to autoscript routine 59781 59782 autoscript() routine is updated to accept second argument, which 59783 is only used for FIT images and provides a FIT subimage unit name. 59784 59785 autoscript() routine callers must now pass two arguments. For 59786 non-interactive use (like in cmd_load.c, cmd_net.c), new environment 59787 variable 'autoscript_uname' is introduced and used as a FIT 59788 subimage unit name source. 59789 59790 autoscript command accepts extended syntax of the addr argument: 59791 addr:<subimg_uname> 59792 59793 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59794 59795commit cd7c596e9f561dbbc17b717277438aee78cde14f 59796Author: Marian Balakowicz <m8@semihalf.com> 59797Date: Wed Mar 12 10:33:00 2008 +0100 59798 59799 [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines 59800 59801 This patch updates architecture specific implementations of 59802 do_bootm_linux() adding new uImage format handling for 59803 operations like get kernel entry point address, get kernel 59804 image data start address. 59805 59806 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59807 59808commit 3dfe110149311425919e6d6a14b561b4207498f1 59809Author: Marian Balakowicz <m8@semihalf.com> 59810Date: Wed Mar 12 10:32:59 2008 +0100 59811 59812 [new uImage] Add node offsets for FIT images listed in struct bootm_headers 59813 59814 This patch adds new node offset fields to struct bootm_headers 59815 and updates bootm_headers processing code to make use of them. 59816 Saved node offsets allow to avoid repeating fit_image_get_node() calls. 59817 59818 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59819 59820commit bc8ed486b125452ba3bd8344f052f437329150c5 59821Author: Marian Balakowicz <m8@semihalf.com> 59822Date: Wed Mar 12 10:32:53 2008 +0100 59823 59824 [new uImage] ppc: Add new uImage format support to FDT handling routines 59825 59826 Support for new (FIT) format uImages is added to powerpc specific 59827 boot_get_fdt() routine which now recognizes, sanity checks FIT image 59828 and is able to access data sections of the requested component image. 59829 59830 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59831 59832commit a44a269a905f924b420020506a4d7d7eedcc0eaf 59833Author: Marian Balakowicz <m8@semihalf.com> 59834Date: Wed Mar 12 10:14:57 2008 +0100 59835 59836 [new uImage] Re-enable interrupts for non automatic booting 59837 59838 Re-enable interrupts if we return from do_bootm_<os> and 'autostart' 59839 environment variable is not set to 'yes'. 59840 59841 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59842 59843commit d985c8498c4e47095820da97aa722381d39172c5 59844Author: Marian Balakowicz <m8@semihalf.com> 59845Date: Wed Mar 12 10:14:38 2008 +0100 59846 59847 [new uImage] Remove unnecessary arguments passed to ramdisk routines 59848 59849 boot_get_ramdisk() and image_get_ramdisk() do not need all 59850 cmdtp, flag, argc and argv arguments. Simplify routines definition. 59851 59852 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59853 59854commit c87796483bc7c2900470dc747c367f602577608d 59855Author: Marian Balakowicz <m8@semihalf.com> 59856Date: Wed Mar 12 10:12:37 2008 +0100 59857 59858 [new uImage] Add new uImage format support for ramdisk handling 59859 59860 This patch updates boot_get_ramdisk() routine adding format 59861 verification and handling for new (FIT) uImages. 59862 59863 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59864 59865commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e 59866Author: Marian Balakowicz <m8@semihalf.com> 59867Date: Wed Mar 12 10:01:05 2008 +0100 59868 59869 [new uImage] Add new uImage format support for kernel booting 59870 59871 New format uImages are recognized by the bootm command, 59872 validity of specified kernel component image is checked and 59873 its data section located and used for further processing 59874 (uncompress, load, etc.) 59875 59876 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59877 59878commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547 59879Author: Marian Balakowicz <m8@semihalf.com> 59880Date: Tue Mar 11 12:35:20 2008 +0100 59881 59882 [new uImage] Add new uImage format support for imls and iminfo commands 59883 59884 imls and iminfo can now recognize nad print out contents of the new (FIT) 59885 format uImages. 59886 59887 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59888 59889commit 9d25438fe7d70cf35a8a293ea5e392fefc672613 59890Author: Bartlomiej Sieka <tur@semihalf.com> 59891Date: Tue Mar 11 12:34:47 2008 +0100 59892 59893 [new uImage] Add support for new uImage format to mkimage tool 59894 59895 Support for the new uImage format (FIT) is added to mkimage tool. 59896 Commandline syntax is appropriately extended: 59897 59898 mkimage [-D dtc_options] -f fit-image.its fit-image 59899 59900 mkimage (together with dtc) takes fit-image.its and referenced therein 59901 binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the 59902 final image that can be transferred to the target (e.g., via tftp) and then 59903 booted using the bootm command in U-Boot. 59904 59905 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 59906 59907commit eb6175edd6c120d8b89678243e5a2be362ee8e40 59908Author: Marian Balakowicz <m8@semihalf.com> 59909Date: Mon Mar 10 17:53:49 2008 +0100 59910 59911 [new uImage] Make node unit names const in struct bootm_headers 59912 59913 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59914 59915commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05 59916Author: Marian Balakowicz <m8@semihalf.com> 59917Date: Fri Feb 29 21:24:06 2008 +0100 59918 59919 [new uImage] New uImage low-level API 59920 59921 Add FDT-based functions for handling new format component images, 59922 configurations, node operations, property get/set, etc. 59923 59924 fit_ - routines handling global new format uImage operations 59925 like get/set top level property, process all nodes, etc. 59926 fit_image_ - routines handling component images subnodes 59927 fit_conf_ - routines handling configurations node 59928 59929 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 59930 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 59931 59932commit 30f1806f60978d707b0cff2d7bf89d141fc24290 59933Author: Wolfgang Denk <wd@denx.de> 59934Date: Sun Mar 9 16:20:02 2008 +0100 59935 59936 Release v1.3.2 59937 59938 Update CHANGELOG for release. 59939 59940 Signed-off-by: Wolfgang Denk <wd@denx.de> 59941 59942commit 5b464c289ba715d0979b6e1f94947bb8f1068d16 59943Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 59944Date: Sun Mar 9 14:52:11 2008 +0100 59945 59946 SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings 59947 59948 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 59949 Signed-off-by: Wolfgang Denk <wd@denx.de> 59950 59951commit db695b78515ddb88a2d4f3357c120345efbf59ec 59952Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 59953Date: Sun Mar 9 10:44:01 2008 +0100 59954 59955 scb9328: Fix flash warning: type qualifiers ignored on function return type 59956 59957 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 59958 59959commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4 59960Author: Wolfgang Denk <wd@denx.de> 59961Date: Sun Mar 9 10:50:41 2008 +0100 59962 59963 esd/common/fpga.c: fix indentation. 59964 59965 Signed-off-by: Wolfgang Denk <wd@denx.de> 59966 59967commit cc3843e36453e2b8db65d7e56de938ba045016a0 59968Author: Wolfgang Denk <wd@denx.de> 59969Date: Sun Mar 9 10:33:31 2008 +0100 59970 59971 common/kgdb.c: fix 'dereferencing type-punned pointer' warning 59972 59973 and get rid of a couple of unneeded casts. 59974 59975 Signed-off-by: Wolfgang Denk <wd@denx.de> 59976 59977commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8 59978Author: Wolfgang Denk <wd@denx.de> 59979Date: Sun Mar 9 10:09:53 2008 +0100 59980 59981 esd/common/fpga.c: fix 'assignment of read-only location' error 59982 59983 Signed-off-by: Wolfgang Denk <wd@denx.de> 59984 59985commit c6fe4dabac066e8758345d249032768496983a3e 59986Author: Wolfgang Denk <wd@denx.de> 59987Date: Sun Mar 9 02:13:19 2008 +0100 59988 59989 Makefile: make build silently again. 59990 59991 Signed-off-by: Wolfgang Denk <wd@denx.de> 59992 59993commit 76babc86576f092573599334c85ec543fdbc6015 59994Author: Wolfgang Denk <wd@denx.de> 59995Date: Sun Mar 9 02:07:49 2008 +0100 59996 59997 m501sk: Fix out of tree building 59998 59999 Signed-off-by: Wolfgang Denk <wd@denx.de> 60000
60001commit 210ed2004e062fdd03f25ab4925998aa1bd08a07 60002Author: Wolfgang Denk <wd@denx.de> 60003Date: Sun Mar 9 00:06:09 2008 +0100 60004 60005 ADS5121: fix out of tree build 60006 60007 and simplify Makefile a bit. 60008 60009 Signed-off-by: Wolfgang Denk <wd@denx.de> 60010 60011commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93 60012Author: Wolfgang Denk <wd@denx.de> 60013Date: Sat Mar 8 22:35:31 2008 +0100 60014 60015 Release v1.3.2 60016 60017 Signed-off-by: Wolfgang Denk <wd@denx.de> 60018 60019commit 78a90f827df74520e939c794fc7413dace21c4db 60020Author: Wolfgang Denk <wd@denx.de> 60021Date: Sat Mar 8 22:35:04 2008 +0100 60022 60023 Update CHANGELOG 60024 60025 Signed-off-by: Wolfgang Denk <wd@denx.de> 60026 60027commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f 60028Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60029Date: Sat Mar 8 21:30:04 2008 +0100 60030 60031 esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type 60032 60033 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60034 60035commit d75469d48c05795144f4b8ba76addbb4920a7bba 60036Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 60037Date: Sat Mar 8 09:25:49 2008 +0900 60038 60039 net: rtl8169: Add processing when OWNbit did't enable in rtl_recv() 60040 60041 When rtl_recv() of rtl8169 is called, OWNbit of status register 60042 is not enable occasionally. 60043 rtl_recv() doesn't work normally when the driver doesn't do 60044 appropriate processing. 60045 This patch fix this problem. 60046 60047 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 60048 60049commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa 60050Author: Heiko Schocher <hs@denx.de> 60051Date: Fri Mar 7 08:15:28 2008 +0100 60052 60053 mgsuvd: update board configuration 60054 60055 initialize the UPIOx controller. 60056 60057 Signed-off-by: Heiko Schocher <hs@denx.de> 60058 60059commit e492c90c26215e459aec0fdf0f8ef1fd204988f5 60060Author: Heiko Schocher <hs@denx.de> 60061Date: Fri Mar 7 08:13:41 2008 +0100 60062 60063 mgcoge: update board configuration 60064 60065 add support for the config Flash. 60066 initialize the UPIOx controller. 60067 60068 Signed-off-by: Heiko Schocher <hs@denx.de> 60069 60070commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258 60071Author: Kim Phillips <kim.phillips@freescale.com> 60072Date: Fri Mar 7 12:27:31 2008 -0600 60073 60074 mpc83xx: make dtb basename file references equal those of linux 60075 60076 the dts file basenames were updated in linux - this helps avoid 60077 inadvertently loading any old dtbs laying around. 60078 60079 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 60080 60081commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675 60082Author: Kim Phillips <kim.phillips@freescale.com> 60083Date: Wed Feb 27 16:08:22 2008 -0600 60084 60085 net: uec_phy: actually increment the timeout counter 60086 60087 allow u-boot to recover (and, e.g., switch to another interface) in the 60088 case where a PHY does not report autonegotiation is complete within its 60089 two second timeout value. 60090 60091 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 60092 60093commit 772003e43957ee0c895abed7cd82cbe72820cbb8 60094Author: Markus Brunner <super.firetwister@googlemail.com> 60095Date: Wed Mar 5 21:38:12 2008 +0100 60096 60097 fix taihu soft spi_read 60098 60099 The taihu board used gpio_read_out_bit which reads the output register and not 60100 the pin state. 60101 60102 Signed-off-by: Markus Brunner <super.firetwister@gmail.com> 60103 60104commit fc84a8495ac750f6b4adae81f8c4f100f65b6340 60105Author: Stefan Roese <sr@denx.de> 60106Date: Fri Mar 7 08:01:43 2008 +0100 60107 60108 ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables 60109 60110 Signed-off-by: Stefan Roese <sr@denx.de> 60111 60112commit bd4458cb47abecabd406b1210457be96c69fc49d 60113Author: Dave Liu <r63238@freescale.com> 60114Date: Tue Mar 4 16:59:22 2008 +0800 60115 60116 837xEMDS: Improve the system performance 60117 60118 1. Make the CSB bus pipeline depth as 4, and enable 60119 the repeat mode; 60120 2. Raise the eTSEC emergency priority; 60121 3. Use the highest IP blocks clock. 60122 60123 Signed-off-by: Dave Liu <daveliu@freescale.com> 60124 60125commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4 60126Author: Detlev Zundel <dzu@denx.de> 60127Date: Thu Mar 6 16:45:53 2008 +0100 60128 60129 Replace "run load; run update" with conditionalized "run load update". 60130 60131 The latter version stops when "run load" fails for whatever reasons 60132 rendering the combination *a lot* more secure. 60133 60134 Signed-off-by: Detlev Zundel <dzu@denx.de> 60135 60136commit 6bc113886d7d316df1a4e459bec8baf027518551 60137Author: Stefan Roese <sr@denx.de> 60138Date: Tue Mar 4 17:40:41 2008 +0100 60139 60140 net: Print error message upon net usage when no ethernet-interface is found 60141 60142 This patch fixes a problem seen on PPC4xx boards, when no MAC address is 60143 defined. Then no ethernet interface is available but a simple "tftp" 60144 command will return without any error message which is quite confusing. 60145 60146 Signed-off-by: Stefan Roese <sr@denx.de> 60147 60148commit a30a549a3553032d809e0356306b62de0b125901 60149Author: Jon Loeliger <jdl@freescale.com> 60150Date: Tue Mar 4 10:03:03 2008 -0600 60151 60152 Remove erroneous or extra spd.h #includers. 60153 60154 Many of the spd.h #includers don't need it, 60155 and wanted to have spd_sdram() declared instead. 60156 Since they didn't get that, some also had open 60157 coded extern declarations of it instead or as well. 60158 Fix it all up by using spd_sdram.h where needed. 60159 60160 Signed-off-by: Jon Loeliger <jdl@freescale.com> 60161 60162commit a4475386cef14af3fd88f0518b688e755669486d 60163Author: Wolfgang Denk <wd@denx.de> 60164Date: Tue Mar 4 17:41:28 2008 +0100 60165 60166 PCS440EP: fix build problems (redundant #define) 60167 60168 Signed-off-by: Wolfgang Denk <wd@denx.de> 60169 60170commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9 60171Author: Stefan Roese <sr@denx.de> 60172Date: Tue Mar 4 17:39:25 2008 +0100 60173 60174 net: Print error message upon net usage when no ethernet-interface is found 60175 60176 This patch fixes a problem seen on PPC4xx boards, when no MAC address is 60177 defined. Then no ethernet interface is available but a simple "tftp" 60178 command will return without any error message which is quite confusing. 60179 60180 Signed-off-by: Stefan Roese <sr@denx.de> 60181 60182commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53 60183Author: Wolfgang Denk <wd@denx.de> 60184Date: Tue Mar 4 17:38:50 2008 +0100 60185 60186 W7OLMC/W7OLMG: fix build problems (redundant #define) 60187 60188 Signed-off-by: Wolfgang Denk <wd@denx.de> 60189 60190commit f9301e1cda296245ba052d7b08321199c3d0af9d 60191Author: Wolfgang Denk <wd@denx.de> 60192Date: Tue Mar 4 14:58:31 2008 +0100 60193 60194 Makefile: fix problem with out-of-tree builds introduced by 5013c09f 60195 60196 Commit 5013c09f (Makefile: cleanup "clean" target) introduced a 60197 problem for out-of-tree builds which caused "make clean" to fail. 60198 60199 Signed-off-by: Wolfgang Denk <wd@denx.de> 60200 60201commit dfece9500556bed5d8244b1c15d973cec7c25bfe 60202Author: Wolfgang Denk <wd@denx.de> 60203Date: Tue Mar 4 11:58:26 2008 +0100 60204 60205 examples/Makefile: build "hello_world" on 8xx, too. 60206 60207 Signed-off-by: Wolfgang Denk <wd@denx.de> 60208 60209commit 74eb0222594fd23aafdf168e60e872814eea8b62 60210Author: Mike Nuss <mike@terascala.com> 60211Date: Mon Mar 3 15:27:05 2008 -0500 60212 60213 PPC4xx (Sequoia): Fix Ethernet "remote fault" problems 60214 60215 Every now and then a Sequoia board (or equivalent hardware) had 60216 problems connecting to a Gigabit capable network interface. 60217 60218 There were differences in the PHY setup between Linux and U-Boot. 60219 60220 This patch fixes the problem. Apparently "remote fault" is being set, 60221 which signals to some devices (on the other end of the cable) that a 60222 fault has occurred, while other devices ignore it. I believe the RF bit 60223 was causing the issue, but I removed T4 also, to match up with Linux. 60224 60225 Signed-off-by: Mike Nuss <mike@terascala.com> 60226 60227commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f 60228Author: Timur Tabi <timur@freescale.com> 60229Date: Mon Mar 3 09:58:52 2008 -0600 60230 60231 fix QE firmware uploading limit 60232 60233 Fix a typo in qe_upload_firmware() that prevented uploading firmware on 60234 systems with more than one RISC core. 60235 60236 Signed-off-by: Timur Tabi <timur@freescale.com> 60237 60238commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a 60239Author: Bernhard Nemec <bnemec@ganssloser.com> 60240Date: Mon Mar 3 11:57:23 2008 +0000 60241 60242 Fix endianess problem in cramfs code (cramfs is always host-endian in Linux) 60243 60244 Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>, 60245 see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846 60246 60247 Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com> 60248 60249commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8 60250Author: Kim B. Heino <Kim.Heino@bluegiga.com> 60251Date: Mon Mar 3 10:39:13 2008 +0200 60252 60253 fix copy from ram to dataflash 60254 60255 If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash 60256 routines instead of dataflash. This is because it checks "if source 60257 address is not dataflash" instead of target address. 60258 60259 Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com> 60260 60261commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4 60262Author: Wolfgang Denk <wd@denx.de> 60263Date: Mon Mar 3 12:16:44 2008 +0100 60264 60265 Fix quoting problem (preboot setting) in many board config files. 60266 60267 Signed-off-by: Wolfgang Denk <wd@denx.de> 60268 60269commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215 60270Author: Wolfgang Denk <wd@denx.de> 60271Date: Mon Mar 3 12:36:49 2008 +0100 60272 60273 ADS5121: Fix default environment. 60274 60275 Signed-off-by: Wolfgang Denk <wd@denx.de> 60276 60277commit 91c82076ae492bb1f9d9c47a481314631d32dc8e 60278Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60279Date: Sun Mar 2 16:12:31 2008 +0100 60280 60281 Makefile: Fix missing unconfig and mkconfig use 60282 60283 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60284 60285commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d 60286Author: michael <trimarchi@gandalf.sssup.it> 60287Date: Sun Mar 2 23:33:46 2008 +0100 60288 60289 Fix checking fat32 cluster size. 60290 60291 This fixes the cluster size tests in the FAT32 file system. 60292 The current implementation of VFAT support doesn't work if the 60293 referred cluster has an offset > 16bit representation, causing 60294 "fatload" and "fatls" commands etc. to fail. 60295 60296 Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it> 60297 60298commit 661bad63a076a96c39c64f136915f146725af92b 60299Author: Wolfgang Denk <wd@denx.de> 60300Date: Sun Mar 2 22:57:23 2008 +0100 60301 60302 Prepare v1.3.2-rc2 release candidate 60303 60304 Signed-off-by: Wolfgang Denk <wd@denx.de> 60305 60306commit 76957cb3d621bf664311908e5962e151c633c285 60307Author: Stefan Roese <sr@denx.de> 60308Date: Sat Mar 1 12:11:40 2008 +0100 60309 60310 ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1 60311 60312 The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But 60313 currently 4k/2k is configured. This patch fixes this issue. 60314 60315 Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out. 60316 60317 Signed-off-by: Stefan Roese <sr@denx.de> 60318 60319commit 118978c8eb43803e2794233922df4249fa278b83 60320Author: Woodruff, Richard <r-woodruff2@ti.com> 60321Date: Fri Feb 29 17:34:35 2008 -0600 60322 60323 Fix alignment error on ARM for modules 60324 60325 Fix alignment fault on ARM when running modules. With out an explicit 60326 linker file gcc4.2.1 will half word align __bss_start's value. The word 60327 dereference will crash hello_world. 60328 60329 signed-off-by Richard Woodruff <r-woodruff2@ti.com> 60330 60331commit ce1120dd703e6f12c59e4eba9962356a0300b832 60332Author: Dave Liu <r63238@freescale.com> 60333Date: Fri Feb 29 17:45:31 2008 +0800 60334 60335 fs: Fix ext2 read issue 60336 60337 The ext2 aligned process will corrupt the key 60338 data struct, the patch fix this. 60339 60340 Signed-off-by: Dave Liu <daveliu@freescale.com> 60341 60342commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e 60343Author: Wolfgang Denk <wd@denx.de> 60344Date: Sun Mar 2 22:45:33 2008 +0100 60345 60346 Makefile: cleanup "clean" target 60347 60348 Make sure CDPATH settings cannot interfere. 60349 Update CHANGELOG. 60350 60351 Signed-off-by: Wolfgang Denk <wd@denx.de> 60352 60353commit ffda586fc1373243c9794babde69500f6293a8d8 60354Author: Li Yang <leoli@freescale.com> 60355Date: Fri Feb 29 11:46:05 2008 +0800 60356 60357 add cscope build target 60358 60359 Add cscope build target to generate cscope database for code browsing. 60360 60361 Signed-off-by: Li Yang <leoli@freescale.com> 60362 60363commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2 60364Author: Kim Phillips <kim.phillips@freescale.com> 60365Date: Wed Feb 27 15:06:39 2008 -0600 60366 60367 net: uec_phy: handle 88e1111 rev.B2 erratum 5.6 60368 60369 erratum 5.6 states the autoneg completion bit is functional only if the 60370 autoneg bit is asserted. 60371 60372 This fixes any secondarily-issued networking commands on non-gigabit 60373 links on the mpc8360 mds board. 60374 60375 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 60376 60377commit 5f91db7f582ca17b1f19f10189c025696f333d2e 60378Author: John Rigby <jrigby@freescale.com> 60379Date: Tue Feb 26 09:38:14 2008 -0700 60380 60381 MPC5121e ADS PCI support take 3 60382 60383 Adds PCI support for MPC5121 60384 60385 Tested with drivers/net/rtl8139.c 60386 60387 Support is conditional since PCI on old silicon does not work. 60388 60389 ads5121_PCI_config turns on PCI 60390 60391 In this version, condition compilation of PCI code has been moved 60392 from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as 60393 suggested by Jean-Christophe PLAGNIOL-VILLARD 60394 60395 Signed-off-by: John Rigby <jrigby@freescale.com> 60396 60397commit 44b4dbed4133f657705b7c5193209da9978243a7 60398Author: Anatolij Gustschin <agust@denx.de> 60399Date: Mon Feb 25 23:53:07 2008 +0100 60400 60401 Fix warnings while compilation of post/drivers/memory.c 60402 60403 Fix warnings while compilation with new gcc in eldk-4.2 60404 60405 Signed-off-by: Anatolij Gustschin <agust@denx.de> 60406 60407commit 4fae35a53b3e958254d6574a1cc7e10811fc6726 60408Author: Anatolij Gustschin <agust@denx.de> 60409Date: Mon Feb 25 20:54:04 2008 +0100 60410 60411 ppc4xx: Fix problem in 4xx_enet.c driver 60412 60413 U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is 60414 enabled. To reproduce the problem ensure that 'ethrotate' 60415 environment variable isn't set to "no" and then run 60416 "tftp 200000 not_existent_file". 60417 This patch tries to fix the issue. 60418 60419 Signed-off-by: Anatolij Gustschin <agust@denx.de> 60420 60421commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484 60422Author: Anatolij Gustschin <agust@denx.de> 60423Date: Mon Feb 25 20:04:20 2008 +0100 60424 60425 POST: Disable cache while SPR POST 60426 60427 Currently (since commit b2e2142c) u-boot crashes on 60428 sequoia board while SPR test if CONFIG_4xx_DCACHE is 60429 enabled. This patch disables the cache while SPR test. 60430 60431 Signed-off-by: Anatolij Gustschin <agust@denx.de> 60432 60433commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d 60434Author: Martin Krause <martin.krause@tqs.de> 60435Date: Mon Feb 25 17:52:40 2008 +0100 60436 60437 TQM5200: use automatic fdt memory fixup (part 2) 60438 60439 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S, 60440 TB5200 and TB5200_B to fixup the /memory node with the memory values 60441 detected by U-Boot. 60442 60443 Signed-off-by: Martin Krause <martin.krause@tqs.de> 60444 60445commit 44ceec253ea941b301abf4b079d52324def69d92 60446Author: Martin Krause <martin.krause@tqs.de> 60447Date: Mon Feb 25 15:17:05 2008 +0100 60448 60449 TQM5200: use automatic fdt memory fixup 60450 60451 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S, 60452 TB5200 and TB5200_B to fixup the /memory node with the memory values 60453 detected by U-Boot. 60454 60455 Signed-off-by: Martin Krause <martin.krause@tqs.de> 60456 60457commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a 60458Author: Martin Krause <martin.krause@tqs.de> 60459Date: Mon Feb 25 13:27:52 2008 +0100 60460 60461 TQM5200: fix bug in SDRAM initialization code 60462 60463 This patch fixes a bug in the SDRAM initialization code for the 60464 TQM5200. The hi_addr bit is now set correctly. Without this patch 60465 the hi_addr bit is always set to 1, if the second SDRAM bank is 60466 not populated. 60467 60468 For other MPC5200 boards a correspondig patch has already been applied 60469 some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c. 60470 60471 Signed-off-by: Martin Krause <martin.krause@tqs.de> 60472 -- 60473 Forget the first patch please. I confused flash with SDRAM in 60474 the comment ... 60475 60476commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1 60477Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60478Date: Mon Feb 25 00:03:12 2008 +0100 60479 60480 mx1fs2/flash: Fix multiple compiler warnings 60481 60482 "pointer targets in assignment differ in signedness" 60483 60484 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60485 60486commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2 60487Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60488Date: Mon Feb 25 00:03:11 2008 +0100 60489 60490 arm-imx: Fix register definitions 60491 60492 Sync register definitions with linux 60493 60494 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60495 60496commit c9bcf75fecc58886af77d2a571cff2eab39eab6f 60497Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60498Date: Mon Feb 25 00:03:10 2008 +0100 60499 60500 actua1/actua2/actua3: Fix multiple unused variable warnings 60501 60502 - actua1: 60503 actux1.c: In function 'checkboard': 60504 actux1.c:92: warning: unused variable 'revision' 60505 60506 - actua2: 60507 actux2.c: In function 'checkboard': 60508 actux2.c:100: warning: unused variable 's' 60509 actux2.c:99: warning: unused variable 'revision' 60510 actux2.c: In function 'reset_phy': 60511 actux2.c:130: warning: unused variable 'i' 60512 60513 - actua3: 60514 actux3.c: In function 'checkboard': 60515 actux3.c:114: warning: unused variable 'revision' 60516 60517 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60518 60519commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd 60520Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 60521Date: Sun Feb 24 11:44:29 2008 +0900 60522 60523 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets. 60524 60525 The previous patch was lacking of i386, microblaze, nios and nios2. This 60526 patch tries to fix them. 60527 60528 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 60529 60530commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95 60531Author: Marian Balakowicz <m8@semihalf.com> 60532Date: Fri Feb 29 22:22:46 2008 +0100 60533 60534 [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt() 60535 60536 Do not use global fdt blob pointer, calculate blob size from routine 60537 argument blob pointer. 60538 60539 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60540 60541commit d1cc52879c8966507dad9fb575481e6d3985e64e 60542Author: David Gibson <david@gibson.dropbear.id.au> 60543Date: Tue Feb 12 00:58:31 2008 +1100 60544 60545 libfdt: Add and use a node iteration helper function. 60546 60547 This patch adds an fdt_next_node() function which can be used to 60548 iterate through nodes of the tree while keeping track of depth. This 60549 function is used to simplify the iteration code in a lot of other 60550 functions, and is also exported for use by library users. 60551 60552 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 60553 60554commit 8cf30809a82902a471866d2f07725ce3b8a22291 60555Author: Bartlomiej Sieka <tur@semihalf.com> 60556Date: Fri Feb 29 16:00:24 2008 +0100 60557 60558 [new uImage] Add libfdt support to mkimage 60559 60560 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 60561 60562commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9 60563Author: Bartlomiej Sieka <tur@semihalf.com> 60564Date: Fri Feb 29 16:00:23 2008 +0100 60565 60566 [new uImage] Add sha1.o object to mkimage binary build 60567 60568 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 60569 60570commit df6f1b895c997978f03afe04502ee76b7ba34ab9 60571Author: Marian Balakowicz <m8@semihalf.com> 60572Date: Fri Feb 29 16:00:06 2008 +0100 60573 60574 [new uImage] Fix component handling for legacy multi component images 60575 60576 Use uint32_t when accessing size table in image_multi_count() and 60577 image_multi_getimg() for multi component images. 60578 60579 Add missing uimage_to_cpu() endianness conversion. 60580 60581 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60582 60583commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248 60584Author: Marian Balakowicz <m8@semihalf.com> 60585Date: Fri Feb 29 15:59:59 2008 +0100 60586 60587 [new uImage] Share common uImage code between mkimage and U-boot 60588 60589 This patch adds the following common routines: 60590 60591 1) Dedicated mkimage print_header() is replaced with common 60592 image_print_contents() 60593 image_print_contents_noindent() 60594 60595 2) Common os/arch/type/comp fields name <--> id translation routines 60596 genimg_get_os_name() 60597 genimg_get_arch_name() 60598 genimg_get_type_name() 60599 genimg_get_comp_name() 60600 genimg_get_os_id() 60601 genimg_get_arch_id() 60602 genimg_get_type_id() 60603 genimg_get_comp_id() 60604 60605 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60606 60607commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6 60608Author: Marian Balakowicz <m8@semihalf.com> 60609Date: Fri Feb 29 14:58:34 2008 +0100 60610 60611 [new uImage] Update naming convention for bootm/uImage related code 60612 60613 This patch introduces the following prefix convention for the 60614 image format handling and bootm related code: 60615 60616 genimg_ - dual format shared code 60617 image_ - legacy uImage format specific code 60618 fit_ - new uImage format specific code 60619 boot_ - booting process related code 60620 60621 Related routines are renamed and a few pieces of code are moved around and 60622 re-grouped. 60623 60624 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60625 60626commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276 60627Author: Kumar Gala <galak@kernel.crashing.org> 60628Date: Wed Feb 27 21:51:51 2008 -0600 60629 60630 [new uImage] Respect autostart setting in linux bootm 60631 60632 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60633 Acked-by: Marian Balakowicz <m8@semihalf.com> 60634 60635commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb 60636Author: Kumar Gala <galak@kernel.crashing.org> 60637Date: Wed Feb 27 21:51:50 2008 -0600 60638 60639 [new uImage] Provide ability to restrict region used for boot images 60640 60641 Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way 60642 to restrict what memory range is used for bootm. 60643 60644 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60645 Acked-by: Marian Balakowicz <m8@semihalf.com> 60646 60647commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da 60648Author: Kumar Gala <galak@kernel.crashing.org> 60649Date: Wed Feb 27 21:51:49 2008 -0600 60650 60651 [new uImage] Use lmb for bootm allocations 60652 60653 Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd() 60654 functions over to using lmb for allocation of the ramdisk, command line 60655 and kernel bd info. 60656 60657 Convert PPC specific fdt_relocate() to use lmb for allocation of the device 60658 tree. 60659 60660 Provided a weak function that board code can call to do additional 60661 lmb reserves if needed. 60662 60663 Also introduce the concept of bootmap_base to specify the offset in 60664 physical memory that the bootmap is located at. This is used for 60665 allocations of the cmdline, kernel bd, and device tree as they should 60666 be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ. 60667 60668 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60669 60670commit f5614e7926863bf0225ec860d9b319741a9c4004 60671Author: Kumar Gala <galak@kernel.crashing.org> 60672Date: Wed Feb 27 21:51:48 2008 -0600 60673 60674 [new uImage] Add autostart flag to bootm_headers structure 60675 60676 The autostart env variable was dropped as part of the initial new uImage 60677 cleanup. Add it back here so the arch specific code can decide if it 60678 wants to really boot or not. 60679 60680 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60681 Acked-by: Marian Balakowicz <m8@semihalf.com> 60682 60683commit 4ed6552f715983bfc7d212c1199a1f796f1144ad 60684Author: Kumar Gala <galak@kernel.crashing.org> 60685Date: Wed Feb 27 21:51:47 2008 -0600 60686 60687 [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images 60688 60689 Introduce the LMB lib used on PPC in the kernel as a clean way to manage 60690 the memory spaces used by various boot images and structures. This code 60691 will allow us to simplify the code in bootm and its support functions. 60692 60693 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60694 60695commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904 60696Author: Kumar Gala <galak@kernel.crashing.org> 60697Date: Tue Feb 19 22:03:47 2008 -0600 60698 60699 [new uImage] ppc: Allow boards to specify effective amount of memory 60700 60701 For historical reasons we limited the stack to 256M because some boards 60702 could only map that much via BATS. However newer boards are capable of 60703 mapping more memory (for example 85xx is capable of doing up to 2G). 60704 60705 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60706 Acked-by: Marian Balakowicz <m8@semihalf.com> 60707 60708commit 274cea2bddbca10cdad7daa518951b75c44ef6bc 60709Author: Kumar Gala <galak@kernel.crashing.org> 60710Date: Wed Feb 27 21:51:46 2008 -0600 60711 60712 [new uImage] rework error handling so common functions don't reset 60713 60714 Changed image_get_ramdisk() to just return NULL on error and have 60715 get_ramdisk() propogate that error to the caller. It's left to the 60716 caller to call do_reset() if it wants to. 60717 60718 Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc 60719 to a common location. In the future we will change get_fdt() and 60720 fdt_relocate() to return success/failure and not call do_reset() at all. 60721 60722 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60723 Acked-by: Marian Balakowicz <m8@semihalf.com> 60724 60725commit d2bc095a639672def11d5d043b5688d0dbd692ec 60726Author: Kumar Gala <galak@kernel.crashing.org> 60727Date: Wed Feb 27 21:51:45 2008 -0600 60728 60729 [new uImage] ppc: Re-order ramdisk/fdt handling sequence 60730 60731 Doing the fdt before the ramdisk allows us to grow the fdt w/o concern 60732 however it does mean we have to go in and fixup the initrd info since 60733 we don't know where it will be. 60734 60735 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60736 60737commit 27953493ef025fb698d68c5dee39b36f01f4d530 60738Author: Kumar Gala <galak@kernel.crashing.org> 60739Date: Wed Feb 27 21:51:44 2008 -0600 60740 60741 [new uImage] ppc: Determine if we are booting an OF style 60742 60743 If we are bootin OF style than we can skip setting up some things 60744 that are used for the old boot method. 60745 60746 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60747 Acked-by: Marian Balakowicz <m8@semihalf.com> 60748 60749commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb 60750Author: Kumar Gala <galak@kernel.crashing.org> 60751Date: Wed Feb 27 21:51:43 2008 -0600 60752 60753 [new uImage] Don't pass kdb to ramdisk_high since we may not have one 60754 60755 We don't actually need the kdb param as we are just using it to get 60756 bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we 60757 boot via OF we might not actually fill out a kdb. 60758 60759 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60760 Acked-by: Marian Balakowicz <m8@semihalf.com> 60761 60762commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775 60763Author: Kumar Gala <galak@kernel.crashing.org> 60764Date: Wed Feb 27 16:30:47 2008 -0600 60765 60766 85xx: Don't icbi when unlocking the cache 60767 60768 There is no reason to icbi when invalidating the temporary stack in 60769 the d-cache. Its impossible on e500 to have the i-cache contain 60770 any addresses in the temp stack and it can be problematic in generating 60771 transactions on the bus to non-valid addresses. 60772 60773 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 60774 60775commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6 60776Author: Andy Fleming <afleming@freescale.com> 60777Date: Wed Feb 27 15:50:50 2008 -0600 60778 60779 Fix source for ECM error IVPR 60780 60781 The source vector for the ECM was being set to 2, 60782 but that's what the source vector for DDR was being 60783 set to. Change it to 1. 60784 60785 Signed-off-by: Andy Fleming <afleming@freescale.com> 60786 60787commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923 60788Author: Andy Fleming <afleming@freescale.com> 60789Date: Wed Feb 27 14:29:58 2008 -0600 60790 60791 Invalidate INIT_RAM TLB mappings 60792 60793 Commit 0db37dc... (and some others) changed the INIT_RAM TLB 60794 mappings to be unguarded. This collided with an existing "bug" 60795 where the mappings for the INIT_RAM were being kept around. 60796 This meant that speculative loads to those addresses were 60797 succeeding in the TLB, and going out to the bus, where they 60798 were causing an exception (there's nothing at that address). The 60799 Flash code was coincidentally causing such a speculative load. 60800 Rather than go back to mapping the INIT RAM as guarded, we fix 60801 it so that the entries for the INIT_RAM are invalidated. Thus 60802 the speculative loads will fail in the TLB, and have no effect. 60803 60804 Signed-off-by: Andy Fleming <afleming@freescale.com> 60805 60806commit 347b7938d3e561eb215aa386c37fb5acb5a383c6 60807Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60808Date: Sun Feb 17 22:56:17 2008 +0100 60809 60810 sbc8548: Fix Revision reading and unused variable 'path' 60811 60812 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60813 60814commit 495d162374c472f46454453553382ad0735dc725 60815Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60816Date: Sun Feb 17 22:56:16 2008 +0100 60817 60818 sbc8548: Fix cfi flash bank declaration 60819 60820 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60821 60822commit 4efbe9dbb129f857f27856936112c8c02f016be6 60823Author: Marian Balakowicz <m8@semihalf.com> 60824Date: Wed Feb 27 11:02:26 2008 +0100 60825 60826 [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled 60827 60828 Dual format image code must properly handle all three FDT passing methods: 60829 - raw FDT blob passed 60830 - FDT blob embedded in the legacy uImage 60831 - FDT blob embedded in the new uImage 60832 60833 This patch enables proper raw FDT handling when no FIT imaeg support 60834 is compiled in. This is a bit tricky as we must dected FIT format even 60835 when FIT uImage handling is not enabled as both FIT uImages and raw FDT 60836 blobs use tha same low level format (libfdt). 60837 60838 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60839 60840commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8 60841Author: Marian Balakowicz <m8@semihalf.com> 60842Date: Wed Feb 27 11:02:26 2008 +0100 60843 60844 [new uImage] POWERPC: Add image_get_fdt() routine 60845 60846 FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage 60847 (3) or embedded in the new uImage. For the (2) case embedding image must be 60848 verified before we get FDT from it. This patch factors out legacy image 60849 specific verification routine to the separate helper routine. 60850 60851 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60852 Acked-by: Kumar Gala <galak@kernel.crashing.org> 60853 60854commit 1efd43601f90de21ec6c0ebb9880823e822927b1 60855Author: Marian Balakowicz <m8@semihalf.com> 60856Date: Wed Feb 27 11:02:07 2008 +0100 60857 60858 [new uImage] Add image_get_kernel() routine 60859 60860 Legacy image specific verification is factored out to a separate helper 60861 routine to keep get_kernel() generic and simple. 60862 60863 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60864 Acked-by: Kumar Gala <galak@kernel.crashing.org> 60865 60866commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658 60867Author: Marian Balakowicz <m8@semihalf.com> 60868Date: Wed Feb 27 11:01:04 2008 +0100 60869 60870 [new uImage] Move image verify flag to bootm_headers structure 60871 60872 Do not pass image verification flag directly to related routines. 60873 Simplify argument passing and move it to the bootm_header structure which 60874 contains curently processed image specific data and is already being passed 60875 on the argument list. 60876 60877 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60878 Acked-by: Kumar Gala <galak@kernel.crashing.org> 60879 60880commit 823afe7cefe00dafefc6696c1cc7aa828c394234 60881Author: Marian Balakowicz <m8@semihalf.com> 60882Date: Wed Feb 27 11:00:47 2008 +0100 60883 60884 [Makefile] Sort COBJS in lib_<arch> Makefiles 60885 60886 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60887 60888commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91 60889Author: Marian Balakowicz <m8@semihalf.com> 60890Date: Wed Feb 27 11:00:47 2008 +0100 60891 60892 [new uImage] Optimize gen_get_image() flow control 60893 60894 When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing 60895 to do, update its control flow to better reflect that simple case. 60896 60897 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60898 Acked-by: Kumar Gala <galak@kernel.crashing.org> 60899 60900commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca 60901Author: Marian Balakowicz <m8@semihalf.com> 60902Date: Mon Feb 4 08:28:17 2008 +0100 60903 60904 [new uImage] POWERPC: Split get_fdt() into get and relocate routines 60905 60906 PPC specific FDT blob handling code is divided into two separate routines: 60907 60908 get_fdt() - find and verify a FDT blob (either raw or image embedded) 60909 fdt_relocate() - move FDT blob to within BOOTMAP if needed 60910 60911 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60912 Acked-by: Kumar Gala <galak@kernel.crashing.org> 60913 60914commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817 60915Author: Jon Loeliger <jdl@freescale.com> 60916Date: Mon Feb 25 13:13:37 2008 -0600 60917 60918 86xx: Fix renamed GUR symbols in sbc8641d board. 60919 60920 Back in commit a551cee99ad1d1da20fd23ad265de47448852f56 60921 (86xx: Fix GUR PCI config registers properly), we should have 60922 changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL 60923 symbols in the sbc8641d board as well. Fix this oversight. 60924 60925 Signed-off-by: Jon Loeliger <jdl@freescale.com> 60926 60927commit 64cd594e623c39f73964d18787763e4533f791f7 60928Author: Stefan Roese <sr@denx.de> 60929Date: Mon Feb 25 16:50:48 2008 +0100 60930 60931 ppc4xx: Fix acadia_nand build problem 60932 60933 Don't include testdram() on NAND-booting target acadia_nand. This saves 60934 a few bytes and makes the target build clean again. 60935 60936 Signed-off-by: Stefan Roese <sr@denx.de> 60937 60938commit 14e099e698d41e8179d05c2b2dbcf704a236f748 60939Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60940Date: Sun Feb 24 23:03:12 2008 +0000 60941 60942 mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness 60943 60944 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60945 60946commit 724902c8464e610642b3a170278b99710325888e 60947Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60948Date: Sun Feb 24 23:03:11 2008 +0000 60949 60950 arm-imx: Fix registers definition 60951 60952 Sync registers definition with linux 60953 60954 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60955 60956commit 4cd288b589ea1178947c6e364453c32b3dede6b7 60957Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60958Date: Sun Feb 24 23:03:10 2008 +0000 60959 60960 actua1/actua2/actua3: Fix multipleunused variable 60961 60962 - actua1: 60963 actux1.c: In function 'checkboard': 60964 actux1.c:92: warning: unused variable 'revision' 60965 60966 - actua2: 60967 actux2.c: In function 'checkboard': 60968 actux2.c:100: warning: unused variable 's' 60969 actux2.c:99: warning: unused variable 'revision' 60970 actux2.c: In function 'reset_phy': 60971 actux2.c:130: warning: unused variable 'i' 60972 60973 - actua3: 60974 actux3.c: In function 'checkboard': 60975 actux3.c:114: warning: unused variable 'revision' 60976 60977 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 60978 60979commit d5934ad7756f038a393a9cfab76a4fe306d9d930 60980Author: Marian Balakowicz <m8@semihalf.com> 60981Date: Mon Feb 4 08:28:09 2008 +0100 60982 60983 [new uImage] Add dual format uImage support framework 60984 60985 This patch adds framework for dual format images. Format detection is added 60986 and the bootm controll flow is updated to include cases for new FIT format 60987 uImages. 60988 60989 When the legacy (image_header based) format is detected appropriate 60990 legacy specific handling is invoked. For the new (FIT based) format uImages 60991 dual boot framework has a minial support, that will only print out a 60992 corresponding debug messages. Implementation of the FIT specific handling will 60993 be added in following patches. 60994 60995 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 60996 60997commit b29661fc1151077776454288051bc9a488351ce8 60998Author: Wolfgang Denk <wd@denx.de> 60999Date: Sun Feb 24 15:21:36 2008 +0100 61000
61001 Coding style cleanup. Prepare v1.3.2-rc2 release candidate 61002 61003 Signed-off-by: Wolfgang Denk <wd@denx.de> 61004 61005commit 00b48a48424894daa589d166d73277830b1c6ac4 61006Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61007Date: Sat Feb 23 12:15:56 2008 +0100 61008 61009 ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected 61010 61011 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61012 61013commit b075d74efb70ff68c49a2532f26b56d6703b69c1 61014Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61015Date: Sat Feb 23 17:24:16 2008 +0900 61016 61017 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets. 61018 61019 ---------------------------------------------------------------- 61020 Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)] 61021 61022 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 61023 32bit targets. 61024 61025 GCC can be made to warn about usage of long long types with ISO C90 61026 (-ansi), but only with -pedantic. You can write this in a way that even 61027 then it doesn't cause warnings, namely by: 61028 61029 #ifdef __GNUC__ 61030 __extension__ typedef __signed__ long long __s64; 61031 __extension__ typedef unsigned long long __u64; 61032 #endif 61033 61034 The __extension__ keyword in front of this switches off any pedantic 61035 warnings for this expression. 61036 61037 Signed-off-by: Olaf Hering <olh@suse.de> 61038 Cc: <linux-arch@vger.kernel.org> 61039 Signed-off-by: Andrew Morton <akpm@linux-foundation.org> 61040 Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> 61041 ---------------------------------------------------------------- 61042 61043 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61044 61045commit 208acd112e6517b21fc30c420396902b103563ac 61046Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61047Date: Sat Feb 23 17:07:57 2008 +0900 61048 61049 cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate. 61050 61051 This will reduce the build time. 61052 61053 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61054 61055commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4 61056Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61057Date: Sat Feb 23 17:05:00 2008 +0900 61058 61059 cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate. 61060 61061 This will reduce the build time. 61062 61063 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61064 61065commit e682ba399a1d76f09d8cc7af1e57066f1d360d91 61066Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61067Date: Sat Feb 23 16:58:41 2008 +0900 61068 61069 cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate. 61070 61071 This reduces the build time by ~10%. Here's the gth2_config example. 61072 61073 BEFORE AFTER 61074 real 0m31.441s 0m27.833s 61075 user 0m24.766s 0m23.045s 61076 sys 0m10.425s 0m7.468s 61077 61078 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61079 61080commit 02409f8cf54c7cd91981f0dfec135dbf3858090c 61081Author: Marcel Moolenaar <marcelm@juniper.net> 61082Date: Fri Feb 22 10:48:07 2008 -0800 61083 61084 make define2mk.sed work on FreeBSD 61085 61086 In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link", 61087 the define2mk.sed script was identified as the source of the link 61088 failure on FreeBSD. The problem is that sed(1) does not always support 61089 the '+' operator. It isn't on FreeBSD. The attach patch implements the 61090 equivalent, using the '*' operator instead and should work everywhere. 61091 61092 Signed-off-by: Marcel Moolenaar <marcelm@juniper.net> 61093 61094commit e5084af8ded58453cd07ec1af8b0f29f34122bbc 61095Author: Detlev Zundel <dzu@denx.de> 61096Date: Fri Feb 22 17:21:32 2008 +0100 61097 61098 Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter. 61099 61100 The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove 61101 final traces of long-deprecated "ramdisk" kernel parm") makes these 61102 changes neccessary. 61103 61104 Signed-off-by: Detlev Zundel <dzu@denx.de> 61105 61106commit d01b847c5cd070895c4ba178c85cd068a95cf7cd 61107Author: Larry Johnson <lrj@acm.org> 61108Date: Thu Feb 21 13:58:16 2008 -0500 61109 61110 LM75 bug fix for negative temperatures 61111 61112 When the LM75 temperature sensor measures a temperature below 0 C, the 61113 current driver does not perform sign extension, so the result returned is 61114 256 C too high. This patch fixes the problem. 61115 61116 Signed-off-by: Larry Johnson <lrj@acm.org> 61117 61118commit 5a910c224b13e413bda41922379add6d75c32da3 61119Author: Heiko Schocher <hs@denx.de> 61120Date: Thu Feb 21 18:33:45 2008 +0100 61121 61122 IDS8247: update MAINTAINER entry. 61123 61124 Signed-off-by: Heiko Schocher <hs@denx.de> 61125 61126commit 79eac2bfb591f2b028ec1735049dc91e4320de4a 61127Author: Heiko Schocher <hs@denx.de> 61128Date: Thu Feb 21 18:31:15 2008 +0100 61129 61130 Fix device tree for mgsuvd board. 61131 61132 Rename the "scc" node in "ethernet" for the mgsuvd board. 61133 61134 Signed-off-by: Heiko Schocher <hs@denx.de> 61135 61136commit 2e721094a70a52206af2e1bf1208d9a7131f6dad 61137Author: Yuri Tikhonov <yur@emcraft.com> 61138Date: Thu Feb 21 14:23:42 2008 +0100 61139 61140 lwmon5: enable hardware watchdog 61141 61142 Some boards (e.g. lwmon5) may use rather small watchdog intervals, so 61143 causing it to reboot the board if U-Boot does a long busy-wait with 61144 udelay(). Thus, for these boards we have to restart WD more 61145 frequently. 61146 61147 This patch splits the busy-wait udelay() into smaller, predefined, 61148 intervals, so that the watchdog timer may be resetted with the 61149 configurable (CONFIG_WD_PERIOD) interval. 61150 61151 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 61152 61153commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d 61154Author: Anatolij Gustschin <agust@denx.de> 61155Date: Thu Feb 21 12:52:29 2008 +0100 61156 61157 ppc4xx: Support for ATI Radeon 9200 card on sequoia 61158 61159 Adds configuration option for ATI Radeon 9200 card 61160 support to sequoia config file. If CONFIG_VIDEO 61161 is enabled, TEXT_BASE should be changed to 0xFFF80000. 61162 61163 Signed-off-by: Anatolij Gustschin <agust@denx.de> 61164 61165commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7 61166Author: Kumar Gala <galak@kernel.crashing.org> 61167Date: Mon Feb 18 08:18:07 2008 -0600 61168 61169 Remove duplicate defines for ARRAY_SIZE 61170 61171 A few duplicate of the ARRAY_SIZE macro sneaked in since we put 61172 the define in common.h. 61173 61174 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 61175 61176commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a 61177Author: Kumar Gala <galak@kernel.crashing.org> 61178Date: Mon Feb 18 08:09:37 2008 -0600 61179 61180 ppc: Allow boards to specify effective amount of memory 61181 61182 For historical reasons we limited the stack to 256M because some boards 61183 could only map that much via BATS. However newer boards are capable of 61184 mapping more memory (for example 85xx is capable of doing up to 2G). 61185 61186 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 61187 61188commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b 61189Author: Mike Frysinger <vapier@gentoo.org> 61190Date: Mon Feb 18 05:24:13 2008 -0500 61191 61192 include autoconf.mk before any other .mk files 61193 61194 This bumps the autoconf.mk include step above board/cpu/arch/etc... so that 61195 those .mk files can have make if statements based on the current config. 61196 61197 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 61198 61199commit 16fe77752eee099b9fb61ed73460e51cc94b37ba 61200Author: Mike Frysinger <vapier@gentoo.org> 61201Date: Mon Feb 18 05:10:07 2008 -0500 61202 61203 error check autoconf.mk generation 61204 61205 If any of the steps for generating autoconf.mk fail currently, they go 61206 unnoticed. To fix, we can simply add 'set -e' to the long list of commands. 61207 This is simpler and more robust than placing '|| exit $$?' after every line. 61208 61209 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 61210 61211commit 019895a8dee71a9f00da05c03e379f45d581b0fe 61212Author: Stefano Babic <sbabic@denx.de> 61213Date: Mon Feb 18 08:03:51 2008 +0100 61214 61215 Fix bug in dependency checking 61216 61217 By adding VERSION_FILE to the PHONY targets the script 61218 /tools/setlocalversion is always called and version_autogenerated.h 61219 is replaced only if the script find a modified source file. 61220 61221 Signed-off-by: Stefano Babic <sbabic@denx.de> 61222 61223commit 98ba144ccc912eee90dd42699f023c497ce774c6 61224Author: Kyungmin Park <kmpark@infradead.org> 61225Date: Mon Feb 18 14:35:43 2008 +0900 61226 61227 Fix GPMC CS2 memory setup at apollon 61228 61229 It disables the current map first 61230 61231 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 61232 61233commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f 61234Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61235Date: Sun Feb 17 23:52:46 2008 +0100 61236 61237 uli526x: Fix multiple differ in signedness and parentheses around comparison 61238 61239 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61240 61241commit beeccf7a5dc5415c202e0132a33c58fc316c2a62 61242Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61243Date: Sun Feb 17 16:58:04 2008 +0100 61244 61245 MIPS: Fix CFG_NO_FLASH support 61246 61247 - Fix flash_init call when CFG_NO_FLASH is used 61248 - Remove no more needed flash.c for qemu-mips 61249 61250 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61251 61252commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47 61253Author: Mike Frysinger <vapier@gentoo.org> 61254Date: Sat Feb 16 02:40:18 2008 -0500 61255 61256 easylogo: clean up some more and add -r (rgb) support 61257 61258 Michael Hennerich added support for outputting an image in RGB format rather 61259 than forcing YUYV all the time. This makes obvious sense if the display you 61260 have takes RGB input rather than YUYV. 61261 61262 Rather than hack in support for options, I've converted it to use getopt and 61263 cleaned up the argument parsing in the process. 61264 61265 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com> 61266 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 61267 61268commit f65c98129ccada3f7caf97d80395a95b84e911de 61269Author: Mike Frysinger <vapier@gentoo.org> 61270Date: Sat Feb 16 02:12:37 2008 -0500 61271 61272 Makefile: add target for $(LDSCRIPT) 61273 61274 If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds), 61275 then change into the board directory and try and create it. This allows you 61276 to generate the linker script on the fly based upon board defines (like the 61277 Blackfin boards do). 61278 61279 There should be no regressions due to this change as the normal case is to 61280 already have a u-boot.lds file. If that's the case, then there's nothing to 61281 generate, and so make will always exit. The fix here is that if the linker 61282 script does not exist, the implicit rules take over and attempt to guess how 61283 to generate the file. 61284 61285 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 61286 61287commit 5583cbf736474ef754e128a54fb78632f57b48fd 61288Author: Marian Balakowicz <m8@semihalf.com> 61289Date: Thu Feb 21 17:27:49 2008 +0100 61290 61291 [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds 61292 61293 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 61294 61295commit 2242f5369822bc7780db95c47985bb408ea9157b 61296Author: Marian Balakowicz <m8@semihalf.com> 61297Date: Thu Feb 21 17:27:41 2008 +0100 61298 61299 [new uImage] Rename and move print_image_hdr() routine 61300 61301 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 61302 61303commit f50433d670ec2ee9e96abac67cdc6e5e061a810d 61304Author: Marian Balakowicz <m8@semihalf.com> 61305Date: Thu Feb 21 17:20:20 2008 +0100 61306 61307 [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines 61308 61309 Introducing routines for parsing new uImage format bootm arguments: 61310 [<addr>]#<conf> - configuration specification 61311 [<addr>]:<subimg> - subimage specification 61312 61313 New format images can contain multiple subimages of the same type. For example 61314 a single new format image file can contain three kernels, two ramdisks and a 61315 couple of FDT blobs. Subimage and configuration specifications are extensions 61316 to bootm (and other image-related commands) arguments' syntax that allow to 61317 specify which particular subimage should be operated on. 61318 61319 Subimage specification is used to denote a particular subimage. Configurations 61320 are a bit more complex -- they are used to define a particualr booting setup, 61321 for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple, 61322 etc. 61323 61324 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 61325 61326commit fff888a1997ff7de9b29e24050fc4a0fd403ba16 61327Author: Marian Balakowicz <m8@semihalf.com> 61328Date: Thu Feb 21 17:20:19 2008 +0100 61329 61330 [new uImage] Add gen_get_image() routine 61331 61332 This routine assures that image (whether legacy or FIT) is not 61333 in a special dataflash storage. 61334 61335 If image address is a dataflash address image is moved to system RAM. 61336 61337 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 61338 61339commit 75d3e8fbd93c14d9929d024c75af2d742c76db70 61340Author: Marian Balakowicz <m8@semihalf.com> 61341Date: Thu Feb 21 17:20:18 2008 +0100 61342 61343 [new uImage] Pull in libfdt if CONFIG_FIT is enabled 61344 61345 New uImage format (Flattened Image Tree) requires libfdt 61346 functionality, print out error message if CONFIG_OF_LIBFDT 61347 is not defined. 61348 61349 New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT). 61350 This commit turns it on by default. 61351 61352 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 61353 61354commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728 61355Author: Michael Schwingen <michael@schwingen.org> 61356Date: Mon Feb 18 23:16:35 2008 +0100 61357 61358 CFI: Do not use uninitialized cmd_reset 61359 61360 Do not use uninitialized cmd_reset; issue both AMD and Intel reset 61361 commands instead 61362 61363 From a short test, it looks like AMD-style flash roms treat *any* unknown 61364 command write as a reset, at least when in CFI Query mode, so issuing the 61365 Intel reset command to AMD-style flashs seems safe (from the small sample I 61366 have), plus the 3-cycle magic sequence should kick the state machine into 61367 the right state even without a reset command. Since the AMD-style flashs 61368 require the unlock sequence for real operation, I chose to try the AMD reset 61369 command first, so that Intel flashs do no see an invalid command prior to 61370 the CFI query. 61371 61372 I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix, 61373 plus Intel StrataFlash. 61374 61375 Signed-off-by: Michael Schwingen <michael@schwingen.org> 61376 Signed-off-by: Stefan Roese <sr@denx.de> 61377 61378commit e7a85f26830c9f2e78506421c2d519a2965bc7a1 61379Author: Rafal Jaworowski <raj@semihalf.com> 61380Date: Thu Feb 21 11:56:44 2008 +0100 61381 61382 API: Add (c) and licensing notice to the public API header. 61383 61384 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 61385 61386commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6 61387Author: Yuri Tikhonov <yur@emcraft.com> 61388Date: Thu Feb 21 11:06:07 2008 +0100 61389 61390 Fix CPU POST test failure 61391 61392 The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the 61393 ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered 61394 by it. The gcc-4.2 with its more aggressive optimization exposes this fact. 61395 This patch just saves the CR value before running the test code, so allowing 61396 it to do anything it wants with CR. 61397 61398 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> 61399 Acked-by: Yuri Tikhonov <yur@emcraft.com> 61400 -- 61401 61402commit d5908b093955415f3d340706378b991f911af671 61403Author: Jon Loeliger <jdl@freescale.com> 61404Date: Wed Feb 20 15:26:51 2008 -0600 61405 61406 8610HPCD: Document the flashbank selection switches. 61407 61408 Signed-off-by: Jon Loeliger <jdl@freescale.com> 61409 61410commit a551cee99ad1d1da20fd23ad265de47448852f56 61411Author: Jon Loeliger <jdl@freescale.com> 61412Date: Wed Feb 20 14:22:26 2008 -0600 61413 61414 86xx: Fix GUR PCI config registers properly. 61415 61416 Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where 61417 I tried to "8610HPCD: Fix typos in two PCI setup registers", I 61418 botched it due to not realizing that 8610 and 8641 had different 61419 Global Utility Register defintions, one of which was like 85xx, 61420 and the other wasn't. Correct this problem by introducing two 61421 symbols, one for each 86xx SoC, but neither of which is named 61422 anything like 85xx. 61423 61424 My bad. Lovely Wednesday with git bisect. You know. 61425 61426 Signed-off-by: Jon Loeliger <jdl@freescale.com> 61427 61428commit cb06eb961bdffc8728b38c242473d802e83ab2b4 61429Author: Jon Loeliger <jdl@freescale.com> 61430Date: Wed Feb 20 12:24:11 2008 -0600 61431 61432 8610HPCD: Don't use VIDEO/CFB_CONSOLE by default. 61433 61434 Without an actual supported video card hooked up, enabling 61435 the CONFIG_VIDEO by default just makes it look broken by 61436 routing all console output to the video card. Don't. 61437 61438 Signed-off-by: Jon Loeliger <jdl@freescale.com> 61439 61440commit 4d264eff4312f230776b913edade7ceb75f1b1e0 61441Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 61442Date: Wed Jan 30 15:08:15 2008 -0600 61443 61444 ColdFire: Fix missing code flash size for M5485EVB 61445 61446 Signed-off-by: James Mahan <kmahan@freescale.com> 61447 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 61448 61449commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d 61450Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 61451Date: Wed Jan 30 15:04:42 2008 -0600 61452 61453 ColdFire: Fix 5282 and 5271 interrupt mask bit 61454 61455 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 61456 61457commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 61458Author: Jon Loeliger <jdl@freescale.com> 61459Date: Tue Feb 19 12:31:08 2008 -0600 61460 61461 8610HPCD: Fix typos in two PCI setup registers. 61462 61463 The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA 61464 were erroneously present as 85xx names and values, leftover from 61465 the clone wars. Fix this by removing the 85xx cruft from the 61466 86xx codebase. 61467 61468 Signed-off-by: Jon Loeliger <jdl@freescale.com> 61469 61470commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170 61471Author: Jon Loeliger <jdl@freescale.com> 61472Date: Mon Feb 18 14:01:56 2008 -0600 61473 61474 86xx: Convert sbc8641d to use libfdt. 61475 61476 This is the proper fix for a missing closing brace in the function 61477 ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com. 61478 The ft_cpu_setup() function in mpc8641hpcn.c should have been 61479 removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE, 61480 but was missed. Only, the sbc8641d was nominally still using it. 61481 It all got ripped out, and the funcality that was in ft_board_setup() 61482 was refactored to remove the CPU portions into the new file 61483 cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now. 61484 61485 Based loosely on an original patch from joe.hamman@embeddedspecialties.com 61486 61487 Signed-off-by: Jon Loeliger <jdl@freescale.com> 61488 61489commit 04efddc87c50c84f85dad5c331c634a6ce830a83 61490Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61491Date: Sun Feb 17 23:35:31 2008 +0100 61492 61493 mpc86xx: Fix unused variable 'config' and 'immap' 61494 61495 and remove useless CONFIG_DDR_INTERLEAVE 61496 61497 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61498 61499commit 83d1b3876695c4f21faff2b731d9ef83f38ed208 61500Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61501Date: Sun Feb 17 23:03:36 2008 +0100 61502 61503 mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law' 61504 61505 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61506 61507commit b6f29c84c208a091f95a10cbc9852d729659ba20 61508Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61509Date: Sun Feb 17 14:15:31 2008 +0100 61510 61511 s3c24x0: Fix unused variable 'i' in function 'serial_init_dev' 61512 61513 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61514 61515commit 0937b8d869fdb42d6ad4fe312958639bd62c973f 61516Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61517Date: Sun Feb 17 14:15:32 2008 +0100 61518 61519 pxa: fix assignment from incompatible pointer type 61520 61521 fix mmc_bread function prototype 61522 61523 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61524 61525commit 64d792063fff90b8118179b092feee09fe5cae13 61526Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61527Date: Sun Feb 17 14:15:30 2008 +0100 61528 61529 at91cap9adk: fix implicit declaration of function 'eth_init' 61530 61531 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61532 61533commit 375c4353db8f900f7ec772e26fab116ec00f7d3a 61534Author: Wolfgang Denk <wd@denx.de> 61535Date: Sun Feb 17 15:43:44 2008 +0100 61536 61537 Remove files added by mistake, update CHANGELOG. 61538 61539 Signed-off-by: Wolfgang Denk <wd@denx.de> 61540 61541commit b738654d3c84a30f2bfd9a8d7652ff20807c890c 61542Author: Mike Nuss <mike@terascala.com> 61543Date: Wed Feb 6 11:10:11 2008 -0500 61544 61545 PPC440EPx: Optionally enable second I2C bus 61546 61547 The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the 61548 PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board 61549 code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected. 61550 61551 Signed-off-by: Mike Nuss <mike@terascala.com> 61552 Cc: Stefan Roese <sr@denx.de> 61553 61554commit ef5b4f221c22d05770878513951745f236b5b43f 61555Author: Niklaus Giger <niklaus.giger@netstal.com> 61556Date: Tue Feb 5 10:26:44 2008 +0100 61557 61558 ppc4xx: HCU4/5. Cleanup configs 61559 61560 - hcu4.h: Removed define of CONFIG_PPC405GPr 61561 - Corrected phy addresses 61562 - Fix boot variables 61563 - Respect line length of 80 chars 61564 61565 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 61566 61567commit 74973126d1be63ac75bdc192f46234dca3a7c421 61568Author: Niklaus Giger <niklaus.giger@netstal.com> 61569Date: Tue Feb 5 11:31:28 2008 +0100 61570 61571 ppc4xx: HCU4/5. Cleanups 61572 61573 - Fix some coding style violations. 61574 - Use in/out_u16/32 where appropriate. 61575 - Use register names from ppc405.h. 61576 - Fix trace useage for Lauterbach. 61577 - Remove obsolete generation HCU2. 61578 - Renamed fixed_hcu4_sdram to init_ppc405_sdram. 61579 61580 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 61581 61582commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555 61583Author: Niklaus Giger <niklaus.giger@netstal.com> 61584Date: Tue Feb 5 10:26:41 2008 +0100 61585 61586 ppc4xx: PPC405GPr fix missing register definitions 61587 61588 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 61589 61590commit 214398d9cb22268d9d4f7563359edca0f78297a2 61591Author: Larry Johnson <lrj@acm.org> 61592Date: Fri Jan 18 21:49:05 2008 -0500 61593 61594 ppc4xx: Beautify configuration files for Sequoia and Korat boards 61595 61596 Signed-off-by: Larry Johnson <lrj@acm.org> 61597 61598commit 30c6a241e88499f536e86d325759e29ba00ff67f 61599Author: Anatolij Gustschin <agust@denx.de> 61600Date: Fri Feb 15 20:09:01 2008 +0100 61601 61602 Wipe out assembler warnings while compiling x86 biosemu 61603 61604 This patch tries to get rid of some assembler warnings about 61605 changed .got2 section type while compiling x86 bios emulator 61606 code. 61607 61608 Signed-off-by: Anatolij Gustschin <agust@denx.de> 61609 61610commit 67a4389e39ad853d65b72e2b7cad15c7e8291147 61611Author: Wolfgang Denk <wd@denx.de> 61612Date: Fri Feb 15 00:57:09 2008 +0100 61613 61614 Prepare v1.3.2-rc1 release candidate 61615 61616commit f33e9653c9c09868995d788511d573771c209fe5 61617Author: Anatolij Gustschin <agust@denx.de> 61618Date: Fri Feb 15 00:13:20 2008 +0100 61619 61620 Fix compile warning on lib_ppc/board.c 61621 61622 Signed-off-by: Anatolij Gustschin <agust@denx.de> 61623 61624commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4 61625Author: Anatolij Gustschin <agust@denx.de> 61626Date: Thu Feb 14 18:22:04 2008 +0100 61627 61628 Add Radeon Mobility 9200 pci device id to the radeon driver 61629 61630 This patch extends PCI device id table of the 61631 radeon driver so that the driver will also support 61632 Radeon Mobility 9200 (M9+) based boards. 61633 61634 Signed-off-by: Anatolij Gustschin <agust@denx.de> 61635 61636commit 1b8607e1f7143548c6062c28371449ec69588c00 61637Author: Anatolij Gustschin <agust@denx.de> 61638Date: Thu Feb 14 18:19:50 2008 +0100 61639 61640 Extend ATI Radeon driver to support more video modes 61641 61642 Adds ATI Radeon 9200 support for 1280x1024, 1024x768, 61643 800x600, 640x480 at 24, 16 and 8 bpp. 61644 61645 Signed-off-by: Anatolij Gustschin <agust@denx.de> 61646 61647commit 4124382de029d361162a4b8cecc773eb8f26e2a8 61648Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61649Date: Sun Feb 10 17:05:20 2008 +0100 61650 61651 xsengine: fix typo and few coding style 61652 61653 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61654 61655commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e 61656Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 61657Date: Fri Feb 8 21:25:58 2008 +0100 61658 61659 Fix wrong memory limit calculation in memory-test 61660 61661 If the length of the memory address range passed to the "mtest" command is 61662 not of the form 2^x - 1, not all address lines are tested. This bug is 61663 inherited from the original software at 61664 http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix 61665 this. 61666 61667 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 61668 61669commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db 61670Author: Wolfgang Denk <wd@denx.de> 61671Date: Fri Feb 15 00:11:39 2008 +0100 61672 61673 Coding STyle cleanup. 61674 61675 Signed-off-by: Wolfgang Denk <wd@denx.de> 61676 61677commit f6921e3dc331293c873ec4d109fd5517a42a90b3 61678Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 61679Date: Tue Feb 5 13:30:43 2008 +0900 61680 61681 sh: Fix register address of SH7722 61682 61683 The address of SH7722 is wrong by old document. 61684 This patch fixes this problem. 61685 61686 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 61687 61688commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2 61689Author: Mike Frysinger <vapier@gentoo.org> 61690Date: Mon Feb 4 17:44:23 2008 -0500 61691 61692 only update version header as needed 61693 61694 Constantly rebuilding the version header will force useless relinking, so we 61695 simply need to compare the new header with the existing one before updating 61696 it. 61697 61698 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 61699 61700commit 208447f8e953f347425eb92c8e28d59e6d911363 61701Author: Mike Frysinger <vapier@gentoo.org> 61702Date: Mon Jan 28 05:56:19 2008 -0500 61703 61704 Do not specify a CROSS_COMPILE default when executing size 61705 61706 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 61707 61708commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e 61709Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 61710Date: Wed Feb 13 11:19:19 2008 +0100 61711 61712 Fix return value of mtest when CFG_ALT_MEMTEST set 61713 61714 Fix a missing return statement from a non-void function. 61715 61716 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 61717 61718commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602 61719Author: Timur Tabi <timur@freescale.com> 61720Date: Wed Jan 9 14:35:26 2008 -0600 61721 61722 85xx, 86xx: Determine I2C clock frequencies and store in global_data 61723 61724 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx. 61725 61726 Update the get_clocks() function in 85xx and 86xx to determine the I2C 61727 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk. 61728 61729 Signed-off-by: Timur Tabi <timur@freescale.com> 61730 61731commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08 61732Author: Wolfgang Denk <wd@denx.de> 61733Date: Thu Feb 14 23:18:01 2008 +0100 61734 61735 TQM834x: clean up configuration 61736 61737 Get board name consistent with Linux and elsewhere; 61738 get rid of local network definitions etc. 61739 61740 Signed-off-by: Wolfgang Denk <wd@denx.de> 61741 61742commit 38cc09c55b1d7f233789052c6fc462e5377669a9 61743Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61744Date: Thu Feb 14 08:02:12 2008 +0100 61745 61746 TFTP: fix search of ':' in BootFile 61747 61748 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 61749 61750commit 0bc9efada170096c6b273f19165e32936d330d80 61751Author: Wolfgang Denk <wd@denx.de> 61752Date: Thu Feb 14 22:46:55 2008 +0100 61753 61754 Coding style cleanup; update CHANGELOG. 61755 61756 Signed-off-by: Wolfgang Denk <wd@denx.de> 61757 61758commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b 61759Author: Wolfgang Denk <wd@denx.de> 61760Date: Thu Feb 14 22:43:22 2008 +0100 61761 61762 PPC: Use r2 instead of r29 as global data pointer 61763 61764 R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc 61765 will refuse to use load/store multiple insns; instead, it issues a 61766 list of simple load/store instructions upon function entry and exit, 61767 resulting in bigger code size, which in turn makes the build for a 61768 few boards fail. 61769 61770 Use r2 instead. 61771 61772 Signed-off-by: Wolfgang Denk <wd@denx.de> 61773 61774commit 3c234efa693bc59906c2be55c7918ecbb55392ea 61775Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com> 61776Date: Wed Jan 30 09:08:49 2008 +0100 61777 61778 ARM: make the machid configurable via the environment 61779 61780 If the variable "machid" exists, let do_bootm_linux use that instead 61781 of bd->bi_arch_number. 61782 61783 Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com> 61784 61785commit dd24058407c5add45cc60aec6c757ddc1a17e1b0 61786Author: Vlad Lungu <vlad@comsys.ro> 61787Date: Wed Jan 23 16:34:46 2008 +0200 61788 61789 Use #ifdef CONFIG_FSLDMAFEC 61790 61791 MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably) 61792 fails 61793 61794 Signed-off-by: Vlad Lungu <vlad@comsys.ro> 61795 61796commit 26c7bab81e08dc7bd696c48f753428a829629bd8 61797Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61798Date: Sat Jan 19 10:25:59 2008 +0900 61799 61800 common/miiphyutil.c: Cleanup MII_DEBUG and debug() 61801 61802 Current MII_DEBUG is confusing in two ways. One is useless define-then- 61803 undef at the top of the file. The other is there is only one debug() in 61804 this file, and that doesn't seem worthwhile to bother having MII_DEBUG. 61805 While there are many useful printf()/puts() debug codes, but they are for 61806 DEBUG, not for MII_DEBUG. 61807 61808 This patch tries to put them all together into MII_DEBUG and debug(). 61809 61810 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 61811 61812commit 751b9b5189f3274b03c809172631316d6b002c82 61813Author: Kyungmin Park <kmpark@infradead.org> 61814Date: Thu Jan 17 16:43:25 2008 +0900 61815 61816 OneNAND Initial Program Loader (IPL) support 61817 61818 This patch enables the OneNAND boot within U-Boot. 61819 Before this work, we used another OneNAND IPL called X-Loader based 61820 on open source. With this work, we can build the oneboot.bin image 61821 without other program. 61822 61823 The build sequence is simple. 61824 First, it compiles the u-boot.bin 61825 Second, it compiles OneNAND IPL 61826 Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin 61827 The mechanism is similar with NAND boot except it boots from itself. 61828 61829 Another thing is that you can only use the OneNAND IPL only to work 61830 other bootloader such as RedBoot and so on. 61831 61832 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 61833 61834commit 21f6f9636f0e978397548751347425fbf8d42bb3 61835Author: Andy Fleming <afleming@freescale.com> 61836Date: Wed Jan 16 13:06:59 2008 -0600 61837 61838 Fix CONFIG_MMC usage in fat code 61839 61840 A #if statement in fat.c depended on CONFIG_MMC, instead of 61841 defined(CONFIG_MMC). This meant CONFIG_MMC needed to be defined 61842 as "1" rather than just defined. Now it's better. 61843 61844 Signed-off-by: Andy Fleming <afleming@freescale.com> 61845 61846commit f57d7d364ce189e39b0a64338d2f8012c074a2bd 61847Author: Rafal Jaworowski <raj@semihalf.com> 61848Date: Tue Jan 15 12:52:31 2008 +0100 61849 61850 ppc: Refactor cache routines, so there is only one common set. 61851 61852 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 61853 61854commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba 61855Author: Jon Loeliger <jdl@jdl.com> 61856Date: Wed Jan 23 15:55:02 2008 -0600 61857 61858 86xx: Fix compilation warning in sys_eprom.c 61859 61860 sys_eeprom.c:82:9: warning: unknown escape sequence '\/' 61861 61862 Signed-off-by: Jon Loeliger <jdl@freescale.com> 61863 61864commit 65230107025733e89e28fd5e5cfd916d4953c28a 61865Author: Haavard Skinnemoen <hskinnemoen at> 61866Date: Fri Feb 22 11:40:50 2008 +0000 61867 61868 Move AT91RM9200DK board support under board/atmel 61869 61870 We already have a vendor subdir for Atmel, so we should use it. 61871 61872 Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com> 61873 61874commit 6d0943a6be99977d6d853d51749e9963d68eb192 61875Author: Andreas Engel <andreas.engel@ericsson.com> 61876Date: Mon Jan 14 09:06:52 2008 +0000 61877 61878 ARM: cleanup duplicated exception handlingcode 61879 61880 Move duplicated exception handling code into lib_arm. 61881 61882 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com> 61883 61884commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29 61885Author: Timo Tuunainen <timo.tuunainen@sysart.fi> 61886Date: Fri Feb 1 10:09:03 2008 +0000 61887 61888 Support for Artila M-501 starter kit 61889 61890 Kimmo Leppala / Sysart and 61891 Timo Tuunainen / Sysart 61892 61893commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc 61894Author: Stelian Pop <stelian@popies.net> 61895Date: Mon Feb 11 10:50:19 2008 +0000 61896 61897 AT91CAP9 support 61898 61899 --------------------------------- 61900 61901 read_dataflash() takes a signed char pointer as a parameter. Silence a 61902 few warnings dues to incorrect parameter types in env_dataflash.c. 61903 61904 Signed-off-by: Stelian Pop <stelian@popies.net> 61905 61906commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7 61907Author: Stelian Pop <stelian@popies.net> 61908Date: Thu Feb 7 09:42:57 2008 +0000 61909 61910 AT91CAP9 support : move board files to Atmel vendor directory. 61911 61912 AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory. 61913 61914 Signed-off-by: Stelian Pop <stelian@popies.net> 61915 61916commit 7263ef191b87da94768f762c7093bedeb70db98f 61917Author: Stelian Pop <stelian at> 61918Date: Thu Jan 3 21:15:56 2008 +0000 61919 61920 AT91CAP9 support : MACB changes 61921 61922 Signed-off-by: Stelian Pop <stelian <at> popies.net> 61923 Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com> 61924 61925commit 6afcabf11d7321850f4feaadfee841488ace54c5 61926Author: Stelian Pop <stelian@popies.net> 61927Date: Thu Feb 7 16:37:54 2008 +0000 61928 61929 AT91CAP9 support : board/ files 61930 61931 Signed-off-by: Stelian Pop <stelian@popies.net> 61932 61933commit fefb6c10928caa9e71335cad64dcb65c83fce8ab 61934Author: Stelian Pop <stelian at> 61935Date: Wed Jan 30 21:15:54 2008 +0000 61936 61937 AT91CAP9 support : cpu/ files 61938 61939 Signed-off-by: Stelian Pop <stelian <at> popies.net> 61940 61941commit fa506a926cec348805143576c941f8e61b333cc0 61942Author: Stelian Pop <stelian@popies.net> 61943Date: Thu Jan 31 21:15:53 2008 +0000 61944 61945 AT91CAP9 support : include/ files 61946 61947 Signed-off-by: Stelian Pop <stelian@popies.net> 61948 61949commit 20b197c6f2799af399a68f96a1aff543a75621b8 61950Author: Stelian Pop <stelian@popies.net> 61951Date: Sun Jan 20 19:49:21 2008 +0000 61952 61953 AT91CAP9 support : build integration 61954 61955 Signed-off-by: Stelian Pop <stelian@popies.net> 61956 61957commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd 61958Author: Stelian Pop <stelian@popies.net> 61959Date: Sun Jan 20 21:07:00 2008 +0000 61960 61961 Improve DataFlash CS definition. 61962 61963 Use a structure instead of the error prone unnamed array to 61964 define the possible dataflash banks. 61965 61966 Signed-off-by: Stelian Pop <stelian@popies.net> 61967 61968commit a6cdd21b56014208706238712a853a9e9a0a2290 61969Author: Stelian Pop <stelian@popies.net> 61970Date: Sat Jan 19 21:09:35 2008 +0000 61971 61972 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on 61973 61974 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on. 61975 61976 cpu/arm926ejs/start.o: In function `cpu_init_crit': 61977 .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init' 61978 61979 Signed-off-by: Stelian Pop <stelian@popies.net> 61980 61981commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b 61982Author: Peter Pearse <peter.pearse@arm.com> 61983Date: Fri Feb 1 16:50:24 2008 +0000 61984 61985 Fix timer overflow in DaVinci 61986 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 61987 61988commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846 61989Author: Peter Pearse <peter.pearse@arm.com> 61990Date: Fri Feb 1 16:49:08 2008 +0000 61991 61992 Update board NetStar 61993 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 61994 61995commit b7f6193e76651e1fd606e46eb11915b53cb6618b 61996Author: Niklaus Giger <niklaus.giger@netstal.com> 61997Date: Tue Feb 5 10:26:42 2008 +0100 61998 61999 ppc4xx: HCU4/5. Fix make O=../xx 62000
62001 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 62002 62003commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3 62004Author: Larry Johnson <lrj@acm.org> 62005Date: Tue Jan 22 08:51:59 2008 -0500 62006 62007 ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code 62008 62009 Signed-off-by: Larry Johnson <lrj@acm.org> 62010 62011commit fe891ecf4d187e9d11dde869ed4623af52b54451 62012Author: Hiroshi Ito <ito@mlb.co.jp> 62013Date: Thu Jan 31 18:35:04 2008 +0900 62014 62015 NFS Timeout with large files. 62016 62017 Retry to send NFS packet before reaching timeout. 62018 62019 Signed-off-by: Hiroshi Ito <ito@mlb.co.jp> 62020 62021commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0 62022Author: Johannes Stezenbach <js@sig21.net> 62023Date: Tue Jan 29 00:11:25 2008 +0100 62024 62025 Add dependencies to avoid race conditions with parallel make. 62026 62027 Signed-off-by: Johannes Stezenbach <js@sig21.net> 62028 62029commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6 62030Author: Mike Frysinger <vapier@gentoo.org> 62031Date: Mon Jan 28 05:46:01 2008 -0500 62032 62033 Mark board_init_[fr] as noreturn 62034 62035 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62036 62037commit 161b2af4d7b48fd602ce333c355a4df0337892bb 62038Author: Mike Frysinger <vapier@gentoo.org> 62039Date: Mon Jan 28 05:28:50 2008 -0500 62040 62041 Only use TEXT_BASE if defined by the board 62042 62043 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62044 62045commit 1b769881750030f10743808b9d6013e11f559350 62046Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 62047Date: Fri Jan 25 07:54:47 2008 +0100 62048 62049 Fix remaining CONFIG_COMMANDS 62050 62051 update comments 62052 Fix coding style 62053 62054 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 62055 62056commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9 62057Author: Niklaus Giger <niklaus.giger@netstal.com> 62058Date: Mon Jan 21 16:46:00 2008 +0100 62059 62060 Add *~ to .gitignore 62061 62062 One should never add a backup file ending in with ~ to the git repository. 62063 62064 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 62065 62066commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0 62067Author: Kumar Gala <galak@kernel.crashing.org> 62068Date: Thu Jan 17 00:02:10 2008 -0600 62069 62070 Remove duplicate defines for ARRAY_SIZE 62071 62072 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 62073 62074commit c77ce474b1c57b13e9d36d9830f147966c143694 62075Author: Stelian Pop <stelian@popies.net> 62076Date: Mon Jan 14 22:08:14 2008 +0100 62077 62078 Fix incorrect address test in AT91F_DataflashSelect(). 62079 62080 Signed-off-by: Stelian Pop <stelian@popies.net> 62081 62082commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d 62083Author: Kumar Gala <galak@kernel.crashing.org> 62084Date: Wed Feb 13 15:09:58 2008 -0600 62085 62086 Fix building of fdt_support.c if DEBUG set 62087 62088 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 62089 62090commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03 62091Author: Jon Loeliger <jdl@freescale.com> 62092Date: Tue Feb 12 14:53:28 2008 -0600 62093 62094 Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols 62095 62096 These replace direct structure references for IMMR sections. 62097 62098 Signed-off-by: Jon Loeliger <jdl@freescale.com> 62099 62100commit c62776be8dca4097ca03d4f9415f08d4887b45d0 62101Author: Wolfgang Denk <wd@denx.de> 62102Date: Tue Feb 12 00:45:06 2008 +0100 62103 62104 Get rid of "#undef DEBUG" from board config files. 62105 62106 Signed-off-by: Wolfgang Denk <wd@denx.de> 62107 62108commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8 62109Author: Timur Tabi <timur@freescale.com> 62110Date: Tue Jan 15 17:09:41 2008 -0600 62111 62112 Remove #undef DEBUG from MPC83xx board header files 62113 62114 Remove the "#undef DEBUG" line from all Freescale 83xx board header files. 62115 The inclusion of this line makes it impossible to enable debug code in 62116 other source files, because "#define DEBUG" typically needs to be defined 62117 before any header files are included. 62118 62119 Signed-off-by: Timur Tabi <timur@freescale.com> 62120 62121commit 69018ce2e086e9caf35b914d675b82bc4888f077 62122Author: Kumar Gala <galak@kernel.crashing.org> 62123Date: Thu Jan 17 08:25:45 2008 -0600 62124 62125 QE: Move FDT support into a common file 62126 62127 Move the flat device tree setup for QE related devices into 62128 a common file shared between 83xx & 85xx platforms that have QE's. 62129 62130 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 62131 62132commit 5cf746c303710329f8040d9c62ee354313e3e91f 62133Author: Marian Balakowicz <m8@semihalf.com> 62134Date: Thu Jan 31 13:59:09 2008 +0100 62135 62136 [new uImage] Move kernel data find code to get_kernel() routine 62137 62138 Verification of the kernel image (in old format) and finding kernel 62139 data is moved to a dedicated routine. The routine will also hold 62140 support for, to be added, new image format. 62141 62142 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62143 62144commit 7b325454fd231d4273de3fe373850f777fb086bf 62145Author: Marian Balakowicz <m8@semihalf.com> 62146Date: Thu Jan 31 13:58:20 2008 +0100 62147 62148 [new uImage] Cleanup FDT handling in PPC do_boot_linux() 62149 62150 Move FDT blob finding and relocation to a dedicated 62151 get_fdt() routine. It increases code readability and 62152 will make adding support for new uImage format easier. 62153 62154 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62155 62156commit b6b0fe6460b7063ac60b9a3531ef210aedb31451 62157Author: Marian Balakowicz <m8@semihalf.com> 62158Date: Thu Jan 31 13:58:13 2008 +0100 62159 62160 [new uImage] Cleanup do_botm_linux() boot allocations 62161 62162 This patch moves common pre-boot allocation steps shared between PPC 62163 and M68K to a helper routines: 62164 62165 common: 62166 - get_boot_sp_limit() 62167 - get_boot_cmline() 62168 - get_boot_kbd() 62169 62170 platform: 62171 - set_clocks_in_mhz() 62172 62173 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62174 62175commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40 62176Author: Marian Balakowicz <m8@semihalf.com> 62177Date: Thu Jan 31 13:57:17 2008 +0100 62178 62179 [new uImage] Move ramdisk loading to a common routine 62180 62181 Ramdisk loading code, including initrd_high variable handling, 62182 was duplicated for PPC and M68K platforms. This patch creates 62183 common helper routine that is being called from both platform 62184 do_bootm_linux() routines. 62185 62186 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62187 62188commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68 62189Author: Marian Balakowicz <m8@semihalf.com> 62190Date: Thu Jan 31 13:55:53 2008 +0100 62191 62192 [new uImage] Removed dead ramdisk code on microblaze architectures 62193 62194 Microblaze do_bootm_linux() includes ramdisk processing code but 62195 the ramdisk does not get used anywhere later on. 62196 62197 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62198 62199commit 5ad03eb3854c162684222a718b44c0716ea0db03 62200Author: Marian Balakowicz <m8@semihalf.com> 62201Date: Thu Jan 31 13:55:39 2008 +0100 62202 62203 [new uImage] Factor out common image_get_ramdisk() routine 62204 62205 Architecture specific do_bootm_linux() routines share common 62206 ramdisk image processing code. Move this code to a common 62207 helper routine. 62208 62209 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62210 62211commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b 62212Author: Marian Balakowicz <m8@semihalf.com> 62213Date: Thu Jan 31 13:20:08 2008 +0100 62214 62215 [new uImage] Move FDT error printing to common fdt_error() routine 62216 62217 FDT error handling in PPC do_bootm_linux() shares the same message format. 62218 This patch moves error message printing to a helper fdt_error() routine. 62219 62220 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62221 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 62222 62223commit 42b73e8ee00d48004791dea64b8093fb974c57e1 62224Author: Marian Balakowicz <m8@semihalf.com> 62225Date: Thu Jan 31 13:20:07 2008 +0100 62226 62227 [new uImage] Factor out common routines for getting os/arch/type/comp names 62228 62229 Move numeric-id to name translation for image os/arch/type/comp header 62230 fields to a helper routines: image_get_os_name(), image_get_arch_name(), 62231 image_get_type_name(), image_get_comp_name(). 62232 62233 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62234 62235commit e99c26694a384221d336f6448c06a57479c0baa4 62236Author: Marian Balakowicz <m8@semihalf.com> 62237Date: Thu Jan 31 13:20:07 2008 +0100 62238 62239 [new uImage] Remove standalone applications handling from boootm 62240 62241 Standalone applications are supposed to be run using the "go" command. 62242 This patch removes standalone images handling from the do_bootm(). 62243 62244 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62245 62246commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff 62247Author: Marian Balakowicz <m8@semihalf.com> 62248Date: Thu Jan 31 13:20:07 2008 +0100 62249 62250 [new uImage] Remove OF_FLAT_TREE support from PPC bootm code 62251 62252 Support for OF_FLAT_TREE is to be obsoleted in the near future, 62253 remove related code from the bootm routines. 62254 62255 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62256 62257commit 82850f3d32a2661868ec6876bed7a22c55cef718 62258Author: Marian Balakowicz <m8@semihalf.com> 62259Date: Thu Jan 31 13:20:06 2008 +0100 62260 62261 [new uImage] Use image API in SH do_bootm_linux() routine 62262 62263 Introduce image handling API for lately added Hitachi SH architecture. 62264 62265 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62266 62267commit 4a995edec1ac163d9326d143ffe2b47e7543407f 62268Author: Marian Balakowicz <m8@semihalf.com> 62269Date: Thu Jan 31 13:20:06 2008 +0100 62270 62271 [new uImage] Rename architecture specific bootm code files 62272 62273 Implementation of the do_bootm_linux() and other bootm helper routines is 62274 architecture specific code. As such it resides in lib_<arch> directories 62275 in files named <arch>_linux.c 62276 62277 This patch renames those files to a more clear and accurate 62278 lib_<arch>/bootm.c form. 62279 62280 List of the renamed files: 62281 lib_arm/armlinux.c -> lib_arm/bootm.c 62282 lib_avr32/avr32_linux.c -> lib_avr32/bootm.c 62283 lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c 62284 lib_i386/i386_linux.c -> lib_i386/bootm.c 62285 lib_m68k/m68k_linux.c -> lib_m68k/bootm.c 62286 lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c 62287 lib_mips/mips_linux.c -> lib_mips/bootm.c 62288 lib_nios/nios_linux.c -> lib_nios/bootm.c 62289 lib_nios2/nios_linux.c -> lib_nios2/bootm.c 62290 lib_ppc/ppc_linux.c -> lib_ppc/bootm.c 62291 lib_sh/sh_linux.c -> lib_sh/bootm.c 62292 62293 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62294 62295commit 7582438c285bf0cef82909d0f232de64ec567a8a 62296Author: Marian Balakowicz <m8@semihalf.com> 62297Date: Thu Jan 31 13:20:06 2008 +0100 62298 62299 [new uImage] Return error on image move/uncompress overwrites 62300 62301 Check for overwrites during image move/uncompress, return with error 62302 when the original image gets corrupted. Report clear message to the user 62303 and prevent further troubles when pointer to the corrupted images is passed 62304 to do_bootm_linux routine. 62305 62306 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62307 62308commit f13e7b2e993c61fed1f607962501e051940d6e80 62309Author: Marian Balakowicz <m8@semihalf.com> 62310Date: Tue Jan 8 18:12:17 2008 +0100 62311 62312 [new uImage] Cleanup image header pointer use in bootm code 62313 62314 - use single image header pointer instead of a set of auxilliary variables. 62315 - add multi component image helper routines: get component size/data address 62316 62317 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62318 62319commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20 62320Author: Marian Balakowicz <m8@semihalf.com> 62321Date: Tue Jan 8 18:17:10 2008 +0100 62322 62323 [new uImage] Cleanup cmd_bootm.c 62324 62325 - sort and cleanup headers, declarations, etc. 62326 - group related routines 62327 - cleanup indentation, white spaces 62328 62329 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62330 62331commit af13cdbc01eaf88880978bfb4f603e012818ba24 62332Author: Marian Balakowicz <m8@semihalf.com> 62333Date: Tue Jan 8 18:11:45 2008 +0100 62334 62335 [new uImage] Add memmove_wd() common routine 62336 62337 Move common, watchdog sensible memmove code to a helper memmmove_wd() routine. 62338 62339 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62340 62341commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1 62342Author: Marian Balakowicz <m8@semihalf.com> 62343Date: Tue Jan 8 18:11:44 2008 +0100 62344 62345 [new uImage] Fix FDT header verification in PPC do_boot_linux() routine 62346 62347 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62348 62349commit 15158971f49255ccef54f0979a942cfd3de2ae52 62350Author: Marian Balakowicz <m8@semihalf.com> 62351Date: Tue Jan 8 18:11:44 2008 +0100 62352 62353 [new uImage] Fix uImage header pointer use in i386 do_bootm_linux() 62354 62355 Use image header copy instead of a (possibly corrupted) pointer to 62356 a initial image location. 62357 62358 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62359 62360commit 261dcf4624b25f3c551efcf8634e9194fabba9c3 62361Author: Marian Balakowicz <m8@semihalf.com> 62362Date: Tue Jan 8 18:11:44 2008 +0100 62363 62364 [new uImage] Remove I386 uImage fake_header() routine 62365 62366 I386 targets are not using a uImage format, instead fake header 62367 is added to ram image before it is further processed by bootm. 62368 62369 Remove this fixup and force proper uImage use for I386. 62370 62371 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62372 62373commit 559316faf7eae0614c91d77f509b57d6c4c091ba 62374Author: Marian Balakowicz <m8@semihalf.com> 62375Date: Tue Jan 8 18:11:44 2008 +0100 62376 62377 [new uImage] Move CHUNKSZ definition to image.h 62378 62379 CHUNKSZ defined for PPC and M68K is set to the same value of 64K, 62380 move this definition to a common header. 62381 62382 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62383 62384commit 321359f20823e0b8c5ad38b64d007a6c48cda16e 62385Author: Marian Balakowicz <m8@semihalf.com> 62386Date: Tue Jan 8 18:11:43 2008 +0100 62387 62388 [new uImage] Move gunzip() common code to common/gunzip.c 62389 62390 Move gunzip(), zalloc() and zfree() to a separate file. 62391 Share zalloc() and zfree() with cramfs uncompress routine. 62392 62393 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62394 62395commit d45d5a18b6b36688f2365623f9d550566c664b5b 62396Author: Marian Balakowicz <m8@semihalf.com> 62397Date: Tue Jan 8 18:11:43 2008 +0100 62398 62399 [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux() 62400 62401 Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more 62402 readable in PPC variant of do_bootm_linux() routine. 62403 62404 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62405 62406commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36 62407Author: Marian Balakowicz <m8@semihalf.com> 62408Date: Tue Jan 8 18:11:43 2008 +0100 62409 62410 [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c 62411 62412 PPC implementation of do_bootm_linux() routine is moved to 62413 a dedicated file lib_ppc/ppc_linux.c 62414 62415 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62416 62417commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c 62418Author: Marian Balakowicz <m8@semihalf.com> 62419Date: Tue Jan 8 18:14:09 2008 +0100 62420 62421 [new uImage] Define a API for image handling operations 62422 62423 - Add inline helper macros for basic header processing 62424 - Move common non inline code common/image.c 62425 - Replace direct header access with the API routines 62426 - Rename IH_CPU_* to IH_ARCH_* 62427 62428 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62429 62430commit ed29bc4e8142b46b626f67524207b36e43d9aad6 62431Author: Marian Balakowicz <m8@semihalf.com> 62432Date: Thu Jan 31 13:19:58 2008 +0100 62433 62434 Add missing cmd_ximg.o to common/Makefile 62435 62436 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 62437 62438commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3 62439Author: Grzegorz Bernacki <gjb@semihalf.com> 62440Date: Mon Jan 28 10:15:02 2008 +0100 62441 62442 ADS5121e: DDR2 init/timing update. 62443 62444 Signed-off-by: John Rigby <jrigby@freescale.com> 62445 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 62446 62447commit ac9152830d7fdebace8a260b7737ef2870c21ca0 62448Author: John Rigby <jrigby@freescale.com> 62449Date: Wed Jan 30 13:36:57 2008 -0700 62450 62451 Device tree updates 62452 62453 Changes to match 5121 device tree going mainline in 2.6.25. 62454 62455 Change OF_SOC from "soc5121" to plain "soc". 62456 Remove unneeded "ref-frequency" fixups. 62457 Remove "address" enetaddr fixup. 62458 62459 Add bus-frequency fixup for old OF_SOC so old 62460 kernels with old device trees will work with new 62461 u-boot with 66MHz IPS clock 62462 62463 Signed-off-by: John Rigby <jrigby@freescale.com> 62464 62465commit de55d18df3ff2ea614624e74793de7c43520e0e7 62466Author: John Rigby <jrigby@freescale.com> 62467Date: Wed Jan 30 13:36:56 2008 -0700 62468 62469 Change IPS freq to 66MHz 62470 62471 Recommended frequency is 66MHz 62472 Change divider from 4 to 3. 62473 62474 Signed-off-by: John Rigby <jrigby@freescale.com> 62475 62476commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974 62477Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 62478Date: Mon Jan 14 22:38:55 2008 +0100 62479 62480 xsengine: rename board_post_init to board_late_init 62481 62482 missing migration from "Cleanup of some init functions" 62483 in c837dcb1a316745092567bfe4fb266d0941884ff 62484 62485 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 62486 62487commit 8dafa87476b0d7170e219c2f5e3842c833a91807 62488Author: Larry Johnson <lrj@acm.org> 62489Date: Sat Jan 12 23:35:33 2008 -0500 62490 62491 Add attribute POST_PREREL to ECC memory POST 62492 62493 Signed-off-by: Larry Johnson <lrj@acm.org> 62494 62495commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938 62496Author: Kumar Gala <galak@kernel.crashing.org> 62497Date: Thu Jan 17 08:25:45 2008 -0600 62498 62499 QE: Move FDT support into a common file 62500 62501 Move the flat device tree setup for QE related devices into 62502 a common file shared between 83xx & 85xx platforms that have QE's. 62503 62504 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 62505 62506commit d38da537943cd36356b9d3d9d9b60533554b81d8 62507Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 62508Date: Wed Jan 23 17:20:14 2008 +0100 62509 62510 AVR32: Make SDRAM refresh rate configurable 62511 62512 The existing code assumes the SDRAM row refresh period should always 62513 be 15.6 us. This is not always true, and indeed on the ATNGW100, the 62514 refresh rate should really be 7.81 us. 62515 62516 Add a refresh_period member to struct sdram_info and initialize it 62517 properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will 62518 panic() until the refresh_period member is updated properly. 62519 62520 Big thanks to Gerhard Berghofer for pointing out this issue. 62521 62522 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 62523 62524commit 61151cccb660cdb06a07fb283de6089913d7bde0 62525Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 62526Date: Thu Apr 19 10:10:11 2007 +0200 62527 62528 ATSTK1000: Fix potential flash programming bug 62529 62530 The (now obsolete) atngw100 flash programming code was having problems 62531 programming the onboard at49bv642 chip. The atstk1000 flash 62532 programming code may have the same bug, so import fix for this problem 62533 from the AVR32 Linux BSP. 62534 62535 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 62536 62537commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11 62538Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 62539Date: Thu Nov 22 17:04:13 2007 +0100 62540 62541 ATSTK1004: Fix comment about default load address 62542 62543 The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter 62544 wouldn't have worked anyway since the board can only access 4MB of 62545 SDRAM. 62546 62547 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 62548 62549commit 8269ab53608d8db2aa06969c337ab0b0518211e5 62550Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 62551Date: Thu Nov 22 17:01:24 2007 +0100 62552 62553 ATSTK1002: Use SDRAM + 4MB as default load address 62554 62555 Many people run into problems when they compile a big kernel and load 62556 the uImage at the default SDRAM + 2MB address as the kernel will 62557 overwrite the uImage as it is being unpacked. Increase the default 62558 load address so that we can load a 4MB kernel image without any 62559 problems. 62560 62561 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 62562 62563commit 2bcacc2d841b77f3d2d3910db722003742727e9f 62564Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 62565Date: Thu Nov 22 16:51:39 2007 +0100 62566 62567 ATNGW100: Fix default mtest range 62568 62569 Let mtest cover the whole SDRAM except the last megabyte, which is 62570 where u-boot lives. 62571 62572 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 62573 62574commit 9856a6b3104e0bc210b0868dfe691c52bf03c227 62575Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 62576Date: Tue Jan 22 15:31:56 2008 +0900 62577 62578 sh: Fix register address of SH7722. 62579 62580 The address of SH7722 is wrong by old document. 62581 This patch fixes this problem. 62582 62583 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 62584 62585commit 30942b18b66f35f2ceedab39af10e9eccaa943cc 62586Author: Mike Frysinger <vapier@gentoo.org> 62587Date: Mon Feb 4 19:26:57 2008 -0500 62588 62589 new command for displaying strings at specified memory locations 62590 62591 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62592 62593commit b58d8b48e25b0c866d167cc577f118f528cd9e0a 62594Author: Mike Frysinger <vapier@gentoo.org> 62595Date: Mon Feb 4 19:26:57 2008 -0500 62596 62597 rewrite/cleanup Blackfin RTC driver 62598 62599 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62600 62601commit 94a91e248b71c3ff951fc27cff6909e82ca37d15 62602Author: Mike Frysinger <vapier@gentoo.org> 62603Date: Mon Feb 4 19:26:57 2008 -0500 62604 62605 generate u-boot.ldr for Blackfin targets 62606 62607 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62608 62609commit b779f7a59530436040f157f7841db7ab796542df 62610Author: Mike Frysinger <vapier@gentoo.org> 62611Date: Mon Feb 4 19:26:57 2008 -0500 62612 62613 scrub unused symbols 62614 62615 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62616 62617commit cc2977acc3bbbb7850f16645dd1081f95335868d 62618Author: Mike Frysinger <vapier@gentoo.org> 62619Date: Mon Feb 4 19:26:57 2008 -0500 62620 62621 move Blackfin cpu object list to respective cpu directories 62622 62623 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62624 62625commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505 62626Author: Mike Frysinger <vapier@gentoo.org> 62627Date: Mon Feb 4 19:26:57 2008 -0500 62628 62629 interface to Blackfin on-chip One-Time-Programmable memory 62630 62631 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62632 62633commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788 62634Author: Mike Frysinger <vapier@gentoo.org> 62635Date: Mon Feb 4 19:26:56 2008 -0500 62636 62637 add support for memory commands with Blackfin L1 instruction memory 62638 62639 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62640 62641commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464 62642Author: Mike Frysinger <vapier@gentoo.org> 62643Date: Mon Feb 4 19:26:56 2008 -0500 62644 62645 use C code rather than inline assembly 62646 62647 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62648 62649commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9 62650Author: Mike Frysinger <vapier@gentoo.org> 62651Date: Mon Feb 4 19:26:56 2008 -0500 62652 62653 add Blackfin-specific reginfo command 62654 62655 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62656 62657commit 0858b835e7ea501ea084d34cef75932f098342bb 62658Author: Mike Frysinger <vapier@gentoo.org> 62659Date: Mon Feb 4 19:26:55 2008 -0500 62660 62661 add support for Blackfin symbol prefixes to examples 62662 62663 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62664 62665commit 8dc48d71a4be753ea9f84956cd33600de35fad04 62666Author: Mike Frysinger <vapier@gentoo.org> 62667Date: Mon Feb 4 19:26:55 2008 -0500 62668 62669 add Blackfin-specific bdinfo command 62670 62671 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62672 62673commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a 62674Author: Mike Frysinger <vapier@gentoo.org> 62675Date: Mon Feb 4 19:26:55 2008 -0500 62676 62677 move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__ 62678 62679 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62680 62681commit 60fa72d65610c7ef33e1d6db858979d05ff0df58 62682Author: Mike Frysinger <vapier@gentoo.org> 62683Date: Mon Feb 4 19:26:55 2008 -0500 62684 62685 unify the Blackfin board targets 62686 62687 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62688 62689commit d4d7730853e5d675f76ec666807da3028c91d592 62690Author: Mike Frysinger <vapier@gentoo.org> 62691Date: Mon Feb 4 19:26:55 2008 -0500 62692 62693 punt Blackfin VDSP headers and import sanitized/auto-generated ones 62694 62695 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62696 62697commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd 62698Author: Mike Frysinger <vapier@gentoo.org> 62699Date: Mon Feb 4 19:26:54 2008 -0500 62700 62701 always pull in asm/blackfin.h for Blackfin ports 62702 62703 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62704 62705commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc 62706Author: Mike Frysinger <vapier@gentoo.org> 62707Date: Mon Feb 4 19:26:54 2008 -0500 62708 62709 add missing __raw versions of Blackfin read/write io functions 62710 62711 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62712 62713commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d 62714Author: Mike Frysinger <vapier@gentoo.org> 62715Date: Mon Feb 4 19:26:54 2008 -0500 62716 62717 add the default Blackfin logo used by Blackfin boards with splash screens 62718 62719 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62720 62721commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1 62722Author: Mike Frysinger <vapier@gentoo.org> 62723Date: Mon Feb 4 19:26:54 2008 -0500 62724 62725 add some more Blackfin docs 62726 62727 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62728 62729commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf 62730Author: Mike Frysinger <vapier@gentoo.org> 62731Date: Mon Feb 4 19:26:54 2008 -0500 62732 62733 make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards 62734 62735 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62736 62737commit 4087bc88cebec75c432a7fe9f6afb545b0919831 62738Author: Mike Frysinger <vapier@gentoo.org> 62739Date: Mon Feb 4 19:26:54 2008 -0500 62740 62741 fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols 62742 62743 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62744 62745commit b45264ee85cbd92020640a32e02fb434fd557108 62746Author: Mike Frysinger <vapier@gentoo.org> 62747Date: Mon Feb 4 19:26:53 2008 -0500 62748 62749 add gitignores for Blackfin pieces 62750 62751 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 62752 62753commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29 62754Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 62755Date: Fri Jan 18 01:14:03 2008 +0100 62756 62757 TFTP: add host ip addr support 62758 62759 allow to use a different server as set in serverip 62760 add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length 62761 if not defined the max length will be at 128 62762 62763 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 62764 62765commit e56b4b494cd92def577969f9678395aa22d34c9f 62766Author: Timur Tabi <timur@freescale.com> 62767Date: Wed Jan 9 14:35:26 2008 -0600 62768 62769 85xx,86xx: Determine I2C clock frequencies and store in global_data 62770 62771 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx. 62772 62773 Update the get_clocks() function in 85xx and 86xx to determine the I2C 62774 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk. 62775 62776 Signed-off-by: Timur Tabi <timur@freescale.com> 62777 62778commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2 62779Author: Wolfgang Denk <wd@denx.de> 62780Date: Thu Dec 27 10:56:54 2007 +0100 62781 62782 OMAP5912: fix FIFO handling in UART driver 62783 62784 According to the OMAP5912 Serial Interfaces Reference Guide (see 62785 http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the 62786 FIFO_EN enable bit in the FIFO Control Register (FCR) can only be 62787 changed when the baud clock is not running, i. e. when both DLL and 62788 DLH are set to 0. 62789 62790 Thus make sure that DLL and DLH are 0 when writing the FCR. 62791 62792 Signed-off-by: Wolfgang Denk <wd@denx.de> 62793 62794commit 16158778b5f52f201e95ded2d2d9084b0ed5670d 62795Author: Harald Welte <laforge@openmoko.org> 62796Date: Wed Dec 19 15:10:52 2007 +0100 62797 62798 ARM: S3C24x0 SoC NAND controller support 62799 62800 This patch adds NAND support to the S3C24x0 SoC code in u-boot 62801 62802 Signed-off-by: Harald Welte <laforge@openmoko.org> 62803 62804commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163 62805Author: Harald Welte <laforge@openmoko.org> 62806Date: Wed Dec 19 14:24:40 2007 +0100 62807 62808 ARM: s3c24xx: Multiple serial port support 62809 62810 This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's 62811 62812 Signed-off-by: Harald Welte <laforge@openmoko.org> 62813 62814commit a25f72f1f73a11de68251fb88c89991e202e68fa 62815Author: Harald Welte <laforge@openmoko.org> 62816Date: Wed Dec 19 14:16:57 2007 +0100 62817 62818 ARM: arm920t: Allow use of 'gd' pointer from IRQ 62819 62820 This patch allows us to use the 'gd' pointer (and thus environment 62821 and everything else associated with it) from interrupt context on 62822 arm920t. 62823 62824 Signed-off-by: Harald Welte <laforge@openmoko.org> 62825 62826commit be19bd5cd0f454b63298844a0b5377e029b2caad 62827Author: Harald Welte <laforge@openmoko.org> 62828Date: Wed Dec 19 14:19:38 2007 +0100 62829 62830 ARM: arm920/s3c24xx: IRQ demulitplexer callback 62831 62832 This patch adds a IRQ demultiplexer callback to the arm920 cpu core code, 62833 plus a stub implementation of it for the S3C2410. 62834 62835 The purpose is to allow arm920t implementations such as the s3c24x0 to 62836 implement interrupt handlers in u-boot without having to touch core 62837 arm920t code. 62838 62839 Signed-off-by: Harald Welte <laforge@openmoko.org> 62840 62841commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda 62842Author: Hebbar <gururajakr@sanyo.co.in> 62843Date: Tue Dec 18 16:03:07 2007 -0800 62844 62845 ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined 62846 62847 Add ifdef to bdinfo command to display ethernet information 62848 only if CONFIG_CMD_NET is defined for arm modules. 62849 62850 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in> 62851 62852commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884 62853Author: Hebbar <gururajakr@sanyo.co.in> 62854Date: Tue Dec 18 16:00:54 2007 -0800 62855 62856 ARM: add I2C init function call in lib_arm/board.c 62857 62858 Adds I2C init func call to init sequence for ARM boards. This is 62859 present in ppc,blackfin and other processor init sequence. 62860 62861 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in> 62862 62863commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae 62864Author: Stefan Roese <sr@denx.de> 62865Date: Fri Feb 1 09:38:29 2008 +0100 62866 62867 ppc4xx: Fix ndfc HW ECC byte order 62868 62869 The current ndfc HW ECC implementation swaps the first two ECC bytes. 62870 But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering, 62871 so this swapping in the HW ECC driver is bogus. This patch fixes this 62872 problem and now really uses the SMC ECC byte order. 62873 62874 Thanks to Sean MacLennan for pointing this out. 62875 62876 Signed-off-by: Stefan Roese <sr@denx.de> 62877 62878commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1 62879Author: Stefan Roese <sr@denx.de> 62880Date: Wed Jan 30 15:35:50 2008 +0100 62881 62882 ppc4xx: Fix GPIO configuration for pcs440ep 62883 62884 The SRD0_PFC0 register was not configured correctly to enable the GPIO's 62885 49-63 for GPIO. They have been configured as trace signals. This patch 62886 fixes this by clearing the corresponding bit. 62887 62888 Signed-off-by: Stefan Roese <sr@denx.de> 62889 62890commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821 62891Author: Stefan Roese <sr@denx.de> 62892Date: Wed Jan 30 14:48:28 2008 +0100 62893 62894 ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms 62895 62896 Signed-off-by: Stefan Roese <sr@denx.de> 62897 62898commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368 62899Author: Ladislav Michl <ladis@linux-mips.org> 62900Date: Fri Dec 7 00:42:32 2007 +0100 62901 62902 ARM: Board voiceblue update 62903 62904 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 62905 62906commit 2c5260f711168d5ee91c70ddbb7d897013eefc46 62907Author: Ladislav Michl <ladis@linux-mips.org> 62908Date: Thu Dec 6 23:24:57 2007 +0100 62909 62910 ARM: AT91RM9200 based boards config cleanup 62911 62912 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 62913 62914 Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix 62915 indentation. 62916 62917commit 481f28b1db5cd21deb55f69399ba240e107af4c7 62918Author: Ladislav Michl <ladis@linux-mips.org> 62919Date: Thu Dec 6 22:59:16 2007 +0100 62920 62921 ARM: Fix at91rm9200dk base address 62922 62923 Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was 62924 renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced 62925 with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT. 62926 However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to 62927 CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact. 62928 I'm sending this patch 4th (!) time in hope it produces at least some 62929 reaction. 62930 62931 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 62932 62933 Fix at91rm9200dk base and environment address. 62934 62935commit c95219fae2a7add7daa2f91aedca65b1698465c7 62936Author: stefano babic <sbabic@denx.de> 62937Date: Tue Nov 20 10:40:24 2007 +0100 62938 62939 MMC for PXA 27X (resubmit) 62940 62941 MMC support for X_Scale PXA is broken and does not work. 62942 Mainly, the mmc_init() function cannot recognize current SD/MMC cards. 62943 There were already some patches around the world but none of them was 62944 merged into the official u-boot tree. 62945 62946 This patch makes order fixing this issue. Resubmit after code cleanup. 62947 62948 Applied and tested on PXA 270 (TrizepsIV module). 62949 62950 Signed-off-by: Stefano Babic <sbabic@denx.de> 62951 62952commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33 62953Author: stefano babic <sbabic@denx.de> 62954Date: Tue Nov 20 10:37:04 2007 +0100 62955 62956 Fix gcc issues in pxa-regs.h 62957 62958 Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4 62959 issues generates wrong code. 62960 (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu). 62961 This patch fixes the problem and solves the gcc-4 issues as the linux 62962 kernel does. 62963 62964 Signed-off-by: Stefano Babic <sbabic@denx.de> 62965 Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com> 62966 62967commit 7047b388876e7b905b2ec4edb8010543e3641b85 62968Author: Jens Gehrlein <sew_s@tqs.de> 62969Date: Tue Jan 29 08:45:03 2008 +0100 62970 62971 TQM834x: enable DHCP 62972 62973 Signed-off-by: Jens Gehrlein <sew_s@tqs.de> 62974 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 62975 62976commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec 62977Author: Jens Gehrlein <sew_s@tqs.de> 62978Date: Tue Jan 29 08:45:02 2008 +0100 62979 62980 TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit). 62981 62982 Signed-off-by: Jens Gehrlein <sew_s@tqs.de> 62983 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 62984 62985commit 8931ab176025b03cfc320b3fd1eca432a88ed560 62986Author: Ben Warren <biggerbadderben@gmail.com> 62987Date: Sat Jan 26 23:41:19 2008 -0500 62988 62989 Fix conditional compilation of mpx8xxx_spi driver 62990 62991 This driver should only compile if CONFIG_MPC8XXX_SPI is set 62992 62993 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 62994 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 62995 62996commit 63f732d3d3880feb531f48af247c025bf01462b0 62997Author: Rafal Jaworowski <raj@semihalf.com> 62998Date: Tue Jan 29 17:00:34 2008 +0100 62999 63000 API: Provide dummy halt() in the glue layer.
63001 63002 This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG. 63003 63004 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 63005 63006commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826 63007Author: Rafal Jaworowski <raj@semihalf.com> 63008Date: Tue Jan 29 16:57:38 2008 +0100 63009 63010 API: Convert conditional building to the new scheme. 63011 63012 This fixes a build breakage with CONFIG_API enabled, which appeared after 63013 the recent changes in the U-Boot build system. 63014 63015 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 63016 63017commit 98b742489c09780be6a832eeaa4e5eff824792bb 63018Author: Wolfgang Denk <wd@denx.de> 63019Date: Fri Jan 25 09:56:17 2008 +0100 63020 63021 inka4x0: remove dead code 63022 63023 Signed-off-by: Wolfgang Denk <wd@denx.de> 63024 63025commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa 63026Author: Becky Bruce <becky.bruce@freescale.com> 63027Date: Wed Jan 23 16:31:06 2008 -0600 63028 63029 86xx: Add reginfo command 63030 63031 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 63032 63033commit ddcebcb638715a6278da93b553d5016f99823816 63034Author: Becky Bruce <becky.bruce@freescale.com> 63035Date: Wed Jan 23 16:31:05 2008 -0600 63036 63037 86xx: Add print_laws function to fsl_law.c 63038 63039 This can be used for debug, and will be used by board code 63040 to help implement reginfo. 63041 63042 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 63043 63044commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3 63045Author: Becky Bruce <becky.bruce@freescale.com> 63046Date: Wed Jan 23 16:31:04 2008 -0600 63047 63048 86xx: Remove old-style law setup code 63049 63050 This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d. 63051 63052 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 63053 63054commit 713d8186649dae874613d495b0cecaa039a98b30 63055Author: Becky Bruce <becky.bruce@freescale.com> 63056Date: Wed Jan 23 16:31:03 2008 -0600 63057 63058 86xx: Convert sbc8641d to use new law setup code. 63059 63060 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 63061 63062commit 031976f6364b93833e989f57e9f1e023e0be8c4c 63063Author: Becky Bruce <becky.bruce@freescale.com> 63064Date: Wed Jan 23 16:31:02 2008 -0600 63065 63066 86xx: Convert mpc8610hpcd to new law setup method. 63067 63068 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 63069 63070commit 4933b91f8a49e436681f163df3173beb91cac44a 63071Author: Becky Bruce <becky.bruce@freescale.com> 63072Date: Wed Jan 23 16:31:01 2008 -0600 63073 63074 86xx: Support new law setup method and convert mpc8641 63075 63076 Adds the support code in cpu/mpc86xx for the new law setup code 63077 recently created fsl_law.c, and changes the MPC8641HPCN config 63078 to use this code. 63079 63080 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 63081 63082commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1 63083Author: Becky Bruce <becky.bruce@freescale.com> 63084Date: Wed Jan 23 16:31:00 2008 -0600 63085 63086 86xx: Rearrange the sequence in start.S 63087 63088 * split the BAT initialization so that only 2 BATs (for the boot page 63089 and stack) are programmed very early on. The rest are initialized later. 63090 * Move other BAT setup, ccsrbar setup, and law setup later in the code 63091 after translation has been enabled. 63092 63093 These changes will facilitate the moving of law and BAT initialization 63094 to C code, and will aid with 36-bit physical addressing support. 63095 63096 Signed-off-by: Becky Bruce <becky.bruce@freescale.com> 63097 63098commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0 63099Author: Wolfgang Denk <wd@denx.de> 63100Date: Wed Jan 23 14:41:37 2008 +0100 63101 63102 Coding Style Cleanup; update CHANGELOG 63103 63104 Signed-off-by: Wolfgang Denk <wd@denx.de> 63105 63106commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f 63107Author: Wolfgang Denk <wd@denx.de> 63108Date: Wed Jan 23 14:31:17 2008 +0100 63109 63110 Coding Style Cleanup; update CHANGELOG 63111 63112 Signed-off-by: Wolfgang Denk <wd@denx.de> 63113 63114commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace 63115Author: Dave Liu <r63238@freescale.com> 63116Date: Fri Jan 18 10:07:04 2008 +0800 63117 63118 mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h 63119 63120 The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb 63121 cause the 83xx immap broken, so the DMA and PCI will 63122 be failed. 63123 63124 The patch fix the struct spi8xxx and rm struct spi83xx. 63125 63126 Signed-off-by: Dave Liu <daveliu@freescale.com> 63127 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 63128 63129commit 6b4439444286e0fcd01596df504e6ca897ad3e5a 63130Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 63131Date: Sat Apr 14 17:11:49 2007 +0200 63132 63133 AVR32: ATNGW100 board support 63134 63135 Add support for the ATNGW100 Network Gateway reference design, 63136 including flash, ethernet and MMC support. 63137 63138 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 63139 63140commit e006927a0b9a54e8ee7685d8ac748aaad6801862 63141Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 63142Date: Sat Nov 24 18:15:31 2007 +0100 63143 63144 AVR32: Initialize ipaddr, loadaddr and bootfile at startup 63145 63146 I don't know why the relevant layers can't do this by itself, but this 63147 is what ppc does. 63148 63149 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 63150 63151commit 799891ef7b1b3432032ec23466df6b665a797fa4 63152Author: Michael Schwingen <michael@schwingen.org> 63153Date: Fri Jan 18 00:04:28 2008 +0100 63154 63155 Add AcTux board support 63156 63157 Hi, 63158 63159 The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the 63160 files that 63161 contain changes for multiple boards, the board-specific files follow as 63162 separate patches. 63163 63164 Signed-off-by: Michael Schwingen <michael@schwingen.org> 63165 63166commit 66a4344a4d910a11125df7768899ad529719855e 63167Author: Michael Schwingen <michael@schwingen.org> 63168Date: Wed Jan 16 19:53:23 2008 +0100 63169 63170 add AcTux-4 board support 63171 63172 Signed-off-by: Michael Schwingen <michael@schwingen.org> 63173 63174commit bc24345e4101a5c996d6b48ce497b09c53025dc6 63175Author: Michael Schwingen <michael@schwingen.org> 63176Date: Wed Jan 16 19:51:55 2008 +0100 63177 63178 add AcTux-3 board support 63179 63180 Signed-off-by: Michael Schwingen <michael@schwingen.org> 63181 63182commit aebf00fc4d1343b24715373893f7b20bf462d1e9 63183Author: Michael Schwingen <michael@schwingen.org> 63184Date: Wed Jan 16 19:51:14 2008 +0100 63185 63186 add AcTux-2 board support 63187 63188 Signed-off-by: Michael Schwingen <michael@schwingen.org> 63189 63190commit ea99e8f05b7240fd657739e286664664ae160abe 63191Author: Michael Schwingen <michael@schwingen.org> 63192Date: Wed Jan 16 19:50:37 2008 +0100 63193 63194 add AcTux-1 board support 63195 63196 Signed-off-by: Michael Schwingen <michael@schwingen.org> 63197 63198commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64 63199Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63200Date: Mon Jan 14 19:20:08 2008 +0100 63201 63202 ARM: remove useless function board_post_init 63203 63204 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63205 63206commit 96bd462942022e4569b582c072a0ed26de1cd19b 63207Author: Michael Schwingen <michael@schwingen.org> 63208Date: Thu Jan 10 14:59:46 2008 +0100 63209 63210 IXP: enable RTS 63211 63212 enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE. 63213 No handshaking is done, but the active RTS signal allows to 63214 connect to the target using a PC which is using RTS/CTS 63215 handshake, and does no harm if the PC is set to ignore RTS. 63216 63217 Signed-off-by: Michael Schwingen <michael@schwingen.org> 63218 63219commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93 63220Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63221Date: Mon Jan 7 08:41:34 2008 +0100 63222 63223 IXP: add dynamic microcode addr 63224 63225 allow to load the microde from flash or ram by download it through 63226 the serial or other. 63227 63228 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63229 Acked-by: Stefan Roese <sr@denx.de> 63230 63231commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564 63232Author: Michael Schwingen <michael@schwingen.org> 63233Date: Sat Nov 10 15:44:12 2007 +0100 63234 63235 load ixp42x NPE firmware from separate flash block, remove dead code 63236 63237 Hi, 63238 63239 the following patch adds support to move the IXP42X NPE firmware to a 63240 separate flash block, whose start address is defined in 63241 CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build 63242 NPE-enabled u-boot without copyright problems due to the NPE firmware. 63243 63244 I hope the patch applies, I get whitespace-related differences in the NPE 63245 files due to trailing whitespace in the original versions. 63246 63247 Signed-off-by: Michael Schwingen <michael@schwingen.org> 63248 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63249 63250commit 57a127201eb3d8cc19170a008e0bd7af608bd72f 63251Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63252Date: Tue Jan 15 14:15:46 2008 -0600 63253 63254 ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support 63255 63256 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63257 Signed-off by: John Rigby <jrigby@freescale.com> 63258 63259commit 1aee111135d8660a164d4f6bf7d66b032ea535cf 63260Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63261Date: Tue Jan 15 14:02:49 2008 -0600 63262 63263 ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board 63264 63265 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63266 Signed-off by: John Rigby <jrigby@freescale.com> 63267 63268commit 777d1abd9796f1c2e148417cc10657e847d318ce 63269Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63270Date: Tue Jan 15 14:00:25 2008 -0600 63271 63272 ColdFire: Add MCF547x_8x FEC driver 63273 63274 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63275 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63276 Signed-off by: John Rigby <jrigby@freescale.com> 63277 63278commit 72f56adc0b25d43875ad067bae6be1bcea86b79f 63279Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63280Date: Tue Jan 15 13:54:09 2008 -0600 63281 63282 ColdFire: Add MCF547x_8x dma code and header files 63283 63284 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63285 Signed-off by: John Rigby <jrigby@freescale.com> 63286 63287commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87 63288Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63289Date: Tue Jan 15 13:52:03 2008 -0600 63290 63291 ColdFire: Add MCF547x_8x dma code - 2 63292 63293 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63294 Signed-off by: John Rigby <jrigby@freescale.com> 63295 63296commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f 63297Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63298Date: Tue Jan 15 13:48:52 2008 -0600 63299 63300 ColdFire: Add MCF547x_8x dma code - 1 63301 63302 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63303 Signed-off by: John Rigby <jrigby@freescale.com> 63304 63305commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3 63306Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63307Date: Tue Jan 15 13:39:44 2008 -0600 63308 63309 ColdFire: Add MCF547x_8x related header files 63310 63311 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63312 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63313 Signed-off by: John Rigby <jrigby@freescale.com> 63314 63315commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5 63316Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63317Date: Tue Jan 15 13:37:34 2008 -0600 63318 63319 ColdFire: Add MCF547x_8x cpu arch 63320 63321 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63322 Signed-off by: John Rigby <jrigby@freescale.com> 63323 63324commit e2756f4b54aba0e0523b81dd145666829cf7fd59 63325Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63326Date: Mon Jan 14 17:47:23 2008 -0600 63327 63328 ColdFire: Add MCF5227x cpu and M52277EVB support-3 63329 63330 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63331 Signed-off by: John Rigby <jrigby@freescale.com> 63332 63333commit c87581027994c148131b2f11aa75501f782ec19a 63334Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63335Date: Mon Jan 14 17:46:19 2008 -0600 63336 63337 ColdFire: Add MCF5227x cpu and MCF52277EVB support-2 63338 63339 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63340 Signed-off by: John Rigby <jrigby@freescale.com> 63341 63342commit 1552af70ecab11b9f3dceff7528ed15faf678b9d 63343Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63344Date: Mon Jan 14 17:43:33 2008 -0600 63345 63346 ColdFire: Add MCF5227x cpu and M52277EVB support-1 63347 63348 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63349 Signed-off by: John Rigby <jrigby@freescale.com> 63350 63351commit 397b7b81a1f1008798ae1206913508cc89cb3a7d 63352Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63353Date: Mon Jan 14 17:35:44 2008 -0600 63354 63355 ColdFire: Fix CFI Flash low level Read/Write macro 63356 63357 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63358 Signed-off by: John Rigby <jrigby@freescale.com> 63359 63360commit aa5f1f9dc815a76f6dffb580798599c028fe7feb 63361Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63362Date: Mon Jan 14 17:23:08 2008 -0600 63363 63364 ColdFire: Add M5373EVB platform support - 2 63365 63366 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63367 Signed-off by: John Rigby <jrigby@freescale.com> 63368 63369commit 1ac559d4aa358f63b48c62b564224c06feeb4e36 63370Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63371Date: Mon Jan 14 17:19:54 2008 -0600 63372 63373 ColdFire: Add M5373EVB platform support - 1 63374 63375 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63376 Signed-off by: John Rigby <jrigby@freescale.com> 63377 63378commit 320d61991fa3190ee41765601ed017b6b5ff7b2b 63379Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63380Date: Mon Jan 14 17:17:03 2008 -0600 63381 63382 ColdFire: Update FlexBus CS for MCF532x 63383 63384 Definition update and change from 16bit to 32bit 63385 63386 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63387 Signed-off by: John Rigby <jrigby@freescale.com> 63388 63389commit 2e72ad0644b940817a89a3590ce0d7b99c05c396 63390Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63391Date: Mon Jan 14 17:11:47 2008 -0600 63392 63393 ColdFire: PCI and misc updates for MCF5445x 63394 63395 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63396 Signed-off by: John Rigby <jrigby@freescale.com> 63397 63398commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee 63399Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63400Date: Mon Jan 14 17:06:55 2008 -0600 63401 63402 ColdFire: MCF5445x header files cleanup 63403 63404 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63405 Signed-off by: John Rigby <jrigby@freescale.com> 63406 63407commit d9aae6260993a93f7fcf13abff85a601f4f50ea7 63408Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63409Date: Mon Jan 14 16:59:42 2008 -0600 63410 63411 ColdFire: MCF532x header files cleanup 63412 63413 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63414 Signed-off by: John Rigby <jrigby@freescale.com> 63415 63416commit 7af7751d047e74b2ec58400f97b879c56446b3e8 63417Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 63418Date: Mon Jan 14 15:30:15 2008 -0600 63419 63420 ColdFire: Add modules header files 63421 63422 Add CF specific modules header files 63423 63424 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 63425 Signed-off-by: John Rigby <jrigby@freescale.com> 63426 63427commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5 63428Author: Kim Phillips <kim.phillips@freescale.com> 63429Date: Thu Jan 17 12:48:00 2008 -0600 63430 63431 codingstyle cleanup for spi driver 63432 63433 ..and rm unused CONFIG_FSL_SPI define 63434 63435 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 63436 63437commit d59feffb42c9f174116db7a82a311df98983dfce 63438Author: Haiying Wang <Haiying.Wang@freescale.com> 63439Date: Wed Jan 16 17:12:12 2008 -0500 63440 63441 FSL: Fix common EEPROM_data structure definition 63442 63443 - Fix EEPROM_data structure definition according to System EEPROM Data Format. 63444 - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to 63445 bd->bi_ethaddr. 63446 63447 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 63448 63449commit 6bee764bd6da510a4aad614880300c968bc7318d 63450Author: Timur Tabi <timur@freescale.com> 63451Date: Wed Jan 16 15:48:12 2008 -0600 63452 63453 86xx: enable command-line editing 63454 63455 Enable command-line editing for all MPC86xx boards. 63456 63457 Signed-off-by: Timur Tabi <timur@freescale.com> 63458 63459commit 80ddd22626d321a772ebfba304eb7830cb4f6bac 63460Author: Ben Warren <biggerbadderben@gmail.com> 63461Date: Wed Jan 16 22:37:42 2008 -0500 63462 63463 Implement hard SPI driver on MPC8349EMDS 63464 63465 This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board. 63466 This board has an ST M25P40 4Mbit EEPROM on its SPI bus 63467 63468 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63469 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 63470 63471commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb 63472Author: Ben Warren <biggerbadderben@gmail.com> 63473Date: Wed Jan 16 22:37:35 2008 -0500 63474 63475 Add support for a Freescale non-CPM SPI controller 63476 63477 This patch adds support for the SPI controller found on Freescale PowerPC 63478 processors such as the MCP834x family. Additionally, a new config option, 63479 CONFIG_HARD_SPI, is added for general purpose SPI controller use. 63480 63481 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63482 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 63483 63484commit a8cb43a89be6cfd283257a603dd9841503ccce0f 63485Author: Dave Liu <r63238@freescale.com> 63486Date: Thu Jan 17 18:23:19 2008 +0800 63487 63488 mpc83xx: Fix the fatal conflict of merge 63489 63490 The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7 63491 will cause the mpc8315erdb board can't boot up. 63492 63493 The patch fix that bug, and remove the duplicated #ifdef 63494 CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for 63495 MPC8313E processor. 63496 63497 Signed-off-by: Dave Liu <daveliu@freescale.com> 63498 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 63499 63500commit 3259eeaa4148125a81417477f62c05bd67f60587 63501Author: Larry Johnson <lrj@acm.org> 63502Date: Thu Jan 17 08:50:09 2008 -0500 63503 63504 Merge Sequoia beautification into Korat code 63505 63506 Signed-off-by: Larry Johnson <lrj@acm.org> 63507 63508commit e16925773211291b562e77187061e9dd1d757217 63509Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 63510Date: Thu Jan 17 07:45:05 2008 +0100 63511 63512 net: add 'ethrotate' environment variable 63513 63514 [PATCH] net: add 'ethrotate' environment variable 63515 63516 This patch replaces the buildtime configuration option 63517 CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime 63518 configuration veriable. See README. 63519 63520 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 63521 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63522 63523commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f 63524Author: Stefan Roese <sr@denx.de> 63525Date: Thu Jan 17 14:29:04 2008 +0100 63526 63527 ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5 63528 63529 Signed-off-by: Stefan Roese <sr@denx.de> 63530 63531commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d 63532Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 63533Date: Thu Jan 17 18:07:32 2008 +0900 63534 63535 sh: Remove CONFIG_COMMANDS from MS7720SE config file 63536 63537 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 63538 63539commit 055606bd25e88c0cd04ad348a679a04b1b616bee 63540Author: Niklaus Giger <niklaus.giger@netstal.com> 63541Date: Wed Jan 16 18:39:20 2008 +0100 63542 63543 ppc4xx: Netstal HCU4 board: added various fixes and POST 63544 63545 - Moved some common code to netstal/common/nm_bsp.c. 63546 - sdram initialisation goes go netstal/common/fixed_sdram.c. 63547 - Added support for POST. 63548 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width) 63549 63550 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 63551 63552commit 69b0634a4ee98c9791815600d43b99f626a952f3 63553Author: Niklaus Giger <niklaus.giger@netstal.com> 63554Date: Thu Jan 17 12:53:56 2008 +0100 63555 63556 ppc4xx: netstal/common define routines used by all boards 63557 63558 Added some routines used by all Netstal boards: 63559 - nm_bsp.c: - nm_show_print and 63560 - common_misc_init_r 63561 - set_params_for_sw_install. Very specific code to handle our SW 63562 installation procedure 63563 - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards 63564 to handle sdram initialization. 63565 - nm.h: Common header 63566 63567 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 63568 63569commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8 63570Author: Niklaus Giger <niklaus.giger@netstal.com> 63571Date: Wed Jan 16 18:39:18 2008 +0100 63572 63573 ppc4xx: Netstal HCU5 board: added various fixes and POST 63574 63575 - Moved some common code to nestal/common/nm_bsp.c. 63576 - Added support for the vxWorks EDR. 63577 - Enable trace for Lauterbach, if present. 63578 - Added support for POST. 63579 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width) 63580 63581 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 63582 63583commit 4371090e5da77edc7bf9f296364db4801639d9c4 63584Author: Niklaus Giger <niklaus.giger@netstal.com> 63585Date: Wed Jan 16 18:39:08 2008 +0100 63586 63587 ppc4xx: Netstal HCU5 board. Added POST. Various fixes 63588 63589 - Various fixes 63590 - Reduced rom_size from 384 to 320 kB 63591 - Environment is now in flash 63592 - Added POST 63593 - Support for OF 63594 63595 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 63596 63597commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7 63598Author: Niklaus Giger <niklaus.giger@netstal.com> 63599Date: Wed Jan 16 18:37:50 2008 +0100 63600 63601 ppc4xx: Netstal HCU4 board. Added POST. Various fixes 63602 63603 - Various fixes 63604 - Reduced rom_size from 384 to 320 kB 63605 - Environment is now in flash 63606 - Added POST 63607 - Support for OF 63608 63609 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 63610 63611commit 1a3ac86b79fcb690275c85861c8efa6a3899060a 63612Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 63613Date: Thu Jan 17 10:53:08 2008 +0100 63614 63615 ppc4xx: Complete DU440 board support 63616 63617 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 63618 63619commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f 63620Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 63621Date: Thu Jan 17 10:52:30 2008 +0100 63622 63623 ppc4xx: Add DU440 board support 63624 63625 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 63626 63627commit ac331da07db3860f11fa1d0fd3db7c810bce1198 63628Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 63629Date: Thu Jan 17 15:53:52 2008 +0900 63630 63631 sh: Update SuperH SCIF driver 63632 63633 This patch fixed wrong SH7720 CPU macro and changed macro that 63634 calculated value of SCBRR register. 63635 63636 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 63637 63638commit 334e442e6fac59be91244063e9b3f6ca25e8daf8 63639Author: Grzegorz Bernacki <gjb@semihalf.com> 63640Date: Wed Jan 16 15:12:47 2008 +0100 63641 63642 Set ips dividor to 1/4 of csb clock. 63643 63644 Previous setting cause ips clock to be out of spec. This bug was found by John 63645 Rigby from Freescale. 63646 63647 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 63648 63649commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89 63650Author: Kumar Gala <galak@kernel.crashing.org> 63651Date: Thu Jan 17 02:19:18 2008 -0600 63652 63653 85xx: Get ride of old TLB setup code 63654 63655 Now that all boards have been converted, remove old config code and the 63656 config option for the new style. 63657 63658 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63659 63660commit 3b558e26a5ef31635787d6d6e97d70939d4f892d 63661Author: Kumar Gala <galak@kernel.crashing.org> 63662Date: Thu Jan 17 02:02:10 2008 -0600 63663 63664 85xx: Convert TQM85xx to new TLB setup 63665 63666 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63667 63668commit 74121b470c14f7eaf284ee838bffca6f9521069e 63669Author: Kumar Gala <galak@kernel.crashing.org> 63670Date: Thu Jan 17 01:56:32 2008 -0600 63671 63672 85xx: Convert STXGP3 & STXSSA to new TLB setup 63673 63674 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63675 63676commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0 63677Author: Kumar Gala <galak@kernel.crashing.org> 63678Date: Thu Jan 17 01:44:34 2008 -0600 63679 63680 85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup 63681 63682 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63683 63684commit 818218bac6a11591e2542c344d2330e0f4e1968b 63685Author: Kumar Gala <galak@kernel.crashing.org> 63686Date: Thu Jan 17 01:31:34 2008 -0600 63687 63688 85xx: Convert PM854/PM856 to new TLB setup 63689 63690 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63691 63692commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0 63693Author: Kumar Gala <galak@kernel.crashing.org> 63694Date: Thu Jan 17 01:25:33 2008 -0600 63695 63696 85xx: Convert MPC8540EVAL to new TLB setup 63697 63698 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63699 63700commit 73aa9ac2b46f1cfd039106ebd6b9865016005234 63701Author: Kumar Gala <galak@kernel.crashing.org> 63702Date: Thu Jan 17 01:12:22 2008 -0600 63703 63704 85xx: Convert MPC8568 MDS to new TLB setup 63705 63706 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63707 63708commit 0db37dc2eed30884db2daa24dbd9a113b5d00610 63709Author: Kumar Gala <galak@kernel.crashing.org> 63710Date: Thu Jan 17 01:01:09 2008 -0600 63711 63712 85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup 63713 63714 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63715 63716commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc 63717Author: Kumar Gala <galak@kernel.crashing.org> 63718Date: Thu Jan 17 00:52:29 2008 -0600 63719 63720 85xx: Convert MPC8540/MPC8560 ADS to new TLB setup 63721 63722 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63723 63724commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8 63725Author: Kumar Gala <galak@kernel.crashing.org> 63726Date: Thu Jan 17 00:32:17 2008 -0600 63727 63728 85xx: Convert ATUM8548 to new TLB setup 63729 63730 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63731 63732commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab 63733Author: Kumar Gala <galak@kernel.crashing.org> 63734Date: Wed Jan 16 23:11:57 2008 -0600 63735 63736 85xx: Convert MPC8544 DS to new TLB setup 63737 63738 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63739 63740commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee 63741Author: Kumar Gala <galak@kernel.crashing.org> 63742Date: Wed Jan 16 22:38:34 2008 -0600 63743 63744 85xx: Reworked initial processor init 63745 63746 Reworked the initial processor initialzation sequence: 63747 * introduced cpu_early_init_f that is run in address space 1 (AS=1) 63748 * Moved TLB/LAW and CCSR init into cpu_early_init_f() 63749 * Reworked initial asm code to do most of the core init before TLBs 63750 63751 The main reasons for these changes are to allow handling of 36-bit phys 63752 addresses in the future and some of the issues that will exist when we 63753 do that. 63754 63755 There are a few caveats on what can be initialized via the LAW and TLB 63756 static tables: 63757 * TLB entry 14/15 can't be initialized via the TLB table 63758 * any LAW that covers the implicit boot window (4G-8M to 4G) must map to 63759 the code that is currently executing. 63760 63761 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63762 63763commit 44a23cfd6360a68eaa41f945190618a55519eac3 63764Author: Kumar Gala <galak@kernel.crashing.org> 63765Date: Wed Jan 16 22:33:22 2008 -0600 63766 63767 85xx: Introduce new tlb API 63768 63769 Add a set of functions to manipulate TLB entries: 63770 * set_tlb() - write a tlb entry 63771 * invalidate_tlb() - invalidate a tlb array 63772 * disable_tlb() - disable a variable size tlb entry 63773 * init_tlbs() - setup initial tlbs based on static table 63774 63775 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63776 63777commit be88b1699863c262818f3af7f60173b4d48df8fc 63778Author: Stefan Roese <sr@denx.de> 63779Date: Thu Jan 17 07:50:17 2008 +0100 63780 63781 ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files 63782 63783 Signed-off-by: Stefan Roese <sr@denx.de> 63784 63785commit c8c41d4a80b1a8ad5984a287d81ea780496259f8 63786Author: Kumar Gala <galak@kernel.crashing.org> 63787Date: Wed Jan 16 10:04:42 2008 -0600 63788 63789 85xx: Use proper defines for PCI addresses 63790 63791 We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE. 63792 While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only 63793 be used for configuring the PCI ATMU. 63794 63795 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63796 63797commit 54a5070115eff38e9b324b78abdfa0b4520580b9 63798Author: Kumar Gala <galak@kernel.crashing.org> 63799Date: Wed Jan 16 09:22:29 2008 -0600 63800 63801 85xx: Remove old style of LAW init 63802 63803 All boards are now using the new fsl_law code so we can drop the old version. 63804 63805 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63806 63807commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f 63808Author: Kumar Gala <galak@kernel.crashing.org> 63809Date: Wed Jan 16 09:15:29 2008 -0600 63810 63811 85xx: convert remaining 85xx boards over to use new LAW init code 63812 63813 Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over 63814 to use new LAW init code. 63815 63816 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63817 63818commit 572b13afc42710f2957c382a710360429c0e099b 63819Author: Kumar Gala <galak@kernel.crashing.org> 63820Date: Wed Jan 16 09:11:53 2008 -0600 63821 63822 85xx: convert STXGP3/STXSSA over to use new LAW init code 63823 63824 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63825 63826commit 45f2166ac0233a9263058378f39612bd11f61196 63827Author: Kumar Gala <galak@kernel.crashing.org> 63828Date: Wed Jan 16 09:06:48 2008 -0600 63829 63830 85xx: convert PM854/PM856 over to use new LAW init code 63831 63832 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63833 63834commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a 63835Author: Kumar Gala <galak@kernel.crashing.org> 63836Date: Wed Jan 16 09:05:27 2008 -0600 63837 63838 85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code 63839 63840 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63841 63842commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa 63843Author: Kumar Gala <galak@kernel.crashing.org> 63844Date: Wed Jan 16 01:45:10 2008 -0600 63845 63846 85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code 63847 63848 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63849 63850commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238 63851Author: Kumar Gala <galak@kernel.crashing.org> 63852Date: Wed Jan 16 01:32:06 2008 -0600 63853 63854 85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code 63855 63856 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63857 63858commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75 63859Author: Kumar Gala <galak@kernel.crashing.org> 63860Date: Wed Jan 16 01:16:16 2008 -0600 63861 63862 85xx: convert MPC8544 DS over to use new LAW init code 63863 63864 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63865 63866commit 83d40dfd79fe868796275802f60116d84b9e4395 63867Author: Kumar Gala <galak@kernel.crashing.org> 63868Date: Wed Jan 16 01:13:58 2008 -0600 63869 63870 85xx: Move LAW init code into C 63871 63872 Move the initialization of the LAWs into C code and provide an API 63873 to allow modification of LAWs after init. 63874 63875 Board code is responsible to provide a law_table and num_law_entries. 63876 63877 We should be able to use the same code on 86xx as well. 63878 63879 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 63880 63881commit bed8ce838a609aaab136d43b25e6df2a520bc854 63882Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63883Date: Sat Dec 22 15:03:12 2007 +0100 63884 63885 qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING 63886 63887 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63888 63889commit 0764c164fed6277d359cf132d55187ea34290114 63890Author: Vlad Lungu <vlad@comsys.ro> 63891Date: Wed Jan 16 19:27:51 2008 +0200 63892 63893 MIPS:Target support for qemu -M mips 63894 63895 With serial, NE2000, IDE support. Tested in big-endian mode. 63896 Memory size hard-coded to 128M for now, so don't play with 63897 the -m option. 63898 63899 Signed-off-by: Vlad Lungu <vlad@comsys.ro> 63900 63901commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f 63902Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63903Date: Fri Jan 11 00:01:37 2008 +0100 63904 63905 Fix nfs command help to reflect that the serverip is optional 63906 63907 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63908 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63909 63910commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b 63911Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63912Date: Mon Dec 10 22:32:14 2007 +0100 63913 63914 bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr 63915 63916 and move is_valid_ether_addr board file 63917 63918 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 63919 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63920 63921commit c2f896b8fc4722e36915903e1942e138e68ce804 63922Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 63923Date: Wed Jan 16 16:13:31 2008 +0900 63924 63925 drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status). 63926 63927 rx_status on the memory is basically in LE, but needs to be handled in CPU 63928 endian. le32_to_cpu() takes up this mission. Even if on the sane hardware, 63929 it'll work fine. 63930 63931 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 63932 Cc: Masami Komiya <mkomiya@sonare.it> 63933 Cc: Lucas Jin <lucasjin@gmail.com> 63934 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63935 63936commit 96a236746fe6a7b84802afb4ed31536696d34812 63937Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 63938Date: Wed Jan 16 16:12:26 2008 +0900 63939 63940 drivers/net/rtl8139.c: Fix cache coherency issues 63941 63942 Current driver is meant for cache coherent systems. This patch adds 63943 flush_cache() routines to support cache non-coherent systems. 63944 63945 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 63946 Cc: Masami Komiya <mkomiya@sonare.it> 63947 Cc: Lucas Jin <lucasjin@gmail.com> 63948 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63949 63950commit d1276c76c1e2b5035296689280ba1acb2c425104 63951Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 63952Date: Wed Jan 16 16:11:14 2008 +0900 63953 63954 drivers/net/rtl8139.c: Fix tx timeout 63955 63956 "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it 63957 does, the condition "(currticks() < to)" becomes invalid and immediately 63958 leads to tx timeout error. This patch introduces the fine-graded udely(10) 63959 loops to ease the impact of wrapping around. 63960 63961 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 63962 Cc: Masami Komiya <mkomiya@sonare.it> 63963 Cc: Lucas Jin <lucasjin@gmail.com> 63964 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63965 63966commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a 63967Author: Dave Liu <r63238@freescale.com> 63968Date: Fri Jan 11 18:45:28 2008 +0800 63969 63970 TSEC: Add the support for RealTek RTL8211B PHY 63971 63972 Add the support of RealTek RTL8211B PHY, the RTL8211B 63973 PHY only supports RGMII and MII mode. 63974 63975 Signed-off-by: Dave Liu <daveliu@freescale.com> 63976 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 63977 63978commit 84a3047b72b70e862b0b7a8e2058077457f89a32 63979Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 63980Date: Wed Jan 16 09:40:41 2008 +0100 63981 63982 Remove annoying debug printout for PHY less boards. 63983 63984 PHY less board prints out lots of "read wrong ...": 63985 read wrong value : mii_id 3,mii_reg 2, base e0102320 63986 read wrong value : mii_id 3,mii_reg 3, base e0102320 63987 UEC: PHY is Generic MII (ffffffff) 63988 read wrong value : mii_id 3,mii_reg 4, base e0102320 63989 read wrong value : mii_id 3,mii_reg 0, base e0102320 63990 read wrong value : mii_id 3,mii_reg 1, base e0102320 63991 read wrong value : mii_id 3,mii_reg 1, base e0102320 63992 read wrong value : mii_id 3,mii_reg 5, base e0102320 63993 read wrong value : mii_id 3,mii_reg 1, base e0102320 63994 read wrong value : mii_id 3,mii_reg 1, base e0102320 63995 read wrong value : mii_id 3,mii_reg 5, base e0102320 63996 FSL UEC0: Full Duplex 63997 FSL UEC0: Speed 100BT 63998 FSL UEC0: Link is up 63999 Using FSL UEC0 device 64000
64001 Make this printout depend on UEC_VERBOSE_DEBUG and 64002 remove its definition in uec_phy.c 64003 64004 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 64005 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 64006 64007commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6 64008Author: Kim Phillips <kim.phillips@freescale.com> 64009Date: Tue Jan 15 14:11:00 2008 -0600 64010 64011 net: reduce boot latency on QE UEC based boards 64012 64013 actually polling for PHY autonegotiation to finish enables us to remove the 64014 5 second boot prompt latency present on QE based boards. 64015 64016 call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from 64017 uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait 64018 code shamelessly stolen from tsec driver. 64019 64020 also rm unused CONFIG_RMII_MODE code. 64021 64022 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64023 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 64024 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 64025 64026commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3 64027Author: michael.firth@bt.com <michael.firth@bt.com> 64028Date: Wed Jan 16 11:40:51 2008 +0000 64029 64030 TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus 64031 64032 The current TSEC driver limits MDIO access to the devices that have been configured as attached 64033 to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands. 64034 64035 Signed-off-by: Michael Firth <michael.firth@bt.com> 64036 Acked-by: Andy Fleming <afleming@freescale.com> 64037 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 64038 64039commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3 64040Author: Kim Phillips <kim.phillips@freescale.com> 64041Date: Wed Jan 16 00:38:05 2008 -0600 64042 64043 Add support for the MPC837xERDB 64044 64045 MPC837xERDB board support includes: 64046 * DDR2 330MHz hardcoded (soldered on the board) 64047 * Local Bus NOR Flash 64048 * I2C, UART and RTC 64049 * eTSEC RGMII (TSEC0 - RTL8211B with MII; 64050 * TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware 64051 * load) 64052 64053 Signed-off-by: Kevin Lam <kevin.lam@freescale.com> 64054 Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com> 64055 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64056 64057commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7 64058Author: Kim Phillips <kim.phillips@freescale.com> 64059Date: Wed Jan 16 12:06:16 2008 -0600 64060 64061 mpc83xx: add support for more system clock performance controls 64062 64063 System registers that are modified are the Arbiter Configuration 64064 Register (ACR), the System Priority Control Register (SPCR), and the 64065 System Clock Configuration Register (SCCR). 64066 64067 Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com> 64068 Signed-off by: Joe D'Abbraccio <ljd015@freescale.com> 64069 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64070 64071commit 16c3cde050e2d243e62b37486f1558570787beb8 64072Author: James Yang <james.yang@freescale.com> 64073Date: Wed Jan 16 11:58:08 2008 -0600 64074 64075 FSL: Generalize PIXIS reset command parsing. 64076 64077 Before, the order of arguments to the pixis_reset 64078 command needed to be supplied in a hard-coded order. 64079 Generalize the command parsing to allow any order. 64080 64081 Signed-off-by: James Yang <james.yang@freescale.com> 64082 Acked-by: Jon Loeliger <jdl@freescale.com> 64083 64084commit ad8f8687b78c3e917b173f038926695383c55555 64085Author: Jon Loeliger <jdl@freescale.com> 64086Date: Tue Jan 15 13:42:41 2008 -0600 64087 64088 FSL: Convert board/freescale/common/Makefile to use CONFIG_ 64089 64090 Convert the board/freescale/common/Makefile to use 64091 CONFIG_* options to select which files to conditionally 64092 compile into the board/freescale/common library rather 64093 than conditionally compiling entire files. 64094 64095 Now handles:: 64096 CONFIG_FSL_PIXIS 64097 CONFIG_FSL_DIU_FB 64098 CONFIG_PQ_MDS_PIB 64099 64100 CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone. 64101 64102 Signed-off-by: Jon Loeliger <jdl@freescale.com> 64103 64104commit 7c2221eb230372a9e537c4f6636b147b0909325f 64105Author: Roy Zang <tie-fei.zang@freescale.com> 64106Date: Tue Jan 15 16:38:38 2008 +0800 64107 64108 Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver 64109 64110 Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver. 64111 Remove unused ethernet CONFIG_ options. 64112 64113 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 64114 Acked-by: Jon Loeliger <jdl@freescale.com> 64115 64116commit 711a7946277d2e29af481011e8635e9975c54e45 64117Author: Kim Phillips <kim.phillips@freescale.com> 64118Date: Tue Jan 15 14:05:14 2008 -0600 64119 64120 mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value 64121 64122 continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601 64123 64124 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64125 64126commit 363eea9ff7f19a2cba17f262bd17559f166e134e 64127Author: Kim Phillips <kim.phillips@freescale.com> 64128Date: Tue Jan 15 09:51:12 2008 -0600 64129 64130 mpc83xx: clean up mpc8360emds.c warnings 64131 64132 mpc8360emds.c: In function 'ft_board_setup': 64133 mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast 64134 mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast 64135 mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast 64136 mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast 64137 mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast 64138 mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast 64139 64140 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64141 64142commit f09880ea72a1c806db223ce594c5fb1b6542ff6a 64143Author: Kim Phillips <kim.phillips@freescale.com> 64144Date: Mon Jan 14 16:14:46 2008 -0600 64145 64146 mpc83xx: fix phy-connection-type fixup code 64147 64148 use tree passed to us in local blob, not global fdt. 64149 64150 Also use fdt_path_offset to convert to relative offset, since absolute 64151 reference is needed to check for rgmii-id mode string value. 64152 64153 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64154 64155commit 2b4c952be7c4357a13e839d48df80853820c33eb 64156Author: Kumar Gala <galak@kernel.crashing.org> 64157Date: Mon Jan 14 09:01:40 2008 -0600 64158 64159 mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s) 64160 64161 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 64162 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64163 64164commit e1d8ed2c08da14b168658cc5fa78529d461aea70 64165Author: Poonam Aggrwal <b10812@freescale.com> 64166Date: Mon Jan 14 09:41:14 2008 +0530 64167 64168 Changes in uboot DDR configuration for MPC8313eRDB 64169 64170 These changes were identified by HighSmith Bill ,Mazzyar and Joseph for 64171 DDR configuration in u-boot code. Some are related to performance, some 64172 affect stability and some correct few basic errors in the current 64173 configuration. 64174 64175 The changes have been tested and found to give better memory latency 64176 figures on MPC8313eRDB.LMBench figures prove it. 64177 64178 The changes are: 64179 64180 - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0 64181 (this may improve performance for application with many read 64182 or write to open pages). 64183 - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to 64184 001 (activating all the CS when only one is used may cause 64185 unwanted noise on the system) 64186 64187 - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on 64188 Tras=45ns) 64189 - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks. 64190 64191 - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to 64192 comply with the 3 ODT clk requirements) 64193 - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4. 64194 - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks. 64195 64196 - DDR_SDRAM_MODE[AL]changed from 0 to 1. 64197 - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks. 64198 64199 - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510. 64200 - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500. 64201 64202 The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git 64203 The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf 64204 64205 Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com> 64206 Cc: Bill HighSmith <Bill.Highsmith@freescale.com> 64207 Cc: Razzaz Mazyar <MRazzaz@freescale.com> 64208 Cc: Josep P J <PJ.Joseph@freescale.com> 64209 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64210 64211commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95 64212Author: Jerry Van Baren <gvb.uboot@gmail.com> 64213Date: Sat Jan 12 13:24:14 2008 -0500 64214 64215 Enable the isdram command on the MPC8360EMDS board 64216 64217 The isdram command prints out decoded information the "serial presence 64218 detect" (SPD) chip on the SDRAM SIMMs. This can be very helpful when 64219 debugging memory configuration problems. 64220 64221 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 64222 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64223 64224commit 8bd522ce4afda3d4868ee8c913f5394094326be1 64225Author: Dave Liu <r63238@freescale.com> 64226Date: Fri Jan 11 18:48:24 2008 +0800 64227 64228 mpc83xx: Add the support for MPC8315ERDB board 64229 64230 The features list: 64231 - Boot from NOR Flash 64232 - DDR2 266MHz hardcoded configuration 64233 - Local bus NOR Flash R/W operation 64234 - I2C, UART, MII and RTC 64235 - eTSEC0/1 support 64236 - PCI host 64237 64238 Signed-off-by: Dave Liu <daveliu@freescale.com> 64239 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64240 64241commit b05884efa614e4d8a9413158fc228e0dc02ab704 64242Author: Dave Liu <r63238@freescale.com> 64243Date: Fri Jan 11 18:46:50 2008 +0800 64244 64245 mpc83xx: Add config of eTSEC emergency priority in SPCR 64246 64247 The TSEC emergency priority definition of 831x/837x 64248 is different than the definition of 834x in SPCR register. 64249 64250 Add the other config of TSEC emergency priority into 64251 cpu_init.c 64252 64253 Signed-off-by: Dave Liu <daveliu@freescale.com> 64254 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64255 64256commit 9b958234b0783f13d92f007f753fd2c3ae2c8680 64257Author: Dave Liu <r63238@freescale.com> 64258Date: Fri Jan 11 18:42:19 2008 +0800 64259 64260 mpc83xx: Remove cache config from MPC8360ERDK.h 64261 64262 The MPC8360ERDK board support patch is added before 64263 the commit 2c5b48fc205c3e2752910da8f39209ed075929e5 64264 so, miss clean up it. 64265 64266 The patch clean up the miss cache config. 64267 64268 Signed-off-by: Dave Liu <daveliu@freescale.com> 64269 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64270 64271commit cd9d23053d435c08fc8695017b5cb9003fcda786 64272Author: Anton Vorontsov <avorontsov@ru.mvista.com> 64273Date: Mon Jan 14 23:09:32 2008 +0300 64274 64275 nand: FSL UPM NAND driver 64276 64277 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 64278 64279commit 6cb2239ae76faee64434286c4f8fc71374702dd2 64280Author: Kyungmin Park <kmpark@infradead.org> 64281Date: Tue Jan 15 08:59:44 2008 +0900 64282 64283 OneNAND: Separate U-Boot dependent code from OneNAND 64284 64285 OneNAND: Separate U-Boot dependent code from OneNAND 64286 64287 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 64288 64289commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164 64290Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 64291Date: Wed Jan 16 10:33:46 2008 +0100 64292 64293 ppc4xx: Sequoia coding style cleanup and beautification 64294 64295 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 64296 64297commit 4b3cc6ece9c455504cf12909fae38d085d848ac0 64298Author: Larry Johnson <lrj@acm.org> 64299Date: Tue Jan 15 14:35:58 2008 -0500 64300 64301 ppc4xx: Refactor ECC POST for AMCC Denali core 64302 64303 The ECC POST reported intermittent failures running after power-up on 64304 the Korat PPC440EPx board. Even when the test passed, the debugging 64305 output occasionally reported additional unexpected ECC errors. 64306 64307 This refactoring has three main objectives: (1) minimize the code 64308 executed with ECC enabled during the tests, (2) add more checking of the 64309 results so any unexpected ECC errors would cause the test to fail, and 64310 (3) use synchronization (only) where required by the processor. 64311 64312 Signed-off-by: Larry Johnson <lrj@acm.org> 64313 64314commit 2465665b73ac2f688af945b1ed510752afa816a4 64315Author: David Saada <David.Saada@ecitele.com> 64316Date: Tue Jan 15 10:40:24 2008 +0200 64317 64318 QE UEC: Extend number of supported UECs to 4 64319 64320 This patch extends the number of supported UECs to 4. Note that the 64321 problem of QE thread resources exhaustion is resolved by setting the 64322 correct number of QE threads according to Ethernet type (GBE or FE). 64323 64324 Signed-off-by: David Saada <david.saada@ecitele.com> 64325 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 64326 64327commit 58d204256cb1ce1bd323847d9f644acf70a72e6a 64328Author: Wolfgang Denk <wd@denx.de> 64329Date: Wed Jan 16 00:01:01 2008 +0100 64330 64331 LWMON5: enable hush shell as command line parser 64332 64333 Signed-off-by: Wolfgang Denk <wd@denx.de> 64334 64335commit 66ffb1883feedddc813d8a507d060f2a940eb2b2 64336Author: Wolfgang Denk <wd@denx.de> 64337Date: Tue Jan 15 17:22:28 2008 +0100 64338 64339 ADS5121: disable watchdog; enable image timestamps 64340 64341 Signed-off-by: Wolfgang Denk <wd@denx.de> 64342 64343commit 2b4f778fe9d1de61d7445bae7b325340aba6968d 64344Author: Wolfgang Denk <wd@denx.de> 64345Date: Tue Jan 15 17:21:28 2008 +0100 64346 64347 TK885D: fixes for bigger flash sector sizes on new modules; 64348 adjust default environment; 64349 disable SCC ethernet (not used on this board). 64350 64351 Signed-off-by: Wolfgang Denk <wd@denx.de> 64352 64353commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607 64354Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64355Date: Tue Jan 15 17:48:13 2008 +0900 64356 64357 pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver 64358 64359 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64360 64361commit 76e49aa7fb8e76cc49092c1acd53fff921e26360 64362Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64363Date: Tue Jan 15 23:25:25 2008 +0900 64364 64365 sh: Add support SH7710/SH7712 64366 64367 SH7710/SH7712 of SH3 CPU are supported. 64368 SH771X is called SH-Ether, and has the Ether controller in CPU. 64369 The driver of Ether is not included in this patch. 64370 64371 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64372 64373commit 63a11be68306870e04d3851ed9fa41955cdf4894 64374Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64375Date: Tue Jan 15 23:06:17 2008 +0900 64376 64377 sh: Add support of map_physmem() and unmap_physmem() to SuperH 64378 64379 This patch add the support of map_physmem() and unmap_physmem() 64380 used with Common Flash Interface(CFI) driver. 64381 64382 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64383 64384commit db3995fe5164ac5d630b7ecb96286a9828dfbb54 64385Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64386Date: Wed Jan 9 14:42:27 2008 +0900 64387 64388 sh: Add maintainer of MS7720SE to the MAINTAINER file 64389 64390 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64391 64392commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3 64393Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64394Date: Wed Jan 9 14:39:58 2008 +0900 64395 64396 sh: Fix board name in MS7720SE's config.mk 64397 64398 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64399 64400commit c0a04d93734d768b39dbb72fb501b65614c8615d 64401Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64402Date: Wed Jan 9 14:37:36 2008 +0900 64403 64404 sh: Add MS7720SE to MAKEALL 64405 64406 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64407 64408commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae 64409Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 64410Date: Mon Dec 3 22:58:50 2007 +0900 64411 64412 sh: Add support for MS7720RP02 board 64413 64414 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 64415 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64416 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64417 64418commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed 64419Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 64420Date: Wed Jan 9 14:30:02 2008 +0900 64421 64422 sh: Add support for SH7720 in serial_sh driver. 64423 64424 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 64425 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64426 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64427 64428commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403 64429Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 64430Date: Mon Dec 3 22:58:45 2007 +0900 64431 64432 sh: Add support SH3 and SH7720 64433 64434 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> 64435 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64436 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 64437 64438commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd 64439Author: Stefan Roese <sr@denx.de> 64440Date: Tue Jan 15 10:11:02 2008 +0100 64441 64442 ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c 64443 64444 Signed-off-by: Stefan Roese <sr@denx.de> 64445 64446commit 17bef68097ab3692500a36fb31115bff7910aa99 64447Author: Niklaus Giger <niklausgiger@gmx.ch> 64448Date: Mon Jan 14 14:04:42 2008 +0100 64449 64450 ppc_4xx: Fix post spr.c for PPC405 64451 64452 post/cpu/ppc4xx/spr.c contained a few checks for registers only present 64453 for PPC440 and derivates processor. 64454 64455 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 64456 64457commit 06c428bcd4413014b43236e77765022071424fa6 64458Author: Dave Liu <r63238@freescale.com> 64459Date: Mon Jan 14 11:12:01 2008 +0800 64460 64461 QE: fix compile warning 64462 64463 qe.c: In function 'qe_upload_firmware': 64464 qe.c:390: warning: pointer targets in passing argument 2 64465 uec.c: In function 'uec_initialize': 64466 uec.c:1236: warning: 'uec_info' may be used uninitialized 64467 64468 Signed-off-by: Dave Liu <daveliu@freescale.com> 64469 64470commit a0dd99d51efa55fe023e19c97ead92683725eb11 64471Author: Stefan Roese <sr@denx.de> 64472Date: Mon Jan 14 10:05:05 2008 +0100 64473 64474 ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit 64475 64476 Now that bit 29 is the USB PHY reset bit, update the Kilauea port 64477 to remove the USB PHY reset after powerup. The CPLD will keep the 64478 USB PHY in reset (active low) until the bit is set to 1 in 64479 board_early_init_f(). 64480 64481 Signed-off-by: Stefan Roese <sr@denx.de> 64482 64483commit f43ad53908f1ea83a7c26c3505bbe84382e47aad 64484Author: Wolfgang Denk <wd@denx.de> 64485Date: Sun Jan 13 23:26:45 2008 +0100 64486 64487 ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree 64488 64489 Signed-off-by: Wolfgang Denk <wd@denx.de> 64490 64491commit 8d103071b7b0e3ec888859bfcb9d422565e6d750 64492Author: Wolfgang Denk <wd@denx.de> 64493Date: Sun Jan 13 23:37:50 2008 +0100 64494 64495 ADS5121: Fix typo in ads5121.c, adjust default environment 64496 64497 Signed-off-by: Wolfgang Denk <wd@denx.de> 64498 64499commit 51b67d06faa670c65de6f29ec5b5aace74b2a047 64500Author: John Rigby <jrigby@freescale.com> 64501Date: Fri Aug 24 18:18:43 2007 -0600 64502 64503 ADS5121: MAX slew rate for PATA pins 64504 64505 Signed-off-by: John Rigby <jrigby@freescale.com> 64506 64507commit dd531aac34aaad138f16cacdb51d61908d59c0e2 64508Author: Wolfgang Denk <wd@denx.de> 64509Date: Sun Jan 13 21:05:52 2008 +0100 64510 64511 Fix Makefile dependency problem with parallel builds. 64512 64513 Signed-off-by: Wolfgang Denk <wd@denx.de> 64514 64515commit 89967841e3ea02e3d0e5e1295ab687576e5b1089 64516Author: Wolfgang Denk <wd@denx.de> 64517Date: Sun Jan 13 19:51:39 2008 +0100 64518 64519 MPC8544DS: fix board Makefile for silent build (with -s) 64520 64521 Signed-off-by: Wolfgang Denk <wd@denx.de> 64522 64523commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88 64524Author: Wolfgang Denk <wd@denx.de> 64525Date: Sun Jan 13 16:44:08 2008 +0100 64526 64527 PMC440 board: fix board Makefile for out-of-tree building 64528 64529 Signed-off-by: Wolfgang Denk <wd@denx.de> 64530 64531commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2 64532Author: Wolfgang Denk <wd@denx.de> 64533Date: Sun Jan 13 16:07:44 2008 +0100 64534 64535 Makalu: fix compile warning 64536 64537 Signed-off-by: Wolfgang Denk <wd@denx.de> 64538 64539commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0 64540Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 64541Date: Sun Jan 13 12:36:12 2008 +0100 64542 64543 cmd_nand : fix compiler warning. 64544 64545 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 64546 64547commit 8225d1e3ac0ab147cdde4b0042812583380afb8a 64548Author: Michael Schwingen <rincewind@discworld.dascon.de> 64549Date: Sat Jan 12 20:29:47 2008 +0100 64550 64551 CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation 64552 64553 Signed-off-by: Michael Schwingen <michael@schwingen.org> 64554 Acked-by: Stefan Roese <sr@denx.de> 64555 64556commit 2b2f43ed6a30ece77f76191c845ac95267daa31a 64557Author: Wolfgang Denk <wd@denx.de> 64558Date: Sun Jan 13 02:19:44 2008 +0100 64559 64560 MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES 64561 64562 Signed-off-by: Wolfgang Denk <wd@denx.de> 64563 64564commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d 64565Author: Wolfgang Denk <wd@denx.de> 64566Date: Sun Jan 13 02:19:13 2008 +0100 64567 64568 MPC8xx FEC driver: fix compiler warning. 64569 64570 Signed-off-by: Wolfgang Denk <wd@denx.de> 64571 64572commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b 64573Author: Wolfgang Denk <wd@denx.de> 64574Date: Sun Jan 13 00:59:21 2008 +0100 64575 64576 Fix Makefile dependencies issues; allow silent build 64577 64578 - get rid of "version" target whichdidn't really work 64579 - make autoconf.mk depend on version_autogenerated.h to make sure 64580 to rebuild files as needed 64581 - add XECHO macro to allow for silent build using "make -s" 64582 64583 Signed-off-by: Wolfgang Denk <wd@denx.de> 64584 64585commit e343ab83d5135b558aa58db9be8fc7faa68d77ed 64586Author: Wolfgang Denk <wd@denx.de> 64587Date: Sun Jan 13 00:55:47 2008 +0100 64588 64589 ADS5121e: fix compile warning 64590 64591 Signed-off-by: Wolfgang Denk <wd@denx.de> 64592 64593commit f2b6f4610627fe3d607620e25082916a01538875 64594Author: Wolfgang Denk <wd@denx.de> 64595Date: Sun Jan 13 00:55:18 2008 +0100 64596 64597 MUNICes: fix board Makefile for remote build directory 64598 64599 Signed-off-by: Wolfgang Denk <wd@denx.de> 64600 64601commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a 64602Author: Oliver Weber <almoeli@gmx.de> 64603Date: Wed Jan 9 17:04:38 2008 +0100 64604 64605 MPC5200: don't use hardcoded MBAR address in Bestcomm firmware 64606 64607 Signed-off-by: Oliver Weber <almoeli@gmx.de> 64608 64609commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f 64610Author: Andreas Engel <andreas.engel@ericsson.com> 64611Date: Wed Jan 9 17:10:56 2008 +0100 64612 64613 Make bootretry work when command line editing is enabled 64614 64615 Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work. 64616 This patch fixes the problem. 64617 64618 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com> 64619 64620commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4 64621Author: Larry Johnson <lrj@acm.org> 64622Date: Fri Jan 11 23:26:18 2008 -0500 64623 64624 Refactor code for "i2c sdram" command 64625 64626 Signed-off-by: Larry Johnson <lrj@acm.org> 64627 64628commit 0df6b8446c4721b91ce311548114891130371083 64629Author: Larry Johnson <lrj@acm.org> 64630Date: Thu Jan 10 22:23:39 2008 -0500 64631 64632 Fix "i2c sdram" command for DDR2 DIMMs 64633 64634 Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the 64635 "i2c sdram" command. This patch provides correct alternative 64636 interpretations when DDR2 memory is detected. 64637 64638 Signed-off-by: Larry Johnson <lrj@acm.org> 64639 64640commit 64134f011254123618798ff77c42ba196b2ec485 64641Author: Wolfgang Denk <wd@denx.de> 64642Date: Sat Jan 12 20:31:39 2008 +0100 64643 64644 Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections 64645 64646 With recent toolchain versions, some boards would not build because 64647 or errors like this one (here for ocotea board when building with 64648 ELDK 4.2 beta): 64649 ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab] 64650 64651 For many boards, the .bss section is big enough that it wraps around 64652 at the end of the address space (0xFFFFFFFF), so the problem will not 64653 be visible unless you use a 64 bit tool chain for development. On 64654 some boards however, changes to the code size (due to different 64655 optimizations) we bail out with section overlaps like above. 64656 64657 The fix is to add the NOLOAD attribute to the .bss and .sbss 64658 sections, telling the linker that .bss does not consume any space in 64659 the image. 64660 64661 Signed-off-by: Wolfgang Denk <wd@denx.de> 64662 64663commit 3afac79ec27b91df185f090b31dad9620779f440 64664Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 64665Date: Fri Jan 11 20:42:58 2008 -0600 64666 64667 USB: Add Philips 1561 PCI-OHCI ids 64668 (needed for M5475EVB) 64669 64670 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 64671 64672commit 5e8def6731cd7bec74bff42a16b139de04010353 64673Author: Wolfgang Denk <wd@denx.de> 64674Date: Sat Jan 12 15:51:34 2008 +0100 64675 64676 Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101 64677 boards. 64678 64679 Signed-off-by: Heiko Schocher <hs@denx.de> 64680 Signed-off-by: Wolfgang Denk <wd@denx.de> 64681 64682commit 5d49e0e152a8b81cc0602271e8fd259371f559b7 64683Author: Grzegorz Bernacki <gjb@semihalf.com> 64684Date: Fri Jan 11 12:03:43 2008 +0100 64685 64686 MPC512X: Cleanup bus clock names. 64687 64688 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 64689 64690commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d 64691Author: Grzegorz Bernacki <gjb@semihalf.com> 64692Date: Tue Jan 8 17:16:59 2008 +0100 64693 64694 MPC512X: Fixed typo in macro name. 64695 64696 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 64697 64698commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363 64699Author: Grzegorz Bernacki <gjb@semihalf.com> 64700Date: Tue Jan 8 17:16:15 2008 +0100 64701 64702 ads5121: Added support for FDT. 64703 64704 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 64705 64706commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719 64707Author: Wolfgang Denk <wd@denx.de> 64708Date: Sat Jan 12 01:05:50 2008 +0100 64709 64710 Coding Style cleanup; update CHANGELOG. 64711 64712 Signed-off-by: Wolfgang Denk <wd@denx.de> 64713 64714commit f6db945649e5e9d0c7efe33b507d243cdc86cf03 64715Author: Heiko Schocher <hs@denx.de> 64716Date: Fri Jan 11 15:15:17 2008 +0100 64717 64718 Fixed syntax error in function init_e300_core() of mpc83xx/start.S if 64719 64720 Signed-off-by: Timur Tabi <timur@freescale.com> 64721 Signed-off-by: Heiko Schocher <hs@denx.de> 64722 64723commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c 64724Author: Heiko Schocher <hs@denx.de> 64725Date: Fri Jan 11 15:15:16 2008 +0100 64726 64727 MUNICes: Set the right CFG_DEFAULT_MBAR value. 64728 64729 Signed-off-by: Heiko Schocher <hs@denx.de> 64730 64731commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2 64732Author: Heiko Schocher <hs@denx.de> 64733Date: Fri Jan 11 15:15:15 2008 +0100 64734 64735 added the config File for the MUNICes board. 64736 64737 Signed-off-by: Heiko Schocher <hs@denx.de> 64738 64739commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d 64740Author: Heiko Schocher <hs@denx.de> 64741Date: Fri Jan 11 15:15:14 2008 +0100 64742 64743 added basic support for the MUNICes board. 64744 64745 Signed-off-by: Heiko Schocher <hs@denx.de> 64746 64747commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19 64748Author: Wolfgang Denk <wd@denx.de> 64749Date: Sat Jan 12 00:39:37 2008 +0100 64750 64751 Update CHANGELOG and MAINTAINERS files. 64752 64753 Signed-off-by: Wolfgang Denk <wd@denx.de> 64754 64755commit 5ba7390c3cb579172be66888a371707b47b5be4e 64756Author: Anatolij Gustschin <agust@denx.de> 64757Date: Fri Jan 11 02:15:02 2008 +0100 64758 64759 Fix compilation problem in common/cmd_bmp.c 64760 64761 common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP 64762 isn't defined. This patch fix this. 64763 64764 Signed-off-by: Anatolij Gustschin <agust@denx.de> 64765 64766commit 5aa437baae5fe629abeab99bef793a2a1fc71b58 64767Author: Heiko Schocher <hs@denx.de> 64768Date: Fri Jan 11 01:12:09 2008 +0100 64769 64770 Fix defaultconfig for the mgcoge board. 64771 64772 Signed-off-by: Heiko Schocher <hs@denx.de> 64773 64774commit ac9db066b26935f31bff15c98168b19faeb603f3 64775Author: Heiko Schocher <hs@denx.de> 64776Date: Fri Jan 11 01:12:08 2008 +0100 64777 64778 Added support for the mgcoge board from keymile. 64779 64780 Signed-off-by: Heiko Schocher <hs@denx.de> 64781 64782commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818 64783Author: Heiko Schocher <hs@denx.de> 64784Date: Fri Jan 11 01:12:07 2008 +0100 64785 64786 Enable SMC microcode relocation patch for SMC1. 64787 64788 Signed-off-by: Heiko Schocher <hs@denx.de> 64789 64790commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7 64791Author: Heiko Schocher <hs@denx.de> 64792Date: Fri Jan 11 01:12:06 2008 +0100 64793 64794 Added support for the mgsuvd board from keymile. 64795 64796 Signed-off-by: Heiko Schocher <hs@denx.de> 64797 64798commit bf05293973b348f6946c9df92cd3c65ece42d0be 64799Author: James Yang <james.yang@freescale.com> 64800Date: Thu Jan 10 16:02:07 2008 -0600 64801 64802 Fix 64-bit vsprintf. 64803 64804 There were some size and unsigned problems. 64805 Also add support for "ll" size modifier in format string like glibc 64806 64807 Signed-off-by: James Yang <James.Yang@freescale.com> 64808 Acked-by: Jon Loeliger <jdl@freescale.com> 64809 64810commit 92fa37eac530860643afa26ae347af3d23d67309 64811Author: Larry Johnson <lrj@acm.org> 64812Date: Wed Jan 9 12:42:35 2008 -0500 64813 64814 Remove superfluous preprocessor conditionals from LM73 driver 64815 64816 (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE". 64817 64818 (2) Use conditional Makefile.o. 64819 64820 Signed-off-by: Larry Johnson <lrj@acm.org> 64821 64822commit efc6f447c1b940d1650c4b854c5598a595ddc3da 64823Author: Guennadi Liakhovetski <lg@denx.de> 64824Date: Thu Jan 10 17:59:07 2008 +0100 64825 64826 Add support for the TK885D baseboard from TELE-DATA 64827 64828 The TK885D board uses a TQM885D module from TQ, this port adds an 64829 own configuration file and adds a last_stage_init() method to 64830 configure the two PHYs, depending on the phy_auto_nego environment 64831 variable. 64832 64833 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 64834 64835commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89 64836Author: Kumar Gala <galak@kernel.crashing.org> 64837Date: Thu Jan 10 02:22:05 2008 -0600 64838 64839 Fix compiler warning 64840 64841 main.c: In function 'readline_into_buffer': 64842 main.c:927: warning: unused variable 'p_buf' 64843 64844 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 64845 64846commit bed53753dd1d7e6bcbea4339be0fb7760214cc35 64847Author: Anatolij Gustschin <agust@denx.de> 64848Date: Fri Jan 11 14:30:01 2008 +0100 64849 64850 Add Fujitsu CoralP/Lime video driver 64851 64852 Signed-off-by: Anatolij Gustschin <agust@denx.de> 64853 Signed-off-by: Rodolfo Giometti <giometti@linux.it> 64854 64855commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058 64856Author: Anatolij Gustschin <agust@denx.de> 64857Date: Fri Jan 11 02:39:47 2008 +0100 64858 64859 Fix video console newline and carriage return handling 64860 64861 Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS 64862 are not displayed correctly. This is an attempt to fix 64863 this issue. Also add carriage return handling. 64864 64865 Signed-off-by: Anatolij Gustschin <agust@denx.de> 64866 Signed-off-by: Rodolfo Giometti <giometti@linux.it> 64867 64868commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093 64869Author: Stefan Roese <sr@denx.de> 64870Date: Fri Jan 11 15:53:58 2008 +0100 64871 64872 ppc4xx: Fix sdram init on Sequoia boards 64873 64874 Clear possible errors in MCSR resulting from data-eye-search. 64875 If not done, then we could get an interrupt later on when 64876 exceptions are enabled. 64877 64878 Signed-off-by: Stefan Roese <sr@denx.de> 64879 64880commit d610a60730b7464f6f659db49d264d89a7c71061 64881Author: Anatolij Gustschin <agust@denx.de> 64882Date: Fri Jan 11 15:31:09 2008 +0100 64883 64884 ppc4xx: Rework Lime support for lwmon5 64885 64886 Rework Lime support for lwmon5 using new video driver 64887 64888 Signed-off-by: Anatolij Gustschin <agust@denx.de> 64889 64890commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0 64891Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 64892Date: Fri Jan 11 14:55:16 2008 +0100 64893 64894 ppc4xx: Update PMC440 config file 64895 64896 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 64897 64898commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea 64899Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 64900Date: Fri Jan 11 14:55:08 2008 +0100 64901 64902 ppx4xx: Fix sdram init on PMC440 boards 64903 64904 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 64905 64906commit 061aad4d320dddce26247699dcf2875ee2ea1366 64907Author: Dave Liu <r63238@freescale.com> 64908Date: Thu Jan 10 23:09:33 2008 +0800 64909 64910 mpc83xx: Fix the bug of 266MHz data rate DDR 64911 64912 The DDR doesn't work on the 266MHz data rate, 64913 the patch fix the bug. 64914 64915 Signed-off-by: Dave Liu <daveliu@freescale.com> 64916 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64917 64918commit ded08317ad9e340b887bf2eb46e9565a0f610a93 64919Author: Dave Liu <r63238@freescale.com> 64920Date: Thu Jan 10 23:08:26 2008 +0800 64921 64922 mpc83xx: Make the code more readable 64923 64924 Format the code, make it more readable 64925 64926 Signed-off-by: Dave Liu <daveliu@freescale.com> 64927 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64928 64929commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0 64930Author: Dave Liu <r63238@freescale.com> 64931Date: Thu Jan 10 23:07:23 2008 +0800 64932 64933 mpc83xx: Reduce the latency of DDR 64934 64935 Reduce the AL from 2 to 1 clock to improve the performance. 64936 64937 Signed-off-by: Dave Liu <daveliu@freescale.com> 64938 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64939 64940commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28 64941Author: Dave Liu <r63238@freescale.com> 64942Date: Thu Jan 10 23:06:05 2008 +0800 64943 64944 mpc83xx: Fix the wrong definition of MPC8315E 64945 64946 According to the latest user manual of MPC8315E, 64947 1) The SVCOD of HRCWL is different than 837x 64948 2) The SCCR has changes 64949 64950 Signed-off-by: Dave Liu <daveliu@freescale.com> 64951 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64952 64953commit ec2638ea08a537a1bd409db873aaaa33a053ebae 64954Author: Dave Liu <r63238@freescale.com> 64955Date: Thu Jan 10 23:05:00 2008 +0800 64956 64957 mpc83xx: Fix the typo in mpc83xx.h 64958 64959 The SPCR about TSEC priority is wrong. 64960 64961 Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com> 64962 Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com> 64963 Signed-off-by: Dave Liu <daveliu@freescale.com> 64964 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64965 64966commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b 64967Author: Dave Liu <r63238@freescale.com> 64968Date: Thu Jan 10 23:04:13 2008 +0800 64969 64970 mpc83xx: Fix the typo in global data struct 64971 64972 Fix the typo in global_data.h 64973 64974 Signed-off-by: Dave Liu <daveliu@freescale.com> 64975 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64976 64977commit 2c5b48fc205c3e2752910da8f39209ed075929e5 64978Author: Dave Liu <r63238@freescale.com> 64979Date: Thu Jan 10 23:03:03 2008 +0800 64980 64981 mpc83xx: Remove cache config from config.h 64982 64983 clean up the cache config from configs.h of board 64984 64985 Signed-off-by: Dave Liu <daveliu@freescale.com> 64986 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 64987 64988commit fab6f556bbbbd1bb35a5433161f7f173c18df559 64989Author: Anton Vorontsov <avorontsov@ru.mvista.com> 64990Date: Wed Jan 9 20:57:47 2008 +0300 64991 64992 mpc83xx: add support for the MPC8360E-RDK 64993 64994 This is MPC8360E based board with: 64995 - 256MB fixed SDRAM; 64996 - 8MB Intel Strata NOR flash; 64997 - StMICRO 64MiB NAND flash; 64998 - two 10/100/1000 ethernet ports connected via Broadcom 64999 BCM5481 PHYs; 65000 - two 10/100 ethernet ports connected via National
65001 DP83848 PHYs; 65002 - one PCI and one miniPCI slots; 65003 - four serial ports (two NS16550-compatible, two UCCs); 65004 - four USB ports working through MPC8360E "FHCI" USB controller; 65005 - Fujitsu MB86277 graphics controller; 65006 - Analog to Digital Converter/Touchscreen controller, AD7843 65007 connected to SPI. 65008 65009 Features not supported in this patch are: 65010 - StMICRO 64MiB NAND flash (patch sent); 65011 - MINT framebuffer initialization (patch is pending); 65012 - Fetching production information from the EEPROM via I2C; 65013 - FHCI USB; 65014 - Two slow UCCs used as RS-485 UARTs. 65015 65016 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 65017 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 65018 65019commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb 65020Author: Anton Vorontsov <avorontsov@ru.mvista.com> 65021Date: Wed Jan 9 20:57:40 2008 +0300 65022 65023 mpc83xx: add "fsl, qe" compatible fixups 65024 65025 New device trees will use "fsl,qe" compatible properties. 65026 65027 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 65028 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 65029 65030commit 977b57583a7c34010e566a09a679ec3c1836f996 65031Author: Kim Phillips <kim.phillips@freescale.com> 65032Date: Wed Jan 9 15:24:06 2008 -0600 65033 65034 mpc83xx: add missing CONFIG_HAS_ETH0 defines 65035 65036 the new libfdt code only updates eth0 if CONFIG_HAS_ETH0 65037 is defined; add the define to the missing board configs. 65038 65039 Thanks to Emilian Medve for finding this. 65040 65041 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 65042 65043commit b830b7f1635984ba607219fcbd78597c28eeb529 65044Author: Becky Bruce <bgill@freescale.com> 65045Date: Thu Jan 10 14:00:28 2008 -0600 65046 65047 86xx: Support 2GB DIMMs 65048 65049 Configure the number of bits used to address the banks inside the SDRAM 65050 device. The default register value of 0 means 2 bits to address 4 banks. 65051 Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks. 65052 65053 Signed-off-by: Becky Bruce <bgill@freescale.com> 65054 65055commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed 65056Author: Niklaus Giger <niklausgiger@gmx.ch> 65057Date: Thu Jan 10 18:50:33 2008 +0100 65058 65059 ppc4xx: Make Sequoia boot vxWorks 65060 65061 vxWorks expects in 65062 TLB 0 a entry for the Machine Check interrupt 65063 TLB 1 a entry for the RAM 65064 TLB 2 a entry for the EBC 65065 TLB 3 a entry for the boot flash 65066 65067 After changing the baudrate to 9600 I had no problems to boot the 65068 vxWorks image as distributed by WindRiver (Revision 2.0/1 from 65069 June 18, 2007) 65070 65071 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 65072 65073commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d 65074Author: Larry Johnson <lrj@arlinx.com> 65075Date: Wed Jan 9 23:10:27 2008 -0500 65076 65077 ppc4xx: Fix dflush() to restore DVLIM register 65078 65079 Signed-off-by: Larry Johnson <lrj@acm.org> 65080 65081commit 252f60b068d1f94190b5bcfda169db582387e15e 65082Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65083Date: Thu Jan 10 03:52:44 2008 -0500 65084 65085 Nios2: remove common/cmd_bdinfo.c unused variable. 65086 65087 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65088 Signed-off-by: Scott McNutt <smcnutt@psyent.com> 65089 65090commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c 65091Author: Ben Warren <biggerbadderben@gmail.com> 65092Date: Wed Jan 9 18:15:53 2008 -0500 65093 65094 Fix Ethernet init() return codes 65095 65096 Change return values of init() functions in all Ethernet drivers to conform 65097 to the following: 65098 65099 >=0: Success 65100 <0: Failure 65101 65102 All drivers going forward should return 0 on success. Current drivers that 65103 return 1 on success were left as-is to minimize changes. 65104 65105 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 65106 Acked-by: Stefan Roese <sr@denx.de> 65107 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65108 Acked-by: Kim Phillips <kim.phillips@freescale.com> 65109 Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 65110 Acked-By: Timur Tabi <timur@freescale.com> 65111 65112commit d3a6532cbe263d992f49e86ac95bede28e96f9c8 65113Author: Wolfgang Denk <wd@denx.de> 65114Date: Thu Jan 10 00:55:14 2008 +0100 65115 65116 Coding Style cleanup; update CHANGELOG 65117 65118 Signed-off-by: Wolfgang Denk <wd@denx.de> 65119 65120commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7 65121Author: Kim Phillips <kim.phillips@freescale.com> 65122Date: Wed Jan 9 16:56:54 2008 -0600 65123 65124 Add QE brg freq and correct qe bus freq fdt update code 65125 65126 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 65127 Signed-off-by: Andy Fleming <afleming@freescale.com> 65128 65129commit 890dfef06c2d169a3356359596890754dfb8ee1c 65130Author: Andy Fleming <afleming@freescale.com> 65131Date: Wed Jan 9 16:34:51 2008 -0600 65132 65133 Remove cache config from ATUM8548 and sbc8548 configs 65134 65135 These boards weren't updated by Kumar's config patch because they 65136 weren't in the tree, yet. 65137 65138 Signed-off-by: Andy Fleming <afleming@freescale.com> 65139 65140commit b8ec2385038c094b07ec5b49336289a46b6e9cc6 65141Author: Timur Tabi <timur@freescale.com> 65142Date: Mon Jan 7 13:31:19 2008 -0600 65143 65144 85xx: add ability to upload QE firmware 65145 65146 Define the layout of a binary blob that contains a QE firmware and instructions 65147 on how to upload it. Add function qe_upload_firmware() to parse the blob and 65148 perform the actual upload. Add command-line command "qe fw" to take a firmware 65149 blob in memory and upload it. Update ft_cpu_setup() on 85xx to create the 65150 'firmware' device tree node if U-Boot has uploaded a firmware. Fully define 65151 'struct rsp' in immap_qe.h to include the actual RISC Special Registers. 65152 65153 Signed-off-by: Timur Tabi <timur@freescale.com> 65154 65155commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe 65156Author: Kumar Gala <galak@kernel.crashing.org> 65157Date: Tue Jan 8 01:22:21 2008 -0600 65158 65159 85xx: Remove cache config from configs.h 65160 65161 Either use the standard defines in asm/cache.h or grab the information 65162 at runtime from the L1CFG SPR. 65163 65164 Also, minor cleanup in cache.h to make the code a bit more readable. 65165 65166 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 65167 65168commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96 65169Author: robert lazarski <robertlazarski@gmail.com> 65170Date: Fri Dec 21 10:39:27 2007 -0500 65171 65172 mpc85xx: Add support for ATUM8548 (updated) 65173 65174 Add support for Instituto Atlantico's ATUM8548 board 65175 65176 Signed-off-by: robert lazarski <robertlazarski@gmail.com> 65177 Signed-off-by: Andy Fleming <afleming@freescale.com> 65178 65179commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc 65180Author: robert lazarski <robertlazarski@gmail.com> 65181Date: Fri Dec 21 10:36:37 2007 -0500 65182 65183 mpc85xx: Add support for ATUM8548 (updated) 65184 65185 Add support for Instituto Atlantico's ATUM8548 board 65186 65187 Signed-off-by: robert lazarski <robertlazarski@gmail.com> 65188 65189commit 9e3ed392d2c8965e24c942b58796c31c644c2f70 65190Author: Joe Hamman <joe.hamman@embeddedspecialties.com> 65191Date: Thu Dec 13 06:45:14 2007 -0600 65192 65193 mpc85xx: Add support for SBC8548 (updated) 65194 65195 Add support for Wind River's SBC8548 reference board. 65196 65197 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com> 65198 65199commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586 65200Author: Joe Hamman <joe.hamman@embeddedspecialties.com> 65201Date: Thu Dec 13 06:45:08 2007 -0600 65202 65203 mpc85xx: Add support for SBC8548 (updated) 65204 65205 Add support for Wind River's SBC8548 reference board. 65206 65207 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com> 65208 Signed-off by: Andy Fleming <afleming@freescale.com> 65209 65210commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594 65211Author: Anton Vorontsov <avorontsov@ru.mvista.com> 65212Date: Mon Oct 22 19:58:19 2007 +0400 65213 65214 MPC8568E-MDS: set up QE pario for UART1 65215 65216 To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should 65217 be set up appropriately. 65218 65219 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 65220 65221commit ad162249cb371e9e38971676f09be791e5f3cf4a 65222Author: Anton Vorontsov <avorontsov@ru.mvista.com> 65223Date: Mon Oct 22 18:12:46 2007 +0400 65224 65225 MPC8568E-MDS: reset UCCs to use them reliably 65226 65227 In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset 65228 UCCs. 65229 65230 p.s Similar code exists in the Linux kernel board file (for capability 65231 reasons with older U-Boots), but should be removed some day. 65232 65233 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 65234 65235commit 2146cf56821c3364786ca94a7306008c5824b238 65236Author: Kumar Gala <galak@kernel.crashing.org> 65237Date: Wed Dec 19 01:18:15 2007 -0600 65238 65239 Reworked FSL Book-E TLB macros to be more readable 65240 65241 The old macros made it difficult to know what WIMGE and perm bits 65242 were set for a TLB entry. Actually use the bit masks for these items 65243 since they are only a single bit. 65244 65245 Also moved the macros into mmu.h out of e500.h since they aren't specific 65246 to e500. 65247 65248 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 65249 65250commit 1d47273d46925929f8f2c1913cd96d7257aade88 65251Author: Kumar Gala <galak@kernel.crashing.org> 65252Date: Tue Dec 18 23:21:51 2007 -0600 65253 65254 Use FSL Book-E MMU macros from Linux Kernel 65255 65256 Grab the FSL Book-E MAS register macros from Linux. Also added 65257 defines for page sizes up to 4TB and removed SHAREN since it doesnt 65258 really exist. 65259 65260 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 65261 65262commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37 65263Author: Andy Fleming <afleming@freescale.com> 65264Date: Wed Jan 9 13:51:32 2008 -0600 65265 65266 Fix my own merge stupidity 65267 65268 Way back in August I merged Heiko's patch: 65269 566a494f592: [PCS440EP] upgrade the PCS440EP board 65270 65271 with Jon's CONFIG_COMMANDS patches. 65272 65273 This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78 65274 65275 However, in the process, I left out some of Heiko's good changes. 65276 65277 Now Heiko's and Jon's patches are properly merged in fat_register_device() 65278 65279 Signed-off-by: Andy Fleming <afleming@freescale.com> 65280 65281commit 6636b62a6efc7f14e6e788788631ae7a7fca4537 65282Author: James Yang <James.Yang@freescale.com> 65283Date: Wed Jan 9 11:17:49 2008 -0600 65284 65285 Expose parse_line() globally. 65286 65287 Add new function readline_into_buffer() that allows the 65288 output of readline to be put into a pointer to char buffer. 65289 65290 This refactoring allows other functions besides the 65291 main command loop to also use the same input mechanism. 65292 65293 Signed-off-by: James Yang <James.Yang@freescale.com> 65294 Acked-by: Jon Loeliger <jdl@freescale.com> 65295 65296commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25 65297Author: Guennadi Liakhovetski <lg@denx.de> 65298Date: Wed Jan 9 01:15:25 2008 +0100 65299 65300 trivial: fix consequences of a bad merge 65301 65302 Fix what looks like a merge artifact. 65303 65304 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 65305 65306commit 4785a694c0045996ccf0ac5b8edf531efc1b730e 65307Author: Zhang Wei <wei.zhang@freescale.com> 65308Date: Thu Jan 3 10:51:15 2008 +0800 65309 65310 Add Ctrl combo key support to usb keyboard driver. 65311 65312 Ctrl combo key support is added, which is very useful to input Ctrl-C 65313 for interrupt current job. 65314 Also add usb_event_poll() calling to usb_kbd_testc(), which can get 65315 key input when tstc() is called. 65316 65317 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 65318 65319commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d 65320Author: Marcel Ziswiler <marcel@ziswiler.com> 65321Date: Sun Dec 30 03:30:56 2007 +0100 65322 65323 fix various comments 65324 65325 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 65326 65327commit 7817cb2083d982923752fe0f12b67c0e7c09a027 65328Author: Marcel Ziswiler <marcel@ziswiler.com> 65329Date: Sun Dec 30 03:30:46 2007 +0100 65330 65331 fix comments with new drivers organization 65332 65333 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 65334 65335commit a9b410dc7d2a4721c408b13abfc037988150f145 65336Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 65337Date: Fri Dec 28 12:50:59 2007 +0900 65338 65339 Remove the obsolete terse version of do_mii() 65340 65341 We now have more useful version of do_mii() and everybody use it. 65342 Gerald Van Baren says: 65343 65344 > When I originally wrote the mii command 6(!) years ago, I wrote a 65345 > verbose version that printed human readable decomposition of the flags, 65346 > etc., and a terse one that didn't print as much stuff and thus had a 65347 > smaller memory footprint. 65348 > 65349 > It sounds like the terse version has withered and died, apparently 65350 > people are only using the verbose version (which is very understandable, 65351 > I do myself). 65352 65353 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 65354 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 65355 65356commit 01c687aa6e065bd4faf80f723361e798941dd6b0 65357Author: Mike Frysinger <vapier@gentoo.org> 65358Date: Thu Dec 27 13:42:56 2007 -0500 65359 65360 Do not reference sha1.c when building mkimage. 65361 65362 remove sha1.o from mkimage linking since it isn't actually used. 65363 65364 Signed-Off-By: Mike Frysinger <vapier@gentoo.org> 65365 65366commit b9173af73e524d37c812f210173cf83385c5171a 65367Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 65368Date: Thu Dec 27 15:39:54 2007 +0900 65369 65370 common/cmd_mii.c: Add sanity argc check 65371 65372 If type mii command without arguments, we suffer from uninitialized argv[] 65373 entries; for example we MIPS get stuck by TLB error. 65374 65375 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 65376 65377commit 500856eb1707ed17d9204baa61dd59948d3b2899 65378Author: Rafal Jaworowski <raj@semihalf.com> 65379Date: Wed Jan 9 19:39:36 2008 +0100 65380 65381 API for external applications. 65382 65383 This is an API for external (standalone) applications running on top of 65384 U-Boot, and is meant to be more extensible and robust than the existing 65385 jumptable mechanism. It is similar to UNIX syscall approach. See api/README 65386 for more details. 65387 65388 Included is the demo application using this new framework (api_examples). 65389 65390 Please note this is still an experimental feature, and is turned off by 65391 default. 65392 65393 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 65394 65395commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1 65396Author: Jon Loeliger <jdl@freescale.com> 65397Date: Wed Jan 9 12:14:55 2008 -0600 65398 65399 86xx: Remove cache config from configs.h 65400 65401 Just use the standard defines in asm/cache.h. 65402 65403 Signed-off-by: Jon Loeliger <jdl@freescale.com> 65404 65405commit 26a41790f8eba19ad450e18ae91351daf485b3e2 65406Author: Rafal Jaworowski <raj@semihalf.com> 65407Date: Wed Jan 9 18:05:27 2008 +0100 65408 65409 Globalize envmatch() 65410 65411 The newly introduced API (routines related to env vars) will need to call 65412 it. 65413 65414 Signed-off-by: Rafal Zabdyr <armo@semihalf.com> 65415 65416commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f 65417Author: Jon Loeliger <jdl@freescale.com> 65418Date: Fri Jan 4 12:07:27 2008 -0600 65419 65420 Convert MPC8610HPCD to use libfdt. 65421 65422 Assumes the presence of the aliases node in the DTS to 65423 locate the pci and serial nodes for fixups. 65424 65425 Use consistent fdtaddr and fdtfile in environment variables. 65426 65427 Signed-off-by: Jon Loeliger <jdl@freescale.com> 65428 65429commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60 65430Author: Jon Loeliger <jdl@freescale.com> 65431Date: Fri Jan 4 11:58:23 2008 -0600 65432 65433 8610: Fix lingering compile warnings. 65434 65435 Turn off DEBUG. 65436 65437 Signed-off-by: Jon Loeliger <jdl@freescale.com> 65438 65439commit 6007f3251c0967adc13f2ed8be1b924ddc30124d 65440Author: Wolfgang Denk <wd@denx.de> 65441Date: Wed Jan 9 15:14:46 2008 +0100 65442 65443 Coding Style cleanup, update CHANGELOG 65444 65445 Signed-off-by: Wolfgang Denk <wd@denx.de> 65446 65447commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9 65448Author: Mike Frysinger <vapier@gentoo.org> 65449Date: Tue Dec 18 04:29:55 2007 -0500 65450 65451 fix easylogo on big endian dev systems 65452 65453 didnt realize how out of shape easylogo actually was until i tried using it. 65454 this patch does byte swapping as need be on the input tga header since the tga 65455 is in little endian but the host could just as well be big endian. i didnt 65456 bother using bswap macros or such stuff from system headers as nothing in 65457 POSIX dictates byte swapping functionality. 65458 65459 Signed-Off-By: Mike Frysinger <vapier@gentoo.org> 65460 65461commit 38d299c2db81bd889c601b5dfc12c4e83ef83333 65462Author: Mike Frysinger <vapier@gentoo.org> 65463Date: Tue Dec 18 03:23:25 2007 -0500 65464 65465 cleanup easylogo 65466 65467 - make the Makefile not suck 65468 - include proper headers for prototypes 65469 - fix obvious broken handling of strchr() when handling '.' in filenames 65470 65471 Signed-Off-By: Mike Frysinger <vapier@gentoo.org> 65472 65473commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c 65474Author: raptorbrino@aim.com <raptorbrino@aim.com> 65475Date: Thu Dec 13 21:23:28 2007 -0500 65476 65477 Fix build problems under Cygwin 65478 65479 This patch allows u-boot to build without error in a cygwin 65480 environment. Cygwin does not define __u64 in it's 65481 include/asm/types.h file. The -idirafter flag in the u-boot 65482 build causes the inclusion of the cygwin types.h file as opposed 65483 to u-bot/include/asm/types.h file which does define __u64. 65484 Subsequently, sha1.c compile fails due to unknown symbol. 65485 65486 Signed-off-by: Brian Miller <raptorbrino@netscape.net> 65487 65488commit 43ef1c381f9195504a2488f5cb909227eb97d475 65489Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com> 65490Date: Fri Nov 30 17:29:59 2007 +0100 65491 65492 cmd_bmp: Add support for displaying gzip compressed bmps 65493 65494 The existing code can show information about a gzip compressed BMP 65495 image, but can't actually display it. 65496 65497 Therefore, move the decompression code out of bmp_info() and use it in 65498 bmp_display() as well in order to display a compressed BMP image. 65499 65500 Also, clean things up a bit and fix a memory leak while we're at it. 65501 65502 [hskinnemoen@atmel.com: a bit of refactoring] 65503 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 65504 65505commit d197ffd8172c6fdef38733424640a9a47295d6e9 65506Author: Guennadi Liakhovetski <lg@denx.de> 65507Date: Thu Nov 29 21:15:56 2007 +0100 65508 65509 Fix and optimize MII operations on FEC (MPC8xx) controllers 65510 65511 This patch fixes several issues at least on a MPC885 based system with two 65512 FEC interfaces used in MII mode. 65513 65514 1. PHY discovery should first read PHY_PHYIDR2 register and only then 65515 PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it, 65516 otherwise the values read are wrong. Also notice, that PHY discovery 65517 cannot work on MPC88x / MPC87x in setups with both FECs active at all 65518 in its present form, because for both interfaces the registers from FEC 65519 1 are used to communicate over MII. 65520 65521 2. Remove code duplication for resetting the FEC by isolating it into a 65522 separate function. 65523 65524 3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init(). 65525 65526 4. Optimize mii_init() to only reset the FEC 1 controller once. 65527 65528 5. Fix a typo in mii_init() using index i instead of j thus potentially 65529 leading to unpredictable results. 65530 65531 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 65532 65533commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214 65534Author: Guennadi Liakhovetski <lg@denx.de> 65535Date: Tue Nov 20 13:14:20 2007 +0100 65536 65537 Fix endianness conversions in rtl8169 driver 65538 65539 It is unclear on what platforms this driver has been tested, since 65540 noone up to now defines CONFIG_RTL8169 in the board configuration 65541 header. Now it has been fixed for a big-endian mpc8241 based 65542 linkstation platform. This patch presents the necessary endianness 65543 conversion fixes. 65544 65545 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 65546 65547commit 58694f9709c0c3e3178e349ae748d98cfb0c639a 65548Author: Zhang Wei <wei.zhang@freescale.com> 65549Date: Thu Jan 3 10:51:15 2008 +0800 65550 65551 Add Ctrl combo key support to usb keyboard driver. 65552 65553 Ctrl combo key support is added, which is very useful to input Ctrl-C 65554 for interrupt current job. 65555 Also add usb_event_poll() calling to usb_kbd_testc(), which can get 65556 key input when tstc() is called. 65557 65558 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 65559 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 65560 65561commit 07eb02687f008721974a2fb54cd7fdc28033ab3c 65562Author: Wolfgang Denk <wd@denx.de> 65563Date: Wed Jan 9 13:43:38 2008 +0100 65564 65565 Coding Style clenaup; update CHANGELOG 65566 65567 Signed-off-by: Wolfgang Denk <wd@denx.de> 65568 65569commit c26acc1a43b31ddca5add42fd0360ff0eee90c80 65570Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65571Date: Thu Dec 27 17:13:11 2007 +0100 65572 65573 Remove bit swapping in Xilinx Spartan bitfile loading 65574 65575 This patch removes the unnecessary bit swapping when 65576 booting .bit files with the 'fpga loadb' command. 65577 65578 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65579 65580commit 437fc7327f0611f82937858f2d80e4cd61b40984 65581Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65582Date: Thu Dec 27 17:13:05 2007 +0100 65583 65584 Fix MSB check in Xilinx Spartan slave serial mode 65585 65586 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65587 65588commit 3bff4ffa33729a42645e328a21e8d16488872958 65589Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65590Date: Thu Dec 27 17:12:56 2007 +0100 65591 65592 Add new Xilinx Spartan FPGA types 65593 65594 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65595 65596commit 21d39d598c4e74d4e7761608c79dba2715d40a4c 65597Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65598Date: Thu Dec 27 17:12:43 2007 +0100 65599 65600 Add pre and post configuration callbacks for Spartan FPGAs 65601 65602 This patch adds a post configuration callback for Spartan2/3 FPGAs. 65603 pre and post configuration callback are now optional and 65604 not called when the function pointer is set to NULL. 65605 65606 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65607 65608commit 0133502e39ff89b67c26cb4015e0e7e8d9571184 65609Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65610Date: Thu Dec 27 17:12:34 2007 +0100 65611 65612 Improve configuration of FPGA subsystem 65613 65614 This patch removes the FPGA subsystem configuration through 65615 the CONFIG_FPGA bitmask configuration option. 65616 65617 See README for the new options: 65618 65619 CONFIG_FPGA, 65620 CONFIG_FPGA_<vendor>, 65621 CONFIG_FPGA_<family> 65622 65623 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65624 65625commit 95c6bc7d4a3588b452baca610f8c795a83630477 65626Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65627Date: Thu Dec 27 16:55:17 2007 +0100 65628 65629 Add Epson RX8025 RTC support 65630 65631 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65632 65633commit 1208a2dfde02bedd3c5bda29a606632b8e0be058 65634Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65635Date: Thu Dec 27 16:57:23 2007 +0100 65636 65637 serial: Make default_serial_console() a weak function 65638 65639 With this patch it is possible to reimplement default_serial_console() 65640 in board specific code. This will be done in the upcomming PMC440 65641 U-Boot port. This also allows the lwmon board maintainer to 65642 remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c. 65643 65644 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65645 65646commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33 65647Author: Harald Welte <laforge@openmoko.org> 65648Date: Wed Dec 19 14:14:47 2007 +0100 65649 65650 add 'terminal program' functionality 65651 65652 This patch adds a 'cu' like serial terminal command to u-boot 65653 using which you can access other serial ports from the system console. 65654 65655 OpenMoko uses this in their Neo1973 phones to get access to the GSM 65656 Modem and GPS chip from the bootloader. 65657 65658 Signed-off-by: Harald Welte <laforge@openmoko.org> 65659 65660commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6 65661Author: Harald Welte <laforge@openmoko.org> 65662Date: Wed Dec 19 14:12:53 2007 +0100 65663 65664 Re-introduce the 'nand read.oob' and 'nand write.oob' commands 65665 that used to exist with the legacy NAND code 65666 65667 Signed-off-by: Harald Welte <laforge@openmoko.org> 65668 65669commit f540c42d9564854b19ce9bbb70affe172529fe70 65670Author: Harald Welte <laforge@openmoko.org> 65671Date: Wed Dec 19 14:09:58 2007 +0100 65672 65673 Fix building with CRAMFS but not JFFS2 support 65674 65675 Signed-off-by: Harald Welte <laforge@openmoko.org> 65676 65677commit 23d0baf967fecdaf1804f045f6339337c5607eec 65678Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65679Date: Sat Dec 22 15:52:58 2007 +0100 65680 65681 Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime 65682 65683 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 65684 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65685 65686commit 23776ff292966a85d811126933830bed48211826 65687Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65688Date: Tue Dec 11 10:53:12 2007 +0100 65689 65690 ARM: support board-specific ethernet PHY init 65691 65692 Add until the new phylib will be arrived 65693 65694 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65695 65696commit 7b74ebe723e576baedf5a8b6240589b19b845a1b 65697Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65698Date: Sat Dec 8 16:34:08 2007 +0100 65699 65700 IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x 65701 65702 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65703 65704commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1 65705Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65706Date: Sun Dec 9 11:01:10 2007 +0100 65707 65708 Add missing file in gitignore and comments 65709 65710 based on Linux source tree's .gitignore files 65711 65712 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 65713 65714commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868 65715Author: Wolfgang Denk <wd@denx.de> 65716Date: Wed Jan 9 11:36:21 2008 +0100 65717 65718 Coding Style cleanup, update CHANGELOG 65719 65720 Signed-off-by: Wolfgang Denk <wd@denx.de> 65721 65722commit b2e2142c500c48a57f18f9dd30e66c13caea0971 65723Author: Stefan Roese <sr@denx.de> 65724Date: Wed Jan 9 10:38:58 2008 +0100 65725 65726 POST: Execute SPR test after relocation 65727 65728 On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses 65729 self modifying code and this doesn't work with stack in d-cache, since 65730 I can't move the code from d-cache to i-cache. We move the SPR test to 65731 be executed a little later, after relocation. Then stack is located in 65732 SDRAM and this self-modifying code is no problem anymore. 65733 65734 Signed-off-by: Stefan Roese <sr@denx.de> 65735 65736commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde 65737Author: Stefan Roese <sr@denx.de> 65738Date: Wed Jan 9 10:28:20 2008 +0100 65739 65740 ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore 65741 65742 This patch configures the LWMON5 port to use d-cache as init-ram and 65743 the unused GPT0_COMP6 as POST WORD storage. 65744 65745 Signed-off-by: Stefan Roese <sr@denx.de> 65746 65747commit 1754f50b710194f886b6f2831803d8960171a14d 65748Author: Stefan Roese <sr@denx.de> 65749Date: Wed Jan 9 10:25:46 2008 +0100 65750 65751 ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage 65752 65753 The privious 4xx POST implementation only supported storing the POST 65754 WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer 65755 we need to store the POST WORD in some other non volatile location. 65756 This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such 65757 a location. 65758 65759 Signed-off-by: Stefan Roese <sr@denx.de> 65760 65761commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57 65762Author: Stefan Roese <sr@denx.de> 65763Date: Wed Jan 9 10:23:16 2008 +0100 65764 65765 ppc4xx: Add 44x cache locking to better support init-ram in d-cache 65766 65767 This patch adds support for locking the init-ram/stack in d-cache, 65768 so that other regions may use d-cache as well 65769 65770 Note, that this current implementation locks exactly 4k of d-cache, 65771 so please make sure that you don't define a bigger init-ram area. Take 65772 a look at the lwmon5 440EPx implementation as a reference. 65773 65774 Signed-off-by: Stefan Roese <sr@denx.de> 65775 65776commit 0ddb89601a8d29e808db450366752ffdc6267c53 65777Author: Wolfgang Denk <wd@denx.de> 65778Date: Wed Jan 9 10:16:33 2008 +0100 65779 65780 Fix memset bug in ext2fs_read_file() 65781 65782 ext2fs_read_file() had the function arguments swapped. 65783 65784 Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800 65785 65786 Signed-off-by: Wolfgang Denk <wd@denx.de> 65787 65788commit 32d6f1bc09175f3b77469771e839bc7255a9f22e 65789Author: Markus Klotzbücher <mk@denx.de> 65790Date: Tue Jan 5 08:17:15 1988 +0100 65791 65792 Fix problems with usb storage devices on MPC5200 /TQM5200 65793 65794 The MPC5200 OHCI controller operates in big endian, so 65795 CFG_OHCI_BE_CONTROLLER must be defined for it to work properly. 65796 65797 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 65798 65799commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19 65800Author: Wolfgang Denk <wd@denx.de> 65801Date: Tue Jan 8 22:58:27 2008 +0100 65802 65803 Fix compile problem with new env code. 65804 65805 Signed-off-by: Wolfgang Denk <wd@denx.de> 65806 65807commit 64b3727b9779d86127cd576e392a987de5ebb9fd 65808Author: Markus Klotzbücher <mk@denx.de> 65809Date: Tue Nov 27 10:23:20 2007 +0100 65810 65811 tools: fix fw_printenv tool to compile again 65812 65813 This patch updates the fw_printenv/fw_setenv userspace tool to include 65814 the correct MTD header in order to compile against current kernel 65815 headers. Backward compatibility is preserved by introducing an option 65816 MTD_VERSION which can be set to "old" for compilation using the old MTD 65817 headers. Along with this a number of warnings are fixed. 65818 65819 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 65820 65821commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516 65822Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65823Date: Tue Jan 8 15:40:09 2008 +0100 65824 65825 ppc4xx: assign PCI interrupts on seuqoia boards 65826 65827 Some operating systems rely on assigned PCI interrupts. 65828 65829 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65830 65831commit 6e9233d30afe57cb6e148fbfa4895e7810196fac 65832Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65833Date: Tue Jan 8 15:50:49 2008 +0100 65834 65835 ppc4xx: Move cpu/ppc4xx/vecnum.h into include path 65836 65837 This patch allows the use of 4xx interrupt vector number defines 65838 in board specific code outside cpu/ppc4xx. 65839 65840 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65841 65842commit 580d1d3186a2bc6dbdb626941b716dae1788e51e 65843Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65844Date: Tue Jan 8 15:39:01 2008 +0100 65845 65846 ppc4xx: Fix UIC2 vector number base 65847 65848 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65849 65850commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811 65851Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65852Date: Tue Jan 8 12:49:58 2008 +0100 65853 65854 ppc4xx: Update PLB/PCI divider for PMC440 board 65855 65856 This patch updates the PLB/PCI divider when running at 65857 400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock. 65858 65859 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65860 65861commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde 65862Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65863Date: Tue Jan 8 11:13:09 2008 +0100 65864 65865 ppc4xx: Disable error message when no NAND chip is installed on PMC440 65866 65867 Add CFG_NAND_QUIET_TEST option to disable error message when 65868 no NAND chip is installed on PMC440 boards. 65869 65870 Disable a couple of config defines that are only used for NAND_U_BOOT. 65871 65872 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65873 65874commit c83d7ca4dadd44ae430235077f63b64a11f36f6e 65875Author: Wolfgang Denk <wd@denx.de> 65876Date: Tue Jan 8 22:58:27 2008 +0100 65877 65878 Fix compile problem with new env code. 65879 65880 Signed-off-by: Wolfgang Denk <wd@denx.de> 65881 65882commit 6de66b35426312a21174a9bf0576a094e2904bea 65883Author: Markus Klotzbücher <mk@denx.de> 65884Date: Tue Nov 27 10:23:20 2007 +0100 65885 65886 tools: fix fw_printenv tool to compile again 65887 65888 This patch updates the fw_printenv/fw_setenv userspace tool to include 65889 the correct MTD header in order to compile against current kernel 65890 headers. Backward compatibility is preserved by introducing an option 65891 MTD_VERSION which can be set to "old" for compilation using the old MTD 65892 headers. Along with this a number of warnings are fixed. 65893 65894 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 65895 65896commit ad3006fe7e84667021753b74247b0bafd97ba35f 65897Author: Gerald Van Baren <vanbaren@cideas.com> 65898Date: Mon Jan 7 23:47:32 2008 -0500 65899 65900 LIBFDT: use memmove() instead of memcpy() 65901 65902 This is partial patch from the DTC/libfdt 65903 commit 67b6b33b9b413a450a72135b5dc59c0a1e33e647 65904 Author: David Gibson <david@gibson.dropbear.id.au> 65905 Date: Wed Nov 21 11:56:14 2007 +1100 65906 65907 The patch also fixes one genuine bug caught by valgrind - 65908 _packblocks() in fdt_rw.c was using memcpy() where it should have been 65909 using memmove(). 65910 65911 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 65912 65913commit aec7135bc300e3340d18f203347ee00c5b5f68c0 65914Author: David Gibson <david@gibson.dropbear.id.au> 65915Date: Mon Dec 17 14:42:07 2007 +1100 65916 65917 libfdt: Add more documentation (patch the seventh) 65918 65919 This patch adds more documenting comments to libfdt.h. Specifically, 65920 these document the read/write functions (not including fdt_open_into() 65921 and fdt_pack(), for now). 65922 65923 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 65924 65925commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e 65926Author: David Gibson <david@gibson.dropbear.id.au> 65927Date: Mon Dec 17 14:41:52 2007 +1100 65928 65929 libfdt: Add more documentation (patch the sixth) 65930 65931 This patch adds some more documenting comments to libfdt.h. 65932 Specifically this documents all the write-in-place functions. 65933 65934 Signed-off-by: David Gibson <david@gibson.dropbear.id.au> 65935 65936commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0 65937Author: Gerald Van Baren <vanbaren@cideas.com> 65938Date: Sat Dec 29 22:45:27 2007 -0500 65939 65940 Fine grained per property /chosen updating. 65941 65942 Implement a suggestion by Scott Wood to make the /chosen handling fine 65943 grained. Don't overwrite pre-existing properties on a per-property basis, 65944 so if /chosen exists but a necessary /chosen/property doesn't, it gets 65945 created. If a /chosen property exists, it is NOT overwritten unless the 65946 "force" flag is true. 65947 65948 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 65949 65950commit 238cb7a423c6eaa36496efb788cfb9798cea7f95 65951Author: Gerald Van Baren <vanbaren@cideas.com> 65952Date: Sat Jan 5 15:33:29 2008 -0500 65953 65954 Improve the FDT help message. 65955 65956 Add a note that "fdt copy" makes the new address active. 65957 Remove most of the extra hints at the end of the fdt help. 65958 65959 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 65960 65961commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92 65962Author: Gerald Van Baren <vanbaren@cideas.com> 65963Date: Sat Jan 5 14:52:04 2008 -0500 65964 65965 Support setting FDT properties with optional values. 65966 65967 Fix a bug found and documented by Bartlomiej Sieka where the optional 65968 value on "fdt set <path> <prop> [<val>]" wasn't optional. 65969 65970 => fdt mknode / testnode 65971 => fdt print /testnode 65972 testnode { 65973 }; 65974 => fdt set /testnode testprop 65975 => fdt print /testnode 65976 testnode { 65977 testprop; 65978 }; 65979 65980 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 65981 65982commit 22fb2246df91bfc840d87f0c5910818bad55577a 65983Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65984Date: Fri Dec 28 11:56:30 2007 +0100 65985 65986 Add fdt_find_and_setprop() to fdt_support.h 65987 65988 fdt_find_and_setprop() is used by several 4xx boards and it's 65989 missing in the appropriate header. This patch eliminates a 65990 warning when building U-Boot for such boards. 65991 65992 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 65993 Acked-by: Stefan Roese <sr@denx.de> 65994 65995commit 802b769bac17b0560d3535a42c502469ee190cd1 65996Author: Stefan Roese <sr@denx.de> 65997Date: Tue Jan 8 18:39:30 2008 +0100 65998 65999 ppc4xx: Return 0 on success in 4xx ethernet driver 66000
66001 Signed-off-by: Stefan Roese <sr@denx.de> 66002 66003commit 6775c68683a53c7abc778774641aac6f833a2cbf 66004Author: Kim Phillips <kim.phillips@freescale.com> 66005Date: Tue Jan 8 09:59:49 2008 -0600 66006 66007 mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code 66008 66009 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66010 66011commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7 66012Author: Kim Phillips <kim.phillips@freescale.com> 66013Date: Thu Dec 20 16:28:34 2007 -0600 66014 66015 mpc83xx: rm remaining FLAT_TREE code 66016 66017 ..in board pci.c files 66018 66019 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66020 66021commit b3458d2cd55d01732e30a76d898afd99e871cd67 66022Author: Kim Phillips <kim.phillips@freescale.com> 66023Date: Thu Dec 20 15:57:28 2007 -0600 66024 66025 mpc83xx: remove FLAT_TREE code 66026 66027 need to rm it from pci code, too! 66028 66029 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66030 66031commit 5b8bc606c61456566af6912f818a153b6b06f242 66032Author: Kim Phillips <kim.phillips@freescale.com> 66033Date: Thu Dec 20 14:09:22 2007 -0600 66034 66035 mpc83xx: convert to using do_fixup_*() 66036 66037 convert to using simpler mpc85xx style fdt update code; streamline by 66038 eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm 66039 the old school FLAT_TREE code from 83xx (since the sbc8349 was just 66040 converted over to using libfdt). 66041 66042 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66043 66044commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab 66045Author: Paul Gortmaker <paul.gortmaker@windriver.com> 66046Date: Thu Dec 20 12:58:51 2007 -0500 66047 66048 sbc8349: enable libfdt by default on WRS SBC8349 board. 66049 66050 Make libfdt the default for the WRS SBC8349 board. 66051 Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef 66052 done for the other 83xx based boards. Also fix a typo in CONFIG_PCI. 66053 66054 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 66055 66056commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40 66057Author: Paul Gortmaker <paul.gortmaker@windriver.com> 66058Date: Thu Dec 20 12:58:16 2007 -0500 66059 66060 sbc8349: migrate board to libfdt 66061 66062 This adds libfdt support code for the Wind River sbc8349 board. 66063 66064 Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for 66065 the other Freescale 83xx boards. 66066 66067 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 66068 66069commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d 66070Author: Paul Gortmaker <paul.gortmaker@windriver.com> 66071Date: Thu Dec 20 12:56:19 2007 -0500 66072 66073 sbc8349: Remove board specific ECC code 66074 66075 ECC code is now shared for all 83xx boards, so remove board specific one. 66076 See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference. 66077 66078 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> 66079 66080commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7 66081Author: Kim Phillips <kim.phillips@freescale.com> 66082Date: Thu Dec 20 01:30:48 2007 -0600 66083 66084 mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x) 66085 66086 continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x 66087 66088 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66089 66090commit ccf21c311e68d48399eff1e72936052885f6e3f7 66091Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 66092Date: Thu Dec 6 16:43:40 2007 +0100 66093 66094 Add support CONFIG_UEC_ETH3 in MPC83xx 66095 66096 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 66097 66098commit e6af9932d31171e35db880e7b2f29f903b1b7660 66099Author: Kumar Gala <galak@kernel.crashing.org> 66100Date: Mon Nov 26 11:00:54 2007 -0600 66101 66102 Remove CONFIG options related to OF that we dont use 66103 66104 The MPC8360E MDS config defined: 66105 CONFIG_OF_HAS_BD_T 66106 CONFIG_OF_HAS_UBOOT_ENV 66107 66108 Which we don't use or ever needed. This seems like copy-paste feature creep. 66109 66110 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 66111 66112commit f602082b4b7ed4ee16432067cc67a0a24fedc715 66113Author: Kim Phillips <kim.phillips@freescale.com> 66114Date: Mon Dec 10 14:16:22 2007 -0600 66115 66116 mpc83xx: supress compiler warning 66117 66118 mpc8360emds.c: In function ‘ft_board_setup’: 66119 mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type 66120 mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type 66121 66122 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66123 66124commit c16e44fa835fb9eec982d919863a04e2f78e5ce7 66125Author: Kim Phillips <kim.phillips@freescale.com> 66126Date: Tue Nov 27 14:17:29 2007 -0600 66127 66128 mpc83xx: fix remaining fdt_find_node_by_path references 66129 66130 rename to fdt_path_offset 66131 66132 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66133 66134commit 921d4b19ad1be704df58725485d9292dc0414adf 66135Author: Kim Phillips <kim.phillips@freescale.com> 66136Date: Mon Nov 19 12:30:09 2007 -0600 66137 66138 mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x 66139 66140 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x. 66141 This change guarantees that the environment will be located on the 66142 first flash sector after the U-Boot image. 66143 66144 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66145 66146commit 24f868433b50ecbaa88e118aadc7bd254013c6ae 66147Author: Kim Phillips <kim.phillips@freescale.com> 66148Date: Fri Nov 9 14:28:08 2007 -0600 66149 66150 mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid 66151 66152 u-boot itself uses GMII mode on the 8360. Fix up UCC phy-connection-type 66153 properties in the device tree so the PHY gets configured for internal delay on 66154 RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2. 66155 66156 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66157 66158commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b 66159Author: Dave Liu <r63238@freescale.com> 66160Date: Tue Sep 18 12:41:15 2007 +0800 66161 66162 mpc83xx: update the CREDITS and MAINTAINERS 66163 66164 update the CREDITS and MAINTAINERS. 66165 66166 Signed-off-by: Dave Liu <daveliu@freescale.com> 66167 66168commit b21add4b42af7b767448251b599b91066a160e0d 66169Author: Dave Liu <r63238@freescale.com> 66170Date: Tue Sep 18 12:40:21 2007 +0800 66171 66172 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds 66173 66174 Add the MAINTAINER and MAKEALL entries for mpc837xemds 66175 66176 Signed-off-by: Dave Liu <daveliu@freescale.com> 66177 66178commit f8900ce9094c462355eb792eea264ff16ac8fd16 66179Author: Dave Liu <r63238@freescale.com> 66180Date: Tue Sep 18 12:38:53 2007 +0800 66181 66182 mpc83xx: Add the MPC837xEMDS board readme 66183 66184 Add the README.mpc837xemds to /doc 66185 66186 Signed-off-by: Dave Liu <daveliu@freescale.com> 66187 66188commit 19580e660cc8da49f16536a8bd78c047c7bc12e5 66189Author: Dave Liu <r63238@freescale.com> 66190Date: Tue Sep 18 12:37:57 2007 +0800 66191 66192 mpc83xx: Add the support of MPC837xEMDS board 66193 66194 The MPC837xEMDS board support: 66195 * DDR2 400MHz hardcoded and SPD init 66196 * Local bus NOR Flash 66197 * I2C, UART, MII and RTC 66198 * eTSEC RGMII 66199 * PCI host 66200 66201 Signed-off-by: Dave Liu <daveliu@freescale.com> 66202 66203commit 555da61702771fe0f76f3de23b4e7590f3704161 66204Author: Dave Liu <r63238@freescale.com> 66205Date: Tue Sep 18 12:36:58 2007 +0800 66206 66207 mpc83xx: Add the support of MPC8315E SoC 66208 66209 The MPC8315E SoC including e300c3 core and new IP blocks, 66210 such as TDM, PCI Express and SATA controller. 66211 66212 Signed-off-by: Dave Liu <daveliu@freescale.com> 66213 66214commit 03051c3d35c9981ceaa059005660e699f3eacf1c 66215Author: Dave Liu <r63238@freescale.com> 66216Date: Tue Sep 18 12:36:11 2007 +0800 66217 66218 mpc83xx: Add the support of MPC837x SoC 66219 66220 The MPC837x SoC including e300c4 core and new IP blocks, 66221 such as SDHC, PCI Express and SATA controller. 66222 66223 Signed-off-by: Dave Liu <daveliu@freescale.com> 66224 66225commit 651d96f7e4c84adcdb98ef07ec878c20326e3359 66226Author: Anton Vorontsov <avorontsov@ru.mvista.com> 66227Date: Wed Nov 14 18:54:53 2007 +0300 66228 66229 MPC8360E-MDS: configure and enable second UART 66230 66231 Despite user manual, BCSR9.7 is negated (high) on HRST, so 66232 UART2 is disabled. Fix that and configure QE pins properly. 66233 66234 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com> 66235 66236commit b2893e1fcb28fad8c8b317104df8cee0142c7631 66237Author: Timur Tabi <timur@freescale.com> 66238Date: Mon Nov 5 09:34:06 2007 -0600 66239 66240 83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions 66241 66242 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the 66243 currently-defined 83xx boards. This change guarantees that the environment 66244 will be located on the first flash sector after the U-Boot image. 66245 66246 Signed-off-by: Timur Tabi <timur@freescale.com> 66247 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 66248 66249commit e05329516a13616b53240cd85b739217c2bf87f1 66250Author: Larry Johnson <lrj@acm.org> 66251Date: Fri Jan 4 13:27:02 2008 -0500 66252 66253 ppc4xx: Remove weak binding from common Denali data-eye search code 66254 66255 Now that there are no board-specific versions of 66256 "denali_core_search_data_eye()", the weak binding on the common version 66257 can be removed. 66258 66259 Signed-off-by: Larry Johnson <lrj@acm.org> 66260 66261commit 5ba576c01602fd328800a427964c36a0a05c5dce 66262Author: Stefan Roese <sr@denx.de> 66263Date: Sat Jan 5 09:13:46 2008 +0100 66264 66265 ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c 66266 66267 Signed-off-by: Stefan Roese <sr@denx.de> 66268 66269commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4 66270Author: Stefan Roese <sr@denx.de> 66271Date: Sat Jan 5 09:12:41 2008 +0100 66272 66273 ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup 66274 66275 On Katmai the complete auto-calibration somehow doesn't seem to 66276 produce the best results, meaning optimal values for RQFD/RFFD. 66277 This was discovered by GDA using a high bandwidth scope, 66278 analyzing the DDR2 signals. GDA provided a fixed value for RQFD, 66279 so now on Katmai "only" RFFD is auto-calibrated. 66280 66281 This patch also adds RDCC calibration as mentioned on page 7 of 66282 the AMCC PowerPC440SP/SPe DDR2 application note: 66283 "DDR1/DDR2 Initialization Sequence and Dynamic Tuning" 66284 66285 Signed-off-by: Stefan Roese <sr@denx.de> 66286 66287commit 49db47b8ae6afff2b898be312948ff501357dc80 66288Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66289Date: Wed Jan 2 16:48:42 2008 +0100 66290 66291 ppc4xx: Remove sdram.h from PMC440 board 66292 66293 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66294 66295commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a 66296Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66297Date: Wed Jan 2 16:48:34 2008 +0100 66298 66299 ppc4xx: use common denali core defines and data eye search code for PMC440 66300 66301 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66302 66303commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489 66304Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66305Date: Wed Jan 2 12:05:14 2008 +0100 66306 66307 ppc4xx: More cleanup for esd's LCD code 66308 66309 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66310 66311commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb 66312Author: Stefan Roese <sr@denx.de> 66313Date: Fri Jan 4 12:00:01 2008 +0100 66314 66315 ppc4xx: Fix Sequoia NAND booting target 66316 66317 The Sequoia NAND booting target now uses the recently extracted 66318 cpu/ppc4xx/denali_data_eye.c file too. 66319 66320 Signed-off-by: Stefan Roese <sr@denx.de> 66321 66322commit 0ddd969aec532bd7eae30fc09590488a3aaa629a 66323Author: Lawrence R. Johnson <lrj@acm.org> 66324Date: Thu Jan 3 15:02:02 2008 -0500 66325 66326 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board 66327 66328 Signed-off-by: Larry Johnson <lrj@acm.org> 66329 66330commit b05e8bf58be9d8956fdfde3d8c8e87c140414663 66331Author: Lawrence R. Johnson <lrj@acm.org> 66332Date: Fri Jan 4 02:11:56 2008 -0500 66333 66334 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board 66335 66336 Note: this patch changes the configuration of some GPIO registers: 66337 66338 Register Old Value New Value 66339 --------------- ---------- ---------- 66340 DCR GPIO0_TCR 0x0000000F 0x0000F0CF 66341 DCR GPIO0_TSRH 0x55005000 0x00000000 66342 DCR GPIO1_TCR 0xC2000000 0xE2000000 66343 DCR GPIO1_TSRL 0x0C000000 0x00200000 66344 DCR GPIO1_ISR2L 0x00050000 0x00110000 66345 66346 Signed-off-by: Larry Johnson <lrj@acm.org> 66347 66348commit 5ab884b254ca2e707ab50545cd705f30108cf491 66349Author: Lawrence R. Johnson <lrj@acm.org> 66350Date: Thu Jan 3 18:54:00 2008 -0500 66351 66352 ppc4xx: Add functionality to GPIO support 66353 66354 This patch makes two additions to GPIO support: 66355 66356 First, it adds function gpio_read_in_bit() to read the a bit from the 66357 GPIO Input Register (GPIOx_IR) in the same way that function 66358 gpio_read_out_bit() reads a bit from the GPIO Output Register 66359 (GPIOx_OR). 66360 66361 Second, it modifies function gpio_set_chip_configuration() to provide 66362 an additional option for configuring the GPIO from the 66363 "CFG_4xx_GPIO_TABLE". 66364 66365 According to the 440EPx User's Manual, when an alternate output is used, 66366 the three-state control is configured in one of two ways, depending on 66367 the particular output. The first option is to select the corresponding 66368 alternate three-state control in the GPIOx_TRSH/L registers. The second 66369 option is to select the GPIO Three-State Control Register (GPIOx_TCR) in 66370 the GPIOx_TRSH/L registers, and set the corresponding bit in the 66371 GPIOx_TCR register to enable the output. For example, the Manual 66372 specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use 66373 the alternate three-state control (first option), and specifies 66374 configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output 66375 enabled in the GPIOx_TCR register (second option). 66376 66377 Currently, gpio_set_chip_configuration() configures all alternate signal 66378 outputs to use the first option. This patch allow the second option to 66379 be selected by setting the "out_val" element in the table entry to 66380 "GPIO_OUT_1". The first option is used when the "out_val" element is 66381 set to "GPIO_OUT_0". Because "out_val" is not currently used when an 66382 alternate signal is selected, and because all current GPIO tables set 66383 "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should 66384 not change any existing configurations. 66385 66386 Signed-off-by: Larry Johnson <lrj@acm.org> 66387 66388commit 196404cdc1de495d6182e84731c200fc5748df15 66389Author: Larry Johnson <lrj@arlinx.com> 66390Date: Sun Dec 30 01:01:54 2007 -0500 66391 66392 PPC4xx: Remove sdram.h from board/lwmon5 66393 66394 These definitions are now in "include/ppc440.h". 66395 66396 Signed-off-by: Larry Johnson <lrj@acm.org> 66397 66398commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b 66399Author: Larry Johnson <lrj@arlinx.com> 66400Date: Sun Dec 30 01:01:32 2007 -0500 66401 66402 PPC4xx: Use common code for LWMON5 board SDRAM support 66403 66404 This patch also modifies the functionality of the code so that the data-eye 66405 search is now done with with the cache disabled. 66406 66407 Signed-off-by: Larry Johnson <lrj@acm.org> 66408 66409commit 62cc3951ab72135d9c101f1845b794e63a0fa189 66410Author: Larry Johnson <lrj@arlinx.com> 66411Date: Sun Dec 30 01:01:14 2007 -0500 66412 66413 PPC4xx: Remove sdram.h from board/amcc/sequoia 66414 66415 These definitions are now in "include/ppc440.h". 66416 66417 Signed-off-by: Larry Johnson <lrj@acm.org> 66418 66419commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a 66420Author: Larry Johnson <lrj@arlinx.com> 66421Date: Sun Dec 30 01:00:50 2007 -0500 66422 66423 PPC4xx: Use common code for Sequoia board SDRAM support 66424 66425 Signed-off-by: Larry Johnson <lrj@acm.org> 66426 66427commit 8b0c5c127690335758100c25eaec2b84db97c101 66428Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66429Date: Thu Dec 27 16:58:41 2007 +0100 66430 66431 net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option 66432 66433 When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's 66434 networking stack does not automatically switch to 66435 another interface. This patch does not touch the default 66436 behavior. 66437 66438 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66439 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 66440 66441commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32 66442Author: Upakul Barkakaty <upakul@gmail.com> 66443Date: Thu Nov 29 12:16:13 2007 +0530 66444 66445 NET: Proper return code handling in eth_init() function in file eth.c 66446 66447 This patch modifies the return code handling in the eth_init() 66448 function, to be compatible with the handling of the return codes in 66449 the other network stack files. It now returns a 0 on Success and -1 on 66450 error. 66451 66452 Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com> 66453 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 66454 66455commit 5ca2d0953e4579a80810966cca2077e20d912c97 66456Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 66457Date: Mon Nov 19 20:27:04 2007 +0900 66458 66459 net/eth.c: Fix env_enetaddr signed overflow 66460 66461 Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are 66462 warned as below: 66463 66464 U-Boot 1.2.0 (Aug 30 2007 - 08:27:37) 66465 66466 DRAM: 256 MB 66467 Flash: 32 MB 66468 In: serial 66469 Out: serial 66470 Err: serial 66471 Net: NEC-Candy 66472 Warning: NEC-Candy MAC addresses don't match: 66473 Address in SROM is 00:00:4C:80:92:A2 66474 Address in environment is FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21 66475 66476 This patch changes env_enetaddr type from `char' to `unsigned char'. 66477 66478 Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp> 66479 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 66480 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 66481 66482commit f85b60710571b37293d2233933b76e2aa3db5635 66483Author: Rafal Jaworowski <raj@semihalf.com> 66484Date: Thu Dec 27 18:19:02 2007 +0100 66485 66486 Introduce new eth_receive routine 66487 66488 The purpose of this routine is receiving a single network frame, outside of 66489 U-Boot's NetLoop(). Exporting it to standalone programs that run on top of 66490 U-Boot will let them utilise networking facilities. For sending a raw frame 66491 the already existing eth_send() can be used. 66492 66493 The direct consumer of this routine is the newly introduced API layer for 66494 external applications (enabled with CONFIG_API). 66495 66496 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 66497 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com> 66498 Signed-off-by: Ben Warren <biggerbadderben@gmail.com> 66499 66500commit 5c740711f0ea5b51414b341b71597c4a0751be74 66501Author: Jon Loeliger <jdl@freescale.com> 66502Date: Thu Jan 3 10:41:04 2008 -0600 66503 66504 8610: Move include of config.h earlier. 66505 66506 Include config.h earlier in the set of #includes 66507 so as to avoid a incidental and duplicate definition 66508 of CFG_CACHELINE_SIZE. 66509 66510 Signed-off-by: Jon Loeliger 66511 66512commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff 66513Author: Jon Loeliger <jdl@freescale.com> 66514Date: Tue Dec 4 10:53:34 2007 -0600 66515 66516 Don't slam #undef DEBUG in the 8641HPCN config file. 66517 66518 Doing so prevents it from being individually set 66519 and useful in other files. 66520 66521 Signed-off-by: Jon Loeliger <jdl@freescale.com> 66522 66523commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c 66524Author: Jon Loeliger <jdl@freescale.com> 66525Date: Wed Nov 28 14:47:18 2007 -0600 66526 66527 Convert MPC8641HPCN to use libfdt. 66528 66529 Assumes the presence of the aliases node in the DTS to 66530 locate the ethernet, pci and serial nodes for fixups. 66531 66532 Use consistent fdtaddr and fdtfile in environment variables. 66533 66534 Signed-off-by: Jon Loeliger <jdl@freescale.com> 66535 66536commit ce37422d0002e10490e268392e0c4e3028e52cec 66537Author: Stefan Roese <sr@denx.de> 66538Date: Wed Jan 2 14:06:26 2008 +0100 66539 66540 cfi_flash: Fix bug in flash_isset() to use correct 32bit function 66541 66542 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide 66543 flash chips connected to a 32bit wide port. 66544 66545 Signed-off-by: Stefan Roese <sr@denx.de> 66546 66547commit 1182e9f8e3b92fc372d64943293de53daa2e26cf 66548Author: Wolfgang Denk <wd@denx.de> 66549Date: Wed Jan 2 15:58:44 2008 +0100 66550 66551 Fix compile problem introduced by "cleanup" commit 3dfd708c 66552 66553 Signed-off-by: Wolfgang Denk <wd@denx.de> 66554 66555commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7 66556Author: Wolfgang Denk <wd@denx.de> 66557Date: Wed Jan 2 15:54:45 2008 +0100 66558 66559 Make scripts and Makefiles POSIX compliant 66560 66561 The bash builtin versions of the "test" (resp. "[") command allow 66562 using "==" for string comparisons, but POSIX compatible implemen- 66563 tations (like /usr/bin/test) insist on using "=" only. On such systems 66564 you will see: 66565 66566 $ /usr/bin/test a == a && echo OK 66567 /usr/bin/test: ==: binary operator expected 66568 66569 This patch fixes Makefiles and scripts to use POSIX style. 66570 66571 Signed-off-by: Wolfgang Denk <wd@denx.de> 66572 66573commit 47cc23cbe9a669c510183f4f049bf703ef445f3b 66574Author: Stefan Roese <sr@denx.de> 66575Date: Wed Jan 2 14:05:37 2008 +0100 66576 66577 cfi_flash: Fix bug in flash_isset() to use correct 32bit function 66578 66579 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide 66580 flash chips connected to a 32bit wide port. 66581 66582 Signed-off-by: Stefan Roese <sr@denx.de> 66583 66584commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc 66585Author: Wolfgang Denk <wd@denx.de> 66586Date: Wed Jan 2 12:38:43 2008 +0100 66587 66588 Minor coding style cleanup. 66589 66590 Signed-off-by: Wolfgang Denk <wd@denx.de> 66591 66592commit e174ac34adf5d5653df12bc3cf19c52063a71269 66593Author: Stefan Roese <sr@denx.de> 66594Date: Fri Dec 28 17:29:56 2007 +0100 66595 66596 ppc4xx: Coding style cleanup 66597 66598 Signed-off-by: Stefan Roese <sr@denx.de> 66599 66600commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5 66601Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66602Date: Fri Dec 28 17:07:24 2007 +0100 66603 66604 ppc4xx: Complete PMC440 board support 66605 66606 This patch brings the PMC440 board configuration file. 66607 Finally it enables the PMC440 board support. 66608 66609 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66610 66611commit 407843a582560fc5231299561ab3c2b6b6cd3397 66612Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66613Date: Fri Dec 28 17:07:18 2007 +0100 66614 66615 ppc4xx: Add FPGA support and BSP commands for PMC440 boards 66616 66617 This patch adds some BSP commands and FPGA booting support 66618 for esd's PMC440 boards. 66619 66620 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66621 66622commit 72c5d52aedcce35e4b4fa5895605554825b6a76f 66623Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66624Date: Fri Dec 28 17:07:14 2007 +0100 66625 66626 ppc4xx: Add initial esd PMC440 board files 66627 66628 This patch adds the first files for the new esd PMC440 boards. 66629 The next two patches will complete the PMC440 board support. 66630 66631 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66632 66633commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5 66634Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66635Date: Fri Dec 28 17:10:36 2007 +0100 66636 66637 ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates 66638 66639 - add EEPROM write protection for esd PLU405 boards. 66640 - initialize NAND GPIOs 66641 - use correct io accessors 66642 - cleanup 66643 66644 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66645 66646commit 77660c4b59055d621d2a8595bd4c18bb277268fc 66647Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66648Date: Fri Dec 28 17:10:44 2007 +0100 66649 66650 ppc4xx: use correct io accessors for esd's LCD code 66651 66652 This patch fixes esd's LCD dectection code to work correctly with 66653 newer gcc versions. 66654 66655 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66656 66657commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e 66658Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66659Date: Fri Dec 28 17:10:42 2007 +0100 66660 66661 ppc4xx: Maintenance patch for VOH405 boards 66662 66663 - add EEPROM write protection 66664 - initialize NAND GPIOs 66665 - use correct io accessors 66666 - slow down I2C clock to 100kHz 66667 - enable ext. I2C bus 66668 - cleanup 66669 66670 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66671 66672commit c05569066dbcba3fdf36d4d1943df265dc316a86 66673Author: Stefan Roese <sr@denx.de> 66674Date: Fri Dec 28 16:08:08 2007 +0100 66675 66676 ppc4xx: Enable 405EP PCI arbiter per default on all boards 66677 66678 In an attmemt to clean up the 4xx start.S file, I removed the enabling 66679 of the internal 405EP PCI arbiter. This is needed for multiple other 66680 405EP platforms, like most of the esd 405EP. Now the internal PCI 66681 arbiter is enabled again per default as it has been before. 66682 66683 Signed-off-by: Stefan Roese <sr@denx.de> 66684 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66685 66686commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b 66687Author: Stefan Roese <sr@denx.de> 66688Date: Fri Dec 28 15:53:46 2007 +0100 66689 66690 ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP) 66691 66692 Signed-off-by: Stefan Roese <sr@denx.de> 66693 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66694 66695commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79 66696Author: Stefan Roese <sr@denx.de> 66697Date: Fri Dec 28 06:06:04 2007 +0100 66698 66699 ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target 66700 66701 Use correct link to nand_ecc now located in drivers/mtd/nand/ for the 66702 platforms mentioned above. 66703 66704 Signed-off-by: Stefan Roese <sr@denx.de> 66705 66706commit b568fd25574181a3b12ae3d66b2913903442cb83 66707Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66708Date: Thu Dec 27 17:03:46 2007 +0100 66709 66710 Remove CPCI440 board 66711 66712 This board never left prototyping state and it 66713 became a millstone round my neck. So remove it. 66714 66715 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66716 66717commit c591dffe0cbacd896ccbad06011fe6d6afa080da 66718Author: Larry Johnson <lrj@arlinx.com> 66719Date: Thu Dec 27 11:28:51 2007 -0500 66720 66721 Add support for Korat PPC440EPx board 66722 66723 These patches add support for the PPC440EPx-based "Korat" board to 66724 U-Boot. They are based primarily on support for the Sequoia board. 66725 66726 Signed-off-by: Larry Johnson <lrj@acm.org> 66727 66728commit 87dc096829e6a6363f4fdd73653b0093a85adbe0 66729Author: Larry Johnson <lrj@arlinx.com> 66730Date: Sat Dec 22 15:16:25 2007 -0500 66731 66732 Add configuration file for Korat board 66733 66734 This patch supplies the configuration file for the Korat PPC440EPx- 66735 processor board. 66736 66737 Signed-off-by: Larry Johnson <lrj@acm.org> 66738 66739commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5 66740Author: Larry Johnson <lrj@arlinx.com> 66741Date: Sat Dec 22 15:16:11 2007 -0500 66742 66743 Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile 66744 66745 Signed-off-by: Larry Johnson <lrj@acm.org> 66746 66747commit aba19604d848b2838cfb9ebe818909e6a216058e 66748Author: Larry Johnson <lrj@arlinx.com> 66749Date: Thu Dec 27 10:54:48 2007 -0500 66750 66751 Add 440EPx DDR2 SPD DIMM support 66752 66753 This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM 66754 controller. It should also work on the 440GRx. It is based on the DDR2 66755 SPD code for the 440EP/440EPx, but makes no provision for DDR1 support. 66756 66757 This code has been tested on prototype Korat boards with three Kingston 66758 DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC 66759 (two ranks). The Korat board has a single DIMM socket, but support has 66760 been provided (though not tested) for boards with two DIMM sockets. 66761 66762 Signed-off-by: Larry Johnson <lrj@acm.org> 66763 66764commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f 66765Author: Larry Johnson <lrj@arlinx.com> 66766Date: Sat Dec 22 15:15:30 2007 -0500 66767 66768 Copy 440EPx/GRx SDRAM data-eye search to common directory 66769 66770 This patch creates a non-board-specific file for performing the SDRAM 66771 data-eye search. It also adds ECC error checking to the test of valid 66772 data on readback when ECC is enabled. 66773 66774 Signed-off-by: Larry Johnson <lrj@acm.org> 66775 66776commit c46f53333b22b1f9098676bea8884fc7db820cf3 66777Author: Larry Johnson <lrj@arlinx.com> 66778Date: Sat Dec 22 15:15:13 2007 -0500 66779 66780 Add definitions for 440EPx/GRx SDRAM controller to ppc440.h 66781 66782 This patch adds the Denali SDRAM controller definitions to "ppc440.h". 66783 It also fixes two typos in the definitions, so the board-specific 66784 "sdram.h" files containing these definitions are also fixed to avoid 66785 compiler warnings. 66786 66787 Signed-off-by: Larry Johnson <lrj@acm.org> 66788 66789commit c348578bf612d0c56d8d376d23cae16defbd86af 66790Author: Larry Johnson <lrj@arlinx.com> 66791Date: Thu Dec 27 10:50:55 2007 -0500 66792 66793 Add Ethernet 1000BASE-X support for PPC4xx 66794 66795 This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG". When this symbol 66796 is defined, the PHY will advertise it's capabilities for autonegotiation 66797 based on the capabilities shown in the PHY's status registers, including 66798 1000BASE-X. When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will 66799 advertise hard-coded capabilities, as before. 66800 66801 Signed-off-by: Larry Johnson <lrj@acm.org> 66802 66803commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3 66804Author: Larry Johnson <lrj@arlinx.com> 66805Date: Thu Dec 27 09:52:17 2007 -0500 66806 66807 Add driver for National Semiconductor LM73 temperature sensor 66808 66809 This driver is based on the driver for the LM75. 66810 66811 Signed-off-by: Larry Johnson <lrj@acm.org> 66812 66813commit 12618278688ea9b3d76536960a5ad2e3790fac40 66814Author: Larry Johnson <lrj@arlinx.com> 66815Date: Sat Dec 22 15:14:00 2007 -0500 66816 66817 Add driver for STMicroelectronics M41T60 RTC 66818 66819 This driver is based on the driver for the M41T11. In the intended 66820 application, the RTC will be powered by a large capacitor, rather than a 66821 battery. The driver therefore checks to see whether the RTC has lost 66822 power. The chip's OUT bit is normally reset from its power-up state. If 66823 the OUT bit is read as set, or if the date and time are not valid, then the 66824 RTC is assumed to have lost power, and its date and time are reset to 66825 1900-01-01 00:00:00. 66826 66827 Support for adjusting the speed of the clock to improve accuracy is 66828 provided through an environment variable. 66829 66830 Signed-off-by: Larry Johnson <lrj@acm.org> 66831 66832commit d3471173e14b7544bb60339eda8d3d3906694b0a 66833Author: Larry Johnson <lrj@arlinx.com> 66834Date: Sat Dec 22 15:34:39 2007 -0500 66835 66836 Use out_be32() and friends to access memory-mapped registers in sequoia.c 66837 66838 Signed-off-by: Larry Johnson <lrj@acm.org> 66839 66840commit c68f59fe3ec16769f82b5fca7421983c336d3aac 66841Author: Larry Johnson <lrj@arlinx.com> 66842Date: Sat Dec 22 15:34:20 2007 -0500 66843 66844 Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia 66845 66846 Signed-off-by: Larry Johnson <lrj@acm.org> 66847 66848commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8 66849Author: Larry Johnson <lrj@arlinx.com> 66850Date: Sat Dec 22 15:23:50 2007 -0500 66851 66852 Cosmetic changes to ECC POST for AMCC Denali core 66853 66854 Signed-off-by: Larry Johnson <lrj@acm.org> 66855 66856commit 2e583d6c81034f80a267b89fa55498ae063ccef1 66857Author: Stefan Roese <sr@denx.de> 66858Date: Wed Dec 26 20:20:19 2007 +0100 66859 66860 ppc4xx: Fix compilation problem in 405 cache POST test 66861 66862 Signed-off-by: Stefan Roese <sr@denx.de> 66863 66864commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708 66865Author: Stefan Roese <sr@denx.de> 66866Date: Sat Dec 22 12:20:09 2007 +0100 66867 66868 ppc4xx: Move virtual address of POST cache test to bigger address 66869 66870 On Sequoia & LWMON5 the virtual address of the POST cache test is now 66871 moved to a bigger address. This enables usage of more memory on those 66872 boards. 66873 66874 Signed-off-by: Stefan Roese <sr@denx.de> 66875 66876commit d91722102cf63f77a0148ed3f3d54a26d87575e9 66877Author: Stefan Roese <sr@denx.de> 66878Date: Sat Dec 22 12:18:26 2007 +0100 66879 66880 ppc4xx: Fix problem in 44x cache POST routine 66881 66882 As repoted by Larry Johnson, running "diag run cache" caused a crash 66883 in U-Boot. This problem was introduced by a patch that removed the 66884 TLB entry for the cache test after the test has completed. Since this 66885 TLB was only setup once, a 2nd attempt to run this cache test 66886 failed with a crash. Now this TLB entry is created every time the 66887 routine is called. 66888 66889 Signed-off-by: Stefan Roese <sr@denx.de> 66890 66891commit b0265b576bb8fa9465f99e99c323768b562fadc2 66892Author: Stefan Roese <sr@denx.de> 66893Date: Fri Dec 21 07:51:29 2007 +0100 66894 66895 ppc4xx: Update Makalu fdt support 66896 66897 Signed-off-by: Stefan Roese <sr@denx.de> 66898 66899commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea 66900Author: Stefan Roese <sr@denx.de> 66901Date: Wed Dec 19 09:05:40 2007 +0100 66902 66903 ppc4xx: Add fdt support to AMCC Katmai eval board 66904 66905 Signed-off-by: Stefan Roese <sr@denx.de> 66906 66907commit 328a340392a5df9aaf00792be989df73e750859e 66908Author: Stefan Roese <sr@denx.de> 66909Date: Tue Dec 18 08:44:51 2007 +0100 66910 66911 ppc4xx: fdt: Cleanup setup of cpu node setup 66912 66913 Now the cpu node setup ("timebase-frequency" and "clock-frequency") is 66914 without using the absolute path to the cpu node. This makes it possible 66915 to use this U-Boot version with both versions of cpu-node naming 66916 "cpu@0" and the former "PowerPC,440EPx@0". 66917 66918 Signed-off-by: Stefan Roese <sr@denx.de> 66919 66920commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b 66921Author: Stefan Roese <sr@denx.de> 66922Date: Mon Dec 17 17:26:21 2007 +0100 66923 66924 ppc4xx: Fix lwmon5 compilation problem 66925 66926 Now that the 440EPx ECC test is not board specific anymore 66927 remove this Makefile. 66928 66929 Signed-off-by: Stefan Roese <sr@denx.de> 66930 66931commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62 66932Author: Anatolij Gustschin <agustschin@t-online.de> 66933Date: Wed Dec 5 17:43:20 2007 +0100 66934 66935 Fix ppc4xx clear_bss() code 66936 66937 ppc4xx clear_bss() fails if BSS segment size is not 66938 divisible by 4 without remainder. This patch provides 66939 fix for this problem. 66940 66941 Signed-off-by: Anatolij Gustschin <agust@denx.de> 66942 66943commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d 66944Author: Niklaus Giger <niklausgiger@gmx.ch> 66945Date: Fri Nov 30 18:35:11 2007 +0100 66946 66947 PPC4xx: Minimal changes to add vxWorks support 66948 66949 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 66950 66951commit 052440b022ca8981d39b6f8c10d1aa6326f47480 66952Author: Markus Klotzbücher <mk@denx.de> 66953Date: Fri Nov 23 13:09:18 2007 +0100 66954 66955 ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config 66956 66957 When using dhcp/bootp the "netmask" environment variable is not 66958 set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is 66959 desireable, so the following patch adds this this option to the board 66960 config. 66961 66962 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 66963 Signed-off-by: Stefan Roese <sr@denx.de> 66964 66965commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e 66966Author: Larry Johnson <lrj@arlinx.com> 66967Date: Sat Oct 27 12:48:15 2007 -0400 66968 66969 Fix/enhance ECC POST for 440EPx/GRx 66970 66971 This patch allows the ECC POST to be used for different boards with the 66972 PPC440 Denali SDRAM controller. Modifications include skipping the test 66973 if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization 66974 to prevent timing errors. 66975 66976 Signed-off-by: Larry Johnson <lrj@acm.org> 66977 66978commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4 66979Author: Larry Johnson <lrj@arlinx.com> 66980Date: Sat Oct 27 12:48:05 2007 -0400 66981 66982 PPC4xx: Move/rename ECC POST for 440EPx/GRx 66983 66984 Signed-off-by: Larry Johnson <lrj@acm.org> 66985 66986commit c29d2d3680046d430022c55e50fcb27f5866517e 66987Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66988Date: Fri Dec 14 11:20:33 2007 +0100 66989 66990 ppc4xx: use correct io accessors for 4xx ethernet POST 66991 66992 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66993 66994commit ba79fde58a48c0a6ff8e2a96caba951594142203 66995Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 66996Date: Fri Dec 14 11:19:56 2007 +0100 66997 66998 ppc4xx: fix flush + invalidate_dcache_range arguments 66999 67000 flush + invalidate_dcache_range() expect the start and stop+1 address.
67001 So the stop address is the first address behind (!) the range. 67002 67003 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 67004 67005commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd 67006Author: Stefan Roese <sr@denx.de> 67007Date: Fri Dec 14 08:41:29 2007 +0100 67008 67009 ppc4xx: fdt: use fdt_fixup_ethernet() 67010 67011 By using aliases in the dts file, the ethernet node fixup is 67012 much easier with the recently added functions. 67013 67014 Please note that the dts file needs the aliases for this to work. 67015 67016 Signed-off-by: Stefan Roese <sr@denx.de> 67017 67018commit 136288847e3b04f2ff357a067ad45e10afa0a24c 67019Author: Stefan Roese <sr@denx.de> 67020Date: Thu Dec 13 14:52:53 2007 +0100 67021 67022 ppc4xx: Bring 4xx fdt support up-to-date 67023 67024 This patch update the 4xx fdt support. It enabled fdt booting 67025 on the AMCC Kilauea and Sequoia for now. More can follow later 67026 quite easily. 67027 67028 Signed-off-by: Stefan Roese <sr@denx.de> 67029 67030commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e 67031Author: Stefan Roese <sr@denx.de> 67032Date: Thu Dec 27 07:50:54 2007 +0100 67033 67034 cfi_flash: Add missing check for erased dest to flash_write_cfibuffer() 67035 67036 The check for an sufficiently erased destination was missing in the 67037 buffered write function of the cfi flash driver (when 67038 CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that 67039 writing to such a region will fail with the currect error message. 67040 67041 Signed-off-by: Stefan Roese <sr@denx.de> 67042 67043commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994 67044Author: Martin Krause <martin.krause@tqs.de> 67045Date: Mon Nov 12 10:56:17 2007 +0100 67046 67047 Some configuration updates for the TQM5200 based TB5200 board: 67048 67049 - enable command line history 67050 - increase malloc space (because of bigger flash sectors) 67051 67052 Signed-off-by: Martin Krause <martin.krause@tqs.de> 67053 67054commit e318d9e9021a0af7508171f84ed09d0e79f0284e 67055Author: Martin Krause <martin.krause@tqs.de> 67056Date: Thu Sep 27 11:10:08 2007 +0200 67057 67058 TQM8xx: use the CFI flash driver on all TQM8xx boards 67059 67060 Signed-off-by: Martin Krause <martin.krause@tqs.de> 67061 67062commit 11d9eec479b470eab9242ab937fca70a876d9376 67063Author: Martin Krause <martin.krause@tqs.de> 67064Date: Wed Sep 26 17:55:56 2007 +0200 67065 67066 TQM885D: adjust for doubled flash sector size + some minor fixes 67067 67068 Signed-off-by: Martin Krause <martin.krause@tqs.de> 67069 67070commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83 67071Author: Jens Gehrlein <jens.gehrlein@tqs.de> 67072Date: Wed Sep 26 17:55:54 2007 +0200 67073 67074 TQM885D: Exchanged SDRAM timing by a more relaxed timing. 67075 67076 CAS-Latency=2, Write Recovery Time tWR=2 67077 The max. supported bus frequency is 66 MHz. Therefore, changed 67078 threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz. 67079 67080 Signed-off-by: Martin Krause <martin.krause@tqs.de> 67081 67082commit b988b8cd443989be65161888eea0127ad03f846f 67083Author: Martin Krause <martin.krause@tqs.de> 67084Date: Wed Sep 26 17:55:56 2007 +0200 67085 67086 TQM885D: use calculated cpuclk instead of measuring it 67087 67088 On the TQM885D the measurement of cpuclk with the PIT reference 67089 timer ist not necessary. Since all module variants use the same 67090 external 10 MHz oscillator, the cpuclk only depends on the PLL 67091 configuration - which is readable by software. 67092 67093 Signed-off-by: Martin Krause <martin.krause@tqs.de> 67094 67095commit 492c7049869348d31168de8dad89651315e468e0 67096Author: Jens Gehrlein <jens.gehrlein@tqs.de> 67097Date: Thu Sep 27 14:54:46 2007 +0200 67098 67099 TQM885D: fix SDRAM refresh 67100 67101 At 133 MHz the current SDRAM refresh rate is too fast 67102 (measured 4 * 1.17 us). 67103 CFG_MAMR_PTA changes from 39 to 128. This result 67104 in a refresh rate of 4 * 7.8 us at the default clock 67105 66 MHz. At 133 MHz the value will be then 4 * 3.8 us. 67106 This is a compromise until a new method is found to 67107 adjust the refresh rate. 67108 67109 Signed-off-by: Martin Krause <martin.krause@tqs.de> 67110 67111commit dabad4b9bc46908e301f73ce76b38b23626a96e9 67112Author: Jens Gehrlein <jens.gehrlein@tqs.de> 67113Date: Thu Sep 27 14:54:46 2007 +0200 67114 67115 TQM860M: Support for 10col SDRAMs, max. 128 MiB 67116 67117 Signed-off-by: Martin Krause <martin.krause@tqs.de> 67118 67119commit 61fb15c516fef5631e305f1976d7b3a679725856 67120Author: Wolfgang Denk <wd@denx.de> 67121Date: Thu Dec 27 01:52:50 2007 +0100 67122 67123 Fix coding style issues; update CHANGELOG. 67124 67125 Signed-off-by: Wolfgang Denk <wd@denx.de> 67126 67127commit 467bcee11fe26ad422f2de971aa70866079870f2 67128Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67129Date: Fri Dec 14 15:36:18 2007 +0100 67130 67131 cfi_flash: Add manufacturer-specific fixups 67132 67133 Run fixups based on the JEDEC manufacturer ID independent of the 67134 command set ID. 67135 67136 This changes current behaviour: Previously, geometry reversal for AMD 67137 chips were done based on the command set ID, while they are now done 67138 based on the JEDEC manufacturer and device ID. 67139 67140 Also add fixup for top-boot Atmel chips. A fixup is needed for 67141 AT49BV6416(T) too, but since u-boot currently only reads the low byte 67142 of the device ID, there's no way to tell it apart from AT49BV642D, 67143 which should not have this fixup. Since AT49BV642D support is 67144 necessary to get ATNGW100 board support into mainline, I've commented 67145 out the fixup for now. 67146 67147 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67148 67149commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a 67150Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67151Date: Fri Dec 14 15:36:17 2007 +0100 67152 67153 cfi_flash: Add cmdset-specific init functions 67154 67155 Move things like reading JEDEC IDs and fixing up geometry reversal 67156 into separate functions. The geometry reversal fixup is now performed 67157 by altering the qry structure directly, which makes the sector init 67158 code slightly cleaner. 67159 67160 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67161 67162commit e23741f4a6d8047520ef0d4971762749b3587d32 67163Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67164Date: Fri Dec 14 15:36:16 2007 +0100 67165 67166 cfi_flash: Read whole QRY structure in one go 67167 67168 Read out the whole CFI Standard Query structure after successful cfi 67169 identification. This allows subsequent code to access this information 67170 directly without having to go through flash_read_uchar() and friends. 67171 67172 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67173 67174commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db 67175Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67176Date: Mon Dec 17 11:02:44 2007 +0100 67177 67178 AVR32: Fix logic inversion in disable_interrupts() 67179 67180 disable_interrupts() should return nonzero if interrupts were 67181 _enabled_ before, not disabled. 67182 67183 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67184 67185commit acac475212cbedb17b321a363a1c878e2b47b37f 67186Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67187Date: Fri Dec 14 16:51:22 2007 +0100 67188 67189 AVR32: Enable interrupts at bootup 67190 67191 The timer code depends on the timer interrupt to keep track of the 67192 upper 32 bits of the cycle counter. This obviously doesn't work when 67193 interrupts are disabled the whole time. 67194 67195 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67196 67197commit 9570bcd87f4db255514f43b6701746c412f8fef0 67198Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67199Date: Thu Nov 15 10:03:45 2007 +0100 67200 67201 AVR32: Fix wrong pin setup for USART3 67202 67203 As reported by Gerhard Berghofer: 67204 67205 in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18 67206 instead of PB18 and PB19. 67207 67208 which is obviously correct. There's currently no code that uses 67209 USART3, but custom boards may run into problems. 67210 67211 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67212 67213commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918 67214Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67215Date: Thu Nov 1 12:44:20 2007 +0100 67216 67217 README: Remove ATSTK1000 daughterboard list 67218 67219 As noted by Kim Phillips, these lists tend to become out of date. 67220 67221 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67222 67223commit c81cbbad21cb0ae983e2e796211202234cdc8be2 67224Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67225Date: Tue Oct 30 14:56:36 2007 +0100 67226 67227 Add ATSTK100[234] to MAINTAINERS 67228 67229 Add all the ATSTK1000 daughterboards to MAINTAINERS along with their 67230 "mother". Also update the entry for ATSTK1000 to be not only about the 67231 AP7000 CPU; it's intended to handle all CPUs in the AT32AP family. 67232 67233 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67234 67235commit 64ff2357b1727213803591813dbc779c924bf772 67236Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67237Date: Mon Oct 29 13:02:54 2007 +0100 67238 67239 AVR32: Add support for the ATSTK1004 board 67240 67241 ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU, 67242 which is a derivative of AT32AP7000. 67243 67244 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67245 67246commit 667568db157f374b85abd7e03596ddd1f0b25681 67247Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67248Date: Mon Oct 29 13:02:54 2007 +0100 67249 67250 AVR32: Add support for the ATSTK1003 board 67251 67252 ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU, 67253 which is a derivative of AT32AP7000. 67254 67255 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67256 67257commit 5fee84a794a51ec830548cda485a770efb018b92 67258Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67259Date: Mon Oct 29 13:23:33 2007 +0100 67260 67261 AVR32: Make some AT32AP700x peripherals optional 67262 67263 Add a chip-features file providing definitions of the form 67264 67265 AT32AP700x_CHIP_HAS_<peripheral> 67266 67267 to indicate the availability of the given peripheral on the currently 67268 selected chip. 67269 67270 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67271 67272commit 36f28f8a9605ee5dcfa330482cfc62171261af97 67273Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67274Date: Mon Oct 29 13:09:56 2007 +0100 67275 67276 AVR32: Rename at32ap7000 -> at32ap700x 67277 67278 The SoC-specific code for all the AT32AP700x CPUs is practically 67279 identical; the only difference is that some chips have less features 67280 than others. By doing this rename, we can add support for the AP7000 67281 derivatives simply by making some features conditional. 67282 67283 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67284 67285commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e 67286Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67287Date: Fri Jun 29 18:22:34 2007 +0200 67288 67289 atmel_mci: Show SR when block read fails 67290 67291 Show controller status as well as card status when an error occurs 67292 during block read. 67293 67294 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67295 67296commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d 67297Author: Stefan Roese <sr@denx.de> 67298Date: Thu Dec 13 14:52:53 2007 +0100 67299 67300 ppc4xx: Bring 4xx fdt support up-to-date 67301 67302 This patch update the 4xx fdt support. It enabled fdt booting 67303 on the AMCC Kilauea and Sequoia for now. More can follow later 67304 quite easily. 67305 67306 Signed-off-by: Stefan Roese <sr@denx.de> 67307 67308commit 12d30aa79779c2aa7a998bbae4c075f822a53004 67309Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67310Date: Thu Dec 13 12:56:34 2007 +0100 67311 67312 cfi_flash: Use map_physmem() and unmap_physmem() 67313 67314 Use map_physmem() and unmap_physmem() to convert from physical to 67315 virtual addresses. This gives the arch a chance to provide an uncached 67316 mapping for flash accesses. 67317 67318 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67319 67320commit 4d7d6936eb29af7cca330937808312aa5f61454d 67321Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67322Date: Thu Dec 13 12:56:33 2007 +0100 67323 67324 Introduce map_physmem() and unmap_physmem() 67325 67326 map_physmem() returns a virtual address which can be used to access a 67327 given physical address without involving the cache. unmap_physmem() 67328 should be called when the virtual address returned by map_physmem() is 67329 no longer needed. 67330 67331 This patch adds a stub implementation which simply returns the 67332 physical address cast to a uchar * for all architectures except AVR32, 67333 which converts the physical address to an uncached virtual mapping. 67334 unmap_physmem() is a no-op on all architectures, but if any 67335 architecture needs to do such mappings through the TLB, this is the 67336 hook where those TLB entries can be invalidated. 67337 67338 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67339 67340commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d 67341Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67342Date: Thu Dec 13 12:56:32 2007 +0100 67343 67344 cfi_flash: Introduce read and write accessors 67345 67346 Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use 67347 them to access the flash memory. This makes it clearer when the flash 67348 is actually being accessed; merely dereferencing a volatile pointer 67349 looks just like any other kind of access. 67350 67351 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67352 67353commit 812711ce6b3a386125dcf0d6a59588e461abbb87 67354Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67355Date: Thu Dec 13 12:56:31 2007 +0100 67356 67357 Implement __raw_{read,write}[bwl] on all architectures 67358 67359 This adds implementations of __raw_read[bwl] and __raw_write[bwl] to 67360 m68k, ppc, nios and nios2. The m68k and ppc implementations were taken 67361 from Linux. 67362 67363 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67364 67365commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd 67366Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67367Date: Sat Oct 6 18:55:36 2007 +0200 67368 67369 cfi_flash: Reorder functions and eliminate extra prototypes 67370 67371 Reorder the functions in cfi_flash.c so that each function only uses 67372 functions that have been defined before it. This allows the static 67373 prototype declarations near the top to be eliminated and might allow 67374 gcc to do a better job inlining functions. 67375 67376 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67377 67378commit 3055793bcbdf24b1f8117f606ffb766d32eb766f 67379Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67380Date: Thu Dec 13 12:56:29 2007 +0100 67381 67382 cfi_flash: Make some needlessly global functions static 67383 67384 Make functions not declared in any header file static. 67385 67386 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67387 67388commit 7e5b9b471518c5652febc68ba62b432193d6abf4 67389Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 67390Date: Thu Dec 13 12:56:28 2007 +0100 67391 67392 cfi_flash: Break long lines 67393 67394 This patch tries to keep all lines in the cfi_flash driver below 80 67395 columns. There are a few lines left which don't fit this requirement 67396 because I couldn't find any trivial way to break them (i.e. it would 67397 take some restructuring, which I intend to do in a later patch.) 67398 67399 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 67400 67401commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a 67402Author: Bartlomiej Sieka <tur@semihalf.com> 67403Date: Tue Dec 11 13:59:57 2007 +0100 67404 67405 CFI: synchronize command offsets with Linux CFI driver 67406 67407 Fixes non-working CFI Flash on the Inka4x0 board. 67408 67409 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 67410 67411commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d 67412Author: Kumar Gala <galak@kernel.crashing.org> 67413Date: Fri Dec 7 12:17:34 2007 -0600 67414 67415 Handle MPC85xx PCIe reset errata (PCI-Ex 38) 67416 67417 On the MPC85xx boards that have PCIe enable the PCIe errata fix. 67418 (MPC8544DS, MPC8548CDS, MPC8568MDS). 67419 67420 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67421 67422commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c 67423Author: Kumar Gala <galak@kernel.crashing.org> 67424Date: Fri Dec 7 12:04:30 2007 -0600 67425 67426 Update Freescale MPC85xx ADS/CDS/MDS board config 67427 67428 * Enabled CONFIG_CMD_ELF 67429 67430 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67431 67432commit d435793229ce29a42797c1edc39f5b34f987f91a 67433Author: Kumar Gala <galak@kernel.crashing.org> 67434Date: Fri Dec 7 04:59:26 2007 -0600 67435 67436 Handle Asynchronous DDR clock on 85xx 67437 67438 The MPC8572 introduces the concept of an asynchronous DDR clock with 67439 regards to the platform clock. 67440 67441 Introduce get_ddr_freq() to report the DDR freq regardless of sync/async 67442 mode. 67443 67444 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67445 67446commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10 67447Author: Kumar Gala <galak@kernel.crashing.org> 67448Date: Thu Nov 29 10:34:28 2007 -0600 67449 67450 Update Freescale MPC85xx ADS/CDS/MDS board config 67451 67452 * Removed some misc environment setup 67453 * Enabled CONFIG_CMDLINE_EDITING 67454 67455 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67456 67457commit 415a613babb84d5e5d5b42e8e553868c71fc3a64 67458Author: Kumar Gala <galak@kernel.crashing.org> 67459Date: Thu Nov 29 10:47:44 2007 -0600 67460 67461 Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale. 67462 67463 Minor path corrections needed to ensure buildability. 67464 67465 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67466 67467commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf 67468Author: Kumar Gala <galak@kernel.crashing.org> 67469Date: Thu Nov 29 10:16:18 2007 -0600 67470 67471 Move the MPC8540 ADS board under board/freescale. 67472 67473 Minor path corrections needed to ensure buildability. 67474 67475 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67476 67477commit 870ceac5b3a3486c109396e005af81ae762b5710 67478Author: Kumar Gala <galak@kernel.crashing.org> 67479Date: Thu Nov 29 10:14:50 2007 -0600 67480 67481 Move the MPC8560 ADS board under board/freescale. 67482 67483 Minor path corrections needed to ensure buildability. 67484 67485 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67486 67487commit acbca876fb3fec25cd9c55b0efc81ff618ff5262 67488Author: Kumar Gala <galak@kernel.crashing.org> 67489Date: Thu Nov 29 10:13:47 2007 -0600 67490 67491 Move the MPC8568 MDS board under board/freescale. 67492 67493 Minor path corrections needed to ensure buildability. 67494 67495 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67496 67497commit a853d56c59b33415304531443633808736acfc6e 67498Author: Kumar Gala <galak@kernel.crashing.org> 67499Date: Thu Nov 29 02:18:59 2007 -0600 67500 67501 Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx 67502 67503 We already had defines for LAWAR_TRGT_IF_* that we should use 67504 rather than creating new ones. Also, added some missing defines for 67505 PCIE targets. 67506 67507 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67508 67509commit 04db400892da37b76a585e332a0c137954ad2015 67510Author: Kumar Gala <galak@kernel.crashing.org> 67511Date: Thu Nov 29 02:10:09 2007 -0600 67512 67513 Stop using immap_t on 85xx 67514 67515 In the future the offsets to various blocks may not be in same location. 67516 Move to using CFG_MPC85xx_*_ADDR as the base of the registers 67517 instead of getting it via &immap. 67518 67519 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67520 67521commit 2714223f8e04ab3e4133ff65872eef366d90bfea 67522Author: Kumar Gala <galak@kernel.crashing.org> 67523Date: Thu Nov 29 01:23:09 2007 -0600 67524 67525 Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt 67526 67527 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67528 67529commit c480861bf000156e6a3e932c258db59ff2212dd3 67530Author: Kumar Gala <galak@kernel.crashing.org> 67531Date: Thu Nov 29 01:06:19 2007 -0600 67532 67533 Update MPC8568 MDS to use libfdt 67534 67535 Updated the MPC8568 MDS config to use libfdt and assume use of aliases for 67536 ethernet, pci, and serial for the various fixups that are done. 67537 67538 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67539 67540commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7 67541Author: Haiying Wang <Haiying.Wang@freescale.com> 67542Date: Wed Nov 14 15:52:06 2007 -0500 67543 67544 Add PCI Express support on MPC8568MDS 67545 67546 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 67547 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67548 67549commit b90d25497625b90ffa3f2911a0895ca237556ff5 67550Author: Kumar Gala <galak@kernel.crashing.org> 67551Date: Thu Nov 29 00:11:44 2007 -0600 67552 67553 Update MPC85xx CDS to use libfdt 67554 67555 Updated the MPC85xx CDS config to use libfdt and assume use of aliases for 67556 ethernet, pci, and serial for the various fixups that are done. 67557 67558 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67559 67560commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255 67561Author: Kumar Gala <galak@kernel.crashing.org> 67562Date: Wed Nov 28 22:54:27 2007 -0600 67563 67564 Update MPC8540 ADS to use libfdt 67565 67566 Updated the MPC8540 ADS config to use libfdt and assume use of aliases for 67567 ethernet, pci, and serial for the various fixups that are done. 67568 67569 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67570 67571commit 5ce715802f6c50dc78b3405b92f184b1e3710519 67572Author: Kumar Gala <galak@kernel.crashing.org> 67573Date: Wed Nov 28 22:40:31 2007 -0600 67574 67575 Update MPC8560 ADS to use libfdt 67576 67577 Updated the MPC8560 ADS config to use libfdt and assume use of aliases for 67578 ethernet, pci, and serial for the various fixups that are done. 67579 67580 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67581 67582commit aafeefbdb8b029f5ca2a195598d0a501a606eea9 67583Author: Kumar Gala <galak@kernel.crashing.org> 67584Date: Wed Nov 28 00:36:33 2007 -0600 67585 67586 Stop using immap_t for cpm offset on 85xx 67587 67588 In the future the offsets to various blocks may not be in same location. 67589 Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers 67590 instead of getting it via &immap->im_cpm. 67591 67592 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67593 67594commit f59b55a5b8fcadaa99781ba48e7a38e956afa527 67595Author: Kumar Gala <galak@kernel.crashing.org> 67596Date: Tue Nov 27 23:25:02 2007 -0600 67597 67598 Stop using immap_t for guts offset on 85xx 67599 67600 In the future the offsets to various blocks may not be in same location. 67601 Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers 67602 instead of getting it via &immap->im_gur. 67603 67604 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67605 67606commit 50c03c8cf494d91cdec39670d95337c743e16ec9 67607Author: Kumar Gala <galak@kernel.crashing.org> 67608Date: Tue Nov 27 22:42:34 2007 -0600 67609 67610 Update MPC8544 DS config 67611 67612 * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2 67613 * Removed some misc environment setup 67614 * Moved to using fdtfile & fdtaddr as fdt env var names 67615 * Enabled CONFIG_CMDLINE_EDITING 67616 67617 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67618 67619commit addce57e2e4c49e77ffb2020a84690713bb18b47 67620Author: Kumar Gala <galak@kernel.crashing.org> 67621Date: Mon Nov 26 17:12:24 2007 -0600 67622 67623 Update MPC8544DS to use libfdt 67624 67625 Updated the MPC8544DS config to use libfdt and assume use of aliases for 67626 ethernet, pci, and serial for the various fixups that are done. 67627 67628 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67629 67630commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65 67631Author: Kumar Gala <galak@kernel.crashing.org> 67632Date: Thu Nov 29 00:15:30 2007 -0600 67633 67634 Add libfdt based ft_cpu_setup for mpc85xx 67635 67636 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67637 67638commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9 67639Author: Stefan Roese <sr@denx.de> 67640Date: Tue Dec 11 13:38:19 2007 +0100 67641 67642 ppc4xx: Correct GPIO offset in gpio_config() 67643 67644 Thanks to Gary Jennejohn for pointing this out. 67645 67646 Signed-off-by: Stefan Roese <sr@denx.de> 67647 67648commit 8809a2713b1ceaf3da55d9d785470294f15de06a 67649Author: Stefan Roese <sr@denx.de> 67650Date: Tue Dec 11 11:46:01 2007 +0100 67651 67652 rtc: Fix merging problem 67653 67654 Signed-off-by: Stefan Roese <sr@denx.de> 67655 67656commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b 67657Author: Stefan Roese <sr@denx.de> 67658Date: Sat Dec 8 14:47:34 2007 +0100 67659 67660 ppc4xx: 405EX: Correctly enable USB pins 67661 67662 This patch selects the USB data pins in the 405EX GPIO and MFC (multi 67663 function control) registers. This is done for the AMCC Kilauea and 67664 Makalu eval boards. 67665 67666 Signed-off-by: Stefan Roese <sr@denx.de> 67667 67668commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39 67669Author: Stefan Roese <sr@denx.de> 67670Date: Sat Dec 8 08:25:09 2007 +0100 67671 67672 CFI: Coding style cleanup 67673 67674 Signed-off-by: Stefan Roese <sr@denx.de> 67675 67676commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22 67677Author: Michael Schwingen <michael@schwingen.org> 67678Date: Fri Dec 7 23:35:02 2007 +0100 67679 67680 CFI: support JEDEC flash roms in CFI-flash framework 67681 67682 The following patch adds support for non-CFI flash ROMS, by hooking into the 67683 CFI flash code and using most of its code, as recently discussed here in the 67684 thread "Mixing CFI and non-CFI flashs". 67685 67686 Signed-off-by: Michael Schwingen <michael@schwingen.org> 67687 Signed-off-by: Stefan Roese <sr@denx.de> 67688 67689commit c01b17dd856fa120b2970f50d9598546a4927ec3 67690Author: Gerald Van Baren <vanbaren@cideas.com> 67691Date: Wed Nov 28 21:24:50 2007 -0500 67692 67693 Conditionally compile fdt_fixup_ethernet() 67694 67695 Fix compiler warnings: On boards that don't have ethernets defined, 67696 don't compile fdt_fixup_ethernet(). 67697 67698commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7 67699Author: Kumar Gala <galak@kernel.crashing.org> 67700Date: Tue Nov 27 21:59:46 2007 -0600 67701 67702 Convert boards that set memory node to use fdt_fixup_memory() 67703 67704 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67705 67706commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058 67707Author: Kumar Gala <galak@kernel.crashing.org> 67708Date: Mon Nov 26 17:06:15 2007 -0600 67709 67710 Added fdt_fixup_stdout that uses aliases to set linux,stdout-path 67711 67712 We use a combination of the serialN alias and CONFIG_CONS_INDEX to 67713 determine which serial alias we should set linux,stdout-path to. 67714 67715 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67716 67717commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc 67718Author: Kumar Gala <galak@kernel.crashing.org> 67719Date: Mon Nov 26 14:57:45 2007 -0600 67720 67721 Add common memory fixup function 67722 67723 Add the function fdt_fixup_memory() to fixup the /memory node of the fdt 67724 67725 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67726 67727commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157 67728Author: Kumar Gala <galak@kernel.crashing.org> 67729Date: Mon Nov 26 11:19:12 2007 -0600 67730 67731 Conditionally compile fdt_support.c 67732 67733 Modify common/Makefile to conditionally compile fdt_support.c based 67734 on CONFIG_OF_LIBFDT. 67735 67736 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67737 67738commit d88e7ba0980773479e1a64badb293116071b7ef0 67739Author: Kumar Gala <galak@kernel.crashing.org> 67740Date: Mon Nov 26 10:41:40 2007 -0600 67741 67742 Fix build breakage due to libfdt import 67743 67744 The IDS8247 got lost in the update and need an API update 67745 do to rename of functions in libfdt. 67746 67747 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 67748 67749commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714 67750Author: Gerald Van Baren <vanbaren@cideas.com> 67751Date: Fri Nov 23 19:43:20 2007 -0500 67752 67753 Add spaces around the = in the fdt print format. 67754 67755 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 67756 67757commit 29592ecba3b932b9b152bcec6c0c0806412db4a3 67758Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67759Date: Fri Dec 7 01:25:38 2007 +0900 67760 67761 sh: Moved driver of the SuperH dependence 67762 67763 The composition of the directory in the drivers/ changed. 67764 I moved SuperH serial driver and marubun PCMCIA driver. 67765 67766 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67767 67768commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2 67769Author: Wolfgang Denk <wd@denx.de> 67770Date: Thu Dec 6 10:21:19 2007 +0100 67771 67772 Release v1.3.1 67773 67774 Signed-off-by: Wolfgang Denk <wd@denx.de> 67775 67776commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb 67777Author: Wolfgang Denk <wd@denx.de> 67778Date: Thu Dec 6 10:21:03 2007 +0100 67779 67780 ADS5121 Board: fix compile problem. 67781 67782 Signed-off-by: Wolfgang Denk <wd@denx.de> 67783 67784commit a27044b14a9e93678a82d7b35f202b93e7687abc 67785Author: Stefan Roese <sr@denx.de> 67786Date: Thu Dec 6 05:58:43 2007 +0100 67787 67788 ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards 67789 67790 This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by 67791 setting the FIXD bit in the SDR0_MFR register. Here a description of the 67792 symptoms: 67793 67794 Problem Description 67795 ------------------------------ 67796 If a DMA is performed between memory and PCI with the DMA 1 Controller 67797 using prefetch, and as a result uses a special purpose buffer selected by 67798 the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29), 67799 the first part of the transfer sequence is performed twice. The 67800 PPC440SPe PCI Controller requests more data than was needed such that in 67801 the case of enforce memory protection, a host CPU exception can occur. 67802 No data is corrupted, because data transfer is stopped in the PCI 67803 Controller. Prefetch enable is specified by setting DMA Configuration 67804 Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0. 67805 67806 Behavior that may be observed in a running system 67807 --------------------------------------------------------------------------- 67808 67809 1. DMA performance is decreased because of the double access on the PCI bus 67810 interface. 67811 2. If an illegal access to some address on the PCI bus is detected at the 67812 system level, a machine check or similar system error may occur. 67813 67814 Workarounds Available 67815 ---------------------------------- 67816 67817 1. Do not program prefetch. Note that a prefetch command cannot be programmed 67818 without selecting a special purpose buffer. 67819 2. To avoid crossing a physical boundary of the PCI slave device, add 512 67820 bytes of address to the PCI address range. 67821 67822 This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com> 67823 from AMCC and slighly changed. 67824 67825 Signed-off-by: Pravin M. Bathija <pbathija@amcc.com> 67826 Signed-off-by: Stefan Roese <sr@denx.de> 67827 67828commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a 67829Author: Stefan Roese <sr@denx.de> 67830Date: Tue Dec 4 16:29:48 2007 +0100 67831 67832 ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support 67833 67834 Signed-off-by: Stefan Roese <sr@denx.de> 67835 67836commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d 67837Author: Wolfgang Denk <wd@denx.de> 67838Date: Mon Dec 3 00:15:28 2007 +0100 67839 67840 Prepare for 1.3.1-rc1 67841 67842 Signed-off-by: Wolfgang Denk <wd@denx.de> 67843 67844commit e15e33433e7c05111968dc9b434a52fd42cbd221 67845Author: Stefan Roese <sr@denx.de> 67846Date: Fri Nov 30 07:15:41 2007 +0100 67847 67848 ppc4xx: Kilauea: Add PCIe reset assertion upon power-up 67849 67850 This manual PCIe reset triggering solves the problem seen with the 67851 Intel EPRO/1000 card, which was not detected (link not established) 67852 upon power-up reset. 67853 67854 Signed-off-by: Stefan Roese <sr@denx.de> 67855 67856commit 260eea5676ca46903a335686cc020b29c4ca46fe 67857Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67858Date: Thu Nov 29 01:21:54 2007 +0900 67859 67860 sh: Add SuperH boards maintainer to MAINTAINERS file 67861 67862 Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file. 67863 67864 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67865 67866commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747 67867Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67868Date: Thu Nov 29 00:13:04 2007 +0900 67869 67870 sh: Add ms7750se support in MAKEALL 67871 67872 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67873 67874commit c7144373427a178332bf9754131c8c34c52c200a 67875Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67876Date: Tue Nov 27 09:44:53 2007 +0100 67877 67878 sh: Add sh3 and sh4 support in MAKEALL 67879 67880 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67881 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67882 67883commit 130080874a3d28450098481a262c5f7c855e908d 67884Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67885Date: Sun Nov 25 02:51:17 2007 +0900 67886 67887 sh: Add document for SuperH. 67888 67889 This document is a summary of information concerning SuperH of U-Boot. 67890 67891 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67892 67893commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d 67894Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67895Date: Sun Nov 25 02:39:31 2007 +0900 67896 67897 sh: Add marubun's pcmcia driver 67898 67899 Marubun pcmcia is a chip for PCMCIA used with SuperH. 67900 Of course, this can be used even by other architectures. 67901 When use this driver, came to be able to use CompactFlash 67902 and Ethernet. 67903 67904 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67905 67906commit febd86b969b975289ed948f1ac0eb9722da41ced 67907Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67908Date: Sun Nov 25 02:32:13 2007 +0900 67909 67910 sh: Update SuperH SCIF driver 67911 67912 - Changed volatile unsigned to vu_. 67913 - Changed Makefile for kconfig. 67914 67915 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 67916 67917commit 8be760903645af09871be50ad0a6f9ebb62b311d 67918Author: Stefan Roese <sr@denx.de> 67919Date: Tue Nov 27 11:57:35 2007 +0100 67920 67921 ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing 67922 67923 After an error in the AMCC 405EX users manual now correctly configure 67924 IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ 67925 usage. 67926 67927 Signed-off-by: Stefan Roese <sr@denx.de> 67928 67929commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788 67930Author: Wolfgang Denk <wd@denx.de> 67931Date: Mon Nov 26 19:18:21 2007 +0100 67932 67933 Cleanup coding style; update CHANGELOG 67934 67935 Signed-off-by: Wolfgang Denk <wd@denx.de> 67936 67937commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b 67938Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67939Date: Sun Nov 25 22:39:25 2007 +0100 67940 67941 MAKEALL: add missing 512x boards in ppc 67942 67943 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67944 67945commit a340c325e668ca7386c2276387681720be9c3757 67946Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67947Date: Sun Nov 25 18:45:47 2007 +0100 67948 67949 Makefile : fix tags ctags etags with new drivers organization 67950 67951 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67952 67953commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e 67954Author: Stefan Roese <sr@denx.de> 67955Date: Mon Nov 26 15:06:14 2007 +0100 67956 67957 ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage 67958 67959 As suggested by Senao, use a different EBC_PB0AP setup for 400MHz 67960 operation. 67961 67962 Signed-off-by: Stefan Roese <sr@denx.de> 67963 67964commit ca1ce226287270bb01e25b8e3674c701f12edf19 67965Author: Stefan Roese <sr@denx.de> 67966Date: Mon Nov 26 15:01:45 2007 +0100 67967 67968 ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt 67969 67970 Signed-off-by: Stefan Roese <sr@denx.de> 67971 67972commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d 67973Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67974Date: Sun Nov 25 18:45:47 2007 +0100 67975 67976 Makefile : fix tags ctags etags with new drivers organization 67977 67978 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67979 67980commit 59829cc189378c142c13d2aa8d9a897d8bef3961 67981Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67982Date: Sat Nov 24 21:26:56 2007 +0100 67983 67984 drivers/mtd : move mtd drivers to drivers/mtd 67985 67986 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67987 67988commit 318c0b90431f2648552e5ade78833f42652ce859 67989Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67990Date: Sat Nov 24 21:17:55 2007 +0100 67991 67992 drivers/misc : move misc drivers to drivers/misc 67993 67994 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67995 67996commit 33daf5b7858807cb4ce4158c2c56524671c14c08 67997Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 67998Date: Sat Nov 24 21:13:59 2007 +0100 67999 68000 drivers/block : move block drivers to drivers/block
68001 68002 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68003 68004commit 0c698dcaa70275eb8814f665b545547cee013892 68005Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68006Date: Sat Nov 24 20:59:50 2007 +0100 68007 68008 drivers/rtc : move rtc drivers to drivers/rtc 68009 68010 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68011 68012commit f868cc5a50757d94f36c312395481cb0f187d9e6 68013Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68014Date: Sat Nov 24 20:14:44 2007 +0100 68015 68016 drivers/hwmon : move hardware monitor drviers to drivers/hwmon 68017 68018 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68019 68020commit 16b195c82a18cbfd164800f17a1ef9db2e48331a 68021Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68022Date: Sat Nov 24 19:46:45 2007 +0100 68023 68024 drivers/input : move input drivers to drivers/input 68025 68026 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68027 68028commit e4558666293364fc3af1c1d9381ca933fa0f1275 68029Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68030Date: Sat Nov 24 19:40:11 2007 +0100 68031 68032 drivers/usb : move usb drivers to drivers/usb 68033 68034 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68035 68036commit 1378df792a7ff3abd1bf54a63f5475784f5b083c 68037Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68038Date: Sat Nov 24 19:33:38 2007 +0100 68039 68040 drivers/serial : move serial drivers to drivers/serial 68041 68042 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68043 68044commit 2439e4bfa111babf4bc07ba20efbf3e36036813e 68045Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68046Date: Wed Nov 21 21:19:24 2007 +0100 68047 68048 drivers/net : move net drivers to drivers/net 68049 68050 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68051 68052commit 352d259130b349fe9593b8dada641bd78a9659e5 68053Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68054Date: Tue Nov 20 20:41:48 2007 +0100 68055 68056 drivers/video : move video drivers to drivers/video 68057 68058 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68059 68060commit 73646217186aa17afc8e305c5f06f06dd335eaad 68061Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68062Date: Tue Nov 20 20:33:09 2007 +0100 68063 68064 drivers/pcmcia : move pcmcia drivers to drivers/pcmcia 68065 68066 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68067 68068commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc 68069Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68070Date: Tue Nov 20 20:28:09 2007 +0100 68071 68072 drivers/pci : move pci drivers to drivers/pci 68073 68074 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68075 68076commit 9162352817579840d7802da6d85872b3ca003c97 68077Author: Gerald Van Baren <vanbaren@cideas.com> 68078Date: Thu Nov 22 17:23:23 2007 -0500 68079 68080 Fix fdt printing for updated libfdt 68081 68082 Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup. 68083 68084 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 68085 68086commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c 68087Author: Kumar Gala <galak@kernel.crashing.org> 68088Date: Wed Nov 21 13:30:15 2007 -0600 68089 68090 Add additional fdt fixup helper functions 68091 68092 Added the following fdt fixup helpers: 68093 * do_fixup_by_prop{_u32} - Find matching nodes by property name/value 68094 * do_fixup_by_compat{_u32} - Find matching nodes by compat 68095 68096 The _u32 variants work the same only the property they are setting 68097 is know to be a 32-bit integer instead of a byte buffer. 68098 68099 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 68100 68101commit ab544633abdd14f4dd5d92e500b73eb59ef57e67 68102Author: Kumar Gala <galak@kernel.crashing.org> 68103Date: Wed Nov 21 11:11:03 2007 -0600 68104 68105 Add fdt_fixup_ethernet helper to set mac addresses 68106 68107 Added a fixup helper that uses aliases to set mac addresses 68108 in the device tree based on the bd_t 68109 68110 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 68111 68112commit dbaf07ce620aab249e3502b20a986234a6af1d3a 68113Author: Kumar Gala <galak@kernel.crashing.org> 68114Date: Wed Nov 21 14:07:46 2007 -0600 68115 68116 Fix warnings from import of libfdt 68117 68118 cmd_fdt.c: In function fdt_print: 68119 cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type 68120 cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type 68121 cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type 68122 cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type 68123 68124 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 68125 68126commit 8d04f02f6224e6983f4812ea4da704950ec8539c 68127Author: Kumar Gala <galak@kernel.crashing.org> 68128Date: Wed Oct 24 11:04:22 2007 -0500 68129 68130 Update libfdt from device tree compiler (dtc) 68131 68132 Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from 68133 the device tree compiler (dtc) project. 68134 68135 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 68136 68137commit e93becf80d732b64aef81b23e8b6ece02c40533d 68138Author: Kumar Gala <galak@kernel.crashing.org> 68139Date: Sat Nov 3 19:46:28 2007 -0500 68140 68141 Move do_fixup* for libfdt into common code 68142 68143 Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260 68144 into common/fdt_support.c and renamed: 68145 68146 do_fixup() -> do_fixup_by_path() 68147 do_fixup_u32() -> do_fixup_by_path_u32() 68148 68149 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 68150 68151commit f738b4a75998f42a7408defadc9baac7a31c92db 68152Author: Kumar Gala <galak@kernel.crashing.org> 68153Date: Thu Oct 25 16:15:07 2007 -0500 68154 68155 Make no options to fdt print default to '/' 68156 68157 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 68158 68159commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7 68160Author: Kumar Gala <galak@kernel.crashing.org> 68161Date: Wed Oct 24 10:21:57 2007 -0500 68162 68163 Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt 68164 68165 Removed: 68166 fdt_node_is_compatible 68167 fdt_find_node_by_type 68168 fdt_find_compatible_node 68169 68170 To ease merge of newer libfdt as we aren't using them anywhere at this time. 68171 68172 Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same 68173 reason. 68174 68175 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 68176 68177commit 98e2867cc85409b919f862e6c16026461ec955df 68178Author: Grant Likely <grant.likely@secretlab.ca> 68179Date: Wed Nov 21 09:19:37 2007 -0700 68180 68181 [BUILD] Remove libraries when updating autoconf.mk 68182 68183 Fix library problems caused by conditional compilation. Using 68184 autoconf.mk to decide which files to compile has caused a problem when 68185 changing configuration from one board to another without clearing out 68186 the library (*.a) files. 68187 68188 It used to be that the linker was always passed the same list of .o 68189 files when building the .a files. However, that is not longer true 68190 with conditional compilation. Now, a different board config will have 68191 a different file list passed to the linker. The problem occurs when 68192 a library has already been built and the board config is changed. 68193 68194 Since the linker will update instead of replace a preexisting library, 68195 then if the file list changes to remove some object files the old 68196 objects will still exist in the library. 68197 68198 The solution is to remove all old library files when autoconf.mk is 68199 made. 68200 68201 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68202 68203commit ed1353d74b9ce8a7fcd660570b848a184d614b5f 68204Author: Kumar Gala <galak@kernel.crashing.org> 68205Date: Wed Nov 21 08:49:50 2007 -0600 68206 68207 [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile 68208 68209 Modify libfdt/Makefile to conditionally compile the *.c files based 68210 on the board config. 68211 68212 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 68213 68214commit 4a43719a7738712811d822ca8125427b27a55cdc 68215Author: Grant Likely <grant.likely@secretlab.ca> 68216Date: Mon Sep 24 09:05:31 2007 -0600 68217 68218 [BUILD] conditionally compile common/cmd_*.c in common/Makefile 68219 68220 Modify common/Makefile to conditionally compile the cmd_*.c files based 68221 on the board config. 68222 68223 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68224 68225commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1 68226Author: Grant Likely <grant.likely@secretlab.ca> 68227Date: Mon Sep 24 09:05:31 2007 -0600 68228 68229 [BUILD] Generate include/autoconf.mk from board config files 68230 68231 Use cpp and sed to postprocess config.h and import the defined values 68232 into include/autoconf.mk. autoconf.mk is then included by config.mk to 68233 give 'make' access to the board configuration. 68234 68235 Doing this enables conditional compilation at the Makefile level instead 68236 of by wrapping every .c file with #ifdef/#endif wrappers. 68237 68238 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68239 68240commit 68b88999da87ab88e71e1306192905be3450198e 68241Author: Jon Loeliger <jdl@freescale.com> 68242Date: Tue Nov 20 15:02:26 2007 -0600 68243 68244 8610HPCD: Enable the 8610 Display Interface Unit 68245 68246 Signed-off-by: Jon Loeliger <jdl@freescale.com> 68247 68248commit 74f89faa9d1e77ed947e628d3effaa513fe05d05 68249Author: Jon Loeliger <jdl@freescale.com> 68250Date: Tue Nov 20 15:00:53 2007 -0600 68251 68252 Move 8610 DIU interface structure definitions to header file. 68253 68254 These two structures are still needed during the 68255 initialization and setup of the DIU hardware. 68256 So move them to the fsl_diu_fb.h file for now. 68257 Official "blah". 68258 68259 Noticed-by: York Sun <yorksun@freescale.com> 68260 Signed-off-by: Jon Loeliger <jdl@freescale.com> 68261 68262commit 080c646dbf474a109c3f85718fb01ce042a38c45 68263Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68264Date: Tue Nov 20 20:14:18 2007 +0100 68265 68266 drivers/i2c : move i2c drivers to drivers/i2c 68267 68268 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68269 68270commit 9a337ddc154a10a26f117fd147b009abcdeba75a 68271Author: Wolfgang Denk <wd@denx.de> 68272Date: Mon Nov 19 22:20:24 2007 +0100 68273 68274 Prepare for 1.3.0 release. 68275 68276 Signed-off-by: Wolfgang Denk <wd@denx.de> 68277 68278commit f30ad49b16bf998b03c1a5228b6c86369d61c258 68279Author: Haiying Wang <Haiying.Wang@freescale.com> 68280Date: Mon Nov 19 10:02:13 2007 -0500 68281 68282 Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS 68283 68284 CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it. 68285 68286 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 68287 68288commit f8c320609366176b31104d9bf5e295232e1c7f1d 68289Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 68290Date: Mon Nov 19 11:14:16 2007 +0900 68291 68292 [MIPS] board/gth2/lowlevel_init.S: Fix a build warning 68293 68294 lowlevel_init.S: Assembler messages: 68295 lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local. 68296 68297 Looking at codes, the `memtest' and `clearmem' are intentional mixed 68298 use of `global symbols' and `label' for debugging purpose. To make it 68299 build, just disable global-symbols-use for now. As a result `memtest' 68300 still remains as unused, but leave it be... 68301 68302 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 68303 68304commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab 68305Author: Wolfgang Denk <wd@denx.de> 68306Date: Mon Nov 19 12:59:14 2007 +0100 68307 68308 Fix build problems with mp2usb board 68309 68310 Signed-off-by: Wolfgang Denk <wd@denx.de> 68311 68312commit 6bf4c686afca1e86e1c384d59218f914605713bf 68313Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68314Date: Sun Nov 18 18:36:11 2007 +0100 68315 68316 s3c24x0: Fix usb_ohci.c missing in Makefile 68317 and usb_ohci.c warning differ in signedness 68318 68319 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68320 68321commit 6073f61e078da5ddb521b56256bcc36508589883 68322Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68323Date: Sun Nov 18 12:55:02 2007 +0100 68324 68325 pb1x00 board: Fix u16 status declaration when PCMCIA is defined 68326 68327 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68328 68329commit 8412d814ce8bf5570a2b747f1e7fd321097fe987 68330Author: Wolfgang Denk <wd@denx.de> 68331Date: Sun Nov 18 17:11:09 2007 +0100 68332 68333 Fix compiler warnings for ARM systems. 68334 68335 Signed-off-by: Wolfgang Denk <wd@denx.de> 68336 68337commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37 68338Author: Wolfgang Denk <wd@denx.de> 68339Date: Sun Nov 18 16:36:27 2007 +0100 68340 68341 Fix compiler warnings for PPC systems. Update CHANGELOG. 68342 68343 Signed-off-by: Wolfgang Denk <wd@denx.de> 68344 68345commit 653811a3c2b35856bf12e196dcc8c4694e28e420 68346Author: Stefan Roese <sr@denx.de> 68347Date: Sun Nov 18 14:44:44 2007 +0100 68348 68349 ppc4xx: Correct 405EX PCIe UTL register mapping 68350 68351 Map 4k mem space for UTL registers for each port. 68352 68353 Signed-off-by: Stefan Roese <sr@denx.de> 68354 68355commit 079c2c4fa71c0d1ebef394508df9088df8a308d3 68356Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68357Date: Sat Nov 17 11:31:10 2007 +0100 68358 68359 Fix warning differ in signedness in net/net.c and net/nfs.c 68360 68361commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81 68362Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68363Date: Sat Nov 17 20:42:45 2007 +0900 68364 68365 gth2.c: Fix a warning on gth2 build. 68366 68367 gth2.c: In function 'misc_init_r': 68368 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness 68369 68370 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68371 68372commit 2309c130aa4c84b91bd874a41269c923eb61b555 68373Author: Stefan Roese <sr@denx.de> 68374Date: Sat Nov 17 07:58:25 2007 +0100 68375 68376 Fix warning differ in signedness in common/cmd_scsi.c 68377 68378 Signed-off-by: Stefan Roese <sr@denx.de> 68379 68380commit 9ea61b57968554eaf0f474ec7e088b17d367f474 68381Author: Stefan Roese <sr@denx.de> 68382Date: Sat Nov 17 14:52:29 2007 +0100 68383 68384 ppc4xx: Update AMCC Kilauea config file 68385 68386 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE) 68387 68388 Signed-off-by: Stefan Roese <sr@denx.de> 68389 68390commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c 68391Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68392Date: Sat Nov 17 20:05:26 2007 +0900 68393 68394 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker 68395 68396 Current trick to pick up GNU assembler minor version does not work with the 68397 latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to 68398 "(GNU Binutils) ". 68399 68400 $ sde-as --version |grep "GNU assembler" 68401 GNU assembler 2.15.94 mipssde-6.02.02-20050602 68402 $ sde-as --version |grep "GNU assembler" |awk '{print $3}' 68403 2.15.94 68404 $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}' 68405 15 68406 $ 68407 68408 $ mips-linux-as --version |grep "GNU assembler" 68409 GNU assembler (GNU Binutils) 2.18 68410 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' 68411 (GNU 68412 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}' 68413 (no output) 68414 $ 68415 68416 As a result of above, you'll see many noises with such binutils: 68417 68418 make -C cpu/mips/ 68419 /bin/sh: line 0: [: : integer expression expected 68420 /bin/sh: line 0: [: : integer expression expected 68421 make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips' 68422 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 68423 /bin/sh: line 0: [: : integer expression expected 68424 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 68425 /bin/sh: line 0: [: : integer expression expected 68426 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 68427 /bin/sh: line 0: [: : integer expression expected 68428 68429 This patch simplifies the trick and makes it work with both versions of gas. 68430 I also replace an expensive `awk (or gawk)' with `cut'. 68431 68432 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68433 68434commit 16664f72850846e645616da1c0fa5afcd6d15f15 68435Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68436Date: Sat Nov 17 20:05:26 2007 +0900 68437 68438 [MIPS] Remove useless instructions for initializing $gp. 68439 68440 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68441 68442commit 03c031d5660ea946c39af6e2e16267da857c609f 68443Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68444Date: Sat Oct 27 15:27:06 2007 +0900 68445 68446 [MIPS] MIPS 4K core: Coding style cleanups 68447 68448 No logical changes. 68449 68450 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68451 68452commit f5e429d3860bba4c6ae8bead8f78349fa24491b2 68453Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68454Date: Sat Nov 17 20:05:20 2007 +0900 68455 68456 [MIPS] gth2.c: Fix a warning on gth2 build. 68457 68458 gth2.c: In function 'misc_init_r': 68459 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness 68460 68461 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68462 68463commit 4fbd0741b2b6441da10be93e10267122581b7079 68464Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68465Date: Sat Oct 27 15:22:33 2007 +0900 68466 68467 [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build. 68468 68469 au1x00_eth.c: In function 'au1x00_miiphy_write': 68470 au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void 68471 68472 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68473 68474commit f01320459736f156707425cf8112f98606301aa4 68475Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68476Date: Sat Oct 27 15:00:25 2007 +0900 68477 68478 [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error 68479 68480 au1x00_eth.c: In function 'au1x00_enet_initialize': 68481 au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function) 68482 au1x00_eth.c:246: error: (Each undeclared identifier is reported only once 68483 au1x00_eth.c:246: error: for each function it appears in.) 68484 au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function) 68485 au1x00_eth.c: In function 'au1x00_miiphy_write': 68486 au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void 68487 make[1]: *** [au1x00_eth.o] Error 1 68488 68489 Fixed by moving these two functions forward. 68490 68491 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68492 68493commit b09258c5393edd1087c5f39ae68338f16b49f8b3 68494Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68495Date: Sat Oct 27 15:00:25 2007 +0900 68496 68497 MAKEALL: Added missing pb1000 board 68498 68499 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68500 68501commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369 68502Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68503Date: Sat Oct 27 15:00:24 2007 +0900 68504 68505 [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S 68506 68507 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68508 68509commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82 68510Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68511Date: Sat Oct 27 15:00:24 2007 +0900 68512 68513 [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end} 68514 68515 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68516 68517commit 5947f6999aafa7c54c1390983d264a8463dfea8e 68518Author: Wolfgang Denk <wd@denx.de> 68519Date: Sat Nov 17 02:34:38 2007 +0100 68520 68521 Update CHANGELOIG, prepare for -rc4 68522 68523 Signed-off-by: Wolfgang Denk <wd@denx.de> 68524 68525commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5 68526Author: Luotao Fu <l.fu@pengutronix.de> 68527Date: Wed Nov 14 18:58:33 2007 +0100 68528 68529 Fix the i2c frequency and default address in rsdproto board 68530 68531 rsdproto board support has wrong I2C frequency and wrong return value 68532 handling. 68533 68534 Signed-off-by: Luotao Fu <l.fu@pengutronix.de> 68535 68536commit 429c180edad038f91c989cb14b478228092e7054 68537Author: Wolfgang Denk <wd@denx.de> 68538Date: Sat Nov 17 01:45:38 2007 +0100 68539 68540 powerpc: Backout relocation changes for MPC5121, too. 68541 68542 Apply Grant Likely's backout to MPC5121 code, too. 68543 68544 Pointed out by Rafal Jaworowski <raj@semihalf.com> 68545 68546 Signed-off-by: Wolfgang Denk <wd@denx.de> 68547 68548commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8 68549Author: Grant Likely <grant.likely@secretlab.ca> 68550Date: Tue Nov 13 22:18:33 2007 -0700 68551 68552 powerpc: Backout relocation changes. 68553 68554 Ugh. I *hate* to back this change out, but these compiler flags don't 68555 work for relocation on all versions of GCC. I've not been able to 68556 reproduce the environment in my setup (and hence, not been able to 68557 find a combination that *does* work), so I've got no choice but to go 68558 back to the old gcc flags and linker script. 68559 68560 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68561 68562commit 5c15010efad980ad5498cc565fc1ed70df2f52b4 68563Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68564Date: Tue Nov 13 09:11:05 2007 +0100 68565 68566 Fixed mips_io_port_base build errors. 68567 68568 This patch has been sent on: 68569 - 29 Sep 2007 68570 68571 Although mips_io_port_base is currently a part of IDE command, it is quite 68572 fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move 68573 it to MIPS general part, and introduce `set_io_port_base()' from Linux. 68574 68575 This patch is triggered by multiple definition of `mips_io_port_base' build 68576 error on gth2 (and tb0229 also needs this fix.) 68577 68578 board/gth2/libgth2.a(gth2.o): In function `log_serial_char': 68579 /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base' 68580 common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here 68581 make: *** [u-boot] Error 1 68582 68583 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 68584 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68585 68586commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422 68587Author: Wolfgang Denk <wd@denx.de> 68588Date: Sat Nov 17 01:30:40 2007 +0100 68589 68590 Fix a bug in the slave serial programming mode for the Xilinx 68591 Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if 68592 the most significant bit was set, which did not work on any 68593 architecture where "char" defaulted to be an unsigned type. 68594 68595 Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com> 68596 68597 Signed-off-by: Wolfgang Denk <wd@denx.de> 68598 68599commit d08b7233bc252faad8339e7ca0ddfd62fa79903c 68600Author: Jon Loeliger <jdl@freescale.com> 68601Date: Thu Nov 1 12:23:29 2007 -0500 68602 68603 86xx: Fix broken variable reference when #def DEBUGing. 68604 68605 Sometimes you can't reference the DDR2 controller variables. 68606 68607 Signed-off-by: Jon Loeliger <jdl@freescale.com> 68608 68609commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19 68610Author: Jason Jin <Jason.jin@freescale.com> 68611Date: Fri Oct 26 18:32:00 2007 +0800 68612 68613 make 8610 board use pixis reset 68614 68615 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 68616 68617commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836 68618Author: Jason Jin <Jason.jin@freescale.com> 68619Date: Mon Oct 29 19:26:21 2007 +0800 68620 68621 Unify pixis_reset altbank across board families 68622 68623 Basically, refactor the CFG_PIXIS_VBOOT_MASK values 68624 into the separate board config files. 68625 68626 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 68627 Signed-off-by: Jon Loeliger <jdl@freescale.com> 68628 68629commit 64bf555465c7926be13e1046ac0d0f05ac72829c 68630Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68631Date: Wed Nov 7 08:19:21 2007 +0100 68632 68633 Fix warning: pointer targets in assignment differ in signedness 68634 68635 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68636 68637commit 7a60ee7c6248a958c5757d3660a1702723a2786d 68638Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68639Date: Wed Nov 7 08:19:19 2007 +0100 68640 68641 Fix warning differ in signedness in common/cmd_ide.c 68642 68643 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 68644 68645commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03 68646Author: Stefan Roese <sr@denx.de> 68647Date: Fri Nov 16 14:16:54 2007 +0100 68648 68649 ppc4xx: Enable 405EX PCIe UTL register configuration 68650 68651 Till now the UTL registers on 405EX were not initialized but left with 68652 their default values. This patch new initializes some of the UTL 68653 registers on 405EX. 68654 68655 Signed-off-by: Stefan Roese <sr@denx.de> 68656 68657commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9 68658Author: Stefan Roese <sr@denx.de> 68659Date: Fri Nov 16 14:00:59 2007 +0100 68660 68661 ppc4xx: Update AMCC Makalu for board rev 1.1 68662 68663 This patch adds changes needed for Makalu rev 1.1: 68664 68665 - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM 68666 - Enable 2nd ethernet port EMAC1 68667 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE) 68668 - Reset PCIe ports via GPIO upon bootup 68669 68670 Signed-off-by: Stefan Roese <sr@denx.de> 68671 68672commit 4d4faae65e115e327425cd514c1a35146a85166b 68673Author: Grant Likely <grant.likely@secretlab.ca> 68674Date: Mon Sep 24 09:05:31 2007 -0600 68675 68676 Group PCI and PCMCIA drivers in drivers/Makefile 68677 68678 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68679 68680commit 5798f87dc10a496d79d3177b9f5a76488987fd35 68681Author: Grant Likely <grant.likely@secretlab.ca> 68682Date: Mon Sep 24 09:05:31 2007 -0600 68683 68684 Group block/flash drivers in drivers/Makefile 68685 68686 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68687 68688commit df58c81551700f058b44cacf55a7997fa63bfe0a 68689Author: Grant Likely <grant.likely@secretlab.ca> 68690Date: Mon Sep 24 09:05:31 2007 -0600 68691 68692 Group USB drivers in drivers/Makefile 68693 68694 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68695 68696commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29 68697Author: Grant Likely <grant.likely@secretlab.ca> 68698Date: Mon Sep 24 09:05:30 2007 -0600 68699 68700 Group i2c drivers in drivers/Makefile 68701 68702 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68703 68704commit ec00c76de0e5971273905998d62d6bb119324218 68705Author: Grant Likely <grant.likely@secretlab.ca> 68706Date: Mon Sep 24 09:05:30 2007 -0600 68707 68708 Group console drivers in drivers/Makefile 68709 68710 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68711 68712commit 754f230aa01b8c789fc31f8013c2487954073300 68713Author: Grant Likely <grant.likely@secretlab.ca> 68714Date: Mon Sep 24 09:05:30 2007 -0600 68715 68716 Group network drivers in drivers/Makefile 68717 68718 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68719 68720commit f0037c56b0d12cd46215124667b9f83d60ef9391 68721Author: Grant Likely <grant.likely@secretlab.ca> 68722Date: Mon Sep 24 09:05:30 2007 -0600 68723 68724 Build: split COBJS value into multiple lines 68725 68726 This change is in preparation for condtitionial compile support in the 68727 build system. By spliting them all into seperate lines now, subsequent 68728 patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will 68729 be less invasive and easier to review 68730 68731 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68732 68733commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4 68734Author: Grant Likely <grant.likely@secretlab.ca> 68735Date: Mon Sep 24 09:05:30 2007 -0600 68736 68737 Add .gitignore files 68738 68739 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68740 Acked-by: Kim Phillips <kim.phillips@freescale.com> 68741 68742commit 955413f35f054a82e40042f1dbcf501c6a05719b 68743Author: Grant Likely <grant.likely@secretlab.ca> 68744Date: Thu Nov 15 08:27:52 2007 -0700 68745 68746 Revert "Correct relocation fixup for mpc5xx" 68747 68748 This reverts commit 3649cd99ba815b6601868735765602f00ef3692b. 68749 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68750 68751commit e15633888a058aacb31a62d2cf1278e1e4c236ab 68752Author: Grant Likely <grant.likely@secretlab.ca> 68753Date: Thu Nov 15 08:24:32 2007 -0700 68754 68755 Revert "Correct fixup relocation for MPC5xxx" 68756 68757 This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90. 68758 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68759 68760commit 139365fbe566d0fc619a1ed04452ec5388f0cef8 68761Author: Grant Likely <grant.likely@secretlab.ca> 68762Date: Thu Nov 15 08:21:04 2007 -0700 68763 68764 Revert "Correct fixup relocation for mpc8220" 68765 68766 This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00. 68767 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68768 68769commit 70922342369e5e39b286fe21e768a239ca07a514 68770Author: Grant Likely <grant.likely@secretlab.ca> 68771Date: Thu Nov 15 08:20:57 2007 -0700 68772 68773 Revert "Correct fixup relocation for mpc824x" 68774 68775 This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa. 68776 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68777 68778commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a 68779Author: Grant Likely <grant.likely@secretlab.ca> 68780Date: Thu Nov 15 08:20:50 2007 -0700 68781 68782 Revert "Correct fixup relocation for mpc8260" 68783 68784 This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96. 68785 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68786 68787commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6 68788Author: Grant Likely <grant.likely@secretlab.ca> 68789Date: Thu Nov 15 08:20:43 2007 -0700 68790 68791 Revert "Correct fixup relocation for mpc83xx" 68792 68793 This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27. 68794 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68795 68796commit c93945e8f9e300860d2bf73a2549ce5794f8bd00 68797Author: Grant Likely <grant.likely@secretlab.ca> 68798Date: Thu Nov 15 08:20:25 2007 -0700 68799 68800 Revert "[MPC512x] Correct fixup relocation" 68801 68802 This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4. 68803 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 68804 68805commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c 68806Author: Stefan Roese <sr@denx.de> 68807Date: Thu Nov 15 14:25:09 2007 +0100 68808 68809 ppc4xx: Small AMCC Kilauea cleanup 68810 68811 Remove not needed pci_target_init() function. 68812 68813 Signed-off-by: Stefan Roese <sr@denx.de> 68814 68815commit aee747f19b460a0e9da20ff21e90fdaac1cec359 68816Author: Stefan Roese <sr@denx.de> 68817Date: Thu Nov 15 14:23:55 2007 +0100 68818 68819 ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms 68820 68821 - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE 68822 - Cleanup of the 4xx GPIO functions 68823 - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h 68824 68825 Signed-off-by: Stefan Roese <sr@denx.de> 68826 68827commit 8ada0ebf38e4073beea0309188b25d82a112a2ae 68828Author: Stefan Roese <sr@denx.de> 68829Date: Thu Nov 15 14:20:08 2007 +0100 68830 68831 ppc4xx: AMCC Taihu board config file cleanup 68832 68833 This patch makes the AMCC Taihu a little more compatible to the other 68834 AMCC eval boards. 68835 68836 Signed-off-by: Stefan Roese <sr@denx.de> 68837 68838commit 5e71c51d74c963d3174060c078dcacf13bdd02ef 68839Author: Marian Balakowicz <m8@semihalf.com> 68840Date: Thu Nov 15 13:37:28 2007 +0100 68841 68842 [INKA4x0] NG hardware: flash support 68843 68844 Disabled and remove inka4x0 custom flash driver, use CFI flash 68845 driver instead. 68846 68847 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 68848 68849commit 5fb6d7191e206cdde0e23140fd8111caed93a595 68850Author: Marian Balakowicz <m8@semihalf.com> 68851Date: Thu Nov 15 13:29:55 2007 +0100 68852 68853 [INKA4x0] NG hardware: SDRAM support 68854 68855 Add support for three new DDR chips that may be present on a NG 68856 INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT. 68857 68858 Cleanup board/inka4x0/mt48lc16m16a2-75.h file. 68859 68860 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 68861 68862commit f23cb34c367bb27585a4fdb8a75277370e7d0596 68863Author: Marian Balakowicz <m8@semihalf.com> 68864Date: Thu Nov 15 13:24:43 2007 +0100 68865 68866 [INKA4x0] NG hardware: platform code update 68867 68868 - Cleanup compile warnings. 68869 - Add missing '\0' in default environment. 68870 - Increase CFG_MONITOR_LEN to 256 KiB. 68871 - Add required CFG_USE_PPCENV. 68872 68873 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 68874 68875commit 2ae64f5135e51bb18753884d1265b99e89b5aedd 68876Author: Peter Pearse <peter.pearse@arm.com> 68877Date: Thu Nov 15 08:58:00 2007 +0000 68878 68879 Remove warnings re CONFIG_EXTRA_ENV_SETTINGS 68880 Remove warnings re onenand_read() & write() 68881 68882commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7 68883Author: Peter Pearse <peter.pearse@arm.com> 68884Date: Thu Nov 15 08:45:13 2007 +0000 68885 68886 Correction patch 68887 68888commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae 68889Author: Roy Zang <tie-fei.zang@freescale.com> 68890Date: Thu Sep 13 18:52:28 2007 +0800 68891 68892 Enable ULi1575 Ethernet support in 8610HPCD config 68893 68894 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 68895 Acked-by: Jon Loeliger <jdl@freescale.com> 68896 68897commit 54fd6c93c28a0a45352fff5dd92673401ff563f2 68898Author: Stefan Roese <sr@denx.de> 68899Date: Tue Nov 13 08:18:20 2007 +0100 68900 68901 ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching 68902 68903 Signed-off-by: Stefan Roese <sr@denx.de> 68904 68905commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93 68906Author: Stefan Roese <sr@denx.de> 68907Date: Tue Nov 13 08:06:11 2007 +0100 68908 68909 ppc4xx: Fix 405EX PCIe UTLSET register setup 68910 68911 Signed-off-by: Stefan Roese <sr@denx.de> 68912 68913commit 1ce55151c85d068f70317a8d65c61058b891afb4 68914Author: Heiko Schocher <hs@denx.de> 68915Date: Tue Nov 13 07:50:29 2007 +0100 68916 68917 [UC101] SRAM now with 2 MB working. 68918 68919 Signed-off-by: Heiko Schocher <hs@denx.de> 68920 68921commit 2d14684341109a69616e4d6016cd61402d55086f 68922Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 68923Date: Fri Nov 9 15:37:53 2007 +0100 68924 68925 ppc4xx: Use generic usb-ohci driver for sequoia board 68926 68927 This patch makes the sequoia board use the generic usb-ohci driver 68928 instead of cpu/ppc4xx/usb_ohci.c. 68929 68930 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 68931 Signed-off-by: Stefan Roese <sr@denx.de> 68932 68933commit 9be659ac0868dc367caa957c5c725e46b07f6a5f 68934Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 68935Date: Fri Nov 9 15:37:23 2007 +0100 68936 68937 ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined 68938 68939 This patch disables the 44x d-cache on 'usb start' and 68940 reenables it on 'usb stop'. This should be seen as a 68941 temporary fix until the generic usb-ohci driver can 68942 life with d-cache enabled. 68943 68944 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 68945 Signed-off-by: Stefan Roese <sr@denx.de> 68946 68947commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4 68948Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 68949Date: Fri Nov 9 15:36:44 2007 +0100 68950 68951 ppc4xx: Remove redundant code from 4xx network driver 68952 68953 This patch removes some redundant code and decrements the end 68954 address of cache flush and invalidate by 1. 68955 68956 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 68957 Signed-off-by: Stefan Roese <sr@denx.de> 68958 68959commit 5ca9881aad8c413ac2a82868a5e3719178254502 68960Author: Peter Pearse <peter.pearse@arm.com> 68961Date: Fri Nov 9 15:24:26 2007 +0000 68962 68963 Add apollon board support 68964 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 68965 68966commit b53313dbfc74525d85f1e7e0102f902d5c863beb 68967Author: Stefan Roese <sr@denx.de> 68968Date: Fri Nov 9 12:19:58 2007 +0100 68969 68970 ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea 68971 68972 Signed-off-by: Stefan Roese <sr@denx.de> 68973 68974commit c7f69c340277935a6c19a956421852da944a365f 68975Author: Stefan Roese <sr@denx.de> 68976Date: Fri Nov 9 12:18:54 2007 +0100 68977 68978 ppc4xx: Make output a little shorter on I2C bootrom detection 68979 68980 Most 4xx PPC capable of using an I2C bootrom for bootstrap setting 68981 already print a line with the information which I2C bootrom is 68982 used for bootstrap configuration. So we don't need this extra line 68983 with "I2C boot EEPROM en-/dis-abled". 68984 68985 This patch also has a little code cleanup integrated. 68986 68987 Signed-off-by: Stefan Roese <sr@denx.de> 68988 68989commit 8d737a28152ec12873f8544cca1fb39a49e5e693 68990Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 68991Date: Thu Nov 8 12:50:18 2007 -0600 68992 68993 ColdFire: MCF5329 - Remove reset registers from CCM 68994 68995 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 68996 68997commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7 68998Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 68999Date: Thu Nov 8 12:31:11 2007 -0600 69000
69001 ColdFire: MCF5329 - Add Reset structure to immap_5329.h 69002 69003 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 69004 69005commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21 69006Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 69007Date: Thu Nov 8 12:19:01 2007 -0600 69008 69009 ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode 69010 69011 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 69012 69013commit 225a24b5e062ad94627424508ae814f51dbe1a34 69014Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 69015Date: Wed Nov 7 18:00:54 2007 -0600 69016 69017 ColdFire: MCF5445x - Update correct RAMBAR and missing linker files 69018 69019 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 69020 69021commit 248c7c14835f34d5d910b45e5600050e58ca6cab 69022Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 69023Date: Wed Nov 7 17:56:15 2007 -0600 69024 69025 ColdFire: MCF532x - Update do_reset() using core reset 69026 69027 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 69028 69029commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4 69030Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 69031Date: Wed Nov 7 17:51:00 2007 -0600 69032 69033 ColdFire: Update cpu flag for 4.2-xx compiler 69034 69035 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 69036 69037commit 070ba56115b4da63b46e974287fa4550d4023386 69038Author: York Sun <yorksun@freescale.com> 69039Date: Wed Oct 31 14:59:04 2007 -0500 69040 69041 8610: Add console frame buffer support to FSL 8610 DIU driver. 69042 69043 Add cfb console support to FSL 8610 DIU driver. 69044 Inspect board version from PIXIS to obtain correct pixel format. 69045 69046 Use #define CONFIG_VIDEO in config file to enable fb console. 69047 69048 To switch monitor, set monitor variable to 69049 0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS 69050 followed by "diufb init". 69051 69052 Preserve logo bitmap at the top of the fb console. 69053 69054 Signed-off-by: York Sun <yorksun@freescale.com> 69055 Signed-off-by: Jon Loeliger <jdl@freescale.com> 69056 69057commit a877880c6949e948bd63cd6ea4e216573d2f53dd 69058Author: York Sun <yorksun@freescale.com> 69059Date: Mon Oct 29 13:58:39 2007 -0500 69060 69061 8610: Add 8610 DIU display driver 69062 69063 1280x1024 and 1024x768 @ 32 bpp are supported now. 69064 DVI, Single-link LVDS, Double-link LVDS are all supported. 69065 69066 Environmental variable "monitor" is used to specify monitor port. 69067 69068 A new command "diufb" is introduced to reinitialize monitor 69069 and display a BMP file in the memory. So far, 1-bit, 4-bit, 69070 8-bit and 24-bit BMP formats are supported. 69071 69072 diufb init 69073 - initialize the diu driver 69074 Enable the port specified in the environmental variable "monitor" 69075 69076 diufb addr 69077 - display bmp file in memory. 69078 The bmp image should be no bigger than the resolution, 1280x1024 69079 for DVI and double-link LVDS, 1024x768 for single-link LVDS. 69080 69081 Note, this driver allocate memory but doesn't free it after use 69082 It is written on purpose -- to avoid a failure of reallocation 69083 due to memory fragement. 69084 69085 ECC of DDR is disabled for DIU performance. L2 data cache is also disabled. 69086 69087 Signed-off-by: York Sun <yorksun@freescale.com> 69088 Signed-off-by: Jon loeliger <jdl@freescale.com> 69089 69090commit 52e5ddfecdda308f75782fae206b677b1810f5f9 69091Author: York Sun <yorksun@freescale.com> 69092Date: Wed Oct 31 10:43:59 2007 -0500 69093 69094 FSL: Add a freescale bitmap logo. 69095 69096 This Freescale logo is a 340 x 128 x 4bpp BMP file 69097 that can be displayed by the DIU Framebuffer driver. 69098 69099 Signed-off-by: York Sun <yorksun@freescale.com> 69100 Signed-off-by: Jon Loeliger <jdl@freescale.com> 69101 69102commit 1815338fbd1c0f94f8276d2891b99caa5a05f622 69103Author: York Sun <yorksun@freescale.com> 69104Date: Mon Oct 29 13:57:53 2007 -0500 69105 69106 8610: Make some extra debug environment variables conditional. 69107 69108 One may #define ENV_DEBUG to get them back again. 69109 69110 Signed-off-by: York Sun <yorksun@freescale.com> 69111 69112commit 761421ccca80a9fb37b19c37aa61d46ef75e0647 69113Author: Jason Jin <Jason.jin@freescale.com> 69114Date: Mon Oct 29 19:26:21 2007 +0800 69115 69116 8610: Actually enable pixis_reset CONFIGs 69117 69118 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 69119 69120commit f3bceaab230b4748d0afc4109b6837308f018b40 69121Author: Jason Jin <Jason.jin@freescale.com> 69122Date: Fri Oct 26 18:31:59 2007 +0800 69123 69124 Fix the BAT definition of PCI IO on 8610 board 69125 69126 The address in the BAT register is aligned with the BAT size. 69127 The original definition actually did not define BAT for PCIE2 IO. 69128 This patch fix this. 69129 69130 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 69131 69132commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56 69133Author: Jason Jin <Jason.jin@freescale.com> 69134Date: Mon Oct 29 19:26:21 2007 +0800 69135 69136 Unify pixis_reset altbank across board families 69137 69138 Basically, refactor the CFG_PIXIS_VBOOT_MASK values 69139 into the separate board config files. 69140 69141 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 69142 Signed-off-by: Jon Loeliger <jdl@freescale.com> 69143 69144commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba 69145Author: Jason Jin <Jason.jin@freescale.com> 69146Date: Fri Oct 26 18:32:00 2007 +0800 69147 69148 make 8610 board use pixis reset 69149 69150 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 69151 69152commit 9c84709eedce9c680dd695984ab7d2328f4f04f5 69153Author: Jon Loeliger <jdl@freescale.com> 69154Date: Thu Nov 1 12:23:29 2007 -0500 69155 69156 86xx: Fix broken variable reference when #def DEBUGing. 69157 69158 Sometimes you can't reference the DDR2 controller variables. 69159 69160 Signed-off-by: Jon Loeliger <jdl@freescale.com> 69161 69162commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58 69163Author: Roy Zang <tie-fei.zang@freescale.com> 69164Date: Mon Nov 5 17:39:24 2007 +0800 69165 69166 Implement general ULi 526x Ethernet driver support in U-boot 69167 69168 This patch implements general ULi 526x Ethernet driver. 69169 Until now, it is the only native Ethernet port on 69170 MPC8610HPCD board, but it could be used on other boards 69171 with ULi 526x Ethernet port as well. 69172 69173 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 69174 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 69175 Acked-by: Jon Loeliger <jdl@freescale.com> 69176 Signed-off-by: Ben Warren <bwarren@qstreams.com> 69177 69178commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd 69179Author: Larry Johnson <lrj@arlinx.com> 69180Date: Thu Nov 1 08:46:50 2007 -0500 69181 69182 NET: Add Ethernet 1000BASE-X support for PPC4xx 69183 69184 This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and 69185 "miiphy_duplex()". It also adds function "miiphy_is_1000base_x ()", which 69186 returns non-zero iff the PHY registers are configured for 1000BASE-X. The 69187 "mii info" command is modified to distinguish between 1000BASE-T and -X. 69188 69189 Signed-off-by: Larry Johnson <lrj@acm.org> 69190 Signed-off-by: Ben Warren <bwarren@qstreams.com> 69191 69192commit 298035df4948b113d29ac0e694717d34b95bc5dc 69193Author: Larry Johnson <lrj@arlinx.com> 69194Date: Wed Oct 31 11:21:29 2007 -0500 69195 69196 NET: Cosmetic changes 69197 69198 Signed-off-by: Larry Johnson <lrj@acm.org> 69199 Signed-off-by: Ben Warren <bwarren@qstreams.com> 69200 69201commit 654f38b3a387886996a5a75771fbfc29cb4f225e 69202Author: Stefan Roese <sr@denx.de> 69203Date: Mon Nov 5 07:43:05 2007 +0100 69204 69205 ppc4xx: Make output a little shorter on PCIe detection 69206 69207 Now not max 3 lines but 2 lines are printed per PCIe port. 69208 69209 Signed-off-by: Stefan Roese <sr@denx.de> 69210 69211commit 992742a5b09d9040adbd156fb90756af66ade310 69212Author: Wolfgang Denk <wd@denx.de> 69213Date: Sat Nov 3 23:09:27 2007 +0100 69214 69215 Cleanup coding style; update CHANGELOG 69216 69217 Signed-off-by: Wolfgang Denk <wd@denx.de> 69218 69219commit e881cb563e32f45832b7b6db77bdcd017adcbb41 69220Author: Bruce Adler <bruce.adler@ccpu.com> 69221Date: Fri Nov 2 13:15:42 2007 -0700 69222 69223 fix wording in README 69224 69225 Changed the wording to properly describe the shadowing 69226 of the environment from ROM to RAM 69227 69228 Signed-off-by: Bruce Adler <bruce.adler@acm.org> 69229 69230commit ad845beef06245426c57b53dcdc01b7dc70e0d45 69231Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 69232Date: Wed Oct 31 02:18:15 2007 +0900 69233 69234 blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk 69235 69236 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> 69237 69238commit ec22755799466c8a103664bb3a5e647bf9c238f4 69239Author: Vlad Lungu <vlad@comsys.ro> 69240Date: Thu Oct 25 16:08:14 2007 +0300 69241 69242 Trimmed some variables in ne2000.c 69243 69244 Signed-off-by: Vlad Lungu <vlad@comsys.ro> 69245 69246commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0 69247Author: Zhang Wei <wei.zhang@freescale.com> 69248Date: Thu Oct 25 17:51:27 2007 +0800 69249 69250 Fix the issue of usb_kbd driver missing the scan code of key 'z'. 69251 69252 The scan code of the key 'z' is 0x1d, which should be handled. 69253 69254 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI 69255 controller. 69256 69257 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 69258 69259commit bbf4796f6498fbade56d56eff3a0a49b299d93e5 69260Author: Zhang Wei <wei.zhang@freescale.com> 69261Date: Thu Oct 25 17:30:04 2007 +0800 69262 69263 Fix USB support issue for MPC8641HPCN board. 69264 69265 The configuration file has already enabled USB, but it 69266 missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB 69267 on MPC8641HPCN can not work because of the wrong USB 69268 register endian. 69269 69270 And add the USB command to U-Boot commands list. 69271 69272 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 69273 69274commit 4e62041023dc3de9d98d977bb080235bc6d035e0 69275Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 69276Date: Wed Oct 24 18:16:01 2007 +0200 69277 69278 Use config_cmd_default.h instead of config_cmd_all.h 69279 69280 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 69281 69282commit 56622f87857439b1c221e9deef11a9d5bb5d4308 69283Author: Marian Balakowicz <m8@semihalf.com> 69284Date: Wed Oct 24 01:37:36 2007 +0200 69285 69286 TQM5200: Call usb_cpu_init() during board init 69287 69288 usb_cpu_init() configures GPS USB pins, clocks, etc. and 69289 is required for proper operation of kernel USB subsystem. 69290 This setup was previously done in the kernel by the fixup 69291 code which is being removed, thus low level init must be 69292 done by U-boot now. 69293 69294 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 69295 69296commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd 69297Author: Guennadi Liakhovetski <lg@denx.de> 69298Date: Tue Oct 23 16:25:50 2007 +0200 69299 69300 Fix typo in nfs.c 69301 69302 An obvious typo. Originally fixed in linkstation u-boot port. 69303 69304 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 69305 69306commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78 69307Author: Guennadi Liakhovetski <lg@denx.de> 69308Date: Tue Oct 23 14:35:05 2007 +0200 69309 69310 Fix a typo in cpu/mpc824x/interrupts.c 69311 69312 Since December 2003 the timer_interrupt_cpu() function in 69313 cpu/mpc824x/interrupts.c contains what seems to be a superfluous 69314 parameter. Remove it. 69315 69316 Signed-off-by: Guennadi Liakhovetski <lg@denx.de> 69317 69318commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d 69319Author: Sergej Stepanov <Sergej.Stepanov@ids.de> 69320Date: Wed Oct 17 11:13:51 2007 +0200 69321 69322 add ft_cpu_setup(..) on mpc8260 69323 69324 Add ft_cpu_setup(..)-function to adapt it for use with libfdt 69325 based on code from mpc5xxx 69326 69327 Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de> 69328 -- 69329 69330commit 6abd82e19ae93c0b4d104e50165e235915ec0875 69331Author: Sergej Stepanov <Sergej.Stepanov@ids.de> 69332Date: Wed Oct 17 11:18:42 2007 +0200 69333 69334 changes for IDS8247 board support 69335 69336 To get the IDS8247 board working following are done: 69337 - FCC2 is deactivated 69338 - FCC1 is activated 69339 - I2C is activated 69340 - CFI driver is activated 69341 - Adapted for use with LIBFDT 69342 69343 Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de> 69344 -- 69345 69346commit 3d6cb3b24add6415f86a0f013ea40f5639b90047 69347Author: Stefan Roese <sr@denx.de> 69348Date: Sat Nov 3 12:08:28 2007 +0100 69349 69350 ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support 69351 69352 This patch adds NAND booting support for the AMCC 405EX(r) eval boards. 69353 Again, only one image supports both targets. 69354 69355 Signed-off-by: Stefan Roese <sr@denx.de> 69356 69357commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c 69358Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 69359Date: Wed Oct 24 15:48:37 2007 +0200 69360 69361 ATSTK1002: Remove default ethernet addresses 69362 69363 Wolfgang is right: It's not a good idea to set up default initial 69364 ethernet addresses for a board, even though they belong to the local 69365 range. 69366 69367 This will change the failure mode from "IT manager screams at you for 69368 using duplicate ethernet addresses" to a nice error message explaining 69369 that the ethernet address hasn't been set properly. 69370 69371 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 69372 69373commit e5c794e491a57d829b6d8733e2ed8368a2269abf 69374Author: Justin Flammia <jflammia@savantav.com> 69375Date: Mon Oct 29 17:40:35 2007 -0400 69376 69377 DHCP Client Fix 69378 69379 This is a multi-part message in MIME format. 69380 69381 commit e6e505eae94ed721e123e177489291fc4544b7b8 69382 Author: Justin Flammia <jflammia@savantav.com> 69383 Date: Mon Oct 29 17:19:03 2007 -0400 69384 69385 Found a bug in the way the DHCP Request packet is built, where the IP address 69386 that is offered by the server is bound to prematurely. This patch is a fix of 69387 that bug where the IP address offered by the DHCP server is not used until 69388 after the DHCP ACK from the server is received. 69389 69390 Signed-off-by: Justin Flammia <jflammia@savantav.com> 69391 Signed-off-by: Ben Warren <bwarren@qstreams.com> 69392 69393commit 5d96d40d3f36da33348e68f9ea993f383e11f997 69394Author: Stefan Roese <sr@denx.de> 69395Date: Wed Oct 31 20:58:34 2007 +0100 69396 69397 ppc4xx: Fix acadia_nand build problem 69398 69399 Since the cache handling functions were moved from start.S into cache.S 69400 the acadia NAND booting Makfile needs to be adapted accordingly. 69401 69402 Signed-off-by: Stefan Roese <sr@denx.de> 69403 69404commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949 69405Author: Stefan Roese <sr@denx.de> 69406Date: Wed Oct 31 20:57:11 2007 +0100 69407 69408 ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM 69409 69410 This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files 69411 and to the Sequoia TLB init code. Now the cache can be enabled on 44x 69412 boards by defining CONFIG_4xx_DCACHE in the board config file. This 69413 option will disappear, when more boards use is successfully and no 69414 more known problems exist. 69415 69416 This is tested successfully on Sequoia and Katmai. The only problem that 69417 needs to be fixed is, that USB is not working on Sequoia right now, since 69418 it will need some cache handling code too, similar to the 4xx EMAC driver. 69419 69420 Signed-off-by: Stefan Roese <sr@denx.de> 69421 69422commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738 69423Author: Stefan Roese <sr@denx.de> 69424Date: Wed Oct 31 20:51:10 2007 +0100 69425 69426 ppc4xx: Enable CPU POST test for 4xx with dcache enabled 69427 69428 Now with caches enabled (i- and d-cache) on 44x, we need a chance to 69429 disable the cache for the CPU POST tests, since these tests consist 69430 of self modifying code. This is done via the new change_tlb() function. 69431 69432 Signed-off-by: Stefan Roese <sr@denx.de> 69433 69434commit f71b2888b4b3c870909a0341427b2a914246f81f 69435Author: Stefan Roese <sr@denx.de> 69436Date: Wed Oct 31 20:47:26 2007 +0100 69437 69438 ppc4xx: Change 4xx POST ethernet test to handle cached memory too 69439 69440 This patch enables the 4xx EMAC POST driver to work too, when dcache is 69441 enabled. 69442 69443 Signed-off-by: Stefan Roese <sr@denx.de> 69444 69445commit a2685904061b35a17583d65fe47cdc2686a69eaa 69446Author: Stefan Roese <sr@denx.de> 69447Date: Wed Oct 31 20:45:53 2007 +0100 69448 69449 ppc4xx: Remove temporary TLB entry in POST cache test only for 440 69450 69451 Signed-off-by: Stefan Roese <sr@denx.de> 69452 69453commit ff768cb168d8157c24a25016dbfbeb465e47f420 69454Author: Stefan Roese <sr@denx.de> 69455Date: Wed Oct 31 18:01:24 2007 +0100 69456 69457 ppc4xx: Change 4xx ethernet driver to handle cached memory too 69458 69459 This patch enables the 4xx EMAC driver to work too, when dcache is 69460 enabled. 69461 69462 Signed-off-by: Stefan Roese <sr@denx.de> 69463 69464commit 483e09a223c666269ef81d3573a6591b1046b0ef 69465Author: Stefan Roese <sr@denx.de> 69466Date: Wed Oct 31 17:59:22 2007 +0100 69467 69468 ppc4xx: Add change_tlb function to modify I attribute of TLB(s) 69469 69470 This function is used to either turn cache on or off in a specific 69471 memory area. 69472 69473 Signed-off-by: Stefan Roese <sr@denx.de> 69474 69475commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79 69476Author: Stefan Roese <sr@denx.de> 69477Date: Wed Oct 31 17:57:52 2007 +0100 69478 69479 ppc4xx: Remove cache definition from 4xx board config files 69480 69481 All 4xx board config files don't need the cache definitions anymore. 69482 These are now defined in common headers. 69483 69484 Signed-off-by: Stefan Roese <sr@denx.de> 69485 69486commit 9b94ac61d2176185c30adf0793e079ec30e68687 69487Author: Stefan Roese <sr@denx.de> 69488Date: Wed Oct 31 17:55:58 2007 +0100 69489 69490 ppc4xx: Rework 4xx cache support 69491 69492 New cache handling functions added and all existing functions 69493 moved from start.S into seperate cache.S. 69494 69495 Signed-off-by: Stefan Roese <sr@denx.de> 69496 69497commit 06713773da4ac3d390c63d82641eb553224b27c2 69498Author: Stefan Roese <sr@denx.de> 69499Date: Tue Oct 23 18:03:12 2007 +0200 69500 69501 ppc4xx: Remove compiler warning from previous commit 69502 69503 Signed-off-by: Stefan Roese <sr@denx.de> 69504 69505commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9 69506Author: Stefan Roese <sr@denx.de> 69507Date: Tue Oct 23 14:40:30 2007 +0200 69508 69509 ppc4xx: Remove temporary TLB entry in POST cache test 69510 69511 Signed-off-by: Stefan Roese <sr@denx.de> 69512 69513commit 1338e6a81834099ba19733b69aafd8ef5f098094 69514Author: Stefan Roese <sr@denx.de> 69515Date: Tue Oct 23 14:05:08 2007 +0200 69516 69517 ppc4xx: Change autonegotiation timeout from 4 to 5 seconds 69518 69519 I lately noticed, that newer 4xx board with GBit support sometimes don't 69520 finish link autonegotiation in 4 seconds. Changing this timeout to 5 69521 seconds seems fine here. 69522 69523 Signed-off-by: Stefan Roese <sr@denx.de> 69524 69525commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7 69526Author: Stefan Roese <sr@denx.de> 69527Date: Tue Oct 23 14:03:17 2007 +0200 69528 69529 ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends 69530 69531 This patch changes all in32/out32 calls to use the recommended in_be32/ 69532 out_be32 macros instead. 69533 69534 Signed-off-by: Stefan Roese <sr@denx.de> 69535 69536commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a 69537Author: Stefan Roese <sr@denx.de> 69538Date: Thu Oct 25 12:24:59 2007 +0200 69539 69540 ppc4xx: Fix POST ethernet test for Haleakala 69541 69542 The POST ethernet test needed to be changed to dynamically determine 69543 the count of ethernet devices. This code is cloned from the 4xx 69544 ethernet driver. 69545 69546 Signed-off-by: Stefan Roese <sr@denx.de> 69547 69548commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a 69549Author: Stefan Roese <sr@denx.de> 69550Date: Tue Oct 23 11:31:05 2007 +0200 69551 69552 ppc4xx: Correct UART input clock calculation and passing to fdt 69553 69554 We now use a value in the gd (global data) structure for the UART input 69555 frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely 69556 in get_sys_info(). 69557 69558 Signed-off-by: Stefan Roese <sr@denx.de> 69559 69560commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124 69561Author: Stefan Roese <sr@denx.de> 69562Date: Tue Oct 23 10:10:08 2007 +0200 69563 69564 ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support 69565 69566 The Haleakala is nearly identical with the Kilauea eval board. The only 69567 difference is that the 405EXr only supports one EMAC and one PCIe 69568 interface. This patch adds support for the Haleakala board by using 69569 the identical image for Kilauea and Haleakala. The distinction is done 69570 by comparing the PVR. 69571 69572 Signed-off-by: Stefan Roese <sr@denx.de> 69573 69574commit 9f798766aa85e62eb8fa8c721e148df609b78137 69575Author: Eugene O'Brien <eugene.obrien@advantechamt.com> 69576Date: Tue Oct 23 08:29:10 2007 +0200 69577 69578 ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM 69579 69580 This patch also adds a note to the fixed DDR setup for Bamboo NAND booting: 69581 69582 Note: 69583 As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed 69584 DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM 69585 modules are still plugged in. So it is recommended to remove the DIMM 69586 modules while using the NAND booting code with the fixed SDRAM setup! 69587 69588 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com> 69589 Signed-off-by: Stefan Roese <sr@denx.de> 69590 69591commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a 69592Author: Stefan Roese <sr@denx.de> 69593Date: Mon Oct 22 16:24:44 2007 +0200 69594 69595 ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards 69596 69597 Signed-off-by: Stefan Roese <sr@denx.de> 69598 69599commit 3248f63ad89cb031491edb7016587fe6e9a238b9 69600Author: Stefan Roese <sr@denx.de> 69601Date: Mon Oct 22 16:22:40 2007 +0200 69602 69603 ppc4xx: Rework of 4xx serial driver (4) 69604 69605 Change 4xx_uart.c: 69606 69607 - Use in_8/out_8 macros instead of in8/out8 69608 - No need for UART_BASE marco anymore, now really handled via function 69609 parameter 69610 - serial_init_common() introduced 69611 - Further coding style cleanup 69612 69613 Signed-off-by: Stefan Roese <sr@denx.de> 69614 69615commit e61cb8163a66b8a135696ae232e2bead1ce0a049 69616Author: Stefan Roese <sr@denx.de> 69617Date: Mon Oct 22 15:45:49 2007 +0200 69618 69619 ppc4xx: Rework of 4xx serial driver (3) 69620 69621 Change all linker scripts to reference the changed driver name iop480_uart.o. 69622 69623 Signed-off-by: Stefan Roese <sr@denx.de> 69624 69625commit 882ae41274921f9016131806bdeb27e19606f47a 69626Author: Stefan Roese <sr@denx.de> 69627Date: Mon Oct 22 15:44:39 2007 +0200 69628 69629 ppc4xx: Rework of 4xx serial driver (2) 69630 69631 Change all linker scripts to reference the changed driver name 4xx_uart.o. 69632 69633 Note: In most cased all these explicit referencing of these object files 69634 in the linker scripts is not neccessary. Only for manually embedded 69635 environment into the U-Boot image, which is not done is most cases. 69636 69637 Signed-off-by: Stefan Roese <sr@denx.de> 69638 69639commit ad31e40bed042cb670d0036fea96435007afb838 69640Author: Stefan Roese <sr@denx.de> 69641Date: Mon Oct 22 15:09:59 2007 +0200 69642 69643 ppc4xx: Rework of 4xx serial driver (1) 69644 69645 This patch starts the rework of the PPC4xx serial driver. First we split 69646 the file into two seperate files, one 4xx_uart.c with the 405/440 UART 69647 handling code and the other one iop480_uart.c with the UART code for the 69648 PLX-Tech IOP480 PPC (PPC403 based). 69649 69650 Signed-off-by: Stefan Roese <sr@denx.de> 69651 69652commit 764e7417ee5f6e25b1715720e7d7dd3487109385 69653Author: Stefan Roese <sr@denx.de> 69654Date: Mon Oct 22 10:30:38 2007 +0200 69655 69656 ppc4xx: Correct UART input clock calculation and passing to fdt 69657 69658 Signed-off-by: Stefan Roese <sr@denx.de> 69659 69660commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa 69661Author: Stefan Roese <sr@denx.de> 69662Date: Mon Oct 22 07:34:34 2007 +0200 69663 69664 ppc4xx: Add initial AMCC Makalu 405EX support 69665 69666 Signed-off-by: Stefan Roese <sr@denx.de> 69667 69668commit fa8aea20456e6f1dba43f46bcc72024dd9499998 69669Author: Stefan Roese <sr@denx.de> 69670Date: Mon Oct 22 07:33:52 2007 +0200 69671 69672 ppc4xx: Add freqUART to CPU speed detection 69673 69674 This value is needed later for the device tree configuration of 69675 the uart clock. 69676 69677 Signed-off-by: Stefan Roese <sr@denx.de> 69678 69679commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d 69680Author: Stefan Roese <sr@denx.de> 69681Date: Sun Oct 21 14:26:29 2007 +0200 69682 69683 ppc: Small Kilauea cleanup of config file 69684 69685 Signed-off-by: Stefan Roese <sr@denx.de> 69686 69687commit 758c037aeead34b49631b8da3a90b1bba14c0410 69688Author: Stefan Roese <sr@denx.de> 69689Date: Sun Oct 21 08:16:12 2007 +0200 69690 69691 rtc: Add Xicor/Intersil X1205 RTC support 69692 69693 This patch adds support for the Xicor/Intersil X1205 RTC used on the 69694 AMCC Makalu eval board. This driver is basically cloned from the Linux 69695 driver version (2.6.23). 69696 69697 This patch also introduces the Linux bcd.h header for the BCD2BIN/ 69698 BIN2BCD conversions. In the future some of the other U-Boot RTC driver 69699 should be converted to also use this header instead of implementing 69700 their own local copy of these functions/macros. 69701 69702 Signed-off-by: Stefan Roese <sr@denx.de> 69703 69704commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6 69705Author: Stefan Roese <sr@denx.de> 69706Date: Sun Oct 21 08:12:41 2007 +0200 69707 69708 ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx 69709 69710 This patch moves some common 4xx macros and the PPC405_SYS_INFO/ 69711 PPC440_SYS_INFO structure into the common ppc4xx.h header. 69712 69713 Lot's of other macros are good candidates to be consolidated this way 69714 in the future. 69715 69716 Signed-off-by: Stefan Roese <sr@denx.de> 69717 69718commit 770c7af5800f598d22730d1f4b70f16c9b33512e 69719Author: Stefan Roese <sr@denx.de> 69720Date: Sun Oct 21 08:05:18 2007 +0200 69721 69722 ppc4xx: Fix size setup in Kilauea DDR2 init routine 69723 69724 The size was initilized wrong. Instead of 256MB, the DDR2 controller 69725 was setup to 512MB. Now the correct values is used. 69726 69727 This patch also does a little cleanup and adds a comment here. 69728 69729 Signed-off-by: Stefan Roese <sr@denx.de> 69730 69731commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a 69732Author: Eugene O'Brien <eugene.obrien@advantechamt.com> 69733Date: Thu Oct 18 17:29:04 2007 +0200 69734 69735 ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors 69736 69737 CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR 69738 number is used to access system registers. 69739 69740 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com> 69741 Signed-off-by: Stefan Roese <sr@denx.de> 69742 69743commit c36c68160333ac5fe41ec3db12a728b7075b3912 69744Author: Stefan Roese <sr@denx.de> 69745Date: Thu Oct 18 07:42:27 2007 +0200 69746 69747 ppc4xx: Change inbound PCIe location for endpoint tests on Katmai 69748 69749 On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which 69750 is the internal SRAM. Since I now ported and tested this endpoint mode 69751 on Kilauea successfully to map to 0 (SDRAM), I also changed this for 69752 Katmai. 69753 69754 Yucca will stay at internal SRAM for now. Not sure if somebody relies on 69755 this setup. 69756 69757 Signed-off-by: Stefan Roese <sr@denx.de> 69758 69759commit 5cb4af4791f61843432155142b6cfac901f66c10 69760Author: Stefan Roese <sr@denx.de> 69761Date: Thu Oct 18 07:39:38 2007 +0200 69762 69763 ppc4xx: Add PCIe endpoint support on Kilauea (405EX) 69764 69765 This patch adds endpoint support for the AMCC Kilauea eval board. It can 69766 be tested by connecting a reworked PCIe cable (only 1x lane singles 69767 connected) to another root-complex. 69768 69769 In this test setup, a 64MB inbound window is configured at BAR0 which maps 69770 to 0 on the PLB side. So accessing this BAR0 from the root-complex will 69771 access the first 64MB of the SDRAM on the PPC side. 69772 69773 Signed-off-by: Stefan Roese <sr@denx.de> 69774 69775commit d4cb2d17946466740afeb195a57d6cb290bf4cc0 69776Author: Stefan Roese <sr@denx.de> 69777Date: Sat Oct 13 16:43:23 2007 +0200 69778 69779 ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode 69780 69781 This patch adds support for dynamic configuration of PCIe ports for the 69782 AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe 69783 boards Yucca & Katmai and the 405EX board Kilauea. 69784 69785 This dynamic configuration is done via the "pcie_mode" environement 69786 variable. This variable can be set to "EP" or "RP" for endpoint or 69787 rootpoint mode. Multiple values can be joined via the ":" delimiter. 69788 Here an example: 69789 69790 pcie_mode=RP:EP:EP 69791 69792 This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2 69793 as endpoint. 69794 69795 Per default Yucca will be configured as: 69796 pcie_mode=RP:EP:EP 69797 69798 Per default Katmai will be configured as: 69799 pcie_mode=RP:RP:REP 69800 69801 Per default Kilauea will be configured as: 69802 pcie_mode=RP:RP 69803 69804 Signed-off-by: Tirumala R Marri <tmarri@amcc.com> 69805 Signed-off-by: Stefan Roese <sr@denx.de> 69806 69807commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f 69808Author: Stefan Roese <sr@denx.de> 69809Date: Thu Oct 11 11:15:59 2007 +0200 69810 69811 ppc4xx: Enable device tree support (fdt) on Kilauea per default 69812 69813 This patch enables the fdt support on the AMCC Kilauea eval board. 69814 Additionally now EBC ranges fdt fixup is included to support NOR 69815 FLASH mapping via the Linux physmap_of driver. 69816 69817 This Kilauea port now support booting arch/ppc and arch/powerpc 69818 Linux kernels. The default environment "net_nfs" is for arch/ppc 69819 and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc 69820 support will be removed. 69821 69822 Signed-off-by: Stefan Roese <sr@denx.de> 69823 69824commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e 69825Author: Stefan Roese <sr@denx.de> 69826Date: Thu Oct 11 11:11:45 2007 +0200 69827 69828 ppc4xx: Add additional debug info to 4xx fdt support 69829 69830 Signed-off-by: Stefan Roese <sr@denx.de> 69831 69832commit db3232ddb058d0ed0bc31f7c5c296748a1afac67 69833Author: Stefan Roese <sr@denx.de> 69834Date: Fri Oct 5 21:28:58 2007 +0200 69835 69836 ppc4xx: Fix small merge problems with CPCI440 and Acadia boards 69837 69838 Signed-off-by: Stefan Roese <sr@denx.de> 69839 69840commit 1941cce71b1ae975602854045061e82f94ecd012 69841Author: Stefan Roese <sr@denx.de> 69842Date: Fri Oct 5 17:35:10 2007 +0200 69843 69844 ppc4xx: Fix small merge problem in 4xx_enet.c 69845 69846 Signed-off-by: Stefan Roese <sr@denx.de> 69847 69848commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf 69849Author: Stefan Roese <sr@denx.de> 69850Date: Fri Oct 5 17:11:30 2007 +0200 69851 69852 ppc4xx: Add initial AMCC Kilauea 405EX support 69853 69854 Signed-off-by: Stefan Roese <sr@denx.de> 69855 69856commit dbbd125721aea6645fdb962f36bd41f59e272f9d 69857Author: Stefan Roese <sr@denx.de> 69858Date: Fri Oct 5 17:10:59 2007 +0200 69859 69860 ppc4xx: Add PPC405EX support 69861 69862 Signed-off-by: Stefan Roese <sr@denx.de> 69863 69864commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31 69865Author: Stefan Roese <sr@denx.de> 69866Date: Fri Oct 5 17:09:36 2007 +0200 69867 69868 ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming) 69869 69870 Signed-off-by: Stefan Roese <sr@denx.de> 69871 69872commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db 69873Author: Stefan Roese <sr@denx.de> 69874Date: Fri Oct 5 17:07:50 2007 +0200 69875 69876 ppc4xx: Add initial fdt support to 4xx (first needed on 405EX) 69877 69878 Signed-off-by: Stefan Roese <sr@denx.de> 69879 69880commit a424a8bb2924b90724b944165d3141f1fa8dfe5b 69881Author: Stefan Roese <sr@denx.de> 69882Date: Fri Oct 5 17:04:57 2007 +0200 69883 69884 POST: Add 405EX support to 4xx UART POST test 69885 69886 Signed-off-by: Stefan Roese <sr@denx.de> 69887 69888commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12 69889Author: Stefan Roese <sr@denx.de> 69890Date: Fri Oct 5 15:10:02 2007 +0200 69891 69892 DTT: Prepare DS1775 driver for use of different I2C addresses 69893 69894 Signed-off-by: Stefan Roese <sr@denx.de> 69895 69896commit 19e93b1e16d267220440d827b920fbad8abfa70f 69897Author: Stefan Roese <sr@denx.de> 69898Date: Fri Oct 5 14:23:43 2007 +0200 69899 69900 ppc4xx: 4xx_pcie: Change PCIe status output to match common style 69901 69902 Signed-off-by: Stefan Roese <sr@denx.de> 69903 69904commit ff68f66bcb0da847845aa2fac11eba6c25938c99 69905Author: Stefan Roese <sr@denx.de> 69906Date: Fri Oct 5 09:22:33 2007 +0200 69907 69908 ppc4xx: 4xx_pcie: Disable debug output as default 69909 69910 Signed-off-by: Stefan Roese <sr@denx.de> 69911 69912commit 97923770cb52b64d69eec958a11b2eda8d46e0f7 69913Author: Stefan Roese <sr@denx.de> 69914Date: Fri Oct 5 09:18:23 2007 +0200 69915 69916 ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added 69917 69918 Signed-off-by: Stefan Roese <sr@denx.de> 69919 69920commit 4dbee8a90df613eb517aadbecebd70f168913d30 69921Author: Stefan Roese <sr@denx.de> 69922Date: Fri Oct 5 07:57:20 2007 +0200 69923 69924 ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai 69925 69926 128MB seems to be the smallest possible value for the memory size 69927 for on PCIe port. With this change now the BAR's of the PCIe cards 69928 are accessible under U-Boot. 69929 69930 One big note: This only works for PCIe port 0 & 1. For port 2 this 69931 currently doesn't work, since the base address is now 0xc0000000 69932 (0xb0000000 + 2 * 0x08000000), and this is already occupied by 69933 CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean 69934 to change the base addresses completely and this change would have 69935 too much impact right now. 69936 69937 This patch adds debug output to the 4xx pcie driver too. 69938 69939 Signed-off-by: Stefan Roese <sr@denx.de> 69940 69941commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2 69942Author: Stefan Roese <sr@denx.de> 69943Date: Wed Oct 3 21:16:32 2007 +0200 69944 69945 ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx 69946 69947 Signed-off-by: Stefan Roese <sr@denx.de> 69948 69949commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a 69950Author: Stefan Roese <sr@denx.de> 69951Date: Wed Oct 3 15:01:02 2007 +0200 69952 69953 ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms 69954 69955 These files were introduced with the IBM 405GP but are currently used on all 69956 4xx PPC platforms. So the name doesn't match the content anymore. This patch 69957 renames the files to 4xx_pci.c/h. 69958 69959 Signed-off-by: Stefan Roese <sr@denx.de> 69960 69961commit 94276eb0a7a35b9e8c053d589ae225b0f017a237 69962Author: Stefan Roese <sr@denx.de> 69963Date: Wed Oct 3 14:14:58 2007 +0200 69964 69965 ppc4xx: Add a comment for 405EX PCIe endpoint configuration 69966 69967 Signed-off-by: Stefan Roese <sr@denx.de> 69968 69969commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626 69970Author: Stefan Roese <sr@denx.de> 69971Date: Wed Oct 3 10:38:09 2007 +0200 69972 69973 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3) 69974 69975 (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access 69976 the SDR registers of the PCIe ports. This makes the overall design 69977 clearer, since it removed a lot of switch statements which are not 69978 needed anymore. 69979 69980 Also, the functions ppc4xx_init_pcie_rootport() and 69981 ppc4xx_init_pcie_entport() are merged into a single function 69982 ppc4xx_init_pcie_port(), since most of the code was duplicated. 69983 This makes maintainance and porting to other 4xx platforms 69984 easier. 69985 69986 Signed-off-by: Stefan Roese <sr@denx.de> 69987 69988commit 026f71106871f31d17d0ea0db9a7547ff92934bc 69989Author: Stefan Roese <sr@denx.de> 69990Date: Wed Oct 3 07:48:09 2007 +0200 69991 69992 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2) 69993 69994 This patch is the first patch of a series to make the 440SPe PCIe code 69995 usable on different 4xx PPC platforms. In preperation for the new 405EX 69996 which is also equipped with PCIe interfaces. 69997 69998 (2) This patch renames the functions from 440spe_ to 4xx_ with a 69999 little additional cleanup 70000
70001 Signed-off-by: Stefan Roese <sr@denx.de> 70002 70003commit c7c6da23028f146d912514b95aefa3da7cf37699 70004Author: Stefan Roese <sr@denx.de> 70005Date: Wed Oct 3 07:34:10 2007 +0200 70006 70007 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1) 70008 70009 This patch is the first patch of a series to make the 440SPe PCIe code 70010 usable on different 4xx PPC platforms. In preperation for the new 405EX 70011 which is also equipped with PCIe interfaces. 70012 70013 (1) This patch renames the files from 440spe_pcie to 4xx_pcie 70014 70015 Signed-off-by: Stefan Roese <sr@denx.de> 70016 70017commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502 70018Author: Marian Balakowicz <m8@semihalf.com> 70019Date: Wed Oct 24 01:37:36 2007 +0200 70020 70021 TQM5200: Call usb_cpu_init() during board init 70022 70023 usb_cpu_init() configures GPS USB pins, clocks, etc. and 70024 is required for proper operation of kernel USB subsystem. 70025 This setup was previously done in the kernel by the fixup 70026 code which is being removed, thus low level init must be 70027 done by U-boot now. 70028 70029 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 70030 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 70031 70032commit b5af773f8d92677e06f3295b45557c9d0a487c24 70033Author: Zhang Wei <wei.zhang@freescale.com> 70034Date: Thu Oct 25 17:51:27 2007 +0800 70035 70036 Fix the issue of usb_kbd driver missing the scan code of key 'z'. 70037 70038 The scan code of the key 'z' is 0x1d, which should be handled. 70039 70040 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI 70041 controller. 70042 70043 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 70044 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 70045 70046commit 85ac988e86f9414fa645b0148dc66c3520a1eb84 70047Author: Rodolfo Giometti <giometti@enneenne.com> 70048Date: Mon Oct 15 11:59:17 2007 +0200 70049 70050 PXA USB OHCI: "usb stop" implementation. 70051 70052 Some USB keys need to be switched off before loading the kernel 70053 otherwise they can remain in an undefined status which prevents them 70054 to be correctly recognized by the kernel. 70055 70056 Signed-off-by: Rodolfo Giometti <giometti@linux.it> 70057 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 70058 70059commit 31548249decf18a6b877a18436b6139dd483fe4a 70060Author: Justin Flammia <jflammia@savantav.com> 70061Date: Mon Oct 29 17:40:35 2007 -0400 70062 70063 DHCP Client Fix 70064 70065 This is a multi-part message in MIME format. 70066 70067 commit e6e505eae94ed721e123e177489291fc4544b7b8 70068 Author: Justin Flammia <jflammia@savantav.com> 70069 Date: Mon Oct 29 17:19:03 2007 -0400 70070 70071 Found a bug in the way the DHCP Request packet is built, where the IP address 70072 that is offered by the server is bound to prematurely. This patch is a fix of 70073 that bug where the IP address offered by the DHCP server is not used until 70074 after the DHCP ACK from the server is received. 70075 70076 Signed-off-by: Justin Flammia <jflammia@savantav.com> 70077 Signed-off-by: Ben Warren <bwarren@qstreams.com> 70078 70079commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed 70080Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70081Date: Thu Oct 25 17:16:22 2007 -0500 70082 70083 ColdFire 54455: Fix correct boot location for atmel and intel 70084 70085 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70086 70087commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb 70088Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70089Date: Thu Oct 25 17:14:00 2007 -0500 70090 70091 ColdFire: Fix build error when CONFIG_WATCHDOG is defined 70092 70093 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70094 70095commit c67e12e705b204cfe914e3e3e693d69a445dcabf 70096Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70097Date: Thu Oct 25 17:12:36 2007 -0500 70098 70099 ColdFire 5329: Assign correct SDRAM size and fix cache 70100 70101 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70102 70103commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b 70104Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70105Date: Thu Oct 25 17:10:23 2007 -0500 70106 70107 ColdFire 5253: Assign correct SDRAM size 70108 70109 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70110 70111commit 2acefa72ee0026f862ab65597ca687428f63a973 70112Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70113Date: Thu Oct 25 17:09:17 2007 -0500 70114 70115 ColdFire 5282: Fix external flash boot and return dramsize 70116 70117 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 70118 70119commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82 70120Author: Bartlomiej Sieka <tur@semihalf.com> 70121Date: Thu Oct 25 17:20:01 2007 +0200 70122 70123 TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk). 70124 70125 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 70126 70127commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834 70128Author: Martin Krause <martin.krause@tqs.de> 70129Date: Wed Oct 24 08:42:25 2007 +0200 70130 70131 TQM5200: fix spurious characters on second serial interface 70132 70133 With this patch PSC3 is configured as UART. This is done, because if 70134 the pins of PSC3 are not configured at all (-> all pins are GPI), 70135 due to crosstalk, spurious characters may be send over the RX232_2_TXD 70136 signal line. 70137 70138 Signed-off-by: Martin Krause <martin.krause@tqs.de> 70139 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 70140 70141commit be4a87f11e297a5cededbf7dd71c0248f3874acd 70142Author: Martin Krause <martin.krause@tqs.de> 70143Date: Wed Oct 24 08:41:27 2007 +0200 70144 70145 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller 70146 70147 Some commands for the STK52xx base board try to access the SM501 grafic 70148 controller. But the TQM5200S has no grafic controller (only the TQM5200 70149 and the TQM5200B have). This patch deactivates the commands accessing 70150 the SM501 for the TQM5200S. 70151 70152 Signed-off-by: Martin Krause <martin.krause@tqs.de> 70153 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 70154 70155commit b31f64343ead9482cd439b1adbe4c34026a641b1 70156Author: Martin Krause <martin.krause@tqs.de> 70157Date: Mon Oct 22 16:45:53 2007 +0200 70158 70159 TQM5200: fix spurious characters on second serial interface 70160 70161 With this patch PSC3 is configured as UART. This is done, because if 70162 the pins of PSC3 are not configured at all (-> all pins are GPI), 70163 due to crosstalk, spurious characters may be send over the RX232_2_TXD 70164 signal line. 70165 70166 Signed-off-by: Martin Krause <martin.krause@tqs.de> 70167 70168commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6 70169Author: Martin Krause <martin.krause@tqs.de> 70170Date: Mon Oct 22 16:40:06 2007 +0200 70171 70172 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller 70173 70174 Some commands for the STK52xx base board try to access the SM501 grafic 70175 controller. But the TQM5200S has no grafic controller (only the TQM5200 70176 and the TQM5200B have). This patch deactivates the commands accessing 70177 the SM501 for the TQM5200S. 70178 70179 Signed-off-by: Martin Krause <martin.krause@tqs.de> 70180 70181commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227 70182Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70183Date: Sun Oct 21 09:14:28 2007 +0200 70184 70185 Mips: Fix string functions differ prototype declaration 70186 70187 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70188 70189commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2 70190Author: Ed Swarthout <Ed.Swarthout@freescale.com> 70191Date: Fri Oct 19 17:51:40 2007 -0500 70192 70193 fsl_pci_init enable COMMAND_MEMORY if inbound window 70194 70195 Patch 16e23c3f removed PCSRBAR allocation. But passing zero windows 70196 to pciauto_setup_device has the side effect of not getting 70197 COMMAND_MEMORY set. 70198 70199 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 70200 70201commit e9d0d527992566ebef9826962ff1745b2f082b92 70202Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70203Date: Fri Oct 19 10:55:24 2007 +0200 70204 70205 delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration 70206 70207 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70208 70209commit 9c4884f54da982ce990c7d1760ac81b0704d3c64 70210Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70211Date: Fri Oct 19 08:10:15 2007 +0200 70212 70213 fix warning: no return statement in function returning non-void 70214 70215 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70216 70217commit e78220f6e514206757acfe247297fc9a328a881f 70218Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70219Date: Fri Oct 19 06:33:45 2007 +0200 70220 70221 xsengine: Fix no partition type specified, use DOS as default 70222 70223 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70224 70225commit 10cdb8dbd67a818823ab9ec88b68fc348903db59 70226Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70227Date: Fri Oct 19 00:24:59 2007 +0200 70228 70229 lubbock: Fix no partition type specified, use DOS as default 70230 70231 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70232 70233commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191 70234Author: Wolfgang Denk <wd@denx.de> 70235Date: Tue Oct 23 16:50:03 2007 +0200 70236 70237 Coding style: keep lists sorted; update CHANGELOG 70238 70239 Signed-off-by: Wolfgang Denk <wd@denx.de> 70240 70241commit 58b74b05c621e2835ecf4e2d3243042cf4186777 70242Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70243Date: Fri Oct 19 00:09:05 2007 +0200 70244 70245 Fix missing drivers makefile entries ds1722.c mw_eeprom.c 70246 70247 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70248 70249commit 96455bfebc9887837095c9051d216f53c61b5f10 70250Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70251Date: Fri Oct 19 00:07:39 2007 +0200 70252 70253 Fix warning differ in signedness in board/innokom/innokom.c 70254 70255 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70256 70257commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd 70258Author: Marcel Ziswiler <marcel@ziswiler.com> 70259Date: Fri Oct 19 00:25:33 2007 +0200 70260 70261 fix pxa255_idp board 70262 70263 The pxa255_idp being an old unmaintained board showed several issues: 70264 1. CONFIG_INIT_CRITICAL was still defined. 70265 2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined. 70266 3. Symbol flash_addr was undeclared. 70267 4. The boards lowlevel_init function was still called memsetup. 70268 5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000. 70269 6. Using -march=armv5 instead of -march=armv5te resulted in lots of 70270 'target CPU does not support interworking' warnings on recent compilers. 70271 7. The PXA's serial driver redefined FFUART, BTUART and STUART used as 70272 indexes rather than the register definitions from the pxa-regs header 70273 file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to 70274 avoid any ambiguities. 70275 8. There were several redefinition warnings concerning ICMR, OSMR3, 70276 OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file. 70277 9. The board configuration file was rather outdated. 70278 10. The part header file defined the vendor, product and revision arrays 70279 as unsigned chars instead of just chars in the block_dev_desc_t 70280 structure. 70281 70282 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com> 70283 70284commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6 70285Author: Rune Torgersen <runet@innovsys.com> 70286Date: Wed Oct 17 11:56:31 2007 -0500 70287 70288 Make MPC8266ADS command selection more robust 70289 70290 Fix MPC8266 command line definition so it won't break when new commands 70291 are added to u-boot. 70292 Signed-off-by Rune Torgersen <runet@innovsys.com> 70293 70294commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315 70295Author: Bartlomiej Sieka <tur@semihalf.com> 70296Date: Tue Oct 23 13:14:10 2007 +0200 70297 70298 Motion-PRO: Update configuration to accomodate next generation board. 70299 70300 New board has faster oscillator and a different Flash chip. This affects: 70301 - CFG_MPC5XXX_CLKIN 70302 - SDRAM timings 70303 - Flash CS configuration (timings) 70304 - Flash sector size, and thus MTD partition layout 70305 - malloc() arena size (due to bigger Flash sectors) 70306 - smaller memory test range (due to bigger malloc() arena) 70307 70308 This patch also enables more extensive memory testing via "mtest". 70309 70310 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 70311 70312commit eff501904df2bf1724a750062628ba2c51dbb1f8 70313Author: Bartlomiej Sieka <tur@semihalf.com> 70314Date: Tue Oct 23 11:36:07 2007 +0200 70315 70316 Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration. 70317 70318 Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay 70319 register must be written a value of 0x00000004 as the first step of the 70320 SDRAM contorller configuration. 70321 70322 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 70323 70324commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54 70325Author: Peter Pearse <peter.pearse@arm.com> 70326Date: Tue Oct 23 10:22:16 2007 +0100 70327 70328 Move PL01* serial drivers to drivers/serial and adjust Makefiles. 70329 70330commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc 70331Author: Stefan Roese <sr@denx.de> 70332Date: Tue Oct 23 10:17:42 2007 +0200 70333 70334 ppc4xx: lwmon5: Some further GPIO config changes 70335 70336 Signed-off-by: Stefan Roese <sr@denx.de> 70337 70338commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d 70339Author: Vlad Lungu <vlad@comsys.ro> 70340Date: Sun Oct 21 22:10:10 2007 +0900 70341 70342 [MIPS] Fix UNCACHED_SDRAM 70343 70344 PHYSADDR is for physical address, KSEG1ADDR is for uncached. 70345 70346 Signed-off-by: Vlad Lungu <vlad@comsys.ro> 70347 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70348 70349commit 00101dd7a32d12f698150123e47e4b3420279f86 70350Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70351Date: Sun Oct 21 21:30:42 2007 +0900 70352 70353 [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup 70354 70355 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70356 70357commit eb700636db017d310edaeb559b13d82588560674 70358Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70359Date: Sun Oct 21 10:55:37 2007 +0900 70360 70361 [MIPS] u-boot.lds: Define _gp in a standard manner 70362 70363 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70364 70365commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0 70366Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70367Date: Sun Oct 21 10:55:36 2007 +0900 70368 70369 [MIPS] Fix $gp usage 70370 70371 Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use. 70372 As a general principle, we should use _gp for $gp. 70373 70374 Thanks to linker script's help we fortunately have _gp which equals to 70375 _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not 70376 be able to access to GOT entires, global variables and procedure entry 70377 points. The right thing to do is to use _gp. 70378 70379 This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_' 70380 which holds the offset from _gp. When updating GOT entries, we use this 70381 offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_. 70382 70383 This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then 70384 I made some change to leave over num_got_entries. 70385 70386 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70387 Cc: Vlad Lungu <vlad@comsys.ro> 70388 70389commit cbf2323b5b8285ea01acba7bbb905a3162d9b021 70390Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70391Date: Sun Oct 21 10:55:36 2007 +0900 70392 70393 [MIPS] u-boot.lds: Fix __got_start and __got_end 70394 70395 Ensure that __got_start points to top of the `.got', and __got_end points 70396 to bottom as well, so that we never fail to count num_got_entries. 70397 70398 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70399 70400commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7 70401Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70402Date: Sun Oct 21 10:55:36 2007 +0900 70403 70404 [MIPS] u-boot.lds: Remove duplicated .sdata section 70405 70406 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 70407 70408commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1 70409Author: Wolfgang Denk <wd@denx.de> 70410Date: Sun Oct 21 01:01:17 2007 +0200 70411 70412 Minor coding style cleanup; update CHANGELOG 70413 70414 Signed-off-by: Wolfgang Denk <wd@denx.de> 70415 70416commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c 70417Author: Vlad Lungu <vlad@comsys.ro> 70418Date: Thu Oct 4 20:47:10 2007 +0300 70419 70420 Fix NE2000 driver: 70421 70422 Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try 70423 to do anything in eth_stop() if eth_init() was not called. 70424 Simplified RX path in order to avoid timeouts on really really 70425 fast NE2000 cards (read: qemu with internal tftp), NetLoop() is 70426 clever enough to cope with 1 packet per eth_rx(). 70427 70428 Signed-off-by: Vlad Lungu <vlad@comsys.ro> 70429 70430commit df90968b48fb34fa9072fab150db2ac89678f537 70431Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com> 70432Date: Mon Sep 24 13:32:13 2007 -0400 70433 70434 Setting MSR[DE] in do_reset 70435 70436 Hello, 70437 This patch ensures the soft reset of the board for the 85xx boards 70438 by setting the MSR[DE] in the do_reset function. 70439 70440 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com> 70441 70442commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d 70443Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com> 70444Date: Mon Sep 24 13:36:01 2007 -0400 70445 70446 MSR overwrite fix 70447 70448 Hello, 70449 This patch fixes the MSR overwrite in the start.S when moving out of 70450 the last 4K page. 70451 70452 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com> 70453 70454commit 5c7ea64bb74a850a2b2303f853a8270695ad8602 70455Author: Dan Wilson <dwilson@fulcrummicro.com> 70456Date: Fri Oct 19 11:33:48 2007 -0500 70457 70458 tsec driver should clear RHALT on startup 70459 70460 This was causing problems for some people. 70461 70462 Signed-off-by: Alain Gravel <agravel@fulcrummicro.com> 70463 Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com> 70464 Signed-off-by: Andy Fleming <afleming@freescale.com> 70465 70466commit 7600d47b8f6a10019e537dc9a62aa1498df58d25 70467Author: Kumar Gala <galak@kernel.crashing.org> 70468Date: Thu Oct 11 00:29:18 2007 -0500 70469 70470 Improve handling of PCI interrupt device tree fixup on MPC85xx CDS 70471 70472 On the MPC85xx CDS we have two issues: 70473 70474 1. The device tree fixup code did not check to see if the property we are 70475 trying to update is actually found. Its possible that it would update 70476 random memory starting at 0. 70477 70478 2. Newer Linux kernel's have moved the location of the PCI nodes to be 70479 sibilings of the soc node and not children. The explicit PATH to the PCI 70480 node would not be found for these device trees. Add the ability to handle 70481 both paths. In the future we shouldn't handle such fixups by explicit path. 70482 70483 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 70484 70485commit a3063eec775719b7e91023bbec3f64b3118791df 70486Author: Kumar Gala <galak@kernel.crashing.org> 70487Date: Thu Oct 11 00:18:48 2007 -0500 70488 70489 Set OF_STDOUT_PATH to match the default console on MPC8568 MDS 70490 70491 On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured 70492 console. Make it so we match that config what we tell Linux as the early 70493 STDOUT console. 70494 70495 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 70496 70497commit e1ce3cb617bb06f91f82f98915391175addf3e82 70498Author: Kumar Gala <galak@kernel.crashing.org> 70499Date: Tue Oct 2 11:12:27 2007 -0500 70500 70501 Remove magic numbers from cache related operations for mpc85xx 70502 70503 The mpc85xx start code uses some magic numbers that we actually 70504 have #defines for in <config.h> so use those instead. 70505 70506 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 70507 70508commit 5441f61a3d8b7034f19fc1361183e936198e6dbb 70509Author: Detlev Zundel <dzu@denx.de> 70510Date: Fri Oct 19 16:47:26 2007 +0200 70511 70512 Fix two typos. 70513 70514 Signed-off-by: Detlev Zundel <dzu@denx.de> 70515 70516commit 281df457c1aa50d2752165d0c5c3282d4027b974 70517Author: Tony Li <tony.li@freescale.com> 70518Date: Thu Oct 18 17:47:19 2007 +0800 70519 70520 mpc83xx: Add configure entry for MPC83xx ATM support 70521 70522 Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into 70523 Makfile and MAKEALL 70524 70525 Signed-off-by: Tony Li <tony.li@freescale.com> 70526 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 70527 70528commit d2646554f529a9577515eceb0ec5eceee18244ba 70529Author: Tony Li <tony.li@freescale.com> 70530Date: Thu Oct 18 17:44:38 2007 +0800 70531 70532 mpc83xx: pq-mds-pib.c typo error 70533 70534 Correct to val8 from val. 70535 70536 Signed-off-by: Tony Li <tony.li@freescale.com> 70537 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 70538 70539commit 3e11ae80fec1ee12194940955431186abf6009c2 70540Author: Stefan Roese <sr@denx.de> 70541Date: Wed Oct 17 15:40:19 2007 +0200 70542 70543 ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command 70544 70545 Signed-off-by: Stefan Roese <sr@denx.de> 70546 70547commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c 70548Author: Jon Loeliger <jdl@freescale.com> 70549Date: Tue Oct 16 15:27:43 2007 -0500 70550 70551 Initial mpc8610hpcd Makefile files. 70552 70553 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 70554 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com> 70555 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 70556 Signed-off-by: Jon Loeliger <jdl@freescale.com> 70557 70558commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7 70559Author: Jon Loeliger <jdl@freescale.com> 70560Date: Tue Oct 16 15:26:51 2007 -0500 70561 70562 Initial mpc8610hpcd cpu/, README and include/ files. 70563 70564 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 70565 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com> 70566 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 70567 Signed-off-by: Jon Loeliger <jdl@freescale.com> 70568 70569commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e 70570Author: Jon Loeliger <jdl@freescale.com> 70571Date: Tue Oct 16 13:54:01 2007 -0500 70572 70573 Initial mpc8610hpcd board files. 70574 70575 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 70576 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com> 70577 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 70578 Signed-off-by: Jon Loeliger <jdl@freescale.com> 70579 70580commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd 70581Author: runet@innovsys.com <runet@innovsys.com> 70582Date: Tue Oct 16 14:50:40 2007 -0500 70583 70584 Make MPC8266ADS board compile again. 70585 70586 Signed-off-by: Runet Torgersen <runet@innovsys.com> 70587 70588commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a 70589Author: Jon Loeliger <jdl@freescale.com> 70590Date: Mon Aug 27 12:41:03 2007 -0500 70591 70592 86xx: Allow for fewer DDR slots per memory controller. 70593 70594 As a direct correlation exists between DDR DIMM slots 70595 and SPD EEPROM addresses used to configure them, use 70596 the individually defined SPD_EEPROM_ADDRESS* values to 70597 determine if a DDR DIMM slot should have its SPD 70598 configuration read or not. 70599 70600 Effectively, this now allows for 1 or 2 DIMM slots 70601 per memory controller. 70602 70603 Signed-off-by: Jon Loeliger <jdl@freescale.com> 70604 70605commit 4d4a945e189a2f384c66432316da2788a0ac1607 70606Author: Rodolfo Giometti <giometti@enneenne.com> 70607Date: Mon Oct 15 11:59:17 2007 +0200 70608 70609 PXA USB OHCI: "usb stop" implementation. 70610 70611 Some USB keys need to be switched off before loading the kernel 70612 otherwise they can remain in an undefined status which prevents them 70613 to be correctly recognized by the kernel. 70614 70615 Signed-off-by: Rodolfo Giometti <giometti@linux.it> 70616 70617commit e2e93442e558cf1500e92861f99713b2f045ea22 70618Author: Stefan Roese <sr@denx.de> 70619Date: Mon Oct 15 11:39:00 2007 +0200 70620 70621 ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier 70622 70623 The I2C bootstrap values that can be setup via the "bootstrap" command, 70624 were setup incorrect regarding the generation of the internal sync PCI 70625 clock. The values for PLB clock == 133MHz were slighly incorrect and the 70626 values for PLB clock == 166MHz were totally incorrect. This could 70627 lead to a hangup upon booting while PCI configuration scan. 70628 70629 This patch fixes this issue and configures valid PCI divisor values 70630 for the sync PCI clock, with respect to the provided external async 70631 PCI frequency. 70632 70633 Here the values of the formula in the chapter 14.2 "PCI clocking" 70634 from the 440EPx users manual: 70635 70636 AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz 70637 70638 33MHz async PCI frequency: 70639 PLB = 133: 70640 => 32 <= 44.3 <= 65 (div = 3) 70641 70642 PLB = 166: 70643 => 32 <= 55.3 <= 65 (div = 3) 70644 70645 66MHz async PCI frequency: 70646 PLB = 133: 70647 => 65 <= 66.5 <= 132 (div = 2) 70648 70649 PLB = 166: 70650 => 65 <= 83 <= 132 (div = 2) 70651 70652 Signed-off-by: Stefan Roese <sr@denx.de> 70653 70654commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587 70655Author: Stefan Roese <sr@denx.de> 70656Date: Mon Oct 15 11:29:33 2007 +0200 70657 70658 ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite 70659 70660 The BCSR status bit for the 66MHz PCI operation was correctly 70661 addressed (MSB/LSB problem). Now the correct currently setup 70662 PCI frequency is displayed upon bootup. 70663 70664 This patch also fixes this problem on Rainier & Yellowstone, since these 70665 boards use the same souce code as Sequoia & Yosemite do. 70666 70667 Signed-off-by: Stefan Roese <sr@denx.de> 70668 70669commit da3aad55cbde80ab6e301aafa82a2c411aa53eff 70670Author: Martin Krause <martin.krause@tqs.de> 70671Date: Wed Sep 26 17:55:56 2007 +0200 70672 70673 TQM860M: adjust for doubled flash sector size. 70674 70675 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with 70676 doubled sector size. 70677 70678 Signed-off-by: Martin Krause <martin.krause@tqs.de> 70679 70680commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d 70681Author: Jens Gehrlein <jens.gehrlein@tqs.de> 70682Date: Wed Sep 26 17:55:54 2007 +0200 70683 70684 TQM8xx: Fix CAN timing. 70685 70686 Signed-off-by: Martin Krause <martin.krause@tqs.de> 70687 70688commit d43e489baf02afae49077791fb22332d240d8656 70689Author: Martin Krause <martin.krause@tqs.de> 70690Date: Thu Sep 27 14:54:36 2007 +0200 70691 70692 TQM866M: fix SDRAM refresh 70693 70694 At 133 MHz the current SDRAM refresh rate is too fast 70695 (measured 4 * 1.17 us). 70696 CFG_MAMR_PTA changes from 39 to 97. This result 70697 in a refresh rate of 4 * 7.8 us at the default clock 70698 50 MHz. At 133 MHz the value will be then 4 * 2.9 us. 70699 This is a compromise until a new method is found to 70700 adjust the refresh rate. 70701 70702 Signed-off-by: Martin Krause <martin.krause@tqs.de> 70703 70704commit 9ef57bbee1c67cc01da2026c242c4692db32be36 70705Author: Martin Krause <martin.krause@tqs.de> 70706Date: Wed Sep 26 17:55:55 2007 +0200 70707 70708 TQM866M: adjust for doubled flash sector size. 70709 70710 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with 70711 doubled sector size. 70712 70713 Signed-off-by: Martin Krause <martin.krause@tqs.de> 70714 70715commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763 70716Author: Michal Simek <monstr@monstr.eu> 70717Date: Sun Oct 14 16:12:29 2007 +0200 70718 70719 [FIX] XUPV2P change command handling 70720 and remove code violation 70721 70722commit 636400198228d96983c06657b17f760f5989958e 70723Author: Wolfgang Denk <wd@denx.de> 70724Date: Sun Oct 14 00:13:19 2007 +0200 70725 70726 Prepare for 1.3.0-rc3 release 70727 70728 Signed-off-by: Wolfgang Denk <wd@denx.de> 70729 70730commit 68f14f77ca5fe5f9cc025c8cae101671f628309f 70731Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70732Date: Sat Sep 29 13:41:37 2007 +0200 70733 70734 Fix warning differ in signedness in cpu/pxa/mmc.c 70735 70736 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70737 70738commit fc19e36f741e8bc727c0a330170b3b5db90399ef 70739Author: Wolfgang Denk <wd@denx.de> 70740Date: Sat Oct 13 23:51:14 2007 +0200 70741 70742 Fix warning differ in signedness in board/mpl/vcma9/vcma9.c 70743 70744 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70745 Signed-off-by: Wolfgang Denk <wd@denx.de> 70746 70747commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296 70748Author: Wolfgang Denk <wd@denx.de> 70749Date: Sat Oct 13 21:15:39 2007 +0200 70750 70751 Coding Style cleanup. 70752 70753 Signed-off-by: Wolfgang Denk <wd@denx.de> 70754 70755commit e1893815b0999410d7a327589611c7b38e95299e 70756Author: Wolfgang Denk <wd@denx.de> 70757Date: Fri Oct 12 15:49:39 2007 +0200 70758 70759 GP3 SSA: enable RTC 70760 70761 Signed-off-by: Wolfgang Denk <wd@denx.de> 70762 70763commit 8002012041f1ff9f997a5727abe5015f70cd2e46 70764Author: Grzegorz Bernacki <gjb@semihalf.com> 70765Date: Tue Oct 9 13:58:24 2007 +0200 70766 70767 [ads5121] EEPROM support added. 70768 70769 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 70770 70771commit 7b624ad254b97e5a25dca2304a398b64aeedaffe 70772Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 70773Date: Sat Oct 6 18:55:35 2007 +0200 70774 70775 AVR32: Initialize bi_flash* in board_init_r 70776 70777 The ATSTK1000-specific flash driver intializes bi_flashstart, 70778 bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI 70779 driver, don't. 70780 70781 Initialize these in board_init_r instead so that things will still be 70782 set up correctly when we switch to the CFI driver. 70783 70784 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 70785 70786commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8 70787Author: Marian Balakowicz <m8@semihalf.com> 70788Date: Fri Oct 5 10:40:54 2007 +0200 70789 70790 tqm5200: Fix CONFIG_CMD_PCI typo in board config file. 70791 70792 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 70793 70794commit 92869195ef8210758d2176230c0a36897afd50ed 70795Author: Bartlomiej Sieka <tur@semihalf.com> 70796Date: Fri Oct 5 09:46:06 2007 +0200 70797 70798 CM5200: Fix missing null-termination in hostname manipulation code 70799 70800 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 70801 70802commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87 70803Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 70804Date: Tue Oct 2 19:09:01 2007 +0200 70805 70806 Fix memtest breakage 70807 70808 CFG_MEMTEST_START uses weird magic involving gd, which fails to 70809 compile. Use hardcoded values instead (we actually know how much RAM 70810 we have on board.) 70811 70812 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 70813 70814commit 738815c0cc44aa329097f868dc1efc49ede9c5ba 70815Author: Stefan Roese <sr@denx.de> 70816Date: Tue Oct 2 11:44:46 2007 +0200 70817 70818 ppc4xx: Coding style cleanup 70819 70820 Signed-off-by: Stefan Roese <sr@denx.de> 70821 70822commit 87c1833a39e944db66385286fd5e28f9b3fcdd50 70823Author: Stefan Roese <sr@denx.de> 70824Date: Tue Oct 2 11:44:19 2007 +0200 70825 70826 ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet 70827 70828 Signed-off-by: Stefan Roese <sr@denx.de> 70829 70830commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670 70831Author: Grzegorz Bernacki <gjb@semihalf.com> 70832Date: Mon Oct 1 09:51:50 2007 +0200 70833 70834 Program EPLD to force full duplex mode for PHY. 70835 70836 EPLD forces modes of PHY operation. By default full duplex is turned off. 70837 This fix turns it on. 70838 70839 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 70840 70841commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818 70842Author: Timo Ketola <timo.ketola@exertus.fi> 70843Date: Mon Sep 24 14:50:32 2007 +0300 70844 70845 Bugfix: Use only one PTD for one endpoint 70846 70847 Original isp116x-hcd code prepared multiple PTDs for longer than 16 70848 byte transfers for one endpoint. That is unnecessary because the 70849 ISP116x is able to split long data from one PTD into multiple 70850 transactions based on the buffer size of the endpoint. It also caused 70851 serious problems if the endpoint NAKed some of the transactions. In 70852 that case ISP116x wouldn't notice that the other PTDs were for the same 70853 endpoint and would try the other PTDs possibly out of order. That would 70854 break the whole transfer. 70855 70856 This patch makes isp116x_submit_job to use one PTD for one transfer. 70857 70858 Signed-off-by: Timo Ketola <timo.ketola@exertus.fi> 70859 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 70860 70861commit 86ec86c04326c3913178a7679aa910de071da75d 70862Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70863Date: Thu Sep 27 23:27:47 2007 +0200 70864 70865 Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial 70866 70867 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> 70868 70869commit 3e954beb614b5b190d7f4f4c3b641437a0132e35 70870Author: Stefan Roese <sr@denx.de> 70871Date: Tue Sep 11 14:12:55 2007 +0200 70872 70873 ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test) 70874 70875 Signed-off-by: Stefan Roese <sr@denx.de> 70876 70877commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a 70878Author: Ed Swarthout <Ed.Swarthout@freescale.com> 70879Date: Wed Sep 26 16:35:54 2007 -0500 70880 70881 85xx io out functions need sync after write. 70882 70883 This fixes the mc146818 rtc_read/write functions for 85xx. 70884 70885 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 70886 70887commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae 70888Author: Grant Likely <grant.likely@secretlab.ca> 70889Date: Tue Sep 25 15:48:05 2007 -0600 70890 70891 Fpga: fix incorrect test of CFG_FPGA_XILINX macro 70892 70893 CFG_FPGA_XILINX is a bit value used to test against the value in 70894 CONFIG_FPGA. Testing for a value will always return TRUE. I don't 70895 think that is the intention in this code. 70896 70897 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 70898 70899commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166 70900Author: Michal Simek <monstr@monstr.eu> 70901Date: Mon Sep 24 00:41:30 2007 +0200 70902 70903 [FIX] change command handling and removing code violation 70904 70905commit f240356507038e5ce55e8a24cb2607e9eae6d10c 70906Author: Michal Simek <monstr@monstr.eu> 70907Date: Mon Sep 24 00:36:06 2007 +0200 70908 70909 [FIX] change sets of commands 70910 because changing of command handling brings 70911 compilation problems 70912 70913commit cb1bc63b75a232571eb69aa2c8aa919321655845 70914Author: Michal Simek <monstr@monstr.eu> 70915Date: Mon Sep 24 00:30:42 2007 +0200 70916 70917 [FIX] Email reparation & Copyright 70918 Both codes are written by myself without any 70919 support from CTU 70920 70921commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852 70922Author: Michal Simek <monstr@monstr.eu> 70923Date: Mon Sep 24 00:25:11 2007 +0200 70924 70925 [PATCH] Change macro name for UartLite 70926 because PowerPC 405 can use UartLite as console 70927 70928commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716 70929Author: Michal Simek <monstr@monstr.eu> 70930Date: Mon Sep 24 00:21:19 2007 +0200 70931 70932 [PATCH] Add support for design without interrupt controller 70933 Polling timer 70934 70935commit 0731933ec8ec45d02ba89b52df673d526873cdde 70936Author: Michal Simek <monstr@monstr.eu> 70937Date: Mon Sep 24 00:19:48 2007 +0200 70938 70939 [FIX] resolve problem with cpu without barrel shifter 70940 70941commit db14d77995ce515b728b178b63f82babe60e3d56 70942Author: Michal Simek <monstr@monstr.eu> 70943Date: Mon Sep 24 00:18:46 2007 +0200 70944 70945 [FIX] repair email address 70946 70947commit 481d4328618804add1f818a6c96296121cd0528e 70948Author: Michal Simek <monstr@monstr.eu> 70949Date: Mon Sep 24 00:17:42 2007 +0200 70950 70951 [FIX] repair MFSL commands 70952 70953commit b90c045f035c3cc9b5d2edaed6048dfb74e40763 70954Author: Michal Simek <monstr@monstr.eu> 70955Date: Mon Sep 24 00:08:37 2007 +0200 70956 70957 synchronizition with mainline 70958 70959commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13 70960Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 70961Date: Sun Sep 23 02:42:38 2007 +0900 70962 70963 sh: Add support command of ide with sh 70964 70965 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 70966 70967commit d91ea45d15cf8e0987456bd211ffbb650824b6f1 70968Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 70969Date: Sun Sep 23 02:38:42 2007 +0900 70970 70971 sh: Update Makefile 70972 70973 Add support MS7722SE01 to Makefile. 70974 70975 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 70976 70977commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6 70978Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 70979Date: Sun Sep 23 02:31:13 2007 +0900 70980 70981 sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board 70982 70983 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 70984 70985commit 047375bfa4c3052fa50a748da7ff89e9dad3b364 70986Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 70987Date: Sun Sep 23 02:19:24 2007 +0900 70988 70989 sh: Update MS7750SE01 platform 70990 70991 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 70992 70993commit 516ad760db3553766267ada01b7d5d727faa4bbd 70994Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 70995Date: Sun Sep 23 02:17:08 2007 +0900 70996 70997 sh: Remove comment out code from include/asm-sh/cpu_sh4.h 70998 70999 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 71000
71001commit b02bad128669e567fce87d8df823b06a0144b8db 71002Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 71003Date: Sun Sep 23 02:12:30 2007 +0900 71004 71005 sh: Update core code of SuperH. 71006 71007 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 71008 71009commit 66dcad3a9a53e0766d90e0084123bd8529522fb0 71010Author: Wolfgang Denk <wd@denx.de> 71011Date: Thu Sep 20 00:04:14 2007 +0200 71012 71013 v1.3.0-rc2 71014 71015 Signed-off-by: Wolfgang Denk <wd@denx.de> 71016 71017commit 135e19bc2773ebca487e9a8371f67e1ba202313a 71018Author: Wolfgang Denk <wd@denx.de> 71019Date: Tue Sep 18 21:36:35 2007 +0200 71020 71021 Avoid compiler warning. 71022 71023 Signed-off-by: Wolfgang Denk <wd@denx.de> 71024 71025commit 8a783a65851bc7421ab69f442261215e21b8891a 71026Author: Grant Likely <grant.likely@secretlab.ca> 71027Date: Tue Sep 18 12:24:57 2007 -0600 71028 71029 Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config 71030 71031 /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded 71032 nulls in a string differently. For example, the following statement: 71033 echo "this is a string\0" > afile 71034 Will produce the following with /bin/bash: 71035 "this is a string\0" 71036 But with /bin/dash, will produce: 71037 "this is a string 71038 71039 Bug fixed by moving the embedded null out of the makefile and into the 71040 config header. Also renamed the macro to avoid usage colision with the same 71041 macro used by other board ports. 71042 71043 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 71044 71045commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35 71046Author: Wolfgang Denk <wd@denx.de> 71047Date: Tue Sep 18 17:40:27 2007 +0200 71048 71049 MCC200: fix build warning 71050 71051 The MCC200 board config file includes version.h for some customer- 71052 specific setting, which causes warnings with "make depend"; build 71053 version.h before depend. 71054 71055 Signed-off-by: Wolfgang Denk <wd@denx.de> 71056 71057commit bd86220f58b99d6896198c385fda132f0c980915 71058Author: Peter Pearse <peter.pearse@arm.com> 71059Date: Tue Sep 18 13:07:54 2007 +0100 71060 71061 Move coloured led API to status_led.h 71062 Improve indentation in drivers/at45.c 71063 71064commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7 71065Author: Eirik Aanonsen <eaa@wprmedical.com> 71066Date: Tue Sep 18 08:47:20 2007 +0200 71067 71068 Update atstk1002 bootargs. 71069 71070 Updates to atstk1002 U-Boot header file: 71071 - Changed bootargs: 71072 * Set the bootargs for at1002 to point to the SD-card partition instead 71073 * ... of the boot flash. 71074 * Removing the rootfstype since that argument are not needed. 71075 71076 Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com> 71077 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 71078 71079commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225 71080Author: Eirik Aanonsen <eaa@wprmedical.com> 71081Date: Wed Sep 12 13:32:37 2007 +0200 71082 71083 Add some comments to clocks in atstk1002.h 71084 71085 This patch applies some clarifying comments to how the different 71086 clocks are setup according to atstk1002.h Some of the previous 71087 comments where stating wrongful information. 71088 71089 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 71090 71091commit 97213f32416ead885deafea86774e912ffd60ad0 71092Author: David Saada <David.Saada@ecitele.com> 71093Date: Mon Sep 17 17:04:47 2007 +0200 71094 71095 Description: Add NEC's PCI OHCI module ID to the USB OHCI driver 71096 71097 Signed-off-by: David Saada <david.saada@ecitele.com> 71098 71099commit 30363e98fa470fbecea5e8bc0f1443352754f303 71100Author: Stefan Roese <sr@denx.de> 71101Date: Mon Sep 17 08:20:47 2007 +0200 71102 71103 Small whitespace cleanup of OneNAND patch 71104 71105 Signed-off-by: Stefan Roese <sr@denx.de> 71106 71107commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1 71108Author: Kyungmin Park <kmpark@infradead.org> 71109Date: Mon Sep 10 17:15:14 2007 +0900 71110 71111 OneNAND support (take #2) 71112 71113 [PATCH 3/3] OneNAND support (take #2) 71114 71115 OneNAND support at U-Boot 71116 71117 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 71118 71119commit 17aa2800457df0c06b41516f46f126712c196219 71120Author: Kyungmin Park <kmpark@infradead.org> 71121Date: Mon Sep 10 17:14:34 2007 +0900 71122 71123 OneNAND support (take #2) 71124 71125 [PATCH 2/3] OneNAND support (take #2) 71126 71127 OneNAND support at U-Boot 71128 71129 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 71130 71131commit 916527f4809a7bcd811f1f1daf34af184e31dd8c 71132Author: Kyungmin Park <kmpark@infradead.org> 71133Date: Mon Sep 10 17:13:49 2007 +0900 71134 71135 OneNAND support (take #2) 71136 71137 [PATCH 1/3] OneNAND support (take #2) 71138 71139 OneNAND support at U-Boot 71140 71141 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 71142 71143commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5 71144Author: Michal Simek <monstr@monstr.eu> 71145Date: Sun Sep 16 20:51:57 2007 +0200 71146 71147 [FIX] remove files form repository 71148 71149commit 67c31036acaaaa992fc346cc89db0909a7e733c4 71150Author: Wolfgang Denk <wd@denx.de> 71151Date: Sun Sep 16 17:10:04 2007 +0200 71152 71153 TQM8xx[LM]: Fix broken environment alignment. 71154 71155 With recent toolchains, the environment sectors were no longer aligned to 71156 sector boundaries. The reason was a combination of two bugs: 71157 71158 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined 71159 for all TQM8xxL and TQM8xxM boards. But "include/common.h", where 71160 this gets defined, is not included here (and cannot be included 71161 without causing lots of problems). 71162 71163 Added a new #define CFG_USE_PPCENV for all boards which really 71164 want to put the environment is a ".ppcenv" section. 71165 71166 2) The linker scripts just include environment.o, silently assuming 71167 that the objects in that file are really in the order in which 71168 they are coded in the C file, i. e. "environment" first, then 71169 "redundand_environment", and "env_size" last. However, current 71170 toolchains (GCC-4.x) reorder the objects, causing the environment 71171 data not to start on a flash sector boundary: 71172 71173 Instead of: we got: 71174 71175 40008000 T environment 40008000 T env_size 71176 4000c000 T redundand_environment 40008004 T redundand_environment 71177 40010000 T env_size 4000c004 T environment 71178 71179 Note: this patch fixes just the first part, and cures the alignment 71180 problem by making sure that "env_size" gets placed correctly. However, 71181 we still have a potential issue because primary and redundant 71182 environment sectors are actually swapped, i. e. we have now: 71183 71184 40008000 T redundand_environment 71185 4000c000 T environment 71186 40010000 T env_size 71187 71188 This shall be fixed in the next version. 71189 71190 Signed-off-by: Wolfgang Denk <wd@denx.de> 71191 71192commit eb6da8050797c204c9d010548424186c7ce32fc1 71193Author: Wolfgang Denk <wd@denx.de> 71194Date: Sun Sep 16 02:39:35 2007 +0200 71195 71196 TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels 71197 71198 Signed-off-by: Wolfgang Denk <wd@denx.de> 71199 71200commit cd2d1602c54cc6957bdef3872272a4b264893960 71201Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com> 71202Date: Mon Sep 10 14:54:56 2007 -0400 71203 71204 Typo fix in tsec.c 71205 71206 Fixup for the break statement in wrong place. 71207 71208 [Patch by urwithsughosh@gmail.com] 71209 Acked-by: Andy Fleming <afleming@freescale.com> 71210 Signed-off-by: Wolfgang Denk <wd@denx.de> 71211 71212commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7 71213Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 71214Date: Tue Sep 11 17:04:00 2007 +0200 71215 71216 Fix do_div() usage in nand process output 71217 71218 Fix usage of do_div() in nand erase|read|write process output. 71219 71220 The last patch to nand_util.c introduced do_div() instead of libgcc's 71221 implementation. But do_div() returns the quotient in its first 71222 macro parameter and not as result. 71223 71224 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 71225 71226commit c750d2e6692a000a82f29de7bf24e3dc21239161 71227Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 71228Date: Wed Sep 12 12:36:53 2007 +0200 71229 71230 NAND: Add CFG_NAND_QUIET option 71231 71232 This config option sets the default for the progress information 71233 output behavior that can also be configured through the 'quiet' 71234 environment variable. 71235 71236 The legacy NAND code does not print the current progress info 71237 on the console. So this option is for backward compatibility for 71238 units that are in the field and where setting the quiet variable 71239 is not an option. With CFG_NAND_QUIET set to '1' the console 71240 progress info is turned off. This can still be overwritten 71241 through the environment variable. 71242 71243 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 71244 71245commit dcb88630290d2bcd803386dd4c2be73142994c4f 71246Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com> 71247Date: Thu Sep 13 16:06:05 2007 -0700 71248 71249 ColdFire: fix build error becasue of bad type of mii_init() 71250 71251 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 71252 71253commit 314d5b6ce52a4ed19dd295d1364e246c5e605017 71254Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com> 71255Date: Thu Sep 13 16:04:05 2007 -0700 71256 71257 ColdFire: Fix build error caused by pixis.c 71258 71259 Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS. 71260 71261 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 71262 71263commit e21659e30660a1377c42af135a6114efe39801d9 71264Author: Sam Sparks <SSparks@twacs.com> 71265Date: Fri Sep 14 11:14:42 2007 -0600 71266 71267 Update MPC8349ITX*_config to place config.tmp in right place. 71268 71269 MPC834ITX*_config does not store config.tmp at the correct locatation, 71270 causing MPC8349ITXGP to have the wrong TEXT_BASE. 71271 71272 Signed-off-by: Sam Sparks <SSparks@twacs.com> 71273 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 71274 71275commit 1218abf1b5817a39a82399b4b928b00750575bda 71276Author: Wolfgang Denk <wd@denx.de> 71277Date: Sat Sep 15 20:48:41 2007 +0200 71278 71279 Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global 71280 71281 Signed-off-by: Wolfgang Denk <wd@denx.de> 71282 71283commit 66b3f24d665be678a9dbb125b1e84185400f63b5 71284Author: Dirk Behme <dirk.behme@googlemail.com> 71285Date: Sat Sep 15 11:55:42 2007 +0200 71286 71287 Make DECLARE_GLOBAL_DATA_PTR global for DaVinci 71288 71289 As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not 71290 function local. 71291 71292 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 71293 71294 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805 71295 71296commit 991b089d1ce5ad945725e3657a8f106dfa02a38e 71297Author: Michal Simek <monstr@monstr.eu> 71298Date: Sat Sep 15 00:03:35 2007 +0200 71299 71300 Synchronize with U-BOOT mainline 71301 71302commit d7fee32b7e61fe11c64e371cde79faa4768e8350 71303Author: Sam Sparks <SSparks@twacs.com> 71304Date: Fri Sep 14 11:14:42 2007 -0600 71305 71306 Update MPC8349ITX*_config to place config.tmp in right place. 71307 71308 MPC834ITX*_config does not store config.tmp at the correct locatation, 71309 causing MPC8349ITXGP to have the wrong TEXT_BASE. 71310 71311 Signed-off-by: Sam Sparks <SSparks@twacs.com> 71312 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 71313 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 71314 71315commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c 71316Author: Bartlomiej Sieka <tur@semihalf.com> 71317Date: Thu Sep 13 18:21:48 2007 +0200 71318 71319 cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9 71320 71321 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 71322 71323commit e1f601b572db5de9aa81a0b77c68a86994fe24c4 71324Author: Bartlomiej Sieka <tur@semihalf.com> 71325Date: Thu Sep 13 16:33:59 2007 +0200 71326 71327 tqm5200: Restore customary env. variable boot commands for powerpc kernels 71328 71329 - update default definitions of kernel_addr and fdt_addr env. variables 71330 - make arch/powerpc booting the default scenario 71331 - update MTD partition layout to match the above 71332 71333 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 71334 71335commit f34024d4a328e6edd906456da98d2c537155c4f7 71336Author: Wolfgang Denk <wd@denx.de> 71337Date: Wed Sep 12 00:48:57 2007 +0200 71338 71339 Fix memory corruption problem on STX GP3 SSA Board. 71340 71341 Signed-off-by: Wolfgang Denk <wd@denx.de> 71342 71343commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc 71344Author: Peter Pearse <peter.pearse@arm.com> 71345Date: Tue Sep 11 15:35:01 2007 +0100 71346 71347 Final tidy 71348 71349commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e 71350Author: Grzegorz Bernacki <gjb@semihalf.com> 71351Date: Tue Sep 11 15:42:11 2007 +0200 71352 71353 [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to 71354 scan on second pci bus. 71355 71356 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 71357 71358commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0 71359Author: Grzegorz Bernacki <gjb@semihalf.com> 71360Date: Tue Sep 11 12:57:52 2007 +0200 71361 71362 [ppc4xx] Individual handling of sdram.c for bamboo_nand build 71363 71364 Bamboo has a file sdram.c which needs special treatment when building in 71365 separate directory. It has to be linked to build directory otherwise it is 71366 not seen. 71367 71368 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 71369 71370commit d45963854eff39d575124d859419bb4953ce2c87 71371Author: Michal Simek <monstr@monstr.eu> 71372Date: Tue Sep 11 00:37:04 2007 +0200 71373 71374 [FIX] Microblaze ML401 - repare FLASH handling 71375 71376commit 38c1ef728d19950414a8ab1ccfc53767848fa346 71377Author: Sean MCGOOGAN <sean.mcgoogan@st.com> 71378Date: Mon Sep 10 16:55:59 2007 +0100 71379 71380 Allocate CPU Architecture Code for STMicroelectronics' ST200. 71381 71382 Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com> 71383 --------------------------------------------------- 71384 71385commit 754bac48156f8958d8f6a53a51eda88ab5758929 71386Author: Wolfgang Denk <wd@denx.de> 71387Date: Mon Sep 10 20:42:31 2007 +0200 71388 71389 Update version to match current state. 71390 71391 Signed-off-by: Wolfgang Denk <wd@denx.de> 71392 71393commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b 71394Author: Grzegorz Bernacki <gjb@semihalf.com> 71395Date: Mon Sep 10 17:39:08 2007 +0200 71396 71397 [MPC512x] Streamline frame handling in the FEC driver 71398 71399 - convert frame size settings to be derived from a single base 71400 - set frame size to the recommended default value 71401 71402 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 71403 71404commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2 71405Author: Kyungmin Park <kmpark@infradead.org> 71406Date: Mon Sep 10 11:34:00 2007 +0900 71407 71408 Remove compiler warning: target CPU does not support interworking 71409 71410 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> 71411 71412commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2 71413Author: Wolfgang Denk <wd@denx.de> 71414Date: Sun Sep 9 21:21:33 2007 +0200 71415 71416 Fix compile error in spc1920 config. 71417 71418 Signed-off-by: Markus Klotzbücher <mk@denx.de> 71419 Signed-off-by: Wolfgang Denk <wd@denx.de> 71420 71421commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622 71422Author: Grant Likely <grant.likely@secretlab.ca> 71423Date: Fri Sep 7 09:25:07 2007 -0600 71424 71425 Bugfix: make bootm+libfdt compile on boards with no flash 71426 71427 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 71428 71429commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778 71430Author: Grzegorz Bernacki <gjb@semihalf.com> 71431Date: Fri Sep 7 18:35:37 2007 +0200 71432 71433 [PPC440SPe] PCIe environment settings for Katmai and Yucca 71434 71435 - 'pciconfighost' is set by default in order to be able to scan bridges 71436 behind the primary host/PCIe 71437 71438 - 'pciscandelay' env variable is recognized to allow for user-controlled 71439 delay before the PCIe bus enumeration; some peripheral devices require a 71440 significant delay before they can be scanned (e.g. LSI8408E); without the 71441 delay they are not detected 71442 71443 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 71444 71445commit 7f1913938984ef6c6a46cb53e003719196d9c5de 71446Author: Grzegorz Bernacki <gjb@semihalf.com> 71447Date: Fri Sep 7 18:20:23 2007 +0200 71448 71449 [PPC440SPe] Improve PCIe configuration space access 71450 71451 - correct configuration space mapping 71452 - correct bus numbering 71453 - better access to config space 71454 71455 Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the 71456 first device on the first bus. We now allow to configure up to 16 buses; 71457 also, scanning for devices behind the PCIe-PCIe bridge is supported, so 71458 peripheral devices farther in hierarchy can be identified. 71459 71460 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 71461 71462commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427 71463Author: Grzegorz Bernacki <gjb@semihalf.com> 71464Date: Fri Sep 7 17:46:18 2007 +0200 71465 71466 [PPC440SPe] Convert machine check exceptions handling 71467 71468 Convert using fixup mechanism to suppressing MCK for the duration of config 71469 read/write transaction: while fixups work fine with the case of a precise 71470 exception, we identified a major drawback with this approach when there's 71471 an imprecise case. In this scenario there is the following race condition: 71472 the fixup is (by design) set to catch the instruction following the one 71473 actually causing the exception; if an interrupt (e.g. decrementer) happens 71474 between those two instructions, the ISR code is executed before the fixup 71475 handler the machine check is no longer protected by the fixup handler as it 71476 appears as within the ISR code. In consequence the fixup approach is being 71477 phased out and replaced with explicit suppressing of MCK during a PCIe 71478 config read/write cycle. 71479 71480 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 71481 71482commit ff7640c9ead8806b5d827f2b29f9cb2632add729 71483Author: Wolfgang Denk <wd@denx.de> 71484Date: Fri Sep 7 17:43:36 2007 +0200 71485 71486 Fix typo in MAKEALL script. 71487 71488 Signed-off-by: Wolfgang Denk <wd@denx.de> 71489 71490commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810 71491Author: Grzegorz Bernacki <gjb@semihalf.com> 71492Date: Fri Sep 7 17:09:21 2007 +0200 71493 71494 [MPC512x] Proper handling of larger frames in the FEC driver 71495 71496 When frame larger than local RX buffer is received, it is split and handled 71497 by two buffer descriptors. Prior to this patch the FEC driver discarded 71498 contents of a buffer descriptor without the 'LAST' bit set, so the first 71499 part of the frame was lost in case of larger frames. This fix allows to 71500 safely combine the two pieces into the whole frame. 71501 71502 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 71503 71504commit 8d17979d0359492a822a0a409d26e3a3549b4cd4 71505Author: Rafal Jaworowski <raj@semihalf.com> 71506Date: Fri Sep 7 17:05:36 2007 +0200 71507 71508 [MPC512x] Correct fixup relocation 71509 71510 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 71511 71512commit a89cbbd27a60e6740772000fd0688ffba1c2576a 71513Author: Wolfgang Denk <wd@denx.de> 71514Date: Fri Sep 7 01:21:25 2007 +0200 71515 71516 Update CHANGELOG, minor coding style cleanup. 71517 71518commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3 71519Author: stefano babic <sbabic@denx.de> 71520Date: Thu Aug 30 23:01:49 2007 +0200 71521 71522 PXA270: Added support for TrizepsIV board. 71523 71524 This patch add support for the Trizeps IV module (520Mhz). 71525 71526 Signed-off-by: Stefano Babic <sbabic@denx.de> 71527 71528commit 80172c6181c912fbb34ea3ba0c22b232b419b47f 71529Author: stefano babic <sbabic@denx.de> 71530Date: Thu Aug 30 22:57:04 2007 +0200 71531 71532 PXA270: Add support for multiple serial ports. 71533 71534 This patch adds support for multiple serial ports to the PXA target. 71535 FFUART, BTUART and STUART are supported. 71536 71537 Signed-off-by: Stefano Babic <sbabic@denx.de> 71538 71539commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e 71540Author: stefano babic <sbabic@denx.de> 71541Date: Thu Aug 30 22:48:47 2007 +0200 71542 71543 PXA270: fix compile issue (invalid lvalue) 71544 71545 Code is broken for PXA270 due to "invalid lvalue in assignment". 71546 71547 This patch fix it in pxa-regs.h 71548 71549 Signed-off-by: Stefano Babic <sbabic@denx.de> 71550 71551commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8 71552Author: Jason Jin <Jason.jin@freescale.com> 71553Date: Thu Aug 30 18:19:05 2007 +0800 71554 71555 Add BUILD_DIR support for bios emulator. 71556 71557 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 71558 71559commit b4d8a55145442f136982634862341a3e02002bda 71560Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 71561Date: Fri Aug 31 14:41:51 2007 +0900 71562 71563 [MIPS] Remove inline asm string functions 71564 71565 Stop using inline string functions on MIPS as other ARCHs do so, 71566 since the optimized inline asm versions are not small. 71567 71568 This change is triggered by a following MIPS build error: 71569 common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init': 71570 common/exports.c:32: undefined reference to `strcmp' 71571 make: *** [u-boot] Error 1 71572 71573 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 71574 71575commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5 71576Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 71577Date: Fri Aug 31 14:41:45 2007 +0900 71578 71579 [MIPS] Update asm string header 71580 71581 This patches contains several bugfixes and cleanups in the latest upstream: 71582 71583 - Don't include linux/config.h 71584 - Remove buggy inline version of memscan. 71585 - Merge with Linux 2.6.11-rc3. 71586 - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4. 71587 - Goodbye mips64. 31704 lines of code bite the dust. 71588 - Replace extern inline with static inline. 71589 - Fix return value of strncpy. 71590 - Remove a bunch more "$1" clobbers. 71591 71592 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 71593 71594commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2 71595Author: Bartlomiej Sieka <tur@semihalf.com> 71596Date: Tue Sep 4 17:31:22 2007 +0200 71597 71598 Fix do_bootm_linux() so that multi-file images with FDT blob boot. 71599 71600 Fix incorrect blob address calculation in do_bootm_linux() that prevents 71601 booting the kernel from a multi-file image (kernel + initrd + blob). 71602 71603 Also, make minor updates to the U-Boot's output and to the coding style. 71604 71605 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 71606 71607commit 041a2554ad619e80dce520c1a33210affcb6a3f2 71608Author: Gary Jennejohn <gary.jennejohn@freenet.de> 71609Date: Fri Aug 31 14:29:04 2007 +0200 71610 71611 Add support for Sil680 IDE controller. 71612 71613 o add drivers/sil680.c to support the Sil680 IDE-controller. 71614 o drivers/Makefile: add sil680.o. 71615 71616 Signed-off-by: Gary Jennejohn <garyj@denx.de> 71617 71618commit e79021223bc339df655e360645a52c457a74b067 71619Author: Grant Likely <grant.likely@secretlab.ca> 71620Date: Thu Sep 6 09:47:40 2007 -0600 71621 71622 bootm/fdt: Only process the fdt if an fdt address was provided 71623 71624 Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style 71625 kernels using the board info structure (instead of passing a device tree) 71626 This change allows the old style booting to be used if the fdt argument 71627 was not passed to 'bootm'. 71628 71629 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 71630 Acked-by: Kim Phillips <kim.phillips@freescale.com> 71631 71632commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43 71633Author: Grant Likely <grant.likely@secretlab.ca> 71634Date: Thu Sep 6 09:46:23 2007 -0600 71635 71636 Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT 71637 71638 Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200 71639 71640 Tested on: lite5200b 71641 71642 Note: the fixup functions have not been moved to a common place. This 71643 patch is targeted for immediate merging as in solves a build issue, but 71644 the final name/location of the fixups is still subject to debate. I 71645 propose to merge this now, and move the fixups in the next merge window 71646 to be usable by all targets. 71647 71648 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 71649 71650commit 41bb76e941929f54a73206fb132f7a4c275543a3 71651Author: Grant Likely <grant.likely@secretlab.ca> 71652Date: Thu Sep 6 09:46:17 2007 -0600 71653 71654 libfdt: add convenience function fdt_find_and_setprop() 71655 71656 Given the path to a node, fdt_find_and_setprop() allows a property value 71657 to be set directly. 71658 71659 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 71660 71661commit 80767a6cead9990d9e77e62be947843c2c72f469 71662Author: Peter Pearse <peter.pearse@arm.com> 71663Date: Wed Sep 5 16:04:41 2007 +0100 71664 71665 Changed API name to coloured_led.h 71666 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC 71667 Tidied other cpu/arm920t/start.S code 71668 71669commit 56a9270521baaa00e12639a978302a67f61ef060 71670Author: Kumar Gala <galak@kernel.crashing.org> 71671Date: Thu Aug 30 16:18:18 2007 -0500 71672 71673 Fix ULI RTC support on MPC8544 DS 71674 71675 The RTC on the M1575 ULI chipset requires a dummy read before 71676 we are able to talk to the RTC. We accomplish this by adding a 71677 second memory region to the PHB the ULI is on and read from it. 71678 71679 The second region is added to maintain compatiabilty with Linux's 71680 view of the PCI memory map. 71681 71682 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 71683 71684commit f75e89e9b5714db2b0e80074071dfbdd6f59488a 71685Author: Ed Swarthout <Ed.Swarthout@freescale.com> 71686Date: Thu Aug 30 01:58:48 2007 -0500 71687 71688 ft_board_setup update 85xx/86xx of pci/pcie bus-range property. 71689 71690 pcie is now differentiated from pci. Add 8641 bus-range updates. 71691 71692 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 71693 71694commit 9f5c3d3720e777a572dcdc8af2008b44c7243885 71695Author: Peter Pearse <peter.pearse@arm.com> 71696Date: Tue Sep 4 16:18:38 2007 +0100 71697 71698 Add coloured led interface for ARM boards. 71699 Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered. 71700 71701commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb 71702Author: Peter Pearse <peter.pearse@arm.com> 71703Date: Tue Sep 4 14:49:28 2007 +0100 71704 71705 Move include/led.h to board/at91rm9200dk 71706 71707commit 6e4bf9b24e57c15abc6542e685d06380bc64af27 71708Author: Peter Pearse <peter.pearse@arm.com> 71709Date: Tue Sep 4 14:25:51 2007 +0100 71710 71711 Ran Lindent on drivers/at45.c 71712 71713commit 557ab89d294f08dd532f21d19861b40093200a33 71714Author: Peter Pearse <peter.pearse@arm.com> 71715Date: Tue Sep 4 14:23:50 2007 +0100 71716 71717 Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX 71718 71719commit 81b73dec16fd1227369a191e725e10044a9d56b8 71720Author: Gary Jennejohn <garyj@denx.de> 71721Date: Fri Aug 31 15:21:46 2007 +0200 71722 71723 ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia 71724 71725 The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is 71726 set to non-zero, because it doesn't support MRM (memory-read- 71727 multiple) correctly. We now added the possibility to configure 71728 this register in the board config file, so that the default value 71729 of 8 can be overridden. 71730 71731 Here the details of this patch: 71732 71733 o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow 71734 board-specific settings. As an example the sequoia board requires 0. 71735 Idea from Stefan Roese <sr@denx.de>. 71736 o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the 71737 PCI IO-space. Obtained from Stefan Roese <sr@denx.de>. 71738 o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set 71739 CFG_PCI_CACHE_LINE_SIZE to 0. 71740 71741 Signed-off-by: Gary Jennejohn <garyj@denx.de> 71742 Signed-off-by: Stefan Roese <sr@denx.de> 71743 71744commit 60174746c668b309378a91488dded898e9553eae 71745Author: Wolfgang Denk <wd@denx.de> 71746Date: Fri Aug 31 10:01:51 2007 +0200 71747 71748 Fix TFTP OACK code for short packets. 71749 71750 The old code had a loop limit overflow bug which caused a semi- 71751 infinite loop for small packets, because in "i<len-8", "i" was signed, 71752 but "len" was unsigned, and "len-8" became a huge number for small 71753 values of "len". 71754 71755 This is a workaround which replaces broken commit 8f1bc284. 71756 71757 Signed-off-by: Wolfgang Denk <wd@denx.de> 71758 71759commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee 71760Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com> 71761Date: Thu Aug 30 15:03:05 2007 +0200 71762 71763 Reduce BOOTDELAY variable to 1 second by default for STK1002 71764 71765 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com> 71766 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 71767 71768commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a 71769Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com> 71770Date: Thu Aug 30 15:03:04 2007 +0200 71771 71772 Remove double quotation marks around MAC address for STK1002 71773 71774 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com> 71775 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 71776 71777commit ff13ac8c7bbebb238e339592de765c546dba1073 71778Author: Wolfgang Denk <wd@denx.de> 71779Date: Thu Aug 30 14:42:15 2007 +0200 71780 71781 Backout commit 8f1bc284 as it causes TFTP to fail. 71782 71783 Signed-off-by: Wolfgang Denk <wd@denx.de> 71784 71785commit 1900fbf255acba8b94fb442a16408ea85a1d46a6 71786Author: Ed Swarthout <Ed.Swarthout@freescale.com> 71787Date: Thu Aug 30 02:26:17 2007 -0500 71788 71789 Revert "Fix MPC8544DS PCIe3 scsi." 71790 71791 This reverts commit 9468e680. 71792 Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient. 71793 71794 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 71795 71796commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774 71797Author: Grant Likely <grant.likely@secretlab.ca> 71798Date: Wed Aug 29 18:26:24 2007 -0600 71799 71800 tftp: don't implicity trust the format of recevied packets 71801 71802 The TFTP OACK code trusts that the incoming packet is formated as 71803 ASCII text and can be processed by string functions. It also has a 71804 loop limit overflow bug where if the packet length is less than 8, it 71805 ends up looping over *all* of memory to find the 'blksize' string. 71806 71807 This patch solves the problem by forcing the packet to be null 71808 terminated and using strstr() to search for the sub string. 71809 71810 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 71811 71812commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143 71813Author: Stefan Roese <sr@denx.de> 71814Date: Wed Aug 29 16:31:18 2007 +0200 71815 71816 ppc4xx: Change lwmon5 default environment to support Linux RTC 71817 71818 The Linux PCF8563 RTC driver doesn't do autoprobing, so we need 71819 to supply the RTC I2C address as bootline parameter. This patch 71820 adds support for this rtc probing parameter to the bootargs: 71821 71822 "rtc-pcf8563.probe=0,0x51" 71823 71824 Signed-off-by: Stefan Roese <sr@denx.de> 71825 71826commit 2602a5c40ae37ab965a4e240854fdaffb51328a4 71827Author: Kim Phillips <kim.phillips@freescale.com> 71828Date: Wed Aug 29 09:06:05 2007 -0500 71829 71830 sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE 71831 71832 this had slipped through the cracks, since the sbc board was added 71833 after I wrote the original patch to remove all these symbols, and 71834 before it was merged. 71835 71836 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 71837 71838commit c5bded3c88e48ae648a75d357dc81a8255fa81f1 71839Author: Wolfgang Denk <wd@denx.de> 71840Date: Wed Aug 29 14:05:30 2007 +0200 71841 71842 Add mii_init() prototype 71843 71844 to get rid of a *lot* of compiler warnings. 71845 71846 Signed-off-by: Wolfgang Denk <wd@denx.de> 71847 71848commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f 71849Author: Wolfgang Denk <wd@denx.de> 71850Date: Wed Aug 29 13:35:03 2007 +0200 71851 71852 Disable network support on cmi_mpc5xx board 71853 71854 ..because it caused compiler errors and there seems to be no 71855 board maintainer to take care of this. 71856 71857 Signed-off-by: Wolfgang Denk <wd@denx.de> 71858 71859commit 9468e6804b7e25b0f6f52e53f47bce3175400a16 71860Author: Kumar Gala <galak@kernel.crashing.org> 71861Date: Mon Aug 20 09:44:00 2007 -0500 71862 71863 Fix MPC8544DS PCIe3 scsi. 71864 71865 <ed.swarthout@freescale.com> 71866 71867 The problem is pciauto_setup_device() getting called from fsl_pci_init.c 71868 is allocating memory space it doesn't need. 71869 71870 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com> 71871 Signed-off-by: Andy Fleming <afleming@freescale.com> 71872 71873commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a 71874Author: Ed Swarthout <Ed.Swarthout@freescale.com> 71875Date: Tue Aug 21 09:38:59 2007 -0500 71876 71877 8548cds fixes 71878 71879 Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the 71880 correct consoledev needed for linux boot. 71881 Standardize on fdt{file,addr} var to hold dtb file name. 71882 71883 Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}. 71884 71885 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 71886 71887commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933 71888Author: Haiying Wang <Haiying.Wang@freescale.com> 71889Date: Thu Aug 23 15:20:54 2007 -0400 71890 71891 Enable L2 cache for MPC8568MDS board 71892 71893 The L2 cache size is 512KB for 8568, print out the correct informaiton. 71894 71895 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 71896 71897commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b 71898Author: Jason Jin <Jason.jin@freescale.com> 71899Date: Wed Aug 22 17:54:49 2007 +0800 71900 71901 Remove the bios emulator binary files from MAI board 71902 71903 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 71904 71905commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f 71906Author: Kim Phillips <kim.phillips@freescale.com> 71907Date: Tue Aug 21 17:00:17 2007 -0500 71908 71909 support board vendor-common makefiles 71910 71911 if a board/$(VENDOR)/common/Makefile exists, build it. 71912 71913 also add the first such case, board/freescale/common/Makefile, to 71914 handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as 71915 dictated by board configuration. 71916 71917 thusly get rid of alternate build dir errors such as: 71918 71919 FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory 71920 71921 by putting the common/ mkdir command in its proper place (the common 71922 Makefile). Common bits from existing individual board Makefiles have 71923 been removed. 71924 71925 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 71926 71927commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd 71928Author: stefano babic <sbabic@denx.de> 71929Date: Tue Aug 21 15:52:33 2007 +0200 71930 71931 Fix: TFTP is not working on little endian systems 71932 71933 TFTP does not work anymore after multicast tftp 71934 patch was applied on little endian systems. 71935 This patch fix it. 71936 71937 Signed-off-by: Stefano Babic <sbabic@denx.de> 71938 71939commit 5f470948570526e9186f053a3003da7719604e90 71940Author: stefano babic <sbabic@denx.de> 71941Date: Tue Aug 21 15:50:33 2007 +0200 71942 71943 Fix MAC address setting in DM9000 driver. 71944 71945 The logic to check if there is a correct MAC address in the DM9000 71946 EEPROM, added in the last patch, is wrong. Now the MAC address is 71947 always taken from the environment, even if a suitable MAC is present 71948 in the EEPROM. 71949 71950 Signed-off-by: Stefano Babic <sbabic@denx.de> 71951 71952commit 4a8527ef086ec7c89f40674ef024ae6f988a614a 71953Author: Martin Krause <martin.krause@tqs.de> 71954Date: Tue Aug 21 12:40:34 2007 +0200 71955 71956 MPC5xxx: fix some compiler warnings in USB code 71957 71958 Fix the following warnings: 71959 - usb.c:xx: warning: function declaration isn't a prototype 71960 - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer 71961 from pointer wihtout a cast 71962 71963 Signed-off-by: Martin Krause <martin.krase@tqs.de> 71964 71965commit 16e23c3f5dab6937f5109365416808c7f15c122b 71966Author: Ed Swarthout <Ed.Swarthout@freescale.com> 71967Date: Mon Aug 20 23:55:33 2007 -0500 71968 71969 fsl_pci_init - Remove self PCSRBAR allocation 71970 71971 CPU physical address space was being wasted by allocating a 71972 PCSRBAR PCI inbound region to it's memory space. 71973 71974 As a rule, PCSRBAR should be left alone since it does not affect 71975 transactions from self and other masters may have changed it. 71976 71977 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com> 71978 71979commit 0e700ce03a23bb1921149bc77008ace7103d5289 71980Author: Martin Krause <martin.krause@tqs.de> 71981Date: Mon Aug 20 13:56:47 2007 +0200 71982 71983 Fix compiler warning in include/s3c2410.h 71984 71985 This patch fixes the "type qualifiers ignored on fuction return tpye" 71986 warning for include/s3c2410.h 71987 71988 Signed-off-by: Martin Krause <martin.krause@tqs.de> 71989 71990commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea 71991Author: Dirk Behme <dirk.behme@googlemail.com> 71992Date: Mon Aug 20 07:09:05 2007 +0200 71993 71994 Fix compilation error for omap2420h4_config. 71995 71996 omap2420h4 switched to cfi, so remove old (already disabled) flash.c 71997 and flash_probe() calls in env_flash.c. 71998 71999 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 72000
72001commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f 72002Author: Kim Phillips <kim.phillips@freescale.com> 72003Date: Fri Aug 10 14:34:14 2007 -0500 72004 72005 fdt: remove unused OF_FLAT_TREE_MAX_SIZE references 72006 72007 and make some minor corrections to the FDT part of the README. 72008 72009 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72010 72011commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de 72012Author: Wolfgang Denk <wd@denx.de> 72013Date: Wed Aug 29 01:32:05 2007 +0200 72014 72015 Minor coding style cleanup. 72016 72017 Signed-off-by: Wolfgang Denk <wd@denx.de> 72018 72019commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3 72020Author: Heiko Schocher <hs@pollux.denx.de> 72021Date: Tue Aug 28 17:40:33 2007 +0200 72022 72023 [UC101] Fix: if no CF in the board, U-Boot resets sometimes. 72024 72025 Signed-off-by: Heiko Schocher <hs@denx.de> 72026 72027commit f98984cb194bb34dbe1db9429d3b51133af30d07 72028Author: Heiko Schocher <hs@pollux.denx.de> 72029Date: Tue Aug 28 17:39:14 2007 +0200 72030 72031 IDE: - make ide_inb () and ide_outb () "weak", so boards can 72032 define there own I/O functions. 72033 (Needed for the pcs440ep board). 72034 - The default I/O Functions are again 8 Bit accesses. 72035 - Added CONFIG_CMD_IDE for the pcs440ep Board. 72036 72037 Signed-off-by: Heiko Schocher <hs@denx.de> 72038 72039commit 2c05fd125744981e5f2828d24e66ccc20a77d25d 72040Author: Semih Hazar <semih.hazar@indefia.com> 72041Date: Mon Aug 20 19:00:01 2007 +0300 72042 72043 AVR32: Change prototype of memset 72044 72045 Signed-off-by: Semih Hazar <semih.hazar@indefia.com> 72046 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 72047 72048commit 9c02defc29b57945b600714cf61ddfd02b02fb14 72049Author: Yuri Tikhonov <yur@emcraft.com> 72050Date: Sat Aug 25 05:07:16 2007 +0200 72051 72052 POST: limit memory test area to not touch global data anymore 72053 72054 As experienced on lwmon5, on some boards the POST memory test can 72055 corrupt the global data buffer (bd). This patch fixes this issue 72056 by checking and limiting this area. 72057 72058 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 72059 Signed-off-by: Stefan Roese <sr@denx.de> 72060 72061commit 75e1a84d483e36be10e206e539b028c4889e1158 72062Author: Stefan Roese <sr@denx.de> 72063Date: Fri Aug 24 15:41:42 2007 +0200 72064 72065 ppc4xx: Add RTC POST test to lwmon5 board configuration 72066 72067 Since this RTC POST test is taking quite a while to complete 72068 it's only initiated upon special keypress same as the complete 72069 memory POST. 72070 72071 Signed-off-by: Stefan Roese <sr@denx.de> 72072 72073commit d7bfa620037a6d2210159387571bdf93aa32c162 72074Author: Stefan Roese <sr@denx.de> 72075Date: Fri Aug 24 15:19:10 2007 +0200 72076 72077 ppc4xx: Change GPIO signal for watchdog triggering on lwmon5 72078 72079 Signed-off-by: Stefan Roese <sr@denx.de> 72080 72081commit c25dd8fc25e9ca3695db996a257d9ba4dab414db 72082Author: Stefan Roese <sr@denx.de> 72083Date: Thu Aug 23 11:02:37 2007 +0200 72084 72085 ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board 72086 72087 This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5 72088 board. Now the "eeprom" command can be used to read/write from/to this 72089 device. Additionally a new command was added "eepromwp" to en-/disable 72090 the write-protect of this 2nd EEPROM. 72091 72092 The 1st EEPROM is not affected by this write-protect command. 72093 72094 Signed-off-by: Stefan Roese <sr@denx.de> 72095 72096commit c64fb30e4c5976007d56fc1789c7a0666082b536 72097Author: Stefan Roese <sr@denx.de> 72098Date: Wed Aug 22 08:56:09 2007 +0200 72099 72100 ppc4xx: Remove unused option CFG_INIT_RAM_OCM 72101 72102 Signed-off-by: Stefan Roese <sr@denx.de> 72103 72104commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7 72105Author: Stefan Roese <sr@denx.de> 72106Date: Tue Aug 21 16:27:57 2007 +0200 72107 72108 ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based) 72109 72110 This patch adds support for the matrix keyboard on the lwmon5 board. 72111 Since the implementation in the dsPCI is kind of compatible with the 72112 "old" lwmon board, most of the code is copied from the lwmon 72113 board directory. 72114 72115 Signed-off-by: Stefan Roese <sr@denx.de> 72116 72117commit 3e66c078003607a7d1d214c15a5f262bc1b4032f 72118Author: Wolfgang Denk <wd@denx.de> 72119Date: Sun Aug 19 10:27:34 2007 +0200 72120 72121 Fix some build errors. 72122 72123 Signed-off-by: Wolfgang Denk <wd@denx.de> 72124 72125commit 05675735ef77dc23b5e0eb782bad1ff477b55e86 72126Author: Wolfgang Denk <wd@denx.de> 72127Date: Sat Aug 18 22:00:38 2007 +0200 72128 72129 Update CHANGELOG. 72130 72131commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57 72132Author: Kim Phillips <kim.phillips@freescale.com> 72133Date: Thu Aug 16 22:52:39 2007 -0500 72134 72135 lib_ppc: make board_add_ram_info weak 72136 72137 platforms wishing to display RAM diagnostics in addition to size, 72138 can do so, on one line, in their own board_add_ram_info() 72139 implementation. 72140 72141 this consequently eliminates CONFIG_ADD_RAM_INFO. 72142 72143 Thanks to Stefan for the hint. 72144 72145 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72146 72147commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6 72148Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 72149Date: Fri Aug 17 12:43:44 2007 +0900 72150 72151 PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug 72152 72153 This patch has been sent on: 72154 - 6 Jun 2007 72155 72156 Many users of PCI config read routines tend to ignore the function 72157 ret value, and are only concerned about the contents of *val. Based 72158 on this, pci_hose_read_config_{byte,word}_via_dword should initialize 72159 the *val on dword read error. 72160 72161 Without this fix, for example, we'll go on scanning bus with vendor or 72162 header_type uninitialized. This brings many unnecessary config trials. 72163 72164 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 72165 72166commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367 72167Author: Stefan Roese <sr@denx.de> 72168Date: Sat Aug 18 14:37:52 2007 +0200 72169 72170 ColdFire: Fix some remaining problems with CFG_CMD_ 72171 72172 Signed-off-by: Stefan Roese <sr@denx.de> 72173 72174commit 8280f6a1c43247616b68224675188e5ccd124650 72175Author: Stefan Roese <sr@denx.de> 72176Date: Sat Aug 18 14:33:02 2007 +0200 72177 72178 Coding style cleanup 72179 72180 Signed-off-by: Stefan Roese <sr@denx.de> 72181 72182commit 4a442d3186b31893b4f77c6e82f63c4517a5224b 72183Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72184Date: Thu Aug 16 19:23:50 2007 -0500 72185 72186 ColdFire: Add M5235EVB Platform for MCF523x 72187 72188 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72189 72190commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa 72191Author: Kim Phillips <kim.phillips@freescale.com> 72192Date: Fri Aug 17 09:30:00 2007 -0500 72193 72194 mpc83xx: fix typo in DDR2 programming 72195 72196 introduced in the implement board_add_ram_info patch as I was cleaning out the 72197 magic numbers. sorry. 72198 72199 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72200 72201commit e58fe95784d2514fc9c21028dc59f2b319a35d80 72202Author: Kim Phillips <kim.phillips@freescale.com> 72203Date: Thu Aug 16 22:53:09 2007 -0500 72204 72205 mpc83xx: move freescale boards to boards/freescale 72206 72207 includes build fixes. 72208 72209 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72210 72211commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47 72212Author: Kim Phillips <kim.phillips@freescale.com> 72213Date: Thu Aug 16 22:52:59 2007 -0500 72214 72215 mpc83xx: suppress unused variable 'val8' warning 72216 72217 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72218 72219commit bbea46f76f767b919070b4829bf34c86bd223248 72220Author: Kim Phillips <kim.phillips@freescale.com> 72221Date: Thu Aug 16 22:52:48 2007 -0500 72222 72223 mpc83xx: implement board_add_ram_info 72224 72225 add board_add_ram_info, to make memory diagnostic output more 72226 consistent. u-boot banner output now looks like: 72227 72228 DRAM: 256 MB (DDR1, 64-bit, ECC on) 72229 72230 and for boards with SDRAM on the local bus, a line such as this is 72231 added: 72232 72233 SDRAM: 64 MB (local bus) 72234 72235 also replaced some magic numbers with their equivalent define names. 72236 72237 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72238 72239commit 14778585d1389d86d5846efec29e5fce892680ce 72240Author: Tony Li <tony.li@freescale.com> 72241Date: Fri Aug 17 10:35:59 2007 +0800 72242 72243 mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support 72244 72245 The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c 72246 And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board. 72247 72248 Signed-off-by Tony Li <tony.li@freescale.com> 72249 72250commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7 72251Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72252Date: Thu Aug 16 15:05:11 2007 -0500 72253 72254 ColdFire: Add M54455EVB for MCF5445x 72255 72256 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72257 72258commit a1436a842654a8d3927d082a8ae9ee0a10da62d7 72259Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72260Date: Thu Aug 16 13:20:50 2007 -0500 72261 72262 ColdFire: Add M5253EVBE platform for MCF52x2 72263 72264 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72265 72266commit a605aacd8324094199402816cc6d9124aba57b8d 72267Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72268Date: Thu Aug 16 05:04:31 2007 -0500 72269 72270 ColdFire: Add M5249EVB platform for MCF52x2 72271 72272 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72273 72274commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e 72275Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72276Date: Wed Aug 15 20:32:06 2007 -0500 72277 72278 ColdFire: Update Freescale MCF52x2 platforms 72279 72280 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72281 72282commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c 72283Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72284Date: Wed Aug 15 19:55:10 2007 -0500 72285 72286 ColdFire: Update EB+MCF-EV123 platform 72287 72288 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72289 72290commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b 72291Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72292Date: Wed Aug 15 19:46:38 2007 -0500 72293 72294 ColdFire: update TASREG platform for MCF52x2 72295 72296 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72297 72298commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2 72299Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72300Date: Wed Aug 15 19:45:51 2007 -0500 72301 72302 ColdFire: update r5200 platform for MCF52x2 72303 72304 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72305 72306commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c 72307Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72308Date: Wed Aug 15 19:43:20 2007 -0500 72309 72310 ColdFire: idmr platform MCF52x2 update 72311 72312 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72313 72314commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0 72315Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72316Date: Wed Aug 15 19:41:06 2007 -0500 72317 72318 ColdFire: cobra5272 platform for MCF52x2 update 72319 72320 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72321 72322commit 56115665b4a64c10c01440c57749b265e0908fa4 72323Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72324Date: Wed Aug 15 19:38:15 2007 -0500 72325 72326 ColdFire: MCF52x2 Header files update 72327 72328 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72329 72330commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d 72331Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72332Date: Wed Aug 15 19:21:21 2007 -0500 72333 72334 ColdFire: MCF52x2 update 72335 72336 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72337 72338commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf 72339Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72340Date: Wed Aug 15 18:46:11 2007 -0500 72341 72342 ColdFire: MCF5329 update cache 72343 72344 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72345 72346commit 7171977fb8fd77cfb6676953fa9a05789c450513 72347Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72348Date: Wed Aug 15 15:40:20 2007 -0500 72349 72350 ColdFire: MCF5329 header file clean up 72351 72352 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72353 72354commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723 72355Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72356Date: Wed Aug 15 15:39:17 2007 -0500 72357 72358 ColdFire: MCF5329 Update and cleanup 72359 72360 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 72361 72362commit 10327dc5541f947c0cf7e31fef86c4706169607a 72363Author: Andy Fleming <afleming@freescale.com> 72364Date: Thu Aug 16 16:35:02 2007 -0500 72365 72366 Add CONFIG_HAS_ETH0 to all boards with TSEC 72367 72368 The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether 72369 to update TSEC1's device-tree node, so we need to add it 72370 to all the boards with TSECs. Do this for 83xx and 86xx, too, 72371 since they will eventually do something similar. 72372 72373 Signed-off-by: Andy Fleming <afleming@freescale.com> 72374 72375commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666 72376Author: Kumar Gala <galak@kernel.crashing.org> 72377Date: Thu Aug 16 15:05:04 2007 -0500 72378 72379 Update MPC8544 DS PCI memory map 72380 72381 The PCIe bus that the ULI M1575 is connected to has no possible way of 72382 needing more than the fixed amount of IO & Memory space needed by the ULI. 72383 72384 So make it use far less IO & memory space and have it use the shared LAW. This 72385 free's up a LAW for PCIe1 IO space. Also reduce the amount of IO space needed 72386 by each bus. 72387 72388 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 72389 72390commit ea5877e31ed63ade948fd1293895ec23fe01472e 72391Author: Kumar Gala <galak@kernel.crashing.org> 72392Date: Thu Aug 16 11:01:21 2007 -0500 72393 72394 Fix up some fdt issues on 8544DS 72395 72396 It looks like we had a merge issue that duplicated a bit of code 72397 in ft_board_setup. Also, we need to set CONFIG_HAS_ETH0 to get 72398 the MAC address properly set in the device tree on boot for TSEC1 72399 72400 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 72401 72402commit 07bc20560cb9d3d186cca268c05c82762e8c55ad 72403Author: Niklaus Giger <niklaus.giger@netstal.com> 72404Date: Thu Aug 16 15:16:03 2007 +0200 72405 72406 PPC4xx:HCU4/5 cleanup 72407 72408 Minor cleanups to confirm to the u-boot coding style. 72409 Some german expressions -> english. 72410 HCU5 enforces a unique IP adress for a given slot in the rack. 72411 72412 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 72413 72414commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb 72415Author: Niklaus Giger <niklaus.giger@netstal.com> 72416Date: Thu Aug 16 15:16:02 2007 +0200 72417 72418 PPC4xx:HCU4/5 cleanup ecc/sdram init 72419 72420 Make ecc initialisation robust, as DDR2-ECC errors may be generated 72421 while zeroing the RAM. 72422 72423 Return 16 bytes (a cacheline) less than the available memory, as the 72424 board and/or PPC440EPx might have problems accessing the last bytes. 72425 72426 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 72427 72428commit d35b508a55508535b6e8445b718585d27df733d3 72429Author: Kim Phillips <kim.phillips@freescale.com> 72430Date: Wed Aug 15 22:29:56 2007 -0500 72431 72432 fdt: suppress unused variable 'bd' warning 72433 72434 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72435 72436commit 82bd9ee77490588d4da785d75829ca63d0176baf 72437Author: Andy Fleming <afleming@freescale.com> 72438Date: Wed Aug 15 20:06:50 2007 -0500 72439 72440 Fix warnings from of_data copy fix 72441 72442 Forgot to cast of_flat_tree to ulong. 72443 72444 Signed-off-by: Andy Fleming <afleming@freescale.com> 72445 72446commit 7613afda77d5eec0f47d303025b0c661b70e4c73 72447Author: Andy Fleming <afleming@freescale.com> 72448Date: Wed Aug 15 20:03:44 2007 -0500 72449 72450 Don't wait for disconnected TSECs 72451 72452 The TSEC driver's PHY code waits a long time for autonegotiation to 72453 complete, even if the link is down. The PHY knows the link is 72454 down or up before autonegotiation completes, so we can short-circuit 72455 the process if the link is down. 72456 72457 Signed-off-by: Andy Fleming <afleming@freescale.com> 72458 72459commit b96c83d4ae475a70ef2635cd0e748174c44c8601 72460Author: Andy Fleming <afleming@freescale.com> 72461Date: Wed Aug 15 20:03:34 2007 -0500 72462 72463 Fix numerous bugs in the 8568 UEC support 72464 72465 Actually, fixed a large bug in the UEC for *all* platforms. 72466 How did this ever work? 72467 72468 uec_init() did not follow the spec for eth_init(), and returned 72469 0 on success. Switch it to return the link like tsec_init() 72470 (and 0 on error) 72471 72472 The immap for the 8568 was defined based on MPC8568, rather than 72473 CONFIG_MPC8568 72474 72475 CONFIG_QE was off 72476 72477 CONFIG_ETHPRIME was set to "Freescale GETH". Now is "FSL UEC0" 72478 72479 Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is 72480 enabled 72481 72482 Signed-off-by: Andy Fleming <afleming@freescale.com> 72483 72484commit 3a79013e2adda53332dfd0b511066a805e929a9d 72485Author: Andy Fleming <afleming@freescale.com> 72486Date: Wed Aug 15 20:03:25 2007 -0500 72487 72488 Define tsec flag values in config files 72489 72490 The tsec_info structure and array has a "flags" field for each 72491 ethernet controller. This field is the only reason there are 72492 settings. Switch to defining TSECn_FLAGS for each controller 72493 in the config header, and we can greatly simplify the array, and 72494 also simplify the addition of future boards. 72495 72496 Signed-off-by: Andy Fleming <afleming@freescale.com> 72497 72498commit ec7238229507e7f47533a611ea8c53319d234cf3 72499Author: Andy Fleming <afleming@freescale.com> 72500Date: Wed Aug 15 20:03:13 2007 -0500 72501 72502 Add support for building all boards with a TSEC 72503 72504 Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards. 72505 Now we can do a MAKEALL test on all of them! 72506 72507 Signed-off-by: Andy Fleming <afleming@freescale.com> 72508 72509commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8 72510Author: Andy Fleming <afleming@freescale.com> 72511Date: Wed Aug 15 17:30:56 2007 -0500 72512 72513 Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards 72514 72515 The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed" 72516 neglected to *also* put the code inside the similar #ifdef 72517 for CONFIG_OF_FLAT_TREE. 72518 72519 Signed-off-by: Andy Fleming <afleming@freescale.com> 72520 72521commit 78f9fef7f406078c8bf7191e665a73f795157746 72522Author: Scott Wood <scottwood@freescale.com> 72523Date: Wed Aug 15 15:46:46 2007 -0500 72524 72525 mpc885ads: Don't define CONFIG_BZIP2. 72526 72527 bzip2 requires a significant chunk of malloc space, and there isn't 72528 enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area 72529 and a downloaded image at 0x400000. 72530 72531 Signed-off-by: Scott Wood <scottwood@freescale.com> 72532 72533commit 002275a3ed8b114885f6702d6d544d0780dfe689 72534Author: Michal Simek <Monstr@seznam.cz> 72535Date: Thu Aug 16 08:54:10 2007 +0200 72536 72537 Bios emulator - fix microblaze toolchain problem 72538 72539 microblaze CPU have problem with bios_emulator code. 72540 Microblaze toolchain doesn't support PRAGMA PACK. 72541 72542 Signed-off-by: Michal Simek <monstr@monstr.eu> 72543 72544commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b 72545Author: Wolfgang Denk <wd@denx.de> 72546Date: Thu Aug 16 11:51:04 2007 +0200 72547 72548 Minor Coding Style fix; Update CHANGELOG file. 72549 72550 Signed-off-by: Wolfgang Denk <wd@denx.de> 72551 72552commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991 72553Author: Stefan Roese <sr@denx.de> 72554Date: Thu Aug 16 11:21:49 2007 +0200 72555 72556 ppc4xx: Remove #warning in esd auto_update.c 72557 72558 Signed-off-by: Stefan Roese <sr@denx.de> 72559 72560commit 2d78074d2e806edc380c1464eb9e5df335ece65e 72561Author: Stefan Roese <sr@denx.de> 72562Date: Fri Jun 22 17:32:28 2007 +0200 72563 72564 ppc7xx: Update CPCI750 board 72565 72566 This small CPCI750 update extends the board specific command 72567 "show_config" to display the Marvell strapping registers and 72568 extends the PCI IDE controller. 72569 72570 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 72571 Signed-off-by: Stefan Roese <sr@denx.de> 72572 72573commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e 72574Author: Michal Simek <monstr@monstr.eu> 72575Date: Thu Aug 16 10:46:28 2007 +0200 72576 72577 [FIX] Changes for bios_emulator code for others architecture 72578 72579commit 6e0e2253f039344f8ebd2787285fdba90e6714e8 72580Author: Michal Simek <monstr@monstr.eu> 72581Date: Thu Aug 16 10:45:09 2007 +0200 72582 72583 [FIX] Remove unused include file 72584 72585commit 9de469bd960cc1870bb40d6672ed42726b8b50d7 72586Author: Stefan Roese <sr@denx.de> 72587Date: Thu Aug 16 10:18:33 2007 +0200 72588 72589 ppc4xx: Only enable POST FPU test on Sequoia and not Rainier 72590 72591 Signed-off-by: Stefan Roese <sr@denx.de> 72592 72593commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c 72594Author: Stefan Roese <sr@denx.de> 72595Date: Thu Aug 16 09:54:51 2007 +0200 72596 72597 Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files 72598 72599 Signed-off-by: Stefan Roese <sr@denx.de> 72600 72601commit 02ba7022f62bb75908296c58c63866e1d294b69a 72602Author: Stefan Roese <sr@denx.de> 72603Date: Thu Aug 16 09:52:29 2007 +0200 72604 72605 ppc4xx: Update Sequoia/Rainier bootstrap command 72606 72607 As suggested by David Mitchell, here an update for the Sequoia/Rainier 72608 bootstrap command. 72609 72610 Signed-off-by: Stefan Roese <sr@denx.de> 72611 72612commit 35cc4e4823668e8745854899cfaedd4489beb0ef 72613Author: Kim Phillips <kim.phillips@freescale.com> 72614Date: Wed Aug 15 22:30:39 2007 -0500 72615 72616 mpc83xx: enable libfdt by default on freescale boards 72617 72618 this enables libfdt code by default for the 72619 freescale mpc8313erdb, mpc832xemds, mpc8349emds, 72620 mpc8349itx and gp boards. 72621 72622 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72623 72624commit 3fde9e8b22cfbd7af489214758f9839a206576cb 72625Author: Kim Phillips <kim.phillips@freescale.com> 72626Date: Wed Aug 15 22:30:33 2007 -0500 72627 72628 mpc83xx: migrate remaining freescale boards to libfdt 72629 72630 this adds libfdt support code for the freescale 72631 mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx, 72632 and gp boards. 72633 72634 Boards remain compatible with OF_FLAT_TREE. 72635 72636 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72637 72638commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1 72639Author: Kim Phillips <kim.phillips@freescale.com> 72640Date: Wed Aug 15 22:30:26 2007 -0500 72641 72642 mpc83xx: move common /memory node update mechanism to cpu.c 72643 72644 also adds common prototypes to include/common.h. 72645 72646 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72647 72648commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85 72649Author: Kim Phillips <kim.phillips@freescale.com> 72650Date: Wed Aug 15 22:30:19 2007 -0500 72651 72652 mpc83xx: remaining 8360 libfdt fixes 72653 72654 PCI clocks and QE frequencies weren't being updated, and the core clock 72655 was being updated incorrectly. This patch also adds a /memory node if 72656 it doesn't already exist prior to update. 72657 72658 plus some cosmetic trimming to single line comments. 72659 72660 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72661 72662commit f4b2ac5ed9aaff9920d487bff8a59696c083a524 72663Author: Kim Phillips <kim.phillips@freescale.com> 72664Date: Wed Aug 15 22:30:12 2007 -0500 72665 72666 mpc83xx: fix UEC2->1 typo in libfdt setup code 72667 72668 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72669 72670commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3 72671Author: Kim Phillips <kim.phillips@freescale.com> 72672Date: Wed Aug 15 22:30:05 2007 -0500 72673 72674 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb 72675 72676 and reorder the existing 83xx maintainers alpha. 72677 72678 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 72679 72680commit 5b4de9309d7a03aa1db2e5391ab696363391f460 72681Author: Michal Simek <monstr@monstr.eu> 72682Date: Wed Aug 15 21:15:05 2007 +0200 72683 72684 [FIX] Resolve problem with warnings 72685 microblaze toolchain don't support PRAGMA PACK. 72686 72687commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4 72688Author: Michal Simek <monstr@monstr.eu> 72689Date: Wed Aug 15 21:05:07 2007 +0200 72690 72691 [FIX] Correction command setting for Microblaze boards 72692 72693commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5 72694Author: Michal Simek <monstr@monstr.eu> 72695Date: Wed Aug 15 21:03:41 2007 +0200 72696 72697 [FIX] Correction command definition 72698 72699commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8 72700Author: Jon Loeliger <jdl@freescale.com> 72701Date: Wed Aug 15 11:55:35 2007 -0500 72702 72703 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h 72704 72705 Remove a leftover in net/tftp.c while we're at it. 72706 72707 Signed-off-by: Jon Loeliger <jdl@freescale.com> 72708 72709commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44 72710Author: Jon Loeliger <jdl@freescale.com> 72711Date: Wed Aug 15 12:20:40 2007 -0500 72712 72713 Move the MPC8641HPCN board under board/freescale. 72714 72715 Minor path corrections needed to ensure buildability. 72716 72717 Signed-off-by: Jon Loeliger <jdl@freescale.com> 72718 72719commit 8662577fe36fdb6a44b55b998d9daac6392a736a 72720Author: Jon Loeliger <jdl@freescale.com> 72721Date: Wed Aug 15 11:46:22 2007 -0500 72722 72723 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h 72724 72725 Remove a leftover in net/tftp.c while we're at it. 72726 72727 Signed-off-by: Jon Loeliger <jdl@freescale.com> 72728 72729commit 210f463c71917b7a4495c2103c228b9c179ae64d 72730Author: Jerry Van Baren <gvb.uboot@gmail.com> 72731Date: Wed Aug 15 11:13:15 2007 -0400 72732 72733 Fix where the #ifdef CFG_BOOTMAPSZ is placed. 72734 72735 Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb 72736 interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT) 72737 when it should have gone inside of the conditional. As a result, it 72738 broke non-LIBFDT board builds. 72739 72740 Also added a missing "not." to the comment. 72741 72742 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 72743 72744commit 0e19209767194a97cec6d93dba9e64d1da8d548e 72745Author: Niklaus Giger <niklaus.giger@netstal.com> 72746Date: Wed Aug 15 12:14:23 2007 +0200 72747 72748 PPC4xx:HCU4/5-Board fix compile warning 72749 72750 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 72751 72752commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7 72753Author: Ed Swarthout <Ed.Swarthout@freescale.com> 72754Date: Tue Aug 14 14:06:45 2007 -0500 72755 72756 Fix malloc size error in ahci_init_one. 72757 72758 Typically this causes scsi init to corrupt the 72759 devlist and break the coninfo command. 72760 Fix a compiler size warning. 72761 72762 Signed-off-by: Jason Jin <jason.jin@freescale.com> 72763 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 72764 Acked-by: Andy Fleming <afleming@freescale.com> 72765 72766commit b361acd64fd2525c081b9b288b0804efe209c0e9 72767Author: ksi@koi8.net <ksi@koi8.net> 72768Date: Tue Aug 14 10:02:16 2007 -0700 72769 72770 TI DaVinci - fix unsupported %hhx format 72771 72772 Signed-off-by: Sergey Kubushyn <ksi@koi8.net> 72773 72774commit f01dbb5424a81453c81190dd30e945891466f621 72775Author: Wolfgang Denk <wd@denx.de> 72776Date: Tue Aug 14 18:42:36 2007 +0200 72777 72778 Coding style cleanup. Update CHANGELOG. 72779 72780 Signed-off-by: Wolfgang Denk <wd@denx.de> 72781 72782commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 72783Author: Andy Fleming <afleming@freescale.com> 72784Date: Tue Aug 14 10:32:59 2007 -0500 72785 72786 Fix initrd/dtb interaction 72787 72788 The original code would wrongly relocate the blob to be right before 72789 the initrd if it existed. The blob *must* be within CFG_BOOTMAPSZ, 72790 if it is defined. So we make two changes: 72791 72792 1) flag the blob for relocation whenever its address is above BOOTMAPSZ 72793 72794 2) If the blob is being relocated, relocate it before kbd, not initrd 72795 72796 Signed-off-by: Andy Fleming <afleming@freescale.com> 72797 72798commit e54b970173769307a116bd34028b6d0c2eea2a4e 72799Author: Peter Pearse <peter.pearse@arm.com> 72800Date: Tue Aug 14 15:40:00 2007 +0100 72801 72802 Supply spi interface in at45.c 72803 72804commit 4ce846ec59f36b85d6644a769690ad3feb667575 72805Author: Stefan Roese <sr@denx.de> 72806Date: Tue Aug 14 15:12:01 2007 +0200 72807 72808 POST: Fix merge problem 72809 72810 Signed-off-by: Stefan Roese <sr@denx.de> 72811 72812commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c 72813Author: Stefan Roese <sr@denx.de> 72814Date: Tue Aug 14 15:03:17 2007 +0200 72815 72816 Coding style cleanup 72817 72818 Signed-off-by: Stefan Roese <sr@denx.de> 72819 72820commit 779e975117a75e91fcebe226a63104dbfb924ab1 72821Author: Stefan Roese <sr@denx.de> 72822Date: Tue Aug 14 14:44:41 2007 +0200 72823 72824 ppc4xx: Add initial Zeus (PPC405EP) board support 72825 72826 Signed-off-by: Stefan Roese <sr@denx.de> 72827 72828commit c5a172a5fd636c12467429e3f7910e53773979c6 72829Author: Stefan Roese <sr@denx.de> 72830Date: Tue Aug 14 14:41:55 2007 +0200 72831 72832 POST: Add option for external ethernet loopback test 72833 72834 When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST 72835 is not done using an internal loopback connection, but by assuming 72836 that an external loopback connector is plugged into the board. 72837 72838 Signed-off-by: Stefan Roese <sr@denx.de> 72839 72840commit eb2b4010ae426245172988804ee8d9193fb41038 72841Author: Stefan Roese <sr@denx.de> 72842Date: Tue Aug 14 14:39:44 2007 +0200 72843 72844 POST: Add ppc405 support to cache and UART POST 72845 72846 Signed-off-by: Stefan Roese <sr@denx.de> 72847 72848commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c 72849Author: Peter Pearse <peter.pearse@arm.com> 72850Date: Tue Aug 14 10:46:32 2007 +0100 72851 72852 Replace lost end of at45.c. 72853 72854commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2 72855Author: Peter Pearse <peter.pearse@arm.com> 72856Date: Tue Aug 14 10:30:06 2007 +0100 72857 72858 Update Makefiles for merged and split at45.c. 72859 72860commit 3454cece2db57cb9eb7087995f7e73066a163f71 72861Author: Peter Pearse <peter.pearse@arm.com> 72862Date: Tue Aug 14 10:21:06 2007 +0100 72863 72864 Delete the merged files. 72865 72866commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225 72867Author: Peter Pearse <peter.pearse@arm.com> 72868Date: Tue Aug 14 10:14:05 2007 +0100 72869 72870 Add the files. 72871 72872commit d4fc6012fd0a5c211b825691f44b06f8032c0551 72873Author: Peter Pearse <peter.pearse@arm.com> 72874Date: Tue Aug 14 10:10:52 2007 +0100 72875 72876 Add MACH_TYPE records for several AT91 boards. 72877 Merge to two at45.c files into a common file, split to at45.c and spi.c 72878 Fix spelling error in DM9161 PHY Support. 72879 Initialize at91rm9200 board (and set LED). 72880 Add PIO control for at91rm9200dk LEDs and Mux. 72881 Change dataflash partition boundaries to be compatible with Linux 2.6. 72882 72883 Signed-off-by: Peter Pearse <peter.pearse@arm.com> 72884 Signed-off-by: Ulf Samuelsson <ulf@atmel.com> 72885 72886commit 4ef35e53c693556c54b0c22d6f873de87bade253 72887Author: Wolfgang Denk <wd@denx.de> 72888Date: Tue Aug 14 09:54:46 2007 +0200 72889 72890 Coding style cleanup, update CHANGELOG 72891 72892 Signed-off-by: Wolfgang Denk <wd@denx.de> 72893 72894commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7 72895Author: Wolfgang Denk <wd@denx.de> 72896Date: Tue Aug 14 09:47:27 2007 +0200 72897 72898 Coding style cleanup; rebuild CHANGELOG 72899 72900commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a 72901Author: Randy Vinson <rvinson@linuxbox.(none)> 72902Date: Tue Feb 27 19:42:22 2007 -0700 72903 72904 85xxCDS: Add make targets for legacy systems. 72905 72906 The PCI ID select values on the Arcadia main board differ depending 72907 on the version of the hardware. The standard configuration supports 72908 Rev 3.1. The legacy target supports Rev 2.x. 72909 72910 Signed-off-by Randy Vinson <rvinson@mvista.com> 72911 72912commit e41094c7e38177c755fbd9b182018069614f080d 72913Author: Andy Fleming <afleming@freescale.com> 72914Date: Tue Aug 14 01:50:09 2007 -0500 72915 72916 85xxCDS: Enable the VIA PCI-to-ISA bridge. 72917 72918 Author: Randy Vinson <rvinson@linuxbox.(none)> 72919 72920 Enable the PCI-to-ISA bridge in the VIA Southbridge located on the 72921 Arcadia main board. 72922 72923 Signed-off-by: Randy Vinson <rvinson@mvista.com> 72924 Signed-off-by: York Sun <yorksun@freescale.com> 72925 72926commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71 72927Author: Andy Fleming <afleming@freescale.com> 72928Date: Tue Aug 14 00:14:25 2007 -0500 72929 72930 Add support for UEC to 8568 72931 72932 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 72933 Signed-off-by: Andy Fleming <afleming@freescale.com> 72934 72935commit c59e4091ffe0148398b9e9ff14a019ea038b7432 72936Author: Haiying Wang <Haiying.Wang@freescale.com> 72937Date: Tue Jun 19 14:18:34 2007 -0400 72938 72939 Add PCI support for MPC8568MDS board 72940 72941 This patch is against u-boot-mpc85xx.git of www.denx.com 72942 72943 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 72944 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com> 72945 72946commit d111d6382c99fdea08c2312eeeae8786945e189a 72947Author: Haiying Wang <Haiying.Wang@freescale.com> 72948Date: Tue Jun 19 14:18:32 2007 -0400 72949 72950 Empirically set cpo and clk_adjust for mpc85xx DDR2 support 72951 72952 This patch is against u-boot-mpc85xx.git of www.denx.com 72953 72954 Setting cpo to 0x9 for frequencies higher than 333MHz is verified on 72955 both MPC8548CDS board and MPC8568MDS board, especially for supporting 72956 533MHz DDR2. 72957 72958 Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for 72959 DDR2 on all current board versions especially ver 1.92 or later to bring 72960 up. 72961 72962 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 72963 72964commit 3db0bef59eab1155801618cef5c481e97553b597 72965Author: Kumar Gala <galak@kernel.crashing.org> 72966Date: Tue Aug 7 18:07:27 2007 -0500 72967 72968 Use an absolute address when jumping out of 4k boot page 72969 72970 On e500 when we leave the 4k boot page we should use an absolute address since 72971 we don't know where the board code may want us to be really running at. 72972 72973 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 72974 72975commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a 72976Author: Andy Fleming <afleming@freescale.com> 72977Date: Mon Aug 13 14:49:59 2007 -0500 72978 72979 MPC85xx BA bits not set for 3-bit bank address DIMM 72980 72981 The current implementation does not set the number of bank address bits 72982 (BA) in the processor. The default assumes 2 logical bank bits. This 72983 works fine for a DIMM that uses devices with 4 internal banks (SPD 72984 byte17 = 0x4) but needs to be set appropriately for a DIMM that uses 72985 devices with 8 internal banks (SPD byte17 = 0x8). 72986 72987 Signed-off-by: Greg Davis <DavisG@embeddedplanet.com> 72988 72989commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1 72990Author: Andy Fleming <afleming@freescale.com> 72991Date: Mon Aug 13 14:38:06 2007 -0500 72992 72993 Fix minor 85xx warnings 72994 72995 Some patches had inserted warnings into the build: 72996 * mpc8560ads declared data without using it 72997 * cpu_init declared ecm and immap without using it in all CONFIGs 72998 * MPC8548CDS.h had its default filenames changed so that they contained 72999 "\m" in the paths. Made the defaults not Windows-specific (or 73000 anything-specific)
73001 73002 Signed-off-by: Andy Fleming <afleming@freescale.com> 73003 73004commit f2cff6b104f82b993bef6086ce0c97159bbe1add 73005Author: Ed Swarthout <Ed.Swarthout@freescale.com> 73006Date: Fri Jul 27 01:50:52 2007 -0500 73007 73008 8548cds PCIE support. 73009 73010 Make the early L1 cache stack region guarded to prevent speculative 73011 fetches outside the locked range. 73012 73013 Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions. 73014 init.S whitespace cleanup. 73015 73016 Allow TEXT_BASE value to be specified on command line. This allows it 73017 to be set to 0xfffc0000 which cuts the uboot binary in half. 73018 73019 Clear and enable lbc and ecm errors. 73020 73021 Update last_busno in device-tree for pci and pcie. 73022 73023 Remove load of obsolete cpu/mpc85xx/pci.0 73024 73025 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 73026 Acked-by: Andy Fleming <afleming@freescale.com> 73027 73028commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962 73029Author: Ed Swarthout <Ed.Swarthout@freescale.com> 73030Date: Fri Jul 27 01:50:51 2007 -0500 73031 73032 8544ds PCIE support 73033 73034 PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address. 73035 73036 Enable LBC and ECM errors and clear error registers. 73037 73038 Add tftpflash env var to get uboot from tftp server and flash it. 73039 73040 Add pci/pcie convenience env vars to display register space: 73041 "run pcie3regs" to see all pcie3 ccsr registers 73042 "run pcie3cfg" to see all cfg registers 73043 Whitespace cleanup and MPC8544DS.h 73044 73045 Enable CONFIG_INTERRUPTS. 73046 73047 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 73048 Acked-by: Andy Fleming <afleming@freescale.com> 73049 73050commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85 73051Author: Andy Fleming <afleming@freescale.com> 73052Date: Tue Aug 14 01:34:21 2007 -0500 73053 73054 85xx start.S cleanup and exception support 73055 73056 From: Ed Swarthout <Ed.Swarthout@freescale.com> 73057 73058 Support external interrupts from platform to eliminate system hangs. 73059 Define CONFIG_INTERRUPTS board configure option to enable. 73060 Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC. 73061 73062 Remove extra cpu initialization redundant with hardware initialization. 73063 Whitespace cleanup. 73064 73065 Define and use _START_OFFSET consistent with other processors using 73066 ppc_asm.tmpl 73067 73068 Move additional code from .text to boot page to make room for 73069 exception vectors at start of image. 73070 73071 Handle Machine Check, External and Critical exceptions. 73072 73073 Fix e500 machine check error determination in traps.c 73074 73075 TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half. 73076 73077 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 73078 Acked-by: Andy Fleming <afleming@freescale.com> 73079 73080commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47 73081Author: Andy Fleming <afleming@freescale.com> 73082Date: Tue Aug 14 01:33:18 2007 -0500 73083 73084 Add MPC8544DS README 73085 73086 Signed-off-by: Andy Fleming <afleming@freescale.com> 73087 73088commit 40c7f9b0de4e300370adfc704128fa0f79a143b6 73089Author: Ed Swarthout <Ed.Swarthout@freescale.com> 73090Date: Fri Jul 27 01:50:48 2007 -0500 73091 73092 85xx allow debugger to configure ddr. 73093 73094 Only check for mpc8548 rev 1 when compiled for 8548. 73095 73096 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 73097 Acked-by: Andy Fleming <afleming@freescale.com> 73098 73099commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704 73100Author: Ed Swarthout <Ed.Swarthout@freescale.com> 73101Date: Fri Jul 27 01:50:47 2007 -0500 73102 73103 mpc85xx L2 cache reporting and SRAM relocation option. 73104 73105 Allow debugger to override flash cs0/cs1 settings to enable alternate 73106 boot regions 73107 73108 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 73109 Acked-by: Andy Fleming <afleming@freescale.com> 73110 73111commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f 73112Author: Ed Swarthout <Ed.Swarthout@freescale.com> 73113Date: Fri Jul 27 01:50:46 2007 -0500 73114 73115 e500 needs ppc_asm.tmp MCK_EXCEPTION 73116 73117 Always define MCK_EXCEPTION macro - so e500 can use it too. 73118 73119 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 73120 Acked-by: Andy Fleming <afleming@freescale.com> 73121 73122commit 53a5c424bf8655b7b4e2c305a441963259a26a81 73123Author: David Updegraff <dave@cray.com> 73124Date: Mon Jun 11 10:41:07 2007 -0500 73125 73126 multicast tftp: RFC2090 73127 73128 Implemented IETF RFC2090, Multicast TFTP. Initial implementation 73129 on Realtek RTL8139 and Freescale TSEC. 73130 73131 Signed-off-by: David Updegraff <dave@cray.com> 73132 Signed-off-by: Ben Warren <bwarren@qstreams.com> 73133 73134commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1 73135Author: Wilson Callan <wcallan@savantav.com> 73136Date: Sat Jul 28 10:56:13 2007 -0400 73137 73138 New CONFIG_BOOTP_SERVERIP option 73139 73140 Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different 73141 from the bootp server 73142 73143 Signed-off-by: Wilson Callan <wcallan@savantav.com> 73144 Signed-off-by: Ben Warren <bwarren@qstreams.com> 73145 73146commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1 73147Author: Mike Rapoport <mike@compulab.co.il> 73148Date: Sun Aug 12 08:48:27 2007 +0300 73149 73150 Add ability to take MAC address from the environment to DM9000 driver 73151 73152 Signed-off-by: Mike Rapoport <mike@compulab.co.il> 73153 Signed-off-by: Ben Warren <bwarren@qstreams.com> 73154 73155commit be5d72d10d47609326226225181e301fb9a33b58 73156Author: Wolfgang Denk <wd@denx.de> 73157Date: Mon Aug 13 21:57:53 2007 +0200 73158 73159 Minor coding style cleanup. Update CHANGELOG. 73160 73161 Signed-off-by: Wolfgang Denk <wd@denx.de> 73162 73163commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05 73164Author: Joe Hamman <joe.hamman@embeddedspecialties.com> 73165Date: Sat Aug 11 06:54:58 2007 -0500 73166 73167 Modify SBC8641D to use new Freescale PCI routines 73168 73169 PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT 73170 adapter. 73171 73172 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com> 73173 Signde-off-by: Jon Loeliger <jdl@freescale.com> 73174 73175commit a08458303e7f9db67f296980036d3292c35cb45c 73176Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 73177Date: Fri Jun 29 18:38:51 2007 +0200 73178 73179 atmel_mci: Fix data timeout value 73180 73181 Calculate the data timeout based on values from the CSD instead of 73182 just using a hardcoded DTOR value. This is a backport of a similar fix 73183 in BSP 2.0, with one additional fix: the DTOCYC value is rounded up 73184 instead of down. 73185 73186 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 73187 73188commit 0ba8eed28b575626b17e0a7882f923b83e0d7584 73189Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 73190Date: Mon Aug 13 17:22:31 2007 +0200 73191 73192 AVR32: Include <div64.h> instead of <asm/div64.h> 73193 73194 include/asm-avr32/div64.h was recently moved to include/div64.h, but 73195 cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of 73196 the patch was merged perhaps?) 73197 73198 This patch updates cpu/at32ap/interrupts.c so that the avr32 port 73199 compiles again. 73200 73201 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 73202 73203commit f0d1246ed7cb5a88522244c596d7ae7e6f161283 73204Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 73205Date: Wed Jun 27 13:34:26 2007 +0200 73206 73207 atmel_mci: Use 512 byte blocksize if possible 73208 73209 Instead of always using the largest blocksize the card supports, check 73210 if it can support smaller block sizes and use 512 bytes if possible. 73211 Most cards do support this, and other parts of u-boot seem to have 73212 trouble with block sizes different from 512 bytes. 73213 73214 Also enable underrun/overrun protection. 73215 73216 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 73217 Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com> 73218 73219commit 273db7e1bdd1937e32f1d4507321bb721ebd3118 73220Author: Stefan Roese <sr@denx.de> 73221Date: Mon Aug 13 09:05:33 2007 +0200 73222 73223 ppc4xx: Fix problem in PLL clock calculation 73224 73225 This patch was originall provided by David Mitchell <dmitchell@amcc.com> 73226 and fixes a bug in the PLL clock calculation. 73227 73228 Signed-off-by: Stefan Roese <sr@denx.de> 73229 73230commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b 73231Author: Wolfgang Denk <wd@denx.de> 73232Date: Sun Aug 12 21:34:50 2007 +0200 73233 73234 Update CHANGELOG 73235 73236commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a 73237Author: Wolfgang Denk <wd@denx.de> 73238Date: Sun Aug 12 21:34:34 2007 +0200 73239 73240 Minor alignment of output, 2nd try. 73241 Also update CHANGELOG 73242 73243 Signed-off-by: Wolfgang Denk <wd@denx.de> 73244 73245commit 6b309f22a724fad8418e811751a0741b893419cf 73246Author: Wolfgang Denk <wd@denx.de> 73247Date: Sun Aug 12 20:35:49 2007 +0200 73248 73249 Minor alignment of output 73250 73251 Signed-off-by: Wolfgang Denk <wd@denx.de> 73252 73253commit 6f6d7b9c8559e241e8d232621542b8b59699b07b 73254Author: Wolfgang Denk <wd@denx.de> 73255Date: Sun Aug 12 18:28:18 2007 +0200 73256 73257 Cleanup output on ADS5121 board 73258 73259 Signed-off-by: Wolfgang Denk 73260 73261commit a4d2636f2a859245ed3a401f26189da2dfda4ceb 73262Author: Wolfgang Denk <wd@denx.de> 73263Date: Sun Aug 12 15:11:38 2007 +0200 73264 73265 Adapt board configuration and fix kernel crash on MCC200 board. 73266 73267 The update procedure was modified to turn off the USB subsystem 73268 before exit for MCC200 and TRAB. This is necessary as otherwise the 73269 USB controller continues to write periodically to system memory! 73270 73271 MCC200-specific notes: 73272 - the patch disables the magic key check for MCC200 73273 - the patch contains the configuration changes made 73274 for the new revision of the board. 73275 73276 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 73277 Signed-off-by: Wolfgang Denk <wd@denx.de> 73278 73279commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf 73280Author: Wolfgang Denk <wd@denx.de> 73281Date: Sun Aug 12 14:47:54 2007 +0200 73282 73283 Adjust default configuration of ADS5121 board. 73284 73285 Signed-off-by: Wolfgang Denk <wd@denx.de> 73286 73287commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9 73288Author: Wolfgang Denk <wd@denx.de> 73289Date: Sun Aug 12 14:27:39 2007 +0200 73290 73291 Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues. 73292 73293 Signed-off-by: Wolfgang Denk <wd@denx.de> 73294 73295commit 5fe6be6208dda852c3564e384bd78d75784dea3e 73296Author: Gerald Van Baren <vanbaren@cideas.com> 73297Date: Tue Aug 7 21:14:22 2007 -0400 73298 73299 Improve error print messages. 73300 73301 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73302 73303commit 99dffca3b7590a16a00bc475c860b67b2a3f1462 73304Author: Kim Phillips <kim.phillips@freescale.com> 73305Date: Tue Jul 17 13:57:04 2007 -0500 73306 73307 fdt: allow for builds that don't want env and bd_t nodes 73308 73309 protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the 73310 area. 73311 73312 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73313 73314commit 91148bf7aeba142d6f348805db7625db7da64d6f 73315Author: Kim Phillips <kim.phillips@freescale.com> 73316Date: Tue Jul 17 13:56:53 2007 -0500 73317 73318 fdt: do board setup based on fdt address specified on bootm line 73319 73320 The last fdt patch to bootm did board setup based on the address 73321 specified by a prior fdt address command invocation. The bootm 73322 code, as its call to fdt_chosen does, should use the fdt specified 73323 by the user on the bootm command. Note this restores full 73324 functionality for the 8360's existing default boot environment 73325 values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr' 73326 before booting a kernel). 73327 73328 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73329 73330commit e125a2ffc209dd34794e326c7175658253beadf3 73331Author: Gerald Van Baren <vanbaren@cideas.com> 73332Date: Tue Jul 10 20:40:39 2007 -0400 73333 73334 Call ft_board_setup() from the bootm command. 73335 73336 In the patch titled "Create new fdt boardsetup command..." I removed the 73337 call to ft_board_setup() from the routine fdt_chosen(), but I forgot 73338 to add a direct call back into cmd_bootm.c 73339 73340 This fixes the oversight by adding the direct call to the bootm command. 73341 73342 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73343 73344commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845 73345Author: Gerald Van Baren <vanbaren@cideas.com> 73346Date: Mon Jun 25 23:25:28 2007 -0400 73347 73348 Create new fdt boardsetup command, fix bug parsing [] form of set values. 73349 73350 Previously ft_board_setup() was called by fdt_chosen() which was not 73351 really correctly structured. This splits ft_board_setup() out by creating 73352 a new fdt boardsetup command. 73353 73354 Fix a bug when parsing fdt set command values which have the square 73355 bracket form [00 11 22 33] - the length was updated incorrectly in when 73356 parsing that form. 73357 73358 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73359 73360commit 6f35ded9e85493595e0eb66a82b502a95326d049 73361Author: Gerald Van Baren <vanbaren@cideas.com> 73362Date: Mon Jun 25 20:55:58 2007 -0400 73363 73364 Tighten up the error messages. 73365 73366 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73367 73368commit c45874b05aae897a6c29d1a97d4bb708fca2756c 73369Author: Gerald Van Baren <vanbaren@cideas.com> 73370Date: Mon Jun 25 19:52:23 2007 -0400 73371 73372 Asthetic improvements: error messages and line lengths. 73373 73374 Tighten up the error messages, split overlength lines. 73375 73376 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73377 73378commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1 73379Author: Gerald Van Baren <vanbaren@cideas.com> 73380Date: Fri May 25 22:08:57 2007 -0400 73381 73382 Fix fdt_chosen() to call ft_board_setup(), clean up long lines. 73383 73384 The fdt_chosen() function was adding/seting some properties ad-hoc 73385 improperly and duplicated (poorly) what was done in ft_board_setup() 73386 73387 Clean up long lines (setting properties, printing errors). 73388 73389 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73390 73391commit 06e19a07701c968f15d72c083b5872a1a11c7b01 73392Author: Gerald Van Baren <vanbaren@cideas.com> 73393Date: Mon May 21 23:27:16 2007 -0400 73394 73395 For fdt_find_node_by_path(), handle the root path properly. 73396 73397 Also removes the special case root path detection in cmd_fdt.c since it 73398 is no longer necessary. 73399 73400 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73401 73402commit 9675ee7208ab965d13ea8d8262d77ac4160ef549 73403Author: Gerald Van Baren <vanbaren@cideas.com> 73404Date: Thu May 17 23:54:36 2007 -0400 73405 73406 Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT 73407 73408 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 73409 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 73410 73411commit 1a861169bc3758f9de3aead62b058736c6891246 73412Author: Gerald Van Baren <vanbaren@cideas.com> 73413Date: Wed Jun 6 22:47:58 2007 -0400 73414 73415 Replace fdt_node_offset() with fdt_find_node_by_path(). 73416 73417 The new name matches more closely the kernel's name, which is also 73418 a much better description. 73419 73420 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 73421 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 73422 73423commit addd8ce83078c25f0eca5f23adbdfc64ca50a243 73424Author: Gerald Van Baren <vanbaren@cideas.com> 73425Date: Wed May 16 22:39:59 2007 -0400 73426 73427 Fix cmd_fdt line lengths, refactor code. 73428 73429 Break lines that were greater than 80 characters in length. 73430 Move the fdt print and property parsing code to separate static functions 73431 to reduce coding clutter in the fdt_cmd handling body. 73432 73433 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73434 73435commit 25114033ab21788810c48ba4df103b649da1223b 73436Author: Gerald Van Baren <vanbaren@cideas.com> 73437Date: Sat May 12 09:47:25 2007 -0400 73438 73439 FDT command improvements. 73440 73441 Fix "fdt set" so that it will create a non-existing property. 73442 Add "fdt mknode" to create nodes. 73443 73444 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73445 73446commit 38eb508e8e811e2e57628f445de3a24a23c7d804 73447Author: Gerald Van Baren <vanbaren@cideas.com> 73448Date: Sat May 12 09:45:46 2007 -0400 73449 73450 Reorganize and fix problems (returns) in the bootm command. 73451 73452 Do *NOT* return after the "point of no return" has been passed. 73453 If something goes wrong, the board must be reset after that point. 73454 Move the "Transferring control to Linux" debug message back to where it 73455 belongs: just before transferring control to linux. 73456 73457 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73458 73459commit 89c8757d8f213c47709bdc4efe0695263a6080a6 73460Author: Gerald Van Baren <vanbaren@cideas.com> 73461Date: Tue May 8 21:27:35 2007 -0400 73462 73463 Fix bugs in the CONFIG_OF_LIBFDT 73464 73465 Stupid coding mistakes (identified by Timur Tabi, thanks). 73466 73467 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73468 73469commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec 73470Author: Gerald Van Baren <vanbaren@cideas.com> 73471Date: Wed Apr 25 22:47:15 2007 -0400 73472 73473 Improve fdt move length handling. 73474 73475 Make the length parameter optional: if not specified, do the move using 73476 the current size unchanged. 73477 73478 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73479 73480commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d 73481Author: Gerald Van Baren <vanbaren@cideas.com> 73482Date: Wed Apr 25 22:23:36 2007 -0400 73483 73484 Minor code clean up. 73485 73486 Declare the variable fdt properly as extern. 73487 Call the "set_fn" function pointer the "short way" without the full 73488 dereferencing syntax. 73489 73490 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73491 73492commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6 73493Author: Gerald Van Baren <vanbaren@cideas.com> 73494Date: Wed Apr 25 21:24:27 2007 -0400 73495 73496 Improve error messages, more informative. 73497 73498 Print more than the raw libfdt error message strings. This is especially 73499 useful for cluing in the user when the bootm command aborts due to 73500 blob problems. 73501 73502 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73503 73504commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4 73505Author: Gerald Van Baren <vanbaren@cideas.com> 73506Date: Fri Apr 20 22:46:53 2007 -0400 73507 73508 libfdt: Conditionally compile based on CONFIG_OF_LIBFDT 73509 73510 This is the way u-boot reduces configured-out code. At Wolfgang 73511 Grandegger and Wolfgang Denk's request, make libfdt conform. 73512 73513 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73514 73515commit 923efd286411ed052d9e074f59f8986d6081061c 73516Author: Bruce Adler <bruce.adler@ccpu.com> 73517Date: Fri Aug 10 14:54:47 2007 -0700 73518 73519 add image size and descriptors for Spartan 3E FPGA chips 73520 73521 Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1) 73522 73523 Signed-off by: Bruce Adler <bruce.adler@ccpu.com> 73524 73525commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70 73526Author: Kim Phillips <kim.phillips@freescale.com> 73527Date: Fri Aug 10 15:34:48 2007 -0500 73528 73529 make MAKEALL more immune to merge conflicts 73530 73531 ..by placing board entries one per line, as suggested by jdl. 73532 73533 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73534 73535commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f 73536Author: Kim Phillips <kim.phillips@freescale.com> 73537Date: Fri Aug 10 13:28:25 2007 -0500 73538 73539 README: Remove outdated cpu type, board type, and NAME_config lists 73540 73541 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73542 73543commit 49bb59912d21aacb507eb81fd21fb7af650c706c 73544Author: Dave Liu <r63238@freescale.com> 73545Date: Fri Aug 10 15:48:59 2007 +0800 73546 73547 mpc83xx: Suppress the warning 'burstlen' 73548 73549 suppress the warning 'burstlen' of spd_sdram. 73550 73551 Signed-off-by: Dave Liu <daveliu@freescale.com> 73552 73553commit c646bba6465a45c60746d4cc1602cd06c1960f2d 73554Author: Joe Hamman <joe.hamman@embeddedspecialties.com> 73555Date: Thu Aug 9 15:11:03 2007 -0500 73556 73557 Add support for SBC8641D. Config files. 73558 73559 Add support for Wind River's SBC8641D reference board. 73560 73561 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com> 73562 Acked-by: Wolfgang Denk <wd@denx.de> 73563 Acked-by: Jon Loeliger <jdl@freescale.com> 73564 73565commit 8ac273271d57321f90505c7a51cdb1ef2113b628 73566Author: Joe Hamman <joe.hamman@embeddedspecialties.com> 73567Date: Thu Aug 9 15:10:53 2007 -0500 73568 73569 Add support for SBC8641D. Board files. 73570 73571 Add support for Wind River's SBC8641D reference board. 73572 73573 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com> 73574 Acked-by: Wolfgang Denk <wd@denx.de> 73575 Acked-by: Jon Loeliger <jdl@freescale.com> 73576 73577commit c2c0ab4aff86622b837a48a0e560351f9afafb95 73578Author: Stefan Roese <sr@denx.de> 73579Date: Fri Aug 10 20:34:58 2007 +0200 73580 73581 Conding style cleanup 73582 73583 Signed-off-by: Stefan Roese <sr@denx.de> 73584 73585commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e 73586Author: Sergey Kubushyn <ksi@koi8.net> 73587Date: Fri Aug 10 20:26:18 2007 +0200 73588 73589 [ARM] TI DaVinci support, hopefully final 73590 73591 Add support for the following DaVinci boards: 73592 - DV_EVM 73593 - SCHMOOGIE 73594 - SONATA 73595 73596 Changes: 73597 73598 - Split into separate board directories 73599 - Removed changes to MTD_DEBUG (or whatever it's called) 73600 - New CONFIG_CMD party line followed 73601 - Some cosmetic fixes, cleanup etc. 73602 - Patches against the latest U-Boot tree as of now. 73603 - Fixed CONFIG_CMD_NET in net files. 73604 - Fixed CONFIG_CMD_EEPROM for schmoogie. 73605 - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and 73606 DV_EVM. Can't check if it works on SONATA, don't have a board any more, 73607 but it at least compiles. 73608 73609 Here is an excerpt from session log on SCHMOOGIE... 73610 73611 U-Boot 1.2.0-g6c33c785-dirty (Aug 7 2007 - 13:07:17) 73612 73613 DRAM: 128 MB 73614 NAND: 128 MiB 73615 In: serial 73616 Out: serial 73617 Err: serial 73618 ARM Clock : 297MHz 73619 DDR Clock : 162MHz 73620 ETH PHY : DP83848 @ 0x01 73621 U-Boot > iprobe 73622 Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F 73623 U-Boot > ping 192.168.253.10 73624 host 192.168.253.10 is alive 73625 U-Boot > 73626 73627 Signed-off-by: Sergey Kubushyn <ksi@koi8.net> 73628 Acked-by: Dirk Behme <dirk.behme@gmail.com> 73629 Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com> 73630 Acked-by: Stefan Roese <sr@denx.de> 73631 73632commit 2e4d94f1e3c2961428967a33b6ff2520568391b3 73633Author: Ed Swarthout <Ed.Swarthout@freescale.com> 73634Date: Fri Jul 27 01:50:45 2007 -0500 73635 73636 fsl_pci_init cleanup. 73637 73638 Do not enable normal errors created during probe (master abort, perr, 73639 and pcie Invalid Configuration access). 73640 73641 Add CONFIG_PCI_NOSCAN board option to prevent bus scan. 73642 73643 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 73644 Acked-by: Andy Fleming <afleming@freescale.com> 73645 73646commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a 73647Author: Ed Swarthout <Ed.Swarthout@freescale.com> 73648Date: Fri Jul 27 01:50:44 2007 -0500 73649 73650 pciauto_setup_device bars_num fix 73651 73652 Passing bars_num=0 to pciauto_setup_device should assign no bars. 73653 73654 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 73655 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com> 73656 Acked-by: Andy Fleming <afleming@freescale.com> 73657 73658commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4 73659Author: Jon Loeliger <jdl@freescale.com> 73660Date: Mon Aug 6 17:39:44 2007 -0500 73661 73662 8641hpcn: Do correct sized pointer math. 73663 73664 When I rebased Ed's patch and cleaned up a few compilation 73665 problems, I apparently rebased my brain on crack first. 73666 Fix that by doing (char *) sized pointer math as needed. 73667 73668 Signed-off-by: Jon Loeliger <jdl@freescale.com> 73669 73670commit cfc7a7f5bb3273c9951173c788001d45118f141f 73671Author: Jon Loeliger <jdl@freescale.com> 73672Date: Thu Aug 2 14:42:20 2007 -0500 73673 73674 cpu/86xx fixes. 73675 73676 Remove rev 1 fixes. 73677 Always set PICGCR_MODE. 73678 Enable machine check and provide board config option 73679 to set and handle SoC error interrupts. 73680 73681 Include MSSSR0 in error message. 73682 73683 Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT. 73684 73685 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 73686 Signed-off-by: Jon Loeliger <jdl@freescale.com> 73687 73688commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42 73689Author: Stefan Roese <sr@denx.de> 73690Date: Fri Aug 10 10:42:25 2007 +0200 73691 73692 Coding style cleanup 73693 73694 Signed-off-by: Stefan Roese <sr@denx.de> 73695 73696commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f 73697Author: Dirk Behme <dirk.behme@googlemail.com> 73698Date: Thu Aug 2 17:42:08 2007 +0200 73699 73700 Make use of generic 64bit division in nand_util.c 73701 73702 Use generic 64bit division in nand_util.c. This makes nand_util.c 73703 independent of any toolchain 64bit division. 73704 73705 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 73706 73707commit f7c086e94e8ce9aad7268af97f73aa6884686f27 73708Author: Dirk Behme <dirk.behme@googlemail.com> 73709Date: Thu Aug 2 17:41:14 2007 +0200 73710 73711 Move 64bit division from avr32 to generic lib 73712 73713 Move the 64bit division from lib_avr32 to lib_generic. With this, all 73714 boards can do_div/__div64_32 if needed, not only avr one. Code is put 73715 to lib_generic, so no larger memory footprint if not used. No code 73716 modifications. Thanks for proposal by HÃ¥vard Skinnemoen. 73717 73718 Signed-off-by: Dirk Behme <dirk.behme@gmail.com> 73719 73720commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894 73721Author: Niklaus Giger <niklausgiger@gmx.ch> 73722Date: Fri Jul 27 11:31:22 2007 +0200 73723 73724 Add PPC4xx-HCU4 and HCU5 boards: HCU5 files 73725 73726 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 73727 73728commit 6e5de26c6e7580faf16e87745cd488b92b492d0c 73729Author: Niklaus Giger <niklausgiger@gmx.ch> 73730Date: Fri Jul 27 11:30:33 2007 +0200 73731 73732 Add PPC4xx-HCU4 and HCU5 boards: HCU4 files 73733 73734 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 73735 73736commit e8397fc78c9394d71de233a4d810fbc9047e4c76 73737Author: Niklaus Giger <niklausgiger@gmx.ch> 73738Date: Fri Jul 27 11:38:26 2007 +0200 73739 73740 Add PPC4xx-HCU4 and HCU5 boards: common files 73741 73742 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 73743 73744commit ac982ea5a4f2f993efcf52dca122f5a59df047d8 73745Author: Niklaus Giger <niklausgiger@gmx.ch> 73746Date: Fri Jul 27 11:28:44 2007 +0200 73747 73748 Add PPC4xx-HCU4 and HCU5 boards: make related 73749 73750 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 73751 73752commit 137fdd9f474ecb853efdace5200576308c67f18d 73753Author: Niklaus Giger <niklausgiger@gmx.ch> 73754Date: Fri Jul 27 11:28:03 2007 +0200 73755 73756 Add PPC4xx-HCU4 and HCU5 boards: HCU5 config 73757 73758 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 73759 73760commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2 73761Author: Niklaus Giger <niklausgiger@gmx.ch> 73762Date: Fri Jul 27 11:27:15 2007 +0200 73763 73764 Add PPC4xx-HCU4 and HCU5 boards: HCU4 config 73765 73766 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 73767 73768commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421 73769Author: Niklaus Giger <niklausgiger@gmx.ch> 73770Date: Fri Jul 27 11:25:31 2007 +0200 73771 73772 Add PPC4xx-HCU4 and HCU5 boards: READMEs 73773 73774 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 73775 73776commit 641cca9569ce351ddb287fd3343d8b1dcb591db4 73777Author: Niklaus Giger <niklausgiger@gmx.ch> 73778Date: Fri Jul 27 11:37:40 2007 +0200 73779 73780 Add PPC4xx-HCU4 and HCU5 boards: Infrastructure 73781 73782 This series of patches adds support for 2 boards from Netstal Maschinen. 73783 73784 The HCU4 has a PPC405Gpr and 73785 the HCU5 has a PPC440EPX. 73786 73787 The HCU4 has a somehow complicated flash setup, as the booteprom is 73788 only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more 73789 elegant solution. 73790 73791 The HCU5 has only a booteprom as the whole code will be downloaded from a 73792 different board which has HD, CD-ROM, etc and where all code is stored. 73793 73794 This is my third try. I incorporated all suggestions made by Wolfgang and Stefan. 73795 Thanks them a lot. 73796 73797 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com> 73798 73799commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171 73800Author: Stefan Roese <sr@denx.de> 73801Date: Fri Aug 10 08:42:55 2007 +0200 73802 73803 ppc4xx: Update lwmon5 POST configuration 73804 73805 Signed-off-by: Stefan Roese <sr@denx.de> 73806 73807commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4 73808Author: Yuri Tikhonov <yur@emcraft.com> 73809Date: Fri Aug 10 08:25:22 2007 +0200 73810 73811 POST: Add ppc4xx UART POST support without external uart clock (lwmon5) 73812 73813 The patch adds support for UART POST on ppc44x-based boards with no 73814 external serial clocks installed. 73815 73816 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> 73817 Acked-by: Stefan Roese <sr@denx.de> 73818 73819commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f 73820Author: Kim Phillips <kim.phillips@freescale.com> 73821Date: Mon Aug 6 18:18:34 2007 -0500 73822 73823 mpc83xx: fix ITX[GP] O=builddir builds 73824 73825 make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'. Stop. 73826 73827 Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or 73828 "BUILD_DIR=<some dir> ./MAKEALL ..." 73829 73830 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73831 73832commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3 73833Author: Dave Liu <r63238@freescale.com> 73834Date: Wed Aug 1 15:00:59 2007 +0800 73835 73836 mpc83xx: Correct the README for DDR ECC 73837 73838 Update the README for DDR ECC, change the name 73839 to README.mpc83xx.ddrecc. 73840 73841 Signed-off-by: Dave Liu <daveliu@freescale.com> 73842 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73843 73844commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 73845Author: Dave Liu <r63238@freescale.com> 73846Date: Wed Aug 1 15:00:15 2007 +0800 73847 73848 mpc83xx: Consolidate the ECC support of 83xx 73849 73850 Remove the duplicated source code of ecc command on the <board>.c, 73851 for reused, move these code to cpu/mpc83xx directory. 73852 73853 Signed-off-by: Dave Liu <daveliu@freescale.com> 73854 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73855 73856commit 036575c544cf1b69654d8fb334bda69c6ff3da36 73857Author: Dave Liu <r63238@freescale.com> 73858Date: Sat Aug 4 13:37:39 2007 +0800 73859 73860 mpc83xx: Correct the burst length for DDR2 with 32 bits 73861 73862 The burst length should be 4 for DDR2 with 32 bits bus 73863 73864 Signed-off-by: Dave Liu <daveliu@freescale.com> 73865 73866commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed 73867Author: Kim Phillips <kim.phillips@freescale.com> 73868Date: Wed Jul 25 19:25:33 2007 -0500 73869 73870 mpc83xx: add support for the MPC8323E RDB 73871 73872 MPC8323E based board with 64MB fixed SDRAM, 16MB flash, 73873 five 10/100 ethernet ports connected via an ICPlus IP175C 73874 switch, one PCI slot, and serial. Features not supported 73875 in this patch are SD card interface, 2 USB ports, and the 73876 two phone ports. 73877 73878 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com> 73879 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73880 73881commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359 73882Author: Kim Phillips <kim.phillips@freescale.com> 73883Date: Wed Jul 25 19:25:28 2007 -0500 73884 73885 mpc83xx: fixup generic pci for libfdt 73886 73887 add libfdt support to the generic 83xx pci code 73888 73889 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73890 73891commit f57ac7a7b37109245b69db80839ebee26179966a 73892Author: Kim Phillips <kim.phillips@freescale.com> 73893Date: Wed Jul 25 19:25:22 2007 -0500 73894 73895 mpc83xx: fix 8360 and cpu functions to update fdt being passed 73896 73897 ..and not the global fdt. Rename local fdt vars to blob so as not to 73898 be confused with the global var with the same three-letter name. 73899 73900 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73901 73902commit 8be404459a6b7395415a57bb35e8377e3b2b5acb 73903Author: Jerry Van Baren <gvb.uboot@gmail.com> 73904Date: Wed Jul 4 21:34:24 2007 -0400 73905 73906 mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled 73907 73908 Several node strings were not correct (trailing slashes and properties 73909 in the strings) 73910 Added setting of the timebase-frequency. 73911 Improved error messages and use debug() instead of printf(). 73912 73913 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com> 73914 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73915 73916commit 26d02c9bbac1751c5e19294f000100b48d43a920 73917Author: Jerry Van Baren <gvb.uboot@gmail.com> 73918Date: Wed Jul 4 21:27:30 2007 -0400 73919 73920 mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path(). 73921 73922 The new name matches more closely the kernel's name, which is also 73923 a much better description. 73924 73925 These are the mpc83xx changes made necessary by the function name change. 73926 73927 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com> 73928 Acked-by: Gerald Van Baren <vanbaren@cideas.com> 73929 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73930 73931commit 9be39a67c9f8fef7107f5df09d673005f04d0963 73932Author: Dave Liu <daveliu@freescale.com> 73933Date: Mon Jun 25 10:41:56 2007 +0800 73934 73935 mpc83xx: Add support for the display of reset status 73936 73937 83xx processor family has many reset sources, such as 73938 power on reset, software hard reset, software soft reset, 73939 JTAG, bus monitor, software watchdog, check stop reset, 73940 external hard reset, external software reset. 73941 sometimes, to figure out the fault of system, we need to 73942 know the cause of reset early before the prompt of 73943 u-boot present. 73944 73945 Signed-off-by: Dave Liu <daveliu@freescale.com> 73946 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73947 73948commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d 73949Author: Dave Liu <daveliu@freescale.com> 73950Date: Mon Jun 25 10:41:04 2007 +0800 73951 73952 mpc83xx: Fix the align bug of SDMA buffer 73953 73954 According to the latest user manual, the SDMA temporary 73955 buffer base address must be 4KB aligned. 73956 73957 Signed-off-by: Dave Liu <daveliu@freescale.com> 73958 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73959 73960commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476 73961Author: Dave Liu <daveliu@freescale.com> 73962Date: Mon Jun 25 13:21:12 2007 +0800 73963 73964 mpc83xx: Revise the MPC8360EMDS readme doc 73965 73966 When the rev2.x silicon mount on the MPC8360EMDS baord, 73967 and if you are using the u-boot version after the commit 73968 3fc0bd159103b536e1c54c6f4457a09b3aba66ca. 73969 to make the ethernet interface usable, we have to setup 73970 the jumpers correctly. 73971 73972 Signed-off-by: Dave Liu <daveliu@freescale.com> 73973 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73974 73975commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c 73976Author: Timur Tabi <timur@freescale.com> 73977Date: Tue Jul 3 13:46:32 2007 -0500 73978 73979 FSL I2C driver programs the two I2C busses differently 73980 73981 The i2c_init() function in fsl_i2c.c programs the two I2C busses differently. 73982 The second I2C bus has its slave address programmed incorrectly and is 73983 missing a 5-us delay. 73984 73985 Signed-off-by: Timur Tabi <timur@freescale.com> 73986 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 73987 73988commit df33f6b4d6d63693dd9200808b242de1b86cb8e8 73989Author: Timur Tabi <timur@freescale.com> 73990Date: Tue Jul 3 13:04:34 2007 -0500 73991 73992 Update SCCR programming in cpu_init_f() to support all 83xx processors 73993 73994 Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the 73995 bitfields for all 83xx processors. The code to update some bitfields was 73996 compiled only on some processors. Now, the bitfields are programmed as long 73997 as the corresponding CFG_SCCR option is defined in the board header file. 73998 This means that the board header file should not define any CFG_SCCR macros 73999 for bitfields that don't exist on that processor, otherwise the SCCR will be 74000 programmed incorrectly.
74001 74002 Signed-off-by: Timur Tabi <timur@freescale.com> 74003 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 74004 74005commit 9546266999f0b9b51372636614211b88d90f0f25 74006Author: Martin Krause <martin.krause@tqs.de> 74007Date: Fri Jun 22 13:04:22 2007 +0200 74008 74009 TQM834x: cleanup configuraton 74010 74011 Remove irritating #undef DEBUG 74012 74013 Signed-off-by: Martin Krause <martin.krause@tqs.de> 74014 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 74015 74016commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc 74017Author: david.saada <David.Saada@ecitele.com> 74018Date: Mon Jun 18 09:09:53 2007 -0700 74019 74020 MPC83xx: Fix makefile to generate config.h file in the build directory 74021 74022 MPC83xx: Fix the Makefile config sections to generate the include/config.h 74023 file in the build directory instead of the source directory. 74024 74025 Signed-off-by: David Saada <david.saada@ecitele.com> 74026 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 74027 74028commit 1ded0242e437259366792d52b7e9d1e1931d8fa5 74029Author: Lee Nipper <Lee.Nipper@freescale.com> 74030Date: Thu Jun 14 20:07:33 2007 -0500 74031 74032 mpc83xx: Add support for 8360 silicon revision 2.1 74033 74034 This change adds 8360 silicon revision 2.1 support to u-boot. 74035 74036 Signed-off-by: Lee Nipper <lee.nipper@freescale.com> 74037 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 74038 74039commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4 74040Author: Kumar Gala <galak@kernel.crashing.org> 74041Date: Wed Aug 8 04:14:28 2007 -0500 74042 74043 Treat ppc64 host as ppc 74044 74045 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 74046 74047commit 0dc4279b08ff82472bec2e2c90858602459febe8 74048Author: Jason Jin <Jason.jin@freescale.com> 74049Date: Wed Aug 8 09:01:46 2007 +0800 74050 74051 Minor fix for bios emulator makefile 74052 74053 Add $(obj) to LIB avoiding objects be built in the source dir 74054 74055 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 74056 74057commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6 74058Author: Jason Jin <Jason.jin@freescale.com> 74059Date: Wed Aug 8 08:33:11 2007 +0800 74060 74061 Add CONFIG_BIOSEMU define to guard all the bios emulator code 74062 74063 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 74064 74065 This patch fix the compile issue on the board that did not enable the bios emulator 74066 74067commit ed8106433522f2ea8933e9808346860d061d7731 74068Author: Zach Sadecki <Zach.Sadecki@ripcode.com> 74069Date: Tue Jul 31 12:27:25 2007 -0500 74070 74071 tsec: fix multiple PHY support 74072 74073 The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx" 74074 broke multiple PHY support in tsec.c. This fixes it. 74075 74076 Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com> 74077 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 74078 74079commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede 74080Author: Joe Hamman <joe.hamman@embeddedspecialties.com> 74081Date: Thu Aug 9 09:08:18 2007 -0500 74082 74083 tsec: Allow Ten Bit Interface address to be configurable 74084 74085 Allow the address of the Ten Bit Interface (TBI) to be changed in the 74086 event of a conflict with another device. 74087 74088 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com> 74089 74090commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6 74091Author: Stefan Roese <sr@denx.de> 74092Date: Wed Aug 8 09:54:26 2007 +0200 74093 74094 Coding style cleanup 74095 74096 Signed-off-by: Stefan Roese <sr@denx.de> 74097 74098commit a41de1f0d373e09c782dea558385a06247111ba5 74099Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74100Date: Sun Aug 5 05:15:18 2007 -0500 74101 74102 Port enabled for I2C signals and chipselects port configuration. 74103 74104 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74105 74106commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f 74107Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74108Date: Sun Aug 5 04:31:18 2007 -0500 74109 74110 Added NAND support 74111 74112 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74113 74114commit eaf9e447beb3e498818ef8ad0b8c1597cd506149 74115Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74116Date: Sun Aug 5 04:11:20 2007 -0500 74117 74118 Added I2C support 74119 74120 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74121 74122commit 99c03c175d2689093176facf17c58ce2cb320001 74123Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74124Date: Sun Aug 5 03:58:52 2007 -0500 74125 74126 Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c 74127 74128 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74129 74130commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731 74131Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74132Date: Sun Aug 5 03:55:21 2007 -0500 74133 74134 Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf() 74135 74136 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74137 74138commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630 74139Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74140Date: Sun Aug 5 03:43:30 2007 -0500 74141 74142 Moved sync() from board file to include/asm-m68k/io.h 74143 74144 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74145 74146commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2 74147Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74148Date: Sun Aug 5 03:30:44 2007 -0500 74149 74150 Declared attributes of void __mii_init(void) as an alias for int mii_init(void) 74151 74152 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74153 74154commit 9998bd37ead85e93953559720710d3b0685c81e6 74155Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74156Date: Sun Aug 5 03:19:10 2007 -0500 74157 74158 Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART 74159 74160 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74161 74162commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c 74163Author: Jason Jin <Jason.jin@freescale.com> 74164Date: Tue Aug 7 16:17:06 2007 +0800 74165 74166 Add CONFIG_BIOSEMU define to guard all the bios emulator code 74167 74168 This patch fix the compile issue on the board that did not enable the bios emulator 74169 74170commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053 74171Author: Wolfgang Denk <wd@denx.de> 74172Date: Tue Aug 7 16:02:13 2007 +0200 74173 74174 Fix missing brace error in fs/fat/fat.c 74175 [pointed out by Roderik Wildenburg] 74176 74177 Signed-off-by: Wolfgang Denk <wd@denx.de> 74178 74179commit 706714d97a0d08d59eda4de2268c39f504688329 74180Author: Michal Simek <monstr@monstr.eu> 74181Date: Mon Aug 6 23:41:53 2007 +0200 74182 74183 [FIX] remove cute code 74184 74185commit f500d9fdeb576288656dac427052ad2c5ca0ad1a 74186Author: Michal Simek <monstr@monstr.eu> 74187Date: Mon Aug 6 23:35:26 2007 +0200 74188 74189 [FIX] Fix romfs code 74190 74191commit ab4b956d3143f8f8174089053f5dfabbb04762b0 74192Author: Michal Simek <monstr@monstr.eu> 74193Date: Mon Aug 6 23:31:49 2007 +0200 74194 74195 [FIX] Coding style cleanup - Wolfgang's suggestions 74196 74197commit 6c33c78557ca6f8da68c01ce33e278695197d3f4 74198Author: Wolfgang Denk <wd@denx.de> 74199Date: Mon Aug 6 23:21:05 2007 +0200 74200 74201 Fixed typo in README (pointed out by Martin Jost). 74202 74203 Signed-off-by: Wolfgang Denk <wd@denx.de> 74204 74205commit 537223afa61f64480df31ce440a9cb386df4a814 74206Author: Stefan Roese <sr@denx.de> 74207Date: Mon Aug 6 21:10:17 2007 +0200 74208 74209 ppc4xx: Update AMCC Bamboo README doc/README.bamboo 74210 74211 As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>, 74212 here an updated Bamboo README. 74213 74214 Signed-off-by: Stefan Roese <sr@denx.de> 74215 74216commit 9c7e4b06214db61bb21f1bcbe57c97519669baae 74217Author: Wolfgang Denk <wd@denx.de> 74218Date: Mon Aug 6 02:17:36 2007 +0200 74219 74220 Coding style cleanup. Update CHANGELOG. 74221 74222 Signed-off-by: Wolfgang Denk <wd@denx.de> 74223 74224commit 221838cc7eb178370ff62aa05920a582e12ac322 74225Author: Jason Jin <Jason.jin@freescale.com> 74226Date: Tue Jul 10 09:03:22 2007 +0800 74227 74228 Remove the bios emulator from MAI board. 74229 74230 The bios emulator in the MAI board can not pass compile 74231 and have a lot of crap in it. remove it and will have a 74232 clean and small bios emulator in the drivers directory 74233 which can be uesed for every board. 74234 74235 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 74236 74237commit 5618332409bb96f4448d1712899369fc80c0b489 74238Author: Jason Jin <Jason.jin@freescale.com> 74239Date: Fri Jul 13 12:14:59 2007 +0800 74240 74241 Fix some compile issues for MAI board. 74242 74243 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 74244 74245commit 0f460a1ee148b648ee242c3157650287d4296260 74246Author: Jason Jin <Jason.jin@freescale.com> 74247Date: Fri Jul 13 12:14:58 2007 +0800 74248 74249 Configurations for ATI video card BIOS emulator 74250 74251 This patch add definition of the BIOS emulator and the ATI framebuffer 74252 driver for MPC8641HPCN board. 74253 74254 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 74255 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 74256 74257commit ece92f85053b8df613edcf05b26a416cbc3d629c 74258Author: Jason Jin <Jason.jin@freescale.com> 74259Date: Fri Jul 6 08:34:56 2007 +0800 74260 74261 This is a BIOS emulator, porting from SciTech for u-boot, mainly for 74262 ATI video card BIOS. and can be used for x86 code emulation by some 74263 modifications. 74264 74265 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 74266 74267commit 5072188acabde3178fac7f5a597150e6e74fd40c 74268Author: Jason Jin <Jason.jin@freescale.com> 74269Date: Fri Jul 6 08:33:33 2007 +0800 74270 74271 This is a framebuffer driver for ATI video card, can work for PCI9200, 74272 X300, X700, X800 ATI video cards. 74273 74274 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 74275 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 74276 74277commit 5728be389e65fd47f34b33c2596271eb4db751ae 74278Author: Wolfgang Denk <wd@denx.de> 74279Date: Mon Aug 6 01:01:49 2007 +0200 74280 74281 Coding style cleanup. Update CHANGELOG. 74282 74283 Signed-off-by: Wolfgang Denk <wd@denx.de> 74284 74285commit 8092fef4c29b395958bb649647da7e3775731517 74286Author: Martin Krause <Martin.Krause@tqs.de> 74287Date: Tue Dec 12 14:26:01 2006 +0100 74288 74289 Add functions to list of exported functions 74290 74291 Additionally export the following fuctions (to make trab_config build again): 74292 - simple_strtol() 74293 - strcmp() 74294 74295 Also bump the ABI version to reflect this change 74296 74297 Signed-off-by: Martin Krause <martin.krause@tqs.de> 74298 74299commit 63cec5814fab5d2b1c86982327433807a5ac0249 74300Author: Ed Swarthout <Ed.Swarthout@freescale.com> 74301Date: Thu Aug 2 14:09:49 2007 -0500 74302 74303 Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts. 74304 74305 All of the PCI/PCI-Express driver and initialization code that 74306 was in the MPC8641HPCN port has now been moved into the common 74307 drivers/fsl_pci_init.c. In a subsequent patch, this will be 74308 utilized by the 85xx ports as well. 74309 74310 Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added. 74311 74312 Also enable the second PCI-Express controller on 8641 74313 by getting its BATS and CFG_ setup right. 74314 74315 Fixed a u16 vendor compiler warning in AHCI driver too. 74316 74317 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 74318 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 74319 Signed-off-by: Jon Loeliger <jdl@freescale.com> 74320 74321commit a274ca4f6d68830e7c916f897561cff8c4101c38 74322Author: Michal Simek <monstr@monstr.eu> 74323Date: Sun Aug 5 22:33:05 2007 +0200 74324 74325 [FIX] Coding style cleanup 74326 74327commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f 74328Author: Michal Simek <monstr@monstr.eu> 74329Date: Sun Aug 5 16:13:31 2007 +0200 74330 74331 [FIX] Xilinx Uartlite driver 74332 Because PPC405 can use UARTLITE serial interface and 74333 Microblaze can use Uart16550 serial interface not only Uartlite. 74334 74335commit 98889edd50aadf862071eb5664747ad0d568a20e 74336Author: Michal Simek <monstr@monstr.eu> 74337Date: Sun Aug 5 15:54:53 2007 +0200 74338 74339 [FIX] Change configuration for XUPV2P Microblaze board 74340 74341commit 537091b4eed9302865d03fef3f7212b4fe5cf28f 74342Author: Michal Simek <monstr@monstr.eu> 74343Date: Sun Aug 5 15:53:50 2007 +0200 74344 74345 [PATCH] Added support for Xilinx Emac community driver 74346 74347commit 86b116b1b1e165ca4840daefed36d2e3b8460173 74348Author: Bartlomiej Sieka <tur@semihalf.com> 74349Date: Fri Aug 3 12:08:16 2007 +0200 74350 74351 cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family. 74352 74353 Add the ability for modules from the Schindler cm5200 family to use a 74354 single U-Boot image: 74355 - rename cm1_qp1 to cm5200 74356 - add run-time module detection 74357 - parametrize SDRAM configuration according to the module we are running on 74358 74359 Few minor, board-specific fixes included in this patch: 74360 - better MAC address handling 74361 - updated default environment ('update' command uses +{filesize} now) 74362 - improved error messages in the auto-update code 74363 - allow booting U-Boot from RAM (CFG_RAMBOOT) 74364 74365 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 74366 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com> 74367 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 74368 74369commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779 74370Author: Andy Fleming <afleming@freescale.com> 74371Date: Fri Aug 3 04:05:25 2007 -0500 74372 74373 Add Marvell 1149 PHY support to the TSEC 74374 74375commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86 74376Author: Wolfgang Denk <wd@denx.de> 74377Date: Thu Aug 2 21:27:46 2007 +0200 74378 74379 Coding style cleanup, update CHANGELOG 74380 74381 Signed-off-by: Wolfgang Denk <wd@denx.de> 74382 74383commit 63e22764d2f8653f68888c667eb65b3996b52680 74384Author: Wolfgang Denk <wd@denx.de> 74385Date: Thu Aug 2 10:11:18 2007 +0200 74386 74387 Minor cleanup of <board>_nand build rules. 74388 74389commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef 74390Author: Stefan Roese <sr@denx.de> 74391Date: Thu Aug 2 08:33:56 2007 +0200 74392 74393 ppc4xx: Code cleanup 74394 74395 Signed-off-by: Stefan Roese <sr@denx.de> 74396 74397commit c92409812206ac67a7fa7aae298539a9c3804a46 74398Author: Grzegorz Bernacki <gjb@semihalf.com> 74399Date: Tue Jul 31 18:51:48 2007 +0200 74400 74401 [ppc440SPe] Graceful recovery from machine check during PCIe configuration 74402 74403 During config transactions on the PCIe bus an attempt to scan for a 74404 non-existent device can lead to a machine check exception with certain 74405 peripheral devices. In order to avoid crashing in such scenarios the 74406 instrumented versions of the config cycle read routines are introduced, so 74407 the exceptions fixups framework can gracefully recover. 74408 74409 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 74410 Acked-by: Rafal Jaworowski <raj@semihalf.com> 74411 74412commit dec99558b9ea75a37940d07f41a3565a50b54ad1 74413Author: Rafal Jaworowski <raj@semihalf.com> 74414Date: Tue Jul 31 18:19:54 2007 +0200 74415 74416 [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A 74417 74418 This brings back separate settings for PCIe bus numbers depending on chip 74419 revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa 74420 commit. 440SPe rev. A does NOT work properly with the same settings as for 74421 the rev. B (no devices are seen on the bus during enumeration). 74422 74423 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 74424 74425commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197 74426Author: Wolfgang Denk <wd@denx.de> 74427Date: Thu Aug 2 00:48:45 2007 +0200 74428 74429 Fix build errors and warnings / code cleanup. 74430 74431 Signed-off-by: Wolfgang Denk <wd@denx.de> 74432 74433commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68 74434Author: Eugene OBrien <eugene.obrien@advantechamt.com> 74435Date: Tue Jul 31 10:24:56 2007 +0200 74436 74437 ppc4xx: Update AMCC Bamboo 440EP support 74438 74439 Changed storage type of cfg_simulate_spd_eeprom to const 74440 Changed storage type of gpio_tab to stack storage 74441 (Cannot access global data declarations in .bss until afer code relocation) 74442 74443 Improved SDRAM tests to catch problems where data is not uniquely addressable 74444 (e.g. incorrectly programmed SDRAM row or columns) 74445 74446 Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules 74447 Fixed AM29LV320DT (OpCode Flash) sector map 74448 74449 Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com> 74450 Signed-off-by: Stefan Roese <sr@denx.de> 74451 74452commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574 74453Author: Stefan Roese <sr@denx.de> 74454Date: Tue Jul 31 08:37:01 2007 +0200 74455 74456 ppc4xx: Update 440EPx lwmon5 board support 74457 74458 - Clear ECC status regs after ECC POST test 74459 - Set dcbz for ECC generation with caches enabled as default 74460 - Code cleanup 74461 74462 Signed-off-by: Stefan Roese <sr@denx.de> 74463 74464commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724 74465Author: Stefan Roese <sr@denx.de> 74466Date: Mon Jul 30 11:04:57 2007 +0200 74467 74468 ppc4xx: Only print ECC related info when the error bis are set 74469 74470 Signed-off-by: Stefan Roese <sr@denx.de> 74471 74472commit e36220a4baf1f188ba60f17e9d0f043069b1362a 74473Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 74474Date: Fri Jul 27 16:44:31 2007 +0200 74475 74476 new FPGA image for PLU405 board 74477 74478 new FPGA image for PLU405 board with improved CompactFlash timing 74479 74480 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 74481 74482commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6 74483Author: Rafal Jaworowski <raj@semihalf.com> 74484Date: Fri Jul 27 14:43:59 2007 +0200 74485 74486 [ADS5121] Support for the ADS5121 board 74487 74488 The following MPC5121e subsystems are supported: 74489 74490 - low-level CPU init 74491 - NOR Boot Flash (common CFI driver) 74492 - DDR SDRAM 74493 - FEC 74494 - I2C 74495 - Watchdog 74496 74497 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 74498 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 74499 Signed-off-by: Jan Wrobel <wrr@semihalf.com> 74500 74501commit 1863cfb7b100ba0ee3401799457a01dc058745f8 74502Author: Rafal Jaworowski <raj@semihalf.com> 74503Date: Fri Jul 27 14:22:04 2007 +0200 74504 74505 [PPC] Remove unused MSR_USER definition 74506 74507 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 74508 74509commit d4024bb72dd81695ec099b2199eda0d27c623e62 74510Author: John Otken <john@softadvances.com> 74511Date: Thu Jul 26 17:49:11 2007 +0200 74512 74513 ppc4xx: Add support for AMCC 405EP Taihu board 74514 74515 Signed-off-by: John Otken <john@softadvances.com> 74516 74517commit b66091de6c7390620312c2501db23d8391e7cabb 74518Author: Anatolij Gustschin <agust@denx.de> 74519Date: Thu Jul 26 15:08:01 2007 +0200 74520 74521 ppc4xx: lwmon5: Update Lime initialization 74522 74523 Change Lime SDRAM initialization to now support 100MHz and 74524 133MHz (if enabled). Also the framebuffer is initialized to 74525 display a blue rectangle with a white border. 74526 74527 Signed-off-by: Anatolij Gustschin <agust@denx.de> 74528 Signed-off-by: Stefan Roese <sr@denx.de> 74529 74530commit 9f24a808f17fc0f37b7fb4805f734741335caecc 74531Author: Stefan Roese <sr@denx.de> 74532Date: Tue Jul 24 09:52:52 2007 +0200 74533 74534 ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added 74535 74536 The used Intel NOR FLASH chips have internally two dies, and are now 74537 treated as two seperate chips. 74538 74539 Signed-off-by: Stefan Roese <sr@denx.de> 74540 74541commit aedf5bde179ecfbd0a96130d18996a96518b785f 74542Author: Stefan Roese <sr@denx.de> 74543Date: Tue Jul 24 07:20:09 2007 +0200 74544 74545 ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...) 74546 74547 As suggested by Hakan Eryigit, here an updated setup for the lwmon5 74548 interrupt controller. 74549 74550 Signed-off-by: Stefan Roese <sr@denx.de> 74551 74552commit a71d96eac8130b53a91f93cd10c70fca0db18d52 74553Author: Stefan Roese <sr@denx.de> 74554Date: Fri Jul 20 15:03:44 2007 +0200 74555 74556 ppc4xx: Fix bug with default GPIO output value 74557 74558 As spotted by Matthias Fuchs, the default output values for all GPIO1 74559 outputs were not setup correctly. This patch fixes this issue. 74560 74561 Signed-off-by: Stefan Roese <sr@denx.de> 74562 74563commit 531e3e8b831f357056448fa573137d5fb37000fd 74564Author: Pavel Kolesnikov <concord@emcraft.com> 74565Date: Fri Jul 20 15:03:03 2007 +0200 74566 74567 POST: Add ECC POST for the lwmon5 board 74568 74569 This patch adds ECC Post test for the Lwmon5 board based 74570 on PPC440EPx to U-Boot. 74571 74572 Signed-off-by: Pavel Kolesnikov <concord@emcraft.com> 74573 Acked-by: Yuri Tikhonov <yur@emcraft.com> 74574 Acked-by: Stefan Roese <sr@denx.de> 74575 74576commit cc3023b9f95d7ac959a764471a65001062aecf41 74577Author: Rafal Jaworowski <raj@semihalf.com> 74578Date: Thu Jul 19 17:12:28 2007 +0200 74579 74580 Fix breakage of 8xx boards from recent commit. 74581 74582 This patch fixes the negative consequences for 8xx of the recent 74583 "ppc4xx: Clean up 440 exceptions handling" commit. 74584 74585 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 74586 74587commit c883f6ea32dce91f07670b3aafecf6c99b1e5341 74588Author: Stefan Roese <sr@denx.de> 74589Date: Mon Jul 16 13:11:12 2007 +0200 74590 74591 Coding style cleanup 74592 74593 Signed-off-by: Stefan Roese <sr@denx.de> 74594 74595commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf 74596Author: Stefan Roese <sr@denx.de> 74597Date: Mon Jul 16 10:02:12 2007 +0200 74598 74599 ppc4xx: Code cleanup 74600 74601 Signed-off-by: Stefan Roese <sr@denx.de> 74602 74603commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8 74604Author: Stefan Roese <sr@denx.de> 74605Date: Mon Jul 16 10:01:38 2007 +0200 74606 74607 ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup 74608 74609 Signed-off-by: Stefan Roese <sr@denx.de> 74610 74611commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9 74612Author: Stefan Roese <sr@denx.de> 74613Date: Mon Jul 16 10:00:43 2007 +0200 74614 74615 ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c 74616 74617 The new boardspecific DDR2 controller configuration is used for the Yucca 74618 board. Now the Yucca board with 440SPe Rev. A chips is also supported. 74619 74620 Signed-off-by: Stefan Roese <sr@denx.de> 74621 74622commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e 74623Author: Stefan Roese <sr@denx.de> 74624Date: Mon Jul 16 09:57:00 2007 +0200 74625 74626 ppc4xx: Add new weak functions to support boardspecific DDR2 configuration 74627 74628 The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better 74629 support non default, boardspecific DDR(2) controller configuration. 74630 74631 Signed-off-by: Stefan Roese <sr@denx.de> 74632 74633commit 5743a9207a370b90f09b20ebd61167c806b937f3 74634Author: Stefan Roese <sr@denx.de> 74635Date: Mon Jul 16 08:53:51 2007 +0200 74636 74637 ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup 74638 74639 The new function remove_tlb() can be used to remove the TLB's used to 74640 map a specific memory region. This is especially useful for the DDR(2) 74641 setup routines which configure the SDRAM area temporarily as a cached 74642 area (for speedup on auto-calibration and ECC generation) and later 74643 need this area uncached for normal usage. 74644 74645 Signed-off-by: Stefan Roese <sr@denx.de> 74646 74647commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae 74648Author: Michal Simek <monstr@monstr.eu> 74649Date: Mon Jul 16 00:31:07 2007 +0200 74650 74651 [PATCH] Support for Xilinx EmacLite controller 74652 74653commit 3a6cab844cf74f76639d795e0be8717e02c86af7 74654Author: Wolfgang Denk <wd@denx.de> 74655Date: Sat Jul 14 22:51:02 2007 +0200 74656 74657 Update CHANGELOG 74658 74659 Signed-off-by: Wolfgang Denk <wd@denx.de> 74660 74661commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1 74662Author: Michal Simek <monstr@monstr.eu> 74663Date: Sat Jul 14 13:11:28 2007 +0200 74664 74665 [FIX] support for simply measuring time 74666 74667commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43 74668Author: Michal Simek <monstr@monstr.eu> 74669Date: Sat Jul 14 12:41:23 2007 +0200 74670 74671 [FS] Added support for ROMFS 74672 74673commit 011595307731a7a67a7445d107c279d031e8ab97 74674Author: Heiko Schocher <hs@pollux.denx.de> 74675Date: Sat Jul 14 01:06:58 2007 +0200 74676 74677 [PCS440EP] - fix compile error, if BUILD_DIR is used 74678 74679commit 5a2f1098d81ad58b309e5e558d0492643166a799 74680Author: Michal Simek <monstr@monstr.eu> 74681Date: Sat Jul 14 00:18:48 2007 +0200 74682 74683 [PATCH] Support time without timer 74684 74685commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0 74686Author: Michal Simek <monstr@monstr.eu> 74687Date: Fri Jul 13 21:43:55 2007 +0200 74688 74689 [PATCH] Remove problem with disabled BARREL SHIFTER 74690 74691commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94 74692Author: Michal Simek <monstr@monstr.eu> 74693Date: Fri Jul 13 21:41:44 2007 +0200 74694 74695 [FIX] correct help for rspr 74696 74697commit fad63407154f46246ce80d53a9c669a44362ac67 74698Author: Heiko Schocher <hs@pollux.denx.de> 74699Date: Fri Jul 13 09:54:17 2007 +0200 74700 74701 make show_boot_progress () weak. 74702 74703 Signed-off-by: Heiko Schocher <hs@denx.de> 74704 74705commit 907902472391b6ca1876ec300687562ecaf459b1 74706Author: Heiko Schocher <hs@pollux.denx.de> 74707Date: Fri Jul 13 08:26:05 2007 +0200 74708 74709 [PCS440EP] - The DIAG LEDs are now blinking, if an error occur 74710 - fix compile error, if BUILD_DIR is used 74711 74712 Signed-off-by: Heiko Schocher <hs@denx.de> 74713 74714commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578 74715Author: Stefan Roese <sr@denx.de> 74716Date: Thu Jul 12 16:32:08 2007 +0200 74717 74718 ppc4xx: Change receive buffer handling in the 4xx emac driver 74719 74720 This change fixes a bug in the receive buffer handling, that 74721 could lead to problems upon high network traffic (broadcasts...). 74722 74723 Signed-off-by: Stefan Roese <sr@denx.de> 74724 74725commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360 74726Author: Wolfgang Denk <wd@denx.de> 74727Date: Thu Jul 12 01:45:34 2007 +0200 74728 74729 Update CHANGELOG, minor coding style cleanup. 74730 74731 Signed-off-by: Wolfgang Denk <wd@denx.de> 74732 74733commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654 74734Author: Andy Fleming <afleming@freescale.com> 74735Date: Fri Jun 8 16:41:18 2007 -0500 74736 74737 Remove erroneous errata code from Marvel 88E1111S driver 74738 74739 The Marvel 88E1111S driver for the TSEC was copied from the 74740 88E1101 driver, and included a fix for an erratum which does not 74741 exist on that part. Now it is removed 74742 74743 Signed-off-by: Andy Fleming <afleming@freescale.com> 74744 74745commit 982efcf23fd03647e01e2fbe28a7a36239156cc0 74746Author: Andy Fleming <afleming@freescale.com> 74747Date: Tue Jun 5 16:38:44 2007 -0500 74748 74749 From: eran liberty <eran.liberty@gmail.com> 74750 74751 adds the reset register to 85xx immap 74752 74753 Signed-off-by: Eran Liberty <eran.liberty@gmail.com> 74754 Signed-off-by: Andy Fleming <afleming@freescale.com> 74755 74756commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7 74757Author: Andy Fleming <afleming@freescale.com> 74758Date: Thu May 10 17:50:01 2007 -0500 74759 74760 Polished the 85xx ADS config files 74761 74762 Made the boot commands use device trees by default. 74763 Also moved the ramdisk to 1000000 (I think the previous address 74764 was getting overridden during boot). 74765 74766 Signed-off-by: Andy Fleming <afleming@freescale.com> 74767 74768commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038 74769Author: Ed Swarthout <Ed.Swarthout@freescale.com> 74770Date: Wed May 9 11:03:32 2007 -0500 74771 74772 8544ds: Fix Makefile after moving pixis to board/freescale. 74773 74774 The OBJTREE != SRCTREE build scenario was broken. 74775 This fixes it. 74776 74777 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 74778 Signed-off-by: Jon Loeliger <jdl@freescale.com> 74779 74780commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e 74781Author: Andy Fleming <afleming@freescale.com> 74782Date: Wed May 9 00:54:20 2007 -0500 74783 74784 tsec: Fix PHY code to match first driver 74785 74786 Jarrold Wen noticed that the generic PHY code always matches 74787 under the current implementation. Change it so the first match 74788 wins, and *only* unknown PHYs trigger the generic driver 74789 74790 Signed-off-by: Andy Fleming <afleming@freescale.com> 74791 74792commit ccc091aac61a38cd998d575d92f7232e256d6312 74793Author: Andy Fleming <afleming@freescale.com> 74794Date: Tue May 8 17:27:43 2007 -0500 74795 74796 Add support for CPM device tree configuration to 8560 ADS 74797 74798 * Adds code to modify CPM frequencies 74799 * Cleans up the config file to #define TSEC and (for now) #undef FCC 74800 * Adds the MII command for all 8560 ADS configurations 74801 * Updates config file to provide convenience commands for booting 74802 with a device tree 74803 74804 Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com> 74805 Signed-off-by: Andy Fleming <afleming@freescale.com> 74806 74807commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9 74808Author: Andy Fleming <afleming@freescale.com> 74809Date: Tue May 8 17:23:02 2007 -0500 74810 74811 Fix Marvell 88e1145 PHY init code 74812 74813 Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver 74814 where the reset was being done after the errata code instead of 74815 before. 74816 74817 Signed-off-by: Haiying Wang <haiying.wang@freescale.com> 74818 Signed-off-by: Andy Fleming <afleming@freescale.com> 74819 74820commit 5dc210dec5bace98a50b6ba905347890091a9bb0 74821Author: Ed Swarthout <Ed.Swarthout@freescale.com> 74822Date: Wed Jul 11 14:52:16 2007 -0500 74823 74824 Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC. 74825 74826 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 74827 74828commit e8b85f3ba4cd8930e0a2fea2100c815d64201765 74829Author: Ed Swarthout <Ed.Swarthout@freescale.com> 74830Date: Wed Jul 11 14:52:08 2007 -0500 74831 74832 pciauto setup bridge 74833 74834 The P2P bridge bus numbers programmed into the device are relative to 74835 hose->first_busno. 74836 74837 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 74838 74839commit 571f49fa717004ca4268b4e24057efc7bf9f987b 74840Author: Ed Swarthout <Ed.Swarthout@freescale.com> 74841Date: Wed Jul 11 14:52:01 2007 -0500 74842 74843 Support PCIe extended config registers 74844 74845 FSL PCIe block has extended cfg registers in the 100 and 400 range. 74846 For example, to read the LTSSM register: pci display <busn>.0 404 1 74847 74848 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 74849 74850commit ba5feb12581bb2912ce301e4866b71f846e9fc07 74851Author: Ed Swarthout <Ed.Swarthout@freescale.com> 74852Date: Wed Jul 11 14:51:48 2007 -0500 74853 74854 Minor improvements to drivers/pci_auto.c 74855 74856 - Make pciauto_{pre,post}scan_setup_bridge non-static 74857 - Added physical address display in debug messages. 74858 74859 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 74860 74861commit 40e81addab7bb74d20ddf681ce9babc880a828ee 74862Author: Ed Swarthout <Ed.Swarthout@freescale.com> 74863Date: Wed Jul 11 14:51:35 2007 -0500 74864 74865 Start pci hose scan from hose->current_busno. 74866 74867 Ensure hose->current_busno is not less than first_busno. This fixes 74868 broken board code which leaves current_busno=0 when first_busno is 74869 greater than 0 for the cases with multiple controllers. 74870 74871 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 74872 74873commit 3865b1fb7843a08ad49a6319a36415752276ff48 74874Author: Stefan Roese <sr@denx.de> 74875Date: Wed Jul 11 12:13:53 2007 +0200 74876 74877 Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup 74878 74879 Signed-off-by: Stefan Roese <sr@denx.de> 74880 74881commit fa1df308926a6f70e3504c57514ef27ac31fd13a 74882Author: Bartlomiej Sieka <tur@semihalf.com> 74883Date: Wed Jul 11 20:11:07 2007 +0200 74884 74885 CM1.QP1: Support for the Schindler CM1.QP1 board. 74886 74887 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com> 74888 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 74889 74890commit 96e1d75be8193ca79e4215a368bf9d7f2362450f 74891Author: Heiko Schocher <hs@pollux.denx.de> 74892Date: Wed Jul 11 18:39:11 2007 +0200 74893 74894 [PCS440EP] - Show on the DIAG LEDs, if the SHA1 check failed 74895 - now the Flash ST M29W040B is supported (not tested) 74896 - fix the "led" command 74897 - fix compile error, if BUILD_DIR is used 74898 74899 Signed-off-by: Heiko Schocher <hs@denx.de> 74900 74901commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5 74902Author: Stefan Roese <sr@denx.de> 74903Date: Sun Jul 8 13:44:27 2007 +0200 74904 74905 Fix malloc problem introduced with the relocation fixup for the PPC platform 74906 74907 The relocation fixup didn't handle the malloc pointer initialization 74908 correctly. This patch fixes this problem. Tested successfully on 4xx. 74909 The relocation fixup patches for 4xx will follow soon. 74910 74911 Signed-off-by: Stefan Roese <sr@denx.de> 74912 74913commit 0dca874db62718e41253659e60f3a1de7eb418ce 74914Author: TsiChung <tcliew@Goku.(none)> 74915Date: Tue Jul 10 15:45:43 2007 -0500 74916 74917 Cache update and added CFG_UNIFY_CACHE 74918 74919 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. 74920 74921 Signed-off-by: TsiChung <tcliew@Goku.(none)> 74922 74923commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005 74924Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74925Date: Thu Jul 5 23:36:16 2007 -0500 74926 74927 Update header file. Include dtimer_intr_setup(). Changed timer divider to global define. 74928 74929 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 74930 74931 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74932 74933commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac 74934Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74935Date: Thu Jul 5 23:31:25 2007 -0500 74936 74937 Update header files 74938 74939 Include immap.h and renamed mcfrtc.h to rtc.h 74940 74941 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74942 74943commit 2870e98ac8e5553e9187b12a47e5f46babb53990 74944Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74945Date: Thu Jul 5 23:29:21 2007 -0500 74946 74947 Add mcffec_initialize() 74948 74949 Added mcffec_initialize() in eth_initialize() 74950 74951 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74952 74953commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d 74954Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74955Date: Thu Jul 5 23:27:40 2007 -0500 74956 74957 Update header file and clean up 74958 74959 Include immap.h 74960 74961 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74962 74963commit 0cee9c66318602c856a899ae5fa7579ccba6443a 74964Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74965Date: Thu Jul 5 23:23:15 2007 -0500 74966 74967 New uart structure and defines 74968 74969 Seperated from mcfuart.h 74970 74971 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74972 74973commit a90e79de8d99e9c9d69d60bfff9f24c337165900 74974Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74975Date: Thu Jul 5 23:22:31 2007 -0500 74976 74977 New timer structure and defines 74978 74979 Seperated from mcftimer.h 74980 74981 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74982 74983commit e04acb2eba4782489417240eff76e20e176aec10 74984Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74985Date: Thu Jul 5 23:21:09 2007 -0500 74986 74987 Rename mcfrtc to rtc 74988 74989 Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h 74990 74991 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74992 74993commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5 74994Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 74995Date: Thu Jul 5 23:17:36 2007 -0500 74996 74997 Rename mcfserial.c. Update include header 74998 74999 Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h 75000
75001 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75002 75003commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e 75004Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75005Date: Thu Jul 5 23:13:58 2007 -0500 75006 75007 Header file update, clean up and cache handling 75008 75009 Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid. 75010 75011 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75012 75013commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97 75014Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75015Date: Thu Jul 5 23:10:40 2007 -0500 75016 75017 Create interrupts.c and modify Makefile 75018 75019 interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile 75020 75021 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75022 75023commit ddd104f1ed655eda50c06ba636237a83ed943f34 75024Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75025Date: Thu Jul 5 23:06:55 2007 -0500 75026 75027 Enable Icache 75028 75029 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75030 75031commit b9bf3de377b2bae70c983c9b97feae914999e735 75032Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75033Date: Thu Jul 5 23:05:31 2007 -0500 75034 75035 Update header file and some clean up 75036 75037 Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces. 75038 75039 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75040 75041commit 84a015b52ec820a5ae173717d78516de731c89c2 75042Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75043Date: Thu Jul 5 23:03:28 2007 -0500 75044 75045 Update header file and enable icache 75046 75047 Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r(). 75048 75049 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75050 75051commit 7a17e759c7a8b58e910daf54df611e94fc8ca074 75052Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75053Date: Thu Jul 5 23:01:22 2007 -0500 75054 75055 Update header file and removed interrupt_init() 75056 75057 Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c 75058 75059 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75060 75061commit 3b635492c95bd0d6e08f93f699821cba1f602a64 75062Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75063Date: Thu Jul 5 22:57:46 2007 -0500 75064 75065 Update for flash.o and mii.o 75066 75067 Removed flash.o and added mii.o 75068 75069 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75070 75071commit c5ded275d839e4ff79f41718d50a835d989f57bc 75072Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75073Date: Thu Jul 5 22:56:19 2007 -0500 75074 75075 MII functions calls. 75076 75077 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75078 75079commit 427c814104560e29bda14955c67703245aaaa5b4 75080Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75081Date: Thu Jul 5 22:54:42 2007 -0500 75082 75083 Removed MII functions and replaced immap_5329.h and m5329.h with immap.h. 75084 75085 The removed MII routines will be placed in mii.c. 75086 75087 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75088 75089commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2 75090Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75091Date: Thu Jul 5 22:51:05 2007 -0500 75092 75093 Duplicate code 75094 75095 There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file. 75096 75097 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75098 75099commit 2744354a8437b8f78db178e30660215688bff570 75100Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75101Date: Thu Jul 5 22:46:38 2007 -0500 75102 75103 Seperate old structure defines and new structure defines 75104 75105 Removed new uart structure and defines to uart.h 75106 75107 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75108 75109commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230 75110Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75111Date: Thu Jul 5 22:45:01 2007 -0500 75112 75113 Seperate old structure defines and new structure defines 75114 75115 New timer structure and defines will move to new timer.h 75116 75117 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75118 75119commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784 75120Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75121Date: Thu Jul 5 22:42:23 2007 -0500 75122 75123 Clean up 75124 75125 Removed whitespace 75126 75127 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75128 75129commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2 75130Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75131Date: Thu Jul 5 22:41:24 2007 -0500 75132 75133 Clean up 75134 75135 Replaced whitespace with tabs 75136 75137 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75138 75139commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd 75140Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75141Date: Thu Jul 5 22:39:07 2007 -0500 75142 75143 Create new header file and move peripherals base address from configs file to new header file. 75144 75145 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. 75146 75147 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75148 75149commit be296e31c4411f96d9cb3d2afc8fcb006867abfa 75150Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75151Date: Thu Jul 5 22:24:58 2007 -0500 75152 75153 Revert file mode 75154 75155 Changed MAKEALL file mode to executable, removed executable file mode from Makefile 75156 75157 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> 75158 75159commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582 75160Author: Jon Loeliger <jdl@freescale.com> 75161Date: Tue Jul 10 11:19:50 2007 -0500 75162 75163 disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols. 75164 75165 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. 75166 Those always evaluated TRUE, and thus were always compiled 75167 even when IDE really wasn't defined/wanted. 75168 75169 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75170 75171commit ddb5d86f0215bcb6c293510c50eb050e92883b7a 75172Author: Jon Loeliger <jdl@freescale.com> 75173Date: Tue Jul 10 11:13:21 2007 -0500 75174 75175 drivers/: Remove lingering references to CFG_CMD_* symbols. 75176 75177 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. 75178 Those always evaluated TRUE, and thus were always compiled 75179 even when IDE really wasn't defined/wanted. 75180 75181 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75182 75183commit f40a7f3e3888b42a43674b099e5470022c8c544c 75184Author: Jon Loeliger <jdl@freescale.com> 75185Date: Tue Jul 10 11:07:56 2007 -0500 75186 75187 fs/: Remove lingering references to CFG_CMD_* symbols. 75188 75189 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. 75190 Those always evaluated TRUE, and thus were always compiled 75191 even when IDE really wasn't defined/wanted. 75192 75193 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75194 75195commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593 75196Author: Jon Loeliger <jdl@freescale.com> 75197Date: Tue Jul 10 11:05:02 2007 -0500 75198 75199 net/: Remove lingering references to CFG_CMD_* symbols. 75200 75201 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. 75202 Those always evaluated TRUE, and thus were always compiled 75203 even when IDE really wasn't defined/wanted. 75204 75205 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75206 75207commit 902531788376046da212afd1661cffb62f3daa1c 75208Author: Jon Loeliger <jdl@freescale.com> 75209Date: Tue Jul 10 11:02:44 2007 -0500 75210 75211 common/: Remove lingering references to CFG_CMD_* symbols. 75212 75213 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. 75214 Those always evaluated TRUE, and thus were always compiled 75215 even when IDE really wasn't defined/wanted. 75216 75217 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75218 75219commit d39b57415838c73fb0a37eca84de3c68ba990586 75220Author: Jon Loeliger <jdl@freescale.com> 75221Date: Tue Jul 10 10:48:22 2007 -0500 75222 75223 board/[j-z]*: Remove lingering references to CFG_CMD_* symbols. 75224 75225 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. 75226 Those always evaluated TRUE, and thus were always compiled 75227 even when IDE really wasn't defined/wanted. 75228 75229 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75230 75231commit 77a318545d57aefa844752465b94c7e09a3f26d0 75232Author: Jon Loeliger <jdl@freescale.com> 75233Date: Tue Jul 10 10:39:10 2007 -0500 75234 75235 board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols. 75236 75237 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. 75238 Those always evaluated TRUE, and thus were always compiled 75239 even when IDE really wasn't defined/wanted. 75240 75241 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75242 75243commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d 75244Author: Jon Loeliger <jdl@freescale.com> 75245Date: Tue Jul 10 10:27:39 2007 -0500 75246 75247 cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols. 75248 75249 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75250 75251commit 079a136c3588814784561d6e4856970ee82d6e2a 75252Author: Jon Loeliger <jdl@freescale.com> 75253Date: Tue Jul 10 10:12:10 2007 -0500 75254 75255 include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*. 75256 75257 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h 75258 used to be included but CONFIG_BOOTP_MASK was not defined. 75259 75260 Remove lingering references to CFG_CMD_* symbols. 75261 75262 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75263 75264commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c 75265Author: Jon Loeliger <jdl@freescale.com> 75266Date: Tue Jul 10 09:38:02 2007 -0500 75267 75268 include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*. 75269 75270 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h 75271 used to be included but CONFIG_BOOTP_MASK was not defined. 75272 75273 Remove lingering references to CFG_CMD_* symbols. 75274 75275 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75276 75277commit 80ff4f99b84b64edca3fd10da365ec1493be1c95 75278Author: Jon Loeliger <jdl@freescale.com> 75279Date: Tue Jul 10 09:29:01 2007 -0500 75280 75281 include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*. 75282 75283 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h 75284 used to be included but CONFIG_BOOTP_MASK was not defined. 75285 75286 Remove lingering references to CFG_CMD_* symbols. 75287 75288 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75289 75290commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a 75291Author: Jon Loeliger <jdl@freescale.com> 75292Date: Tue Jul 10 09:22:23 2007 -0500 75293 75294 include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*. 75295 75296 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h 75297 used to be included but CONFIG_BOOTP_MASK was not defined. 75298 75299 Remove lingering references to CFG_CMD_* symbols. 75300 75301 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75302 75303commit 659e2f6736232a08acca8785c206e2b4d9cd07d7 75304Author: Jon Loeliger <jdl@freescale.com> 75305Date: Tue Jul 10 09:10:49 2007 -0500 75306 75307 include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*. 75308 75309 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h 75310 used to be included but CONFIG_BOOTP_MASK was not defined. 75311 75312 Remove lingering references to CFG_CMD_* symbols. 75313 75314 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75315 75316commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b 75317Author: Jon Loeliger <jdl@freescale.com> 75318Date: Tue Jul 10 09:02:57 2007 -0500 75319 75320 include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*. 75321 75322 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h 75323 used to be included but CONFIG_BOOTP_MASK was not defined. 75324 75325 Remove lingering references to CFG_CMD_* symbols. 75326 75327 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75328 75329commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3 75330Author: Jon Loeliger <jdl@freescale.com> 75331Date: Mon Jul 9 22:08:34 2007 -0500 75332 75333 Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK! 75334 75335 All of the choices for CONFIG_BOOTP_ are now documented in 75336 the README file. You must now individually select exactly 75337 the set that you want using a series of 75338 #define CONFIG_BOOTP_<x> 75339 statements in the board port config files now. 75340 75341 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75342 75343commit d3b8c1a743dcd31625c99e6a44590f207eb00028 75344Author: Jon Loeliger <jdl@freescale.com> 75345Date: Mon Jul 9 21:57:31 2007 -0500 75346 75347 include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK. 75348 75349 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75350 75351commit 2fd90ce575b02d189cbf443c85309bcd001aa393 75352Author: Jon Loeliger <jdl@freescale.com> 75353Date: Mon Jul 9 21:48:26 2007 -0500 75354 75355 include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK. 75356 75357 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75358 75359commit 37d4bb70586659dedef1658ce1bed071be098aec 75360Author: Jon Loeliger <jdl@freescale.com> 75361Date: Mon Jul 9 21:38:02 2007 -0500 75362 75363 include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK. 75364 75365 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75366 75367commit 18225e8dd1950bd6dbf35011e436db7f474c187d 75368Author: Jon Loeliger <jdl@freescale.com> 75369Date: Mon Jul 9 21:31:24 2007 -0500 75370 75371 include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK. 75372 75373 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75374 75375commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d 75376Author: Jon Loeliger <jdl@freescale.com> 75377Date: Mon Jul 9 21:24:19 2007 -0500 75378 75379 include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK. 75380 75381 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75382 75383commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f 75384Author: Jon Loeliger <jdl@freescale.com> 75385Date: Mon Jul 9 21:16:53 2007 -0500 75386 75387 include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK. 75388 75389 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75390 75391commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3 75392Author: Jon Loeliger <jdl@freescale.com> 75393Date: Mon Jul 9 19:12:30 2007 -0500 75394 75395 Retire CONFIG_COMMANDS finally. 75396 Strip old CFG_CMD_* symbols out. 75397 75398 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75399 75400commit b5501f7d720fed99ab0b42c83f5dea52868ce007 75401Author: Jon Loeliger <jdl@freescale.com> 75402Date: Mon Jul 9 19:10:03 2007 -0500 75403 75404 Update README.* to reference new CONFIG_CMD_* names now. 75405 75406 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75407 75408commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9 75409Author: Jon Loeliger <jdl@freescale.com> 75410Date: Mon Jul 9 19:06:00 2007 -0500 75411 75412 cpu/m*: Remove obsolete references to CONFIG_COMMANDS 75413 75414 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75415 75416commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa 75417Author: Jon Loeliger <jdl@freescale.com> 75418Date: Mon Jul 9 18:57:22 2007 -0500 75419 75420 cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS 75421 75422 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75423 75424commit ab3abcbabd840928fb1eb5122118ca466b5e5013 75425Author: Jon Loeliger <jdl@freescale.com> 75426Date: Mon Jul 9 18:45:16 2007 -0500 75427 75428 board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS 75429 75430 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75431 75432commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9 75433Author: Jon Loeliger <jdl@freescale.com> 75434Date: Mon Jul 9 18:38:39 2007 -0500 75435 75436 board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS 75437 75438 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75439 75440commit c508a4cefd8a953fc64957650506a035e6e3d9d1 75441Author: Jon Loeliger <jdl@freescale.com> 75442Date: Mon Jul 9 18:31:28 2007 -0500 75443 75444 board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS 75445 75446 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75447 75448commit b9307262f8a9f3b5c9e15a6067eadc17407146f6 75449Author: Jon Loeliger <jdl@freescale.com> 75450Date: Mon Jul 9 18:24:55 2007 -0500 75451 75452 board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS 75453 75454 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75455 75456commit fcec2eb93e126400009729328e797f12bc94f1fd 75457Author: Jon Loeliger <jdl@freescale.com> 75458Date: Mon Jul 9 18:19:09 2007 -0500 75459 75460 board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS 75461 75462 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75463 75464commit a593814f2be0c9cdc3133cd550b167b8a988328f 75465Author: Jon Loeliger <jdl@freescale.com> 75466Date: Mon Jul 9 18:10:50 2007 -0500 75467 75468 rtc/: Remove obsolete references to CONFIG_COMMANDS 75469 75470 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75471 75472commit 67350568f9d46e66c21829f3513b3db0caeb948b 75473Author: Jon Loeliger <jdl@freescale.com> 75474Date: Mon Jul 9 18:05:38 2007 -0500 75475 75476 lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS 75477 75478 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75479 75480commit 7def6b34f910f08d7ef0a14646da067719237ca2 75481Author: Jon Loeliger <jdl@freescale.com> 75482Date: Mon Jul 9 18:02:11 2007 -0500 75483 75484 lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS 75485 75486 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75487 75488commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb 75489Author: Jon Loeliger <jdl@freescale.com> 75490Date: Mon Jul 9 17:56:50 2007 -0500 75491 75492 fs/: Remove obsolete references to CONFIG_COMMANDS 75493 75494 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75495 75496commit c91898bbc505aff3e12a807af88e76da18efb7ee 75497Author: Jon Loeliger <jdl@freescale.com> 75498Date: Mon Jul 9 17:46:09 2007 -0500 75499 75500 tools/: Remove obsolete references to CONFIG_COMMANDS 75501 75502 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75503 75504commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01 75505Author: Jon Loeliger <jdl@freescale.com> 75506Date: Mon Jul 9 17:45:14 2007 -0500 75507 75508 net/: Remove obsolete references to CONFIG_COMMANDS 75509 75510 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75511 75512commit cb51c0bf88f95a1bca68324b0126f8eed8b43273 75513Author: Jon Loeliger <jdl@freescale.com> 75514Date: Mon Jul 9 17:39:42 2007 -0500 75515 75516 drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS 75517 75518 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75519 75520commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b 75521Author: Jon Loeliger <jdl@freescale.com> 75522Date: Mon Jul 9 17:30:01 2007 -0500 75523 75524 drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS 75525 75526 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75527 75528commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29 75529Author: Jon Loeliger <jdl@freescale.com> 75530Date: Mon Jul 9 17:22:37 2007 -0500 75531 75532 disk/: Remove obsolete references to CONFIG_COMMANDS 75533 75534 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75535 75536commit 639221c76c88215bd55af83ad174fc30d1940f8f 75537Author: Jon Loeliger <jdl@freescale.com> 75538Date: Mon Jul 9 17:15:49 2007 -0500 75539 75540 include/: Remove obsolete references to CONFIG_COMMANDS 75541 Mostly removed from comments here. 75542 75543 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75544 75545commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876 75546Author: Wolfgang Denk <wd@denx.de> 75547Date: Tue Jul 10 00:01:28 2007 +0200 75548 75549 Coding style cleanup; update CHANGELOG. 75550 75551 Signed-off-by: Wolfgang Denk <wd@denx.de> 75552 75553commit c8603cfbd4573379a6076c9c208545ba2bbf019a 75554Author: Stefan Roese <sr@denx.de> 75555Date: Mon Jul 9 11:00:24 2007 +0200 75556 75557 Small coding style cleanup 75558 75559 Signed-off-by: Stefan Roese <sr@denx.de> 75560 75561commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc 75562Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 75563Date: Mon Jul 9 10:10:08 2007 +0200 75564 75565 Migrate esd 405EP boards to new NAND subsystem 75566 75567 Remove unused CFG_NAND_LEGACY define 75568 75569 These boards to not have NAND. 75570 75571 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 75572 75573commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803 75574Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 75575Date: Mon Jul 9 10:10:06 2007 +0200 75576 75577 Migrate esd 405EP boards to new NAND subsystem 75578 75579 Migrate esd 405EP boards to new NAND subsystem 75580 75581 -cleanup 75582 -use correct io accessors (in/out_be32()) 75583 75584 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 75585 75586commit e09f7ab5749c345f924da272bea0521a73af5b11 75587Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 75588Date: Mon Jul 9 10:10:04 2007 +0200 75589 75590 Migrate esd 405EP boards to new NAND subsystem 75591 75592 This patch prepares the migration from the legacy NAND driver 75593 to U-Boot's new NAND subsystem for esd boards. 75594 75595 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 75596 75597commit c3517f919d0f61650cf3027fd4faf0f631142f6c 75598Author: Jon Loeliger <jdl@freescale.com> 75599Date: Sun Jul 8 18:10:08 2007 -0500 75600 75601 common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS 75602 75603 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75604 75605commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39 75606Author: Jon Loeliger <jdl@freescale.com> 75607Date: Sun Jul 8 18:05:39 2007 -0500 75608 75609 common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS. 75610 75611 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75612 75613commit c76fe47425afc7d5d670ff0539823c85d65d9c42 75614Author: Jon Loeliger <jdl@freescale.com> 75615Date: Sun Jul 8 18:02:23 2007 -0500 75616 75617 common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS. 75618 75619 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75620 75621commit baa26db4113679b80970ff447d91cc10217742a6 75622Author: Jon Loeliger <jdl@freescale.com> 75623Date: Sun Jul 8 17:51:39 2007 -0500 75624 75625 common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS. 75626 75627 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75628 75629commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd 75630Author: Jon Loeliger <jdl@freescale.com> 75631Date: Sun Jul 8 17:02:01 2007 -0500 75632 75633 Clear up confusion over the CMD_POST and POST_DIAG mess. 75634 75635 For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG 75636 when it really means just CONFIG_CMD_DIAG. There is no CMD_POST. 75637 Clear this mess up some. 75638 75639 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75640 75641commit b3631487105a57ab7cbadfc26efbaf9676275018 75642Author: Jon Loeliger <jdl@freescale.com> 75643Date: Sun Jul 8 15:45:08 2007 -0500 75644 75645 Remove references to the old cmd_confdefs.h include file. 75646 75647 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75648 75649commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6 75650Author: Jon Loeliger <jdl@freescale.com> 75651Date: Sun Jul 8 15:42:59 2007 -0500 75652 75653 include/configs: Catch some CONFIG_CMD_* conversion stragglers. 75654 75655 Use new CONFIG_CMD_* in lwmon5.h board config file. 75656 Fix CONFIG_CMD_* typo braindamage in omap1510inn.h 75657 75658 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75659 75660commit a5562901661bd428f7e5feb333f796372cb81019 75661Author: Jon Loeliger <jdl@freescale.com> 75662Date: Sun Jul 8 15:31:57 2007 -0500 75663 75664 include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files. 75665 75666 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75667 75668commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e 75669Author: Jon Loeliger <jdl@freescale.com> 75670Date: Sun Jul 8 15:02:44 2007 -0500 75671 75672 include/configs: Use new CONFIG_CMD_* in various S* named board config files. 75673 75674 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75675 75676commit e9a0f8f15c11f337967aa0600ad6e8af33037f50 75677Author: Jon Loeliger <jdl@freescale.com> 75678Date: Sun Jul 8 15:12:40 2007 -0500 75679 75680 include/configs: Use new CONFIG_CMD_* in various R* named board config files. 75681 75682 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75683 75684commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f 75685Author: Jon Loeliger <jdl@freescale.com> 75686Date: Sun Jul 8 14:55:07 2007 -0500 75687 75688 include/configs: Use new CONFIG_CMD_* in various Q* named board config files. 75689 75690 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75691 75692commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e 75693Author: Jon Loeliger <jdl@freescale.com> 75694Date: Sun Jul 8 14:49:44 2007 -0500 75695 75696 include/configs: Use new CONFIG_CMD_* in various P* named board config files. 75697 75698 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75699 75700commit e18a1061a8630cb67995fdf99afd3fb50d1b187d 75701Author: Jon Loeliger <jdl@freescale.com> 75702Date: Sun Jul 8 14:21:43 2007 -0500 75703 75704 include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files. 75705 75706 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75707 75708commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2 75709Author: Jon Loeliger <jdl@freescale.com> 75710Date: Sun Jul 8 14:14:17 2007 -0500 75711 75712 include/configs: Use new CONFIG_CMD_* in various M* named board config files. 75713 75714 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75715 75716commit 348f258f24253433e4a2302a0bbceb6740a67246 75717Author: Jon Loeliger <jdl@freescale.com> 75718Date: Sun Jul 8 13:46:18 2007 -0500 75719 75720 include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files. 75721 75722 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75723 75724commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a 75725Author: Jon Loeliger <jdl@freescale.com> 75726Date: Sun Jul 8 10:09:35 2007 -0500 75727 75728 include/configs: Use new CONFIG_CMD_* in various H* named board config files. 75729 75730 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75731 75732commit 60a0876b5106b34220e459c208bbf648073306c0 75733Author: Jon Loeliger <jdl@freescale.com> 75734Date: Sat Jul 7 21:04:26 2007 -0500 75735 75736 include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files. 75737 75738 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75739 75740commit dcaa71562826a2466e894c868d132509dcda8444 75741Author: Jon Loeliger <jdl@freescale.com> 75742Date: Sat Jul 7 20:56:05 2007 -0500 75743 75744 include/configs: Use new CONFIG_CMD_* in various E* named board config files. 75745 75746 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75747 75748commit 3c3227f3c737502311b25b72084573901cbbf17d 75749Author: Jon Loeliger <jdl@freescale.com> 75750Date: Sat Jul 7 20:40:43 2007 -0500 75751 75752 include/configs: Use new CONFIG_CMD_* in various D* named board config files. 75753 75754 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75755 75756commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c 75757Author: Jon Loeliger <jdl@freescale.com> 75758Date: Thu Jul 5 19:52:35 2007 -0500 75759 75760 include/configs: Use new CONFIG_CMD_* in various C* named board config files. 75761 75762 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75763 75764commit de8b2a6e33298dcdb10bdda48db25e53c3089eba 75765Author: Jon Loeliger <jdl@freescale.com> 75766Date: Thu Jul 5 19:32:07 2007 -0500 75767 75768 include/configs: Use new CONFIG_CMD_* in various B* named board config files. 75769 75770 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75771 75772commit 498ff9a228485bd4b9f23d066bada268f9add1dd 75773Author: Jon Loeliger <jdl@freescale.com> 75774Date: Thu Jul 5 19:13:52 2007 -0500 75775 75776 include/configs: Use new CONFIG_CMD_* in various A* named board config files. 75777 75778 Since ADS860.h includes "board/fads/fads.h" with ramifications 75779 on the CONFIG_COMMAND treatment, it too has to be adjusted to 75780 exclude already configured commands in this same commit. 75781 75782 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75783 75784commit 10e038932f22ee80ebd53de312531e70e6590a2f 75785Author: Thomas Knobloch <knobloch@siemens.com> 75786Date: Fri Jul 6 14:58:39 2007 +0200 75787 75788 [NAND] Bad block skipping for command nboot 75789 75790 The old implementation of command nboot does not support reading the image from 75791 NAND flash with skipping of bad blocks. The patch implements a new version of 75792 the nboot command: by calling nboot.jffs2 from the u-boot command line the 75793 command will load the image from NAND flash with respect to bad blocks (by using 75794 nand_read_opts()). This is similar to e.g. the NAND read command: "nand 75795 read.jffs2 ...". 75796 75797 Signed-off-by: Thomas Knobloch <knobloch@siemens.com> 75798 Signed-off-by: Stefan Roese <sr@denx.de> 75799 75800commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f 75801Author: Stefan Roese <sr@denx.de> 75802Date: Fri Jul 6 12:26:51 2007 +0200 75803 75804 ppc4xx: Update lwmon5 default environment 75805 75806 Signed-off-by: Stefan Roese <sr@denx.de> 75807 75808commit 5d187430a055d62f17ca84d75e7245439d1f7e75 75809Author: Stefan Roese <sr@denx.de> 75810Date: Fri Jul 6 11:48:24 2007 +0200 75811 75812 ppc4xx: Update lwmon5 board 75813 75814 Add unlock=yes environment variable to default variables to unlock 75815 the CFI flash by default. 75816 75817 Signed-off-by: Stefan Roese <sr@denx.de> 75818 75819commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e 75820Author: Stefan Roese <sr@denx.de> 75821Date: Fri Jul 6 09:45:47 2007 +0200 75822 75823 Fix problem with get/setdcr commands introduced by cfg patches 75824 75825 Signed-off-by: Stefan Roese <sr@denx.de> 75826 75827commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f 75828Author: Wolfgang Denk <wd@denx.de> 75829Date: Fri Jul 6 02:50:19 2007 +0200 75830 75831 Code cleanup and default config update for STC GP3 SSA board. 75832 75833 Signed-off-by: Wolfgang Denk <wd@denx.de> 75834 75835commit e4dbe1b215f5c6c462e76909d240bd96472b84de 75836Author: Wolfgang Denk <wd@denx.de> 75837Date: Thu Jul 5 17:56:27 2007 +0200 75838 75839 Fixing some typos etc. introduced mainly by cfg patches. 75840 75841 Signed-off-by: Wolfgang Denk <wd@denx.de> 75842 75843commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd 75844Author: Wolfgang Denk <wd@denx.de> 75845Date: Thu Jul 5 11:12:16 2007 +0200 75846 75847 Minor coding style cleanup. Update CHANGELOG. 75848 75849commit dca3b3d6d6396b67e5e84af53452164923c73443 75850Author: Jon Loeliger <jdl@jdl.com> 75851Date: Wed Jul 4 22:33:46 2007 -0500 75852 75853 include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files. 75854 75855 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75856 75857commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7 75858Author: Jon Loeliger <jdl@jdl.com> 75859Date: Wed Jul 4 22:33:38 2007 -0500 75860 75861 include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files. 75862 75863 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75864 75865commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76 75866Author: Jon Loeliger <jdl@jdl.com> 75867Date: Wed Jul 4 22:33:30 2007 -0500 75868 75869 include/configs: Use new CONFIG_CMD_* in various s* named board config files. 75870 75871 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75872 75873commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8 75874Author: Jon Loeliger <jdl@jdl.com> 75875Date: Wed Jul 4 22:33:23 2007 -0500 75876 75877 include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files. 75878 75879 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75880 75881commit 26a34560d56a9df5bc2ae23525d9229736134757 75882Author: Jon Loeliger <jdl@jdl.com> 75883Date: Wed Jul 4 22:33:17 2007 -0500 75884 75885 include/configs: Use new CONFIG_CMD_* in various p* named board config files. 75886 75887 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75888 75889commit a5cb23092a7d31490a33d4ec871468b63babfa3c 75890Author: Jon Loeliger <jdl@jdl.com> 75891Date: Wed Jul 4 22:33:13 2007 -0500 75892 75893 include/configs: Use new CONFIG_CMD_* in various o* named board config files. 75894 75895 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75896 75897commit 929a2bfd142737003a8fc32e1b86e1f2c1850257 75898Author: Jon Loeliger <jdl@jdl.com> 75899Date: Wed Jul 4 22:33:07 2007 -0500 75900 75901 include/configs: Use new CONFIG_CMD_* in various n* named board config files. 75902 75903 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75904 75905commit 5dc11a511960d490f7f01ffd746edfe6277f99b0 75906Author: Jon Loeliger <jdl@jdl.com> 75907Date: Wed Jul 4 22:33:01 2007 -0500 75908 75909 include/configs: Use new CONFIG_CMD_* in various m* named board config files. 75910 75911 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75912 75913commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4 75914Author: Jon Loeliger <jdl@jdl.com> 75915Date: Wed Jul 4 22:32:57 2007 -0500 75916 75917 include/configs: Use new CONFIG_CMD_* in various l* named board config files. 75918 75919 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75920 75921commit bc234c129fa04fb9fa33530930e5cbc6084cd47a 75922Author: Jon Loeliger <jdl@jdl.com> 75923Date: Wed Jul 4 22:32:51 2007 -0500 75924 75925 include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files. 75926 75927 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75928 75929commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31 75930Author: Jon Loeliger <jdl@jdl.com> 75931Date: Wed Jul 4 22:32:32 2007 -0500 75932 75933 include/configs: Use new CONFIG_CMD_* in various i* named board config files. 75934 75935 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75936 75937commit 48d5d102a2f2e619c92050b9aedbb69689185bc0 75938Author: Jon Loeliger <jdl@jdl.com> 75939Date: Wed Jul 4 22:32:25 2007 -0500 75940 75941 include/configs: Use new CONFIG_CMD_* in various h* named board config files. 75942 75943 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75944 75945commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36 75946Author: Jon Loeliger <jdl@jdl.com> 75947Date: Wed Jul 4 22:32:19 2007 -0500 75948 75949 include/configs: Use new CONFIG_CMD_* in various g* named board config files. 75950 75951 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75952 75953commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e 75954Author: Jon Loeliger <jdl@jdl.com> 75955Date: Wed Jul 4 22:32:10 2007 -0500 75956 75957 include/configs: Use new CONFIG_CMD_* in various e* named board config files. 75958 75959 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75960 75961commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4 75962Author: Jon Loeliger <jdl@jdl.com> 75963Date: Wed Jul 4 22:32:03 2007 -0500 75964 75965 include/configs: Use new CONFIG_CMD_* in various d* named board config files. 75966 75967 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75968 75969commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b 75970Author: Jon Loeliger <jdl@jdl.com> 75971Date: Wed Jul 4 22:31:56 2007 -0500 75972 75973 include/configs: Use new CONFIG_CMD_* in various c* named board config files. 75974 75975 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75976 75977commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264 75978Author: Jon Loeliger <jdl@jdl.com> 75979Date: Wed Jul 4 22:31:49 2007 -0500 75980 75981 include/configs: Use new CONFIG_CMD_* in various b* named board config files. 75982 75983 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75984 75985commit 0b361c916617aff79e647b40f0e43361e0bbaccf 75986Author: Jon Loeliger <jdl@jdl.com> 75987Date: Wed Jul 4 22:31:42 2007 -0500 75988 75989 include/configs: Use new CONFIG_CMD_* in various a* named board config files. 75990 75991 Signed-off-by: Jon Loeliger <jdl@freescale.com> 75992 75993commit b730cda82e362df6a22f4c59c0a9b97e885b1014 75994Author: Jon Loeliger <jdl@jdl.com> 75995Date: Wed Jul 4 22:31:35 2007 -0500 75996 75997 include/configs: Use new CONFIG_CMD_* in mpc5xx board config files. 75998 75999 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76000
76001commit d794cfefead5fc177cf4f41164e80382e9c9484a 76002Author: Jon Loeliger <jdl@jdl.com> 76003Date: Wed Jul 4 22:31:15 2007 -0500 76004 76005 include/configs: Use new CONFIG_CMD_* in various 5200 board config files. 76006 76007 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76008 76009commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c 76010Author: Jon Loeliger <jdl@jdl.com> 76011Date: Wed Jul 4 22:31:07 2007 -0500 76012 76013 include/configs: Use new CONFIG_CMD_* in STx board config files. 76014 76015 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76016 76017commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc 76018Author: Jon Loeliger <jdl@jdl.com> 76019Date: Wed Jul 4 22:30:58 2007 -0500 76020 76021 include/configs: Use new CONFIG_CMD_* in sbc* board config files. 76022 76023 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76024 76025commit 2694690e285acaa34922f55f4b5ae030da60c55a 76026Author: Jon Loeliger <jdl@jdl.com> 76027Date: Wed Jul 4 22:30:50 2007 -0500 76028 76029 include/configs: Use new CONFIG_CMD_* in TQM board config files. 76030 76031 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76032 76033commit 1cc4c458329765b58e584a19821e796b3c10e976 76034Author: Jon Loeliger <jdl@jdl.com> 76035Date: Wed Jul 4 22:30:28 2007 -0500 76036 76037 include/configs: Use new CONFIG_CMD_* in 82xx board config files. 76038 76039 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76040 76041commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e 76042Author: Jon Loeliger <jdl@jdl.com> 76043Date: Wed Jul 4 22:30:06 2007 -0500 76044 76045 include/configs: Use new CONFIG_CMD_* in 83xx board config files. 76046 76047 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76048 76049commit b44896215a09c60fa40cae906f7ed207bbc2c492 76050Author: Sergei Poselenov <sposelenov@emcraft.com> 76051Date: Thu Jul 5 08:17:37 2007 +0200 76052 76053 Merged POST framework with the current TOT. 76054 76055 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> 76056 76057commit b24629fa377214d63bb40d1360e354b6d3e4af56 76058Author: Jon Loeliger <jdl@jdl.com> 76059Date: Wed Jun 13 13:23:15 2007 -0500 76060 76061 mpc86xx: Remove old CFG_CMD_* references. 76062 76063 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76064 76065commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a 76066Author: Jon Loeliger <jdl@jdl.com> 76067Date: Wed Jun 13 13:22:54 2007 -0500 76068 76069 Add MPC8568MDS to MAKEALL 85xx target. 76070 76071 It was missing from the original port submission. 76072 76073 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76074 76075commit 2835e518c969e5124ba1174eef3e8375e12fa7d5 76076Author: Jon Loeliger <jdl@jdl.com> 76077Date: Wed Jun 13 13:22:08 2007 -0500 76078 76079 include/configs: Use new CONFIG_CMD_* in 85xx board config files. 76080 76081 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76082 76083commit 56b304ac2091689506088a9ae67f63fd6300cf16 76084Author: Jon Loeliger <jdl@jdl.com> 76085Date: Wed Jun 13 13:21:37 2007 -0500 76086 76087 Fix #if typo in CONFIG_CMD_* changes. 76088 76089 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76090 76091commit f780b83316d9af1f61d71cc88b1917b387b9b995 76092Author: Niklaus Giger <niklausgiger@gmx.ch> 76093Date: Wed Jun 27 18:11:38 2007 +0200 76094 76095 resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX 76096 76097 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com> 76098 76099commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4 76100Author: Stefan Roese <sr@denx.de> 76101Date: Wed Jul 4 10:06:30 2007 +0200 76102 76103 ppc4xx: Update lwmon5 board 76104 76105 - Add optional ECC generation routine to preserve existing 76106 RAM values. This is needed for the Linux log-buffer support 76107 - Add optional DDR2 setup with CL=4 76108 - GPIO50 not used anymore 76109 - Lime register setup added 76110 76111 Signed-off-by: Stefan Roese <sr@denx.de> 76112 76113commit 6810a34677dbc446334f5e451f1682426dd33b49 76114Author: Grant Likely <grant.likely@secretlab.ca> 76115Date: Tue Jul 3 00:17:28 2007 -0600 76116 76117 Fix Makefile to use $(MKCONFIG) macro for all board ports 76118 76119 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76120 76121commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926 76122Author: Grant Likely <grant.likely@secretlab.ca> 76123Date: Tue Jul 3 00:17:28 2007 -0600 76124 76125 Fix Makefile to use $(MKCONFIG) macro for all board ports 76126 76127 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76128 76129commit 057004f4a4863554d56cc56268bfa7c7d9738e27 76130Author: Grant Likely <grant.likely@secretlab.ca> 76131Date: Tue Jul 3 00:34:49 2007 -0600 76132 76133 Correct fixup relocation for mpc83xx 76134 76135 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76136 76137commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96 76138Author: Grant Likely <grant.likely@secretlab.ca> 76139Date: Tue Jul 3 00:34:44 2007 -0600 76140 76141 Correct fixup relocation for mpc8260 76142 76143 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76144 76145commit f3a52fe05923935db86985daf9438e2f70ac39aa 76146Author: Grant Likely <grant.likely@secretlab.ca> 76147Date: Tue Jul 3 00:34:39 2007 -0600 76148 76149 Correct fixup relocation for mpc824x 76150 76151 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76152 76153commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00 76154Author: Grant Likely <grant.likely@secretlab.ca> 76155Date: Tue Jul 3 00:34:34 2007 -0600 76156 76157 Correct fixup relocation for mpc8220 76158 76159 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76160 76161commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90 76162Author: Grant Likely <grant.likely@secretlab.ca> 76163Date: Tue Jul 3 00:34:29 2007 -0600 76164 76165 Correct fixup relocation for MPC5xxx 76166 76167 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76168 76169commit 3649cd99ba815b6601868735765602f00ef3692b 76170Author: Grant Likely <grant.likely@secretlab.ca> 76171Date: Tue Jul 3 00:34:24 2007 -0600 76172 76173 Correct relocation fixup for mpc5xx 76174 76175 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76176 76177commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325 76178Author: Grant Likely <grant.likely@secretlab.ca> 76179Date: Tue Jul 3 00:34:19 2007 -0600 76180 76181 Don't set gd->reloc_off if relocation of .fixup works correctly 76182 76183 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76184 76185commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28 76186Author: Grant Likely <grant.likely@secretlab.ca> 76187Date: Tue Jul 3 00:34:14 2007 -0600 76188 76189 Remove obsolete mpc83xx linker scripts 76190 76191 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76192 76193commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b 76194Author: Grant Likely <grant.likely@secretlab.ca> 76195Date: Tue Jul 3 00:34:09 2007 -0600 76196 76197 Consolidate mpc8260 linker scripts 76198 76199 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76200 76201commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0 76202Author: Grant Likely <grant.likely@secretlab.ca> 76203Date: Tue Jul 3 00:34:04 2007 -0600 76204 76205 Remove obsolete mpc824x linker scripts 76206 76207 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76208 76209commit f94a3aecebc40ca0939c7d66d010009cf51be9e2 76210Author: Grant Likely <grant.likely@secretlab.ca> 76211Date: Tue Jul 3 00:33:59 2007 -0600 76212 76213 Remove obsolete mpc824x linker scripts (3 of 4) 76214 76215 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76216 76217commit a71c084f3ac7fedf144537db2b2da47323068833 76218Author: Grant Likely <grant.likely@secretlab.ca> 76219Date: Tue Jul 3 00:33:53 2007 -0600 76220 76221 Remove obsolete mpc824x linker scripts (2 of 4) 76222 76223 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76224 76225commit f670a15468d1365241d40022b9408e1004181f5e 76226Author: Grant Likely <grant.likely@secretlab.ca> 76227Date: Tue Jul 3 00:33:48 2007 -0600 76228 76229 Remove obsolete mpc824x linker scripts (1 of 4) 76230 76231 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76232 76233commit 09555bd45a04c0e54f172528d21bc18896550d28 76234Author: Grant Likely <grant.likely@secretlab.ca> 76235Date: Tue Jul 3 00:33:43 2007 -0600 76236 76237 Remove obsolete mpc8220 linker scripts 76238 76239 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76240 76241commit 5efb992f046e51225c93d52f80fecbe433abd789 76242Author: Grant Likely <grant.likely@secretlab.ca> 76243Date: Tue Jul 3 00:33:38 2007 -0600 76244 76245 Remove obsolete mpc5xxx linker scripts (3 of 3) 76246 76247 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76248 76249commit 07c13dfef65b31647e69d8b61daa1eec598add1a 76250Author: Grant Likely <grant.likely@secretlab.ca> 76251Date: Tue Jul 3 00:33:33 2007 -0600 76252 76253 Remove obsolete mpc5xxx linker scripts (2 of 3) 76254 76255 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76256 76257commit b4f67513a624ce85866c66c575bd2d9d7977d7f0 76258Author: Grant Likely <grant.likely@secretlab.ca> 76259Date: Tue Jul 3 00:33:28 2007 -0600 76260 76261 Remove obsolete mpc5xxx linker scripts (1 of 3) 76262 76263 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76264 76265commit b7d8e05f8675249b5f208aa73babeed384a4519d 76266Author: Grant Likely <grant.likely@secretlab.ca> 76267Date: Tue Jul 3 00:33:23 2007 -0600 76268 76269 Remove obsolete mpc5xx linker scripts 76270 76271 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76272 76273commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7 76274Author: Grant Likely <grant.likely@secretlab.ca> 76275Date: Tue Jul 3 00:33:18 2007 -0600 76276 76277 Consolidate mpc83xx linker scripts 76278 76279 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76280 76281commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365 76282Author: Grant Likely <grant.likely@secretlab.ca> 76283Date: Tue Jul 3 00:33:13 2007 -0600 76284 76285 Consolidate mpc8260 linker scripts 76286 76287 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76288 76289commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207 76290Author: Grant Likely <grant.likely@secretlab.ca> 76291Date: Tue Jul 3 00:33:08 2007 -0600 76292 76293 Consolidate mpc824x linker scripts 76294 76295 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76296 76297commit 9c757b789a59a855db57b448dd825329c4e9c4a0 76298Author: Grant Likely <grant.likely@secretlab.ca> 76299Date: Tue Jul 3 00:33:03 2007 -0600 76300 76301 Consolidate mpc8220 linker scripts 76302 76303 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76304 76305commit d181c9a15cd41863fe24840d17848429f27d3c8c 76306Author: Grant Likely <grant.likely@secretlab.ca> 76307Date: Tue Jul 3 00:32:58 2007 -0600 76308 76309 Consolidate mpc5xxx linker scripts 76310 76311 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76312 76313commit 287ac924adb7291bebe5086652a362a30ab28b13 76314Author: Grant Likely <grant.likely@secretlab.ca> 76315Date: Tue Jul 3 00:32:53 2007 -0600 76316 76317 Consolidate mpc5xx linker scripts 76318 76319 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 76320 76321commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd 76322Author: Wolfgang Denk <wd@denx.de> 76323Date: Wed Jul 4 00:43:53 2007 +0200 76324 76325 Fix a few file permission problems. 76326 76327 Signed-off-by: Wolfgang Denk <wd@denx.de> 76328 76329commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c 76330Author: Wolfgang Denk <wd@denx.de> 76331Date: Wed Jul 4 00:38:38 2007 +0200 76332 76333 Minor coding style cleanup. Rebuild CHANGELOG file. 76334 76335commit 2f9c19e496acb6bb50d9299e1aab377625d48c38 76336Author: Jon Loeliger <jdl@jdl.com> 76337Date: Mon Jun 11 19:03:44 2007 -0500 76338 76339 configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style. 76340 76341 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76342 76343commit 602ad3b33d9ceef83dbab46be68646d645d637ee 76344Author: Jon Loeliger <jdl@jdl.com> 76345Date: Mon Jun 11 19:03:39 2007 -0500 76346 76347 README: Rewrite command line config to use CONFIG_CMD_* names. 76348 76349 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76350 76351commit 72a074cec68e5bad60d63206c050974e08afd804 76352Author: Jon Loeliger <jdl@jdl.com> 76353Date: Mon Jun 11 19:03:34 2007 -0500 76354 76355 include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76356 76357 This is a compatibility step that allows both the older form 76358 and the new form to co-exist for a while until the older can 76359 be removed entirely. 76360 76361 All transformations are of the form: 76362 Before: 76363 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76364 After: 76365 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76366 76367 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76368 76369commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b 76370Author: Jon Loeliger <jdl@jdl.com> 76371Date: Mon Jun 11 19:03:28 2007 -0500 76372 76373 tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76374 76375 This is a compatibility step that allows both the older form 76376 and the new form to co-exist for a while until the older can 76377 be removed entirely. 76378 76379 All transformations are of the form: 76380 Before: 76381 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76382 After: 76383 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76384 76385 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76386 76387commit 9107ebe0d352420895ab69b715697bdebc8caf50 76388Author: Jon Loeliger <jdl@jdl.com> 76389Date: Mon Jun 11 19:03:23 2007 -0500 76390 76391 board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76392 76393 This is a compatibility step that allows both the older form 76394 and the new form to co-exist for a while until the older can 76395 be removed entirely. 76396 76397 All transformations are of the form: 76398 Before: 76399 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76400 After: 76401 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76402 76403 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76404 76405commit 5e378003d592ea828ec69d6defcd4de79096dd5c 76406Author: Jon Loeliger <jdl@jdl.com> 76407Date: Mon Jun 11 19:03:19 2007 -0500 76408 76409 board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76410 76411 This is a compatibility step that allows both the older form 76412 and the new form to co-exist for a while until the older can 76413 be removed entirely. 76414 76415 All transformations are of the form: 76416 Before: 76417 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76418 After: 76419 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76420 76421 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76422 76423commit 737184114ec9c9e0ab94d6713536126073bd2472 76424Author: Jon Loeliger <jdl@jdl.com> 76425Date: Mon Jun 11 19:03:15 2007 -0500 76426 76427 cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76428 76429 This is a compatibility step that allows both the older form 76430 and the new form to co-exist for a while until the older can 76431 be removed entirely. 76432 76433 All transformations are of the form: 76434 Before: 76435 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76436 After: 76437 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76438 76439 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76440 76441commit f48070fe5fe440dfb5ee5268c920de70e48ea327 76442Author: Jon Loeliger <jdl@jdl.com> 76443Date: Mon Jun 11 19:03:08 2007 -0500 76444 76445 cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76446 76447 This is a compatibility step that allows both the older form 76448 and the new form to co-exist for a while until the older can 76449 be removed entirely. 76450 76451 All transformations are of the form: 76452 Before: 76453 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76454 After: 76455 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76456 76457 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76458 76459commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2 76460Author: Jon Loeliger <jdl@jdl.com> 76461Date: Mon Jun 11 19:03:03 2007 -0500 76462 76463 lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76464 76465 This is a compatibility step that allows both the older form 76466 and the new form to co-exist for a while until the older can 76467 be removed entirely. 76468 76469 All transformations are of the form: 76470 Before: 76471 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76472 After: 76473 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76474 76475 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76476 76477commit 73f032021ec5f13cda8faa4e34b6de80960eb86f 76478Author: Jon Loeliger <jdl@jdl.com> 76479Date: Mon Jun 11 19:02:58 2007 -0500 76480 76481 lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76482 76483 This is a compatibility step that allows both the older form 76484 and the new form to co-exist for a while until the older can 76485 be removed entirely. 76486 76487 All transformations are of the form: 76488 Before: 76489 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76490 After: 76491 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76492 76493 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76494 76495commit 98b79003c21c2578206003256de4e781d6b36ca8 76496Author: Jon Loeliger <jdl@jdl.com> 76497Date: Mon Jun 11 19:02:53 2007 -0500 76498 76499 rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76500 76501 This is a compatibility step that allows both the older form 76502 and the new form to co-exist for a while until the older can 76503 be removed entirely. 76504 76505 All transformations are of the form: 76506 Before: 76507 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76508 After: 76509 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76510 76511 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76512 76513commit 6e2115acb6a892d53a6881bf253ae41d3df39156 76514Author: Jon Loeliger <jdl@jdl.com> 76515Date: Mon Jun 11 19:02:49 2007 -0500 76516 76517 net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76518 76519 This is a compatibility step that allows both the older form 76520 and the new form to co-exist for a while until the older can 76521 be removed entirely. 76522 76523 All transformations are of the form: 76524 Before: 76525 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76526 After: 76527 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76528 76529 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76530 76531commit 45cdb9b72c94655c7308b464a2666057c0b286e0 76532Author: Jon Loeliger <jdl@jdl.com> 76533Date: Mon Jun 11 19:02:34 2007 -0500 76534 76535 disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76536 76537 This is a compatibility step that allows both the older form 76538 and the new form to co-exist for a while until the older can 76539 be removed entirely. 76540 76541 All transformations are of the form: 76542 Before: 76543 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76544 After: 76545 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76546 76547 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76548 76549commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a 76550Author: Jon Loeliger <jdl@jdl.com> 76551Date: Mon Jun 11 19:02:20 2007 -0500 76552 76553 fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76554 76555 This is a compatibility step that allows both the older form 76556 and the new form to co-exist for a while until the older can 76557 be removed entirely. 76558 76559 All transformations are of the form: 76560 Before: 76561 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76562 After: 76563 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76564 76565 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76566 76567commit d5be43de93ff905c465e509d45a3164ef48d26e7 76568Author: Jon Loeliger <jdl@jdl.com> 76569Date: Mon Jun 11 19:02:10 2007 -0500 76570 76571 drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76572 76573 This is a compatibility step that allows both the older form 76574 and the new form to co-exist for a while until the older can 76575 be removed entirely. 76576 76577 All transformations are of the form: 76578 Before: 76579 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76580 After: 76581 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76582 76583 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76584 76585commit b453960d4fdb87b3970d96119b90df2ed024fc4a 76586Author: Jon Loeliger <jdl@jdl.com> 76587Date: Mon Jun 11 19:02:05 2007 -0500 76588 76589 common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76590 76591 This is a compatibility step that allows both the older form 76592 and the new form to co-exist for a while until the older can 76593 be removed entirely. 76594 76595 All transformations are of the form: 76596 Before: 76597 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76598 After: 76599 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76600 76601 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76602 76603commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0 76604Author: Jon Loeliger <jdl@jdl.com> 76605Date: Mon Jun 11 19:01:54 2007 -0500 76606 76607 common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76608 76609 This is a compatibility step that allows both the older form 76610 and the new form to co-exist for a while until the older can 76611 be removed entirely. 76612 76613 All transformations are of the form: 76614 Before: 76615 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76616 After: 76617 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76618 76619 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76620 76621commit a76adc8142c1d956385a109e0b70f9319ede4d66 76622Author: Jon Loeliger <jdl@jdl.com> 76623Date: Mon Jun 11 19:01:43 2007 -0500 76624 76625 common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). 76626 76627 This is a compatibility step that allows both the older form 76628 and the new form to co-exist for a while until the older can 76629 be removed entirely. 76630 76631 All transformations are of the form: 76632 Before: 76633 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) 76634 After: 76635 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) 76636 76637 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76638 76639commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1 76640Author: Jon Loeliger <jdl@jdl.com> 76641Date: Mon Jun 11 19:01:34 2007 -0500 76642 76643 Introduce initial versions of new Command Config files. 76644 76645 Derive three new files from cmd_confdefs.h: 76646 config_bootp.h - Has BOOTP related config options, not commands 76647 config_cmd_all.h - Has a CONFIG_CMD_* definition for every command 76648 config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds. 76649 76650 For now, include "config_bootp.h" for compatability until all 76651 users of it directly include it properly. 76652 76653 Signed-off-by: Jon Loeliger <jdl@freescale.com> 76654 76655commit 1f2a05898658900dc5717761e27abf2052e67e13 76656Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in> 76657Date: Sat Jun 30 18:50:48 2007 +0200 76658 76659 Fix S-ATA support. 76660 76661 Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in> 76662 76663commit a5d71e290f3673269be8eefb4ec44f53412f9461 76664Author: Heiko Schocher <hs@pollux.denx.de> 76665Date: Mon Jun 25 19:11:37 2007 +0200 76666 76667 [PCS440EP] get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG 76668 76669 Signed-off-by: Heiko Schocher <hs@denx.de> 76670 76671commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b 76672Author: Niklaus Giger <niklaus.giger@nestal.com> 76673Date: Mon Jun 25 17:03:13 2007 +0200 76674 76675 ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt 76676 76677 This patch prints the DDR status registers upon machine check 76678 interrupt on the 440EPx/GRx. This can be useful especially when 76679 ECC support is enabled. 76680 76681 I added some small changes to the original patch from Niklaus to 76682 make it compile clean. 76683 76684 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com> 76685 Signed-off-by: Stefan Roese <sr@denx.de> 76686 76687commit 807018fb7faceb429ce0cb47baa2073746b33a4e 76688Author: Niklaus Giger <niklaus.giger@nestal.com> 76689Date: Mon Jun 25 16:50:55 2007 +0200 76690 76691 ppc4xx: Fix O=buildir builds 76692 76693 This patch fixes the problem to assemble cpu/ppc4xx/start.S 76694 experienced last week where building failed having specified 76695 O=../build.sequoia. 76696 76697 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com> 76698 76699commit 466fff1a7bb5fe764a06450626f6098219f446b8 76700Author: Stefan Roese <sr@denx.de> 76701Date: Mon Jun 25 15:57:39 2007 +0200 76702 76703 ppc4xx: Add pci_pre_init() for 405 boards 76704 76705 This patch removes the CFG_PCI_PRE_INIT option completely, since 76706 it's not needed anymore with the patch from Matthias Fuchs with 76707 the "weak" pci_pre_init() implementation. 76708 76709 Signed-off-by: Stefan Roese <sr@denx.de> 76710 76711commit 6f35c53166213c24a5a0e2390ed861136ff73870 76712Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 76713Date: Sun Jun 24 17:41:21 2007 +0200 76714 76715 ppc4xx: Maintenance patch for esd's CPCI405 derivats 76716 76717 -add pci_pre_init() for pci interrupt fixup code 76718 -disable phy sleep mode via reset_phy() function 76719 -use correct io accessors 76720 -cleanup 76721 76722 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 76723 76724commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8 76725Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 76726Date: Sun Jun 24 17:23:41 2007 +0200 76727 76728 ppc4xx: Add pci_pre_init() for 405 boards 76729 76730 This patch adds support for calling a plattform dependant 76731 pci_pre_init() function for 405 boards. This can be used to 76732 move the current pci_405gp_fixup_irq() function into the 76733 board code. 76734 76735 This patch also makes the CFG_PCI_PRE_INIT define obsolete. 76736 A default function with 'weak' attribute is used when 76737 a board specific pci_pre_init() is not implemented. 76738 76739 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 76740 76741commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb 76742Author: Wolfgang Denk <wd@denx.de> 76743Date: Fri Jun 22 23:59:00 2007 +0200 76744 76745 Coding stylke cleanup; rebuild CHANGELOG 76746 76747commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9 76748Author: Igor Lisitsin <igor@emcraft.com> 76749Date: Wed Apr 18 14:55:19 2007 +0400 76750 76751 Adapt log buffer code to support Linux 2.6 76752 76753 A new environment variable, "logversion", selects the log buffer 76754 behaviour. If it is not set or set to a value other than 2, then the 76755 old, Linux 2.4.4, behaviour is selected. 76756 76757 Signed-off-by: Igor Lisitsin <igor@emcraft.com> 76758 -- 76759 76760commit a11e06965ec91270c51853407ff1261d3c740386 76761Author: Igor Lisitsin <igor@emcraft.com> 76762Date: Wed Mar 28 19:06:19 2007 +0400 76763 76764 Extend POST support for PPC440 76765 76766 Added memory, CPU, UART, I2C and SPR POST tests for PPC440. 76767 76768 Signed-off-by: Igor Lisitsin <igor@emcraft.com> 76769 -- 76770 76771commit 566a494f592ae3b3c0785d90d4e1ba45574880c4 76772Author: Heiko Schocher <hs@pollux.denx.de> 76773Date: Fri Jun 22 19:11:54 2007 +0200 76774 76775 [PCS440EP] upgrade the PCS440EP board: 76776 - Show on the Status LEDs, some States of the board. 76777 - Get the MAC addresses from the EEProm 76778 - use PREBOOT 76779 - use the CF on the board. 76780 - check the U-Boot image in the Flash with a SHA1 76781 checksum. 76782 - use dynamic TLB entries generation for the SDRAM 76783 76784 Signed-off-by: Heiko Schocher <hs@denx.de> 76785 76786commit 3a1f5c81b0b9557817a789bece839905581c2205 76787Author: Stefan Roese <sr@denx.de> 76788Date: Fri Jun 22 16:58:40 2007 +0200 76789 76790 ppc4xx: Fix problem with extended program_tlb() funtion 76791 76792 The recently extended program_tlb() function had a problem when 76793 multiple TLB's had to be setup (for example with 512MB of SDRAM). The 76794 virtual address was not incremented. This patch fixes this issue 76795 and is tested on Katmai with 512MB SDRAM. 76796 76797 Signed-off-by: Stefan Roese <sr@denx.de> 76798 76799commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f 76800Author: Rafal Jaworowski <raj@semihalf.com> 76801Date: Fri Jun 22 14:58:04 2007 +0200 76802 76803 [ppc] Fix build breakage for all non-4xx PowerPC variants. 76804 76805 - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros 76806 - minor 4xx cleanup 76807 76808commit d677b32855f577ae2690dcd64a172cdd706e0ffc 76809Author: Mike Frysinger <vapier@gentoo.org> 76810Date: Fri Jun 22 10:34:12 2007 +0200 76811 76812 [patch] add nand_init() prototype to nand.h 76813 76814 since nand_init() is expected to be called by other parts of u-boot, there 76815 should be a prototype for it in nand.h 76816 76817 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 76818 Signed-off-by: Stefan Roese <sr@denx.de> 76819 76820commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b 76821Author: Wolfgang Denk <wd@denx.de> 76822Date: Wed Jun 20 18:14:24 2007 +0200 76823 76824 Coding style cleanup. Refresh CHANGELOG. 76825 76826commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024 76827Author: Stefan Roese <sr@denx.de> 76828Date: Tue Jun 19 17:22:44 2007 +0200 76829 76830 ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board 76831 76832 This patch adds a board command to configure the I2C bootstrap EEPROM 76833 values. Right now 533 and 667MHz are supported for booting either via NOR 76834 or NAND FLASH. Here the usage: 76835 76836 => bootstrap 533 nor ;to configure the board for 533MHz NOR booting 76837 => bootstrap 667 nand ;to configure the board for 667MHz NNAND booting 76838 76839 Signed-off-by: Stefan Roese <sr@denx.de> 76840 76841commit df8a24cdd30151505cf57bbee5289e91bf53bd1b 76842Author: Stefan Roese <sr@denx.de> 76843Date: Tue Jun 19 16:42:31 2007 +0200 76844 76845 [ppc4xx] Fix problem with NAND booting on AMCC Acadia 76846 76847 The latest changes showed a problem with the location of the NAND-SPL 76848 image in the OCM and the init-data area (incl. cache). This patch 76849 fixes this problem. 76850 76851 Signed-off-by: Stefan Roese <sr@denx.de> 76852 76853commit 86ba99e34194394052d24c04dc40d1263d29a26f 76854Author: Stefan Roese <sr@denx.de> 76855Date: Tue Jun 19 16:40:58 2007 +0200 76856 76857 [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c 76858 76859 Signed-off-by: Stefan Roese <sr@denx.de> 76860 76861commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658 76862Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 76863Date: Mon Jun 18 13:50:13 2007 -0500 76864 76865 Added M5329AFEE and M5329BFEE Platforms 76866 76867 Added board/freescale/m5329evb, cpu/mcf532x, drivers/net, 76868 drivers/serial, immap_5329.h, m5329.h, mcfrtc.h, 76869 include/configs/M5329EVB.h, lib_m68k/interrupts.c, and 76870 rtc/mcfrtc.c 76871 76872 Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c, 76873 common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h, 76874 include/asm-m68k/io.h, include/asm-m68k/mcftimer.h, 76875 include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h, 76876 include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c, 76877 lib_m68k/time.c, net/eth.c and rtc/Makefile 76878 76879 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com> 76880 76881commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27 76882Author: Michal Simek <monstr@monstr.eu> 76883Date: Sun Jun 17 19:04:11 2007 +0200 76884 76885 [fix] email reparation 76886 76887commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc 76888Author: Michal Simek <monstr@monstr.eu> 76889Date: Sun Jun 17 19:03:21 2007 +0200 76890 76891 [FIX] fix microblaze file permitission 76892 76893commit e73846b7cf1e29ae635bf9bb5570269663df2ee5 76894Author: Stefan Roese <sr@denx.de> 76895Date: Fri Jun 15 11:33:41 2007 +0200 76896 76897 [ppc4xx] Change lwmon5 port to work with recent 440 exception rework 76898 76899 Now CONFIG_440 has to be defined in all PPC440 board config files. 76900 76901 Signed-off-by: Stefan Roese <sr@denx.de> 76902 76903commit efa35cf12d914d4caba942acd5a6c45f217de302 76904Author: Grzegorz Bernacki <gjb@semihalf.com> 76905Date: Fri Jun 15 11:19:28 2007 +0200 76906 76907 ppc4xx: Clean up 440 exceptions handling 76908 76909 - Introduced dedicated switches for building 440 and 405 images required 76910 for 440-specific machine instructions like 'rfmci' etc. 76911 76912 - Exception vectors moved to the proper location (_start moved away from 76913 the critical exception handler space, which it occupied) 76914 76915 - CriticalInput now serviced (with default handler) 76916 76917 - MachineCheck properly serviced (added a dedicated handler and return 76918 subroutine) 76919 76920 - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused, 76921 unhandled and those not relevant for 4xx were eliminated) 76922 76923 - Eliminated Linux leftovers, removed dead code 76924 76925 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 76926 Signed-off-by: Rafal Jaworowski <raj@semihalf.com> 76927 Signed-off-by: Stefan Roese <sr@denx.de> 76928 76929commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2 76930Author: Stefan Roese <sr@denx.de> 76931Date: Fri Jun 15 08:18:01 2007 +0200 76932 76933 [ppc4xx] Add initial lwmon5 board support 76934 76935 This patch adds initial support for the Liebherr lwmon5 board euqipped 76936 with an AMCC 440EPx PowerPC. 76937 76938 Signed-off-by: Stefan Roese <sr@denx.de> 76939 76940commit 85f737376d5ff3d5f0d45a8b657686326d175307 76941Author: Stefan Roese <sr@denx.de> 76942Date: Fri Jun 15 07:39:43 2007 +0200 76943 76944 [ppc4xx] Extend 44x GPIO setup with default output state 76945 76946 The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup 76947 is extended with the default GPIO output state (level). 76948 76949 Signed-off-by: Stefan Roese <sr@denx.de> 76950 76951commit dbca208518e5e7f01a6420588d1cd6e60db74c2b 76952Author: Stefan Roese <sr@denx.de> 76953Date: Thu Jun 14 11:14:32 2007 +0200 76954 76955 [ppc4xx] Extend program_tlb() with virtual & physical addresses 76956 76957 Now program_tlb() allows to program a TLB (or multiple) with 76958 different virtual and physical addresses. With this change, now one 76959 physical region (e.g. SDRAM) can be mapped 2 times, once with caches 76960 diabled and once with caches enabled. 76961 76962 Signed-off-by: Stefan Roese <sr@denx.de> 76963 76964commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88 76965Author: Detlev Zundel <dzu@denx.de> 76966Date: Wed May 23 19:02:41 2007 +0200 76967 76968 Change 'repeatable' attribute of some commands to sensible values. 76969 76970 Most prominently this changes 'erase' to be non-repeatable. 76971 76972 Signed-off-by: Detlev Zundel <dzu@denx.de> 76973 76974commit 5afb202093f6a001797db92cf695b93a70ea9ab4 76975Author: Detlev Zundel <dzu@denx.de> 76976Date: Wed May 23 18:47:48 2007 +0200 76977 76978 Fix 'run' not to continue after interrupted command 76979 76980 Signed-off-by: Detlev Zundel <dzu@denx.de> 76981 76982commit 9b7464a2c88614e1061f509c48930a3d240d1a35 76983Author: Jason Jin <Jason.jin@freescale.com> 76984Date: Mon Jun 11 15:14:24 2007 +0200 76985 76986 USB: This patch fix readl in ohci swap reg access. 76987 76988 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 76989 76990commit 8f8416fada9faf94b9a92f21fe6000643cb521d5 76991Author: Bartlomiej Sieka <tur@semihalf.com> 76992Date: Fri Jun 8 14:52:22 2007 +0200 76993 76994 TQM5200: Add Flat Device Tree support, update default env. accordingly. 76995 76996 Signed-off-by: Jan Wrobel <wrr@semihalf.com> 76997 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 76998 76999commit 9045f33c023f698660a2e45d1b2194c0711abebc 77000Author: Wolfgang Denk <wd@denx.de>
77001Date: Fri Jun 8 10:24:58 2007 +0200 77002 77003 Fix config problems on SC3 board; make ide_reset_timeout work. 77004 77005commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b 77006Author: Benoît Monin <bmonin@adeneo.eu> 77007Date: Fri Jun 8 09:55:24 2007 +0200 77008 77009 [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE 77010 77011 Set the correct value in GPIOx_TCR when configuring the gpio 77012 with CFG_440_GPIO_TABLE. 77013 77014 Signed-off-by: Benoit Monin <bmonin@adeneo.eu> 77015 Signed-off-by: Stefan Roese <sr@denx.de> 77016 77017commit f539edc076cfe52bff919dd512ba8d7af0e22092 77018Author: Vadim Bendebury <vbendeb@google.com> 77019Date: Thu May 24 15:52:25 2007 -0700 77020 77021 cosmetic changes to bcm570x driver 77022 77023 This is a cosmetic only changes submission. 77024 It affects files relevant to bcm570x driver. 77025 the commands used to generate this change was 77026 77027 cd drivers 77028 Lindent -pcs -l80 bcm570x.c bcm570x_lm.h bcm570x_mm.h tigon3.c tigon3.h 77029 77030 The BMW target (the only one using this chip so far) builds cleanly, the 77031 `before and after' generated object files for drivers/bcm570x.c and 77032 drivers/tigon3.o are identical as reported by objdump -d 77033 77034 Signed-off-by: Vadim Bendebury <vbendeb@google.com> 77035 Signed-off-by: Ben Warren <bwarren@qstreams.com> 77036 77037commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7 77038Author: Wolfgang Denk <wd@denx.de> 77039Date: Wed Jun 6 16:26:56 2007 +0200 77040 77041 Coding Style cleanup; generate new CHANGELOG file. 77042 77043 Signed-off-by: Wolfgang Denk <wd@denx.de> 77044 77045commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243 77046Author: Markus Klotzbuecher <mk@denx.de> 77047Date: Wed Jun 6 11:49:44 2007 +0200 77048 77049 TRAB, USB: update trab board configuration for use of generic ohci driver 77050 77051commit dace45acd1c1357daa9322099d07c9a9e08b0024 77052Author: Markus Klotzbuecher <mk@denx.de> 77053Date: Wed Jun 6 11:49:43 2007 +0200 77054 77055 USB: ohci fixes and cleanup for ppc4xx and yosemite board. 77056 77057commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df 77058Author: Markus Klotzbuecher <mk@denx.de> 77059Date: Wed Jun 6 11:49:43 2007 +0200 77060 77061 USB: ohci fixes and cleanup for mpc5xxx and IceCube board config 77062 77063commit fc43be478f2aa37ce38acd85355038866e4162af 77064Author: Markus Klotzbuecher <mk@denx.de> 77065Date: Wed Jun 6 11:49:35 2007 +0200 77066 77067 USB/OHCI: endianness cleanup in the generic ohci driver 77068 77069commit c440bfe6d6d92d66478a7e84402b31f48413617b 77070Author: Stefan Roese <sr@denx.de> 77071Date: Wed Jun 6 11:42:13 2007 +0200 77072 77073 ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board 77074 77075 This patch adds NAND booting support for the AMCC Acadia eval board. 77076 77077 Please make sure to configure jumper J7 to position 2-3 when booting 77078 from NOR, and to position 1-2 when booting for NAND. 77079 77080 I also added a board command to configure the I2C bootstrap EEPROM 77081 values. Right now only 267MHz is support for booting either via NOR 77082 or NAND FLASH. Here the usage: 77083 77084 => bootstrap 267 nor ;to configure the board for 267MHz NOR booting 77085 => bootstrap 267 nand ;to configure the board for 267MHz NNAND booting 77086 77087 Signed-off-by: Stefan Roese <sr@denx.de> 77088 77089commit 18135125f909948b85d1d6881ab4ac0efb4a1c58 77090Author: Rodolfo Giometti <giometti@linux.it> 77091Date: Wed Jun 6 10:08:14 2007 +0200 77092 77093 Files include/linux/byteorder/{big,little}_endian.h define 77094 __BIG_ENDIAN and __LITTLE_ENDIAN. 77095 77096 Signed-off-by: Rodolfo Giometti <giometti@linux.it> 77097 77098commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82 77099Author: Zhang Wei <wei.zhang@freescale.com> 77100Date: Wed Jun 6 10:08:14 2007 +0200 77101 77102 Add USB PCI-OHCI, USB keyboard and event poll support to the 77103 MPC8641HPCN board config file. 77104 77105 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 77106 77107commit 4dae14ce8fbdf380017dc54f172218e7d2acc889 77108Author: Zhang Wei <wei.zhang@freescale.com> 77109Date: Wed Jun 6 10:08:14 2007 +0200 77110 77111 USB PCI-OHCI, interrupt pipe and usb event poll support 77112 77113 This patch added USB PCI-OHCI chips support, interrupt pipe support 77114 and usb event poll support. For supporting the USB interrupt pipe, the 77115 globe urb_priv is moved to purb in ed struct. Now, we can process 77116 several urbs at one time. The interrupt pipe support codes are ported 77117 from Linux kernel 2.4. 77118 77119 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 77120 77121commit fdcfaa1b02268b2899e374b35adf936c911a47eb 77122Author: Zhang Wei <wei.zhang@freescale.com> 77123Date: Wed Jun 6 10:08:13 2007 +0200 77124 77125 USB event poll support 77126 77127 This patch adds USB event poll support, which could be used in usbkbd 77128 and other usb devices driver when the asynchronous interrupt 77129 processing is supported. 77130 77131 Signed-off-by: Zhang Wei <wei.zhang@freescale.com 77132 77133commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e 77134Author: Rodolfo Giometti <giometti@linux.it> 77135Date: Wed Jun 6 10:08:12 2007 +0200 77136 77137 ISP116x: delay for crappy USB keys 77138 77139 Using some (very) slow USB keys cause the USB host controller buffers 77140 are not ready to be read by the CPU so we need an extra delay before 77141 reading the USB storage data. 77142 77143 Signed-off-by: Rodolfo Giometti <giometti@linux.it> 77144 77145commit 09444143670c9c2243cb7aba9f70b3713d33bed1 77146Author: Markus Klotzbuecher <mk@denx.de> 77147Date: Wed Jun 6 10:08:12 2007 +0200 77148 77149 Change duplicate usb_cpu_init_fail to usb_board_init_fail 77150 77151 Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing 77152 this out. 77153 77154 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 77155 77156commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e 77157Author: Ed Swarthout <Ed.Swarthout@freescale.com> 77158Date: Tue Jun 5 12:30:52 2007 -0500 77159 77160 mpc8641 image size cleanup 77161 77162 e600 does not have a bootpg restriction. 77163 Move the version string to beginning of image at fff00000. 77164 Resetvec.S is not needed. 77165 Update flash copy instructions. 77166 Add tftpflash env variable 77167 77168 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 77169 Signed-off-by: Jon Loeliger <jdl@freescale.com> 77170 77171commit e3cbe1f93c5722f8ebbad468e30c069a2b511097 77172Author: Benoît Monin <bmonin@adeneo.eu> 77173Date: Mon Jun 4 08:36:05 2007 +0200 77174 77175 [PATCH] Fix ppc4xx bootstrap letter displayed on startup 77176 77177 The attached patch is mainly cosmetic, allowing u-boot to 77178 display the correct bootstrap option letter according to the 77179 datasheets. 77180 77181 The original patch was extended with 405EZ support by Stefan 77182 Roese. 77183 77184 Signed-off-by: Benoit Monin <bmonin@adeneo.eu> 77185 Signed-off-by: Stefan Roese <sr@denx.de> 77186 77187commit 5b1313fb2758ffce8b624457f777d8cc6709608d 77188Author: Nikita V. Youshchenko <yoush@debian.org> 77189Date: Wed May 23 12:45:19 2007 +0400 77190 77191 fix compilation problem for mpc8349itx CFG_RAMBOOT 77192 77193 Current include/configs/MPC8349ITX.h does contain some support for building 77194 image that will be started from memory (without putting in into flash). 77195 It could be triggered by building with TEXT_BASE set to a low value. 77196 77197 However, this support is incomplete: using of low TEXT_BASE causes 77198 defining configuration macros in inconsistent way, which later leads 77199 to compilation errors. In particular. flash support is being disabled, 77200 but then flash structures get referenced. 77201 77202 This patch fixes this, making it possible to build with low TEXT_BASE. 77203 77204 Signed-Off-By: Nikita Youshchenko <yoush@debian.org> 77205 77206 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 77207 77208commit 8a364f0970de49949d635e60accf463c6443ef8c 77209Author: Nikita V. Youshchenko <yoush@debian.org> 77210Date: Wed May 23 12:45:25 2007 +0400 77211 77212 add missing 'console' var to default mpc8349itx config 77213 77214 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 77215 77216commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7 77217Author: Stefan Roese <sr@denx.de> 77218Date: Fri Jun 1 16:18:17 2007 +0200 77219 77220 ppc4xx: Add missing file for Bamboo NAND booting support 77221 77222 Signed-off-by: Stefan Roese <sr@denx.de> 77223 77224commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b 77225Author: Stefan Roese <sr@denx.de> 77226Date: Fri Jun 1 15:58:19 2007 +0200 77227 77228 ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz 77229 77230 This patch undoes the patch by Jeff Mann with commit-id ada4697d. As 77231 suggested by AMCC it is not recommended to dynamically change the EBC 77232 speed after bootup. So we undo this change to be on the safe side. 77233 77234 Signed-off-by: Stefan Roese <sr@denx.de> 77235 77236commit 9d9096043e8f713d4bf1743d32e1459e6a11644b 77237Author: Stefan Roese <sr@denx.de> 77238Date: Fri Jun 1 15:29:04 2007 +0200 77239 77240 ppc4xx: Update Sequoia NAND booting support with ECC 77241 77242 Signed-off-by: Stefan Roese <sr@denx.de> 77243 77244commit cf959c7d6687567c308e366e9581e1a5aff5cc5b 77245Author: Stefan Roese <sr@denx.de> 77246Date: Fri Jun 1 15:27:11 2007 +0200 77247 77248 ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board 77249 77250 This patch adds NAND booting support for the AMCC Bamboo eval board. 77251 Since the NAND-SPL boot image is limited to 4kbytes, this version 77252 only supports the onboard 64MBytes of DDR. The DIMM modules can't be 77253 supported, since the setup code for I2C DIMM autodetection and 77254 configuration is too big for this NAND bootloader. 77255 77256 Signed-off-by: Stefan Roese <sr@denx.de> 77257 77258commit 42be56f53c8b107868e6125c8524ae84293e95a7 77259Author: Stefan Roese <sr@denx.de> 77260Date: Fri Jun 1 15:23:04 2007 +0200 77261 77262 NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c 77263 77264 The U-Boot NAND booting support is now extended to support ECC 77265 upon loading of the NAND U-Boot image. 77266 77267 Tested on AMCC Sequoia (440EPx) and Bamboo (440EP). 77268 77269 Signed-off-by: Stefan Roese <sr@denx.de> 77270 77271commit a471db07fbb65a841ffc9f4f112562b945230f98 77272Author: Stefan Roese <sr@denx.de> 77273Date: Fri Jun 1 15:19:29 2007 +0200 77274 77275 ppc4xx: Prepare Bamboo port for NAND booting support 77276 77277 This patch updates the "normal" Bamboo NOR booting port, so 77278 that it is compatible with the coming soon NAND booting 77279 Bamboo port. 77280 77281 It also enables the 2nd NAND flash on the Bamboo. 77282 77283 Signed-off-by: Stefan Roese <sr@denx.de> 77284 77285commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987 77286Author: Stefan Roese <sr@denx.de> 77287Date: Fri Jun 1 15:16:58 2007 +0200 77288 77289 ppc4xx: Update in_be32() functions and friends to latest Linux version 77290 77291 Signed-off-by: Stefan Roese <sr@denx.de> 77292 77293commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c 77294Author: Stefan Roese <sr@denx.de> 77295Date: Fri Jun 1 15:15:12 2007 +0200 77296 77297 NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c 77298 77299 This patch adds hardware ECC support to the NDFC driver. It also 77300 changes the register access from using the "simple" in32/out32 77301 functions to the in_be32/out_be32 functions, which make sure 77302 that the access is correctly synced. This is the only recommended 77303 access to SoC registers in the current Linux kernel. 77304 77305 Signed-off-by: Stefan Roese <sr@denx.de> 77306 77307commit 17b5e862287cca76f19dcf8b741e61a7d06617f2 77308Author: Stefan Roese <sr@denx.de> 77309Date: Fri Jun 1 15:12:15 2007 +0200 77310 77311 NAND: Update nand_ecc.c to latest Linux version 77312 77313 This patch updates the nand_ecc code to the latest Linux version. 77314 The main reason for this is the more compact code. This makes 77315 it possible to include the ECC code into the NAND bootloader 77316 image (NAND_SPL) for PPC4xx. 77317 77318 Signed-off-by: Stefan Roese <sr@denx.de> 77319 77320commit d2d432760d2199d0e8558fdd9d1789b8131abcf7 77321Author: Stefan Roese <sr@denx.de> 77322Date: Fri Jun 1 15:09:50 2007 +0200 77323 77324 ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo 77325 77326 Signed-off-by: Stefan Roese <sr@denx.de> 77327 77328commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc 77329Author: Stefan Roese <sr@denx.de> 77330Date: Fri Jun 1 13:45:24 2007 +0200 77331 77332 ppc4xx: Change Luan config file to support ECC 77333 77334 With the updated 44x DDR2 driver the Luan board now supports 77335 ECC generation and checking. 77336 77337 Signed-off-by: Stefan Roese <sr@denx.de> 77338 77339commit 7187db73491c8de0fb56efb5e5134ba5ec443089 77340Author: Stefan Roese <sr@denx.de> 77341Date: Fri Jun 1 13:45:00 2007 +0200 77342 77343 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe) 77344 77345 Add config option for 180 degree advance clock control as needed 77346 for the AMCC Luan eval board. 77347 77348 Signed-off-by: Stefan Roese <sr@denx.de> 77349 77350commit ee1529838abbfaa35f14e3ffbeaaba693159475f 77351Author: Wolfgang Denk <wd@denx.de> 77352Date: Thu May 31 17:20:09 2007 +0200 77353 77354 Add support for STX GP3SSA (stxssa) Board with 4 MiB flash. 77355 77356 Signed-off-by: Wolfgang Denk <wd@denx.de> 77357 77358commit 7049288fb1f16f1b317140226cdebd07bd416395 77359Author: Bartlomiej Sieka <tur@semihalf.com> 77360Date: Sun May 27 17:26:46 2007 +0200 77361 77362 Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH. 77363 77364 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 77365 77366commit 4520fd4d2c450da49637216aa0e53739b61c60ac 77367Author: Bartlomiej Sieka <tur@semihalf.com> 77368Date: Sun May 27 17:06:36 2007 +0200 77369 77370 Motion-PRO: Add support for redundant environment. 77371 77372 Enable redundant environment, add a MTD partition for it; also add env. 77373 variable command for passing MTD partitions to the kernel command line. 77374 77375 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com> 77376 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 77377 77378commit a26eabeec31746f06d309103690892805696e344 77379Author: Bartlomiej Sieka <tur@semihalf.com> 77380Date: Sun May 27 17:05:11 2007 +0200 77381 77382 Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes. 77383 77384 Allow passing longer command line to the kernel - useful especially 77385 for passing MTD partition layout. 77386 77387 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com> 77388 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 77389 77390commit 9160b96f71483a116de81c68985e8ee306d36764 77391Author: Bartlomiej Sieka <tur@semihalf.com> 77392Date: Sun May 27 17:04:18 2007 +0200 77393 77394 Fix: Add missing NULL termination in strings expanded by macros parser. 77395 77396 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com> 77397 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 77398 77399commit 630ec84aef7228fc1dbfb38dec78541403a786cd 77400Author: Bartlomiej Sieka <tur@semihalf.com> 77401Date: Sun May 27 17:03:37 2007 +0200 77402 77403 Motion-PRO: Update EEPROM's page write bits and write delay. 77404 77405 Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A 77406 have a page write capability of two bytes", and "This device offers fast (1ms) 77407 byte write". Add 3ms of extra delay. 77408 77409 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com> 77410 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 77411 77412commit c00125e07c1ebc125bab40e1e18bceed8be0c162 77413Author: Bartlomiej Sieka <tur@semihalf.com> 77414Date: Sun May 27 16:58:45 2007 +0200 77415 77416 MPC5XXX, Motion-PRO: Fix PHY initialization problem. 77417 77418 After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which 77419 networking does not function. This commit switches PHY to TX mode by clearing 77420 the FX_SEL bit of Mode Control Register. It also reverses commit 77421 008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround. 77422 77423 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 77424 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 77425 77426commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db 77427Author: Bartlomiej Sieka <tur@semihalf.com> 77428Date: Sun May 27 16:57:15 2007 +0200 77429 77430 Motion-PRO: Add support for the temperature sensor. 77431 77432 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com> 77433 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 77434 77435commit c75e639630cc132dc19cd1ecda5922c0db0bfbba 77436Author: Bartlomiej Sieka <tur@semihalf.com> 77437Date: Sun May 27 16:55:23 2007 +0200 77438 77439 Motion-PRO: Add displaying of CPLD revision information during boot. 77440 77441 Signed-off-by: Jan Wrobel <wrr@semihalf.com> 77442 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 77443 77444commit c99512d6bd3973f01ca2fc4896d829b46e68f150 77445Author: Bartlomiej Sieka <tur@semihalf.com> 77446Date: Sun May 27 16:53:43 2007 +0200 77447 77448 MPC5xxx: Change names of defines related to IPB and PCI clocks. 77449 77450 Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining 77451 them does not cause PCI or IPB clocks to run at the specified speed. 77452 Instead, they configure divisors used to calculate said clocks. This 77453 patch renames the defines according to their real function. 77454 77455 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> 77456 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 77457 77458commit a11c0b85dc3664bb3c1e781137118730c8f619ab 77459Author: Bartlomiej Sieka <tur@semihalf.com> 77460Date: Sun May 27 16:51:48 2007 +0200 77461 77462 Motion-PRO: Add LED support. 77463 77464 Signed-off-by: Jan Wrobel <wrr@semihalf.com> 77465 Signed-off-by: Marian Balakowicz <m8@semihalf.com> 77466 Acked-by: Bartlomiej Sieka <tur@semihalf.com> 77467 77468commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b 77469Author: Ulf Samuelsson <ulf@atmel.com> 77470Date: Thu May 24 12:12:47 2007 +0200 77471 77472 [PATCH][NAND] Define the Vendor Id for Micron NAND Flash 77473 77474 Signed-off-by: Ulf Samuelsson <ulf@atmel.com> 77475 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 77476 Signed-off-by: Stefan Roese <sr@denx.de> 77477 77478commit d756894722c888d09a9fa1df8323753772d3dcce 77479Author: Stefan Roese <sr@denx.de> 77480Date: Thu May 24 09:49:00 2007 +0200 77481 77482 ppc4xx: Fix small 405EZ OCM initilization bug in start.S 77483 77484 As pointed out by Bruce Adler <bruce.adler@acm.org> this patch 77485 fixes a small bug in the 405EZ OCM initialization. Thanks for 77486 spotting. 77487 77488 Signed-off-by: Stefan Roese <sr@denx.de> 77489 77490commit 5d4a179013d59a76446462e1eb0a969fba63eb81 77491Author: Stefan Roese <sr@denx.de> 77492Date: Thu May 24 08:22:09 2007 +0200 77493 77494 ppc4xx: Update AMCC Acadia support for board revision 1.1 77495 77496 This patch updates the Acadia (405EZ) support for the new 1.1 board 77497 revision. It also adds support for NAND FLASH via the 4xx NDFC. 77498 77499 Please note that the jumper J7 must be in position 2-3 for this 77500 NAND support. Position 1-2 is for NAND booting only. NAND booting 77501 support will follow later. 77502 77503 Signed-off-by: Stefan Roese <sr@denx.de> 77504 77505commit 822d55365bb557e084d0e33625a6dedcc866110b 77506Author: Jon Loeliger <jdl@freescale.com> 77507Date: Wed May 23 14:09:46 2007 -0500 77508 77509 Add LIST_86xx MAKEALL target for PowerPC builds. 77510 77511 Signed-off-by: Jon Loeliger <jdl@freescale.com> 77512 77513commit 9f0077abd69f7a7c756a915b961037302be3e6f2 77514Author: Stefan Roese <sr@denx.de> 77515Date: Tue May 22 12:48:09 2007 +0200 77516 77517 ppc4xx: Use do { ... } while (0) for CPR & SDR access macros 77518 77519 Signed-off-by: Stefan Roese <sr@denx.de> 77520 77521commit 6f3dfc139a838b0841c151efe00ad47db2366e79 77522Author: Stefan Roese <sr@denx.de> 77523Date: Tue May 22 12:46:10 2007 +0200 77524 77525 ppc4xx: Add 405 support to 4xx NAND driver ndfc.c 77526 77527 This patch adds support for 405 PPC's to the 4xx NAND driver 77528 ndfc.c. This is in preparation for the new AMCC 405EZ. 77529 77530 Signed-off-by: Stefan Roese <sr@denx.de> 77531 77532commit 10603d76767426be803dadd4fb688b97eb69481c 77533Author: Stefan Roese <sr@denx.de> 77534Date: Mon May 21 07:41:22 2007 +0200 77535 77536 ppc4xx: Fix problem in 405EZ OCM initialization 77537 77538 As spotted by Bruce Adler this patch fixes an initialization problem 77539 for the 405EZ OCM. 77540 77541 Signed-off-by: Stefan Roese <sr@denx.de> 77542 77543commit 3e3b956906eba9e4ad7931581ecedaad10eccce8 77544Author: Peter Pearse <peter.pearse@arm.com> 77545Date: Fri May 18 16:47:03 2007 +0100 77546 77547 Reduce line lengths to 80 characters max. 77548 77549commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72 77550Author: Peter Pearse <peter.pearse@arm.com> 77551Date: Fri May 18 14:34:07 2007 +0100 77552 77553 Makefile permissions 77554 77555commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d 77556Author: Peter Pearse <peter.pearse@arm.com> 77557Date: Fri May 18 14:33:11 2007 +0100 77558 77559 Makefile permissions 77560 77561commit 255a3577c848706441daee0174543efe205a77f8 77562Author: Kim Phillips <kim.phillips@freescale.com> 77563Date: Wed May 16 16:52:19 2007 -0500 77564 77565 Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx 77566 77567 For all practical u-boot purposes, TSECs don't differ throughout the 77568 mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx. 77569 77570 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 77571 77572commit 70124c2602ae2d4c5d3dba05b482d91548242de8 77573Author: Stefano Babic <sbabic@denx.de> 77574Date: Wed May 16 14:49:12 2007 +0200 77575 77576 Fix compile problem cause my Microblaze merge 77577 77578 Signed-off-by: Stefano Babic <sbabic@denx.de> 77579 77580commit ada4697d0230d6da552867777f98a67ec3ba2579 77581Author: Jeffrey Mann <mannj@embeddedplanet.com> 77582Date: Wed May 16 13:23:10 2007 +0200 77583 77584 [PATCH] Run new sequoia boards with an EBC speed of 83MHz 77585 77586 Because the Sequoia board does not boot with an EBC faster than 66MHz, 77587 the clock divider are changed after the initial boot process. 77588 77589 This allows for maximum clocking speeds to be achieved on newer boards. 77590 Sequoia boards with 666.66 MHz processors require that the EBC divider 77591 be set to 3 in order to start the initial boot process at a slower EBC 77592 speed. After the initial boot process, the divider can be set back to 2, 77593 which will cause the boards to run at 83.333MHz. This is backward 77594 compatible with boards with 533.33 MHz processors, as these boards will 77595 already be set with an EBC divider of 2. 77596 77597 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com> 77598 77599commit a7676ea7732f3c596805079fed7e5c9fac652cfc 77600Author: Wolfgang Denk <wd@denx.de> 77601Date: Wed May 16 01:16:53 2007 +0200 77602 77603 Minor Coding Style cleanup, update CHANGELOG. 77604 77605 Signed-off-by: Wolfgang Denk <wd@denx.de> 77606 77607commit d62f64cc23a940eafe712c776b3249e4160753d1 77608Author: Wolfgang Denk <wd@denx.de> 77609Date: Wed May 16 00:13:33 2007 +0200 77610 77611 Coding Style Cleanup, new CHANGELOG 77612 77613commit 3162eb836903c8b247fdc7470dd39bfa6996f495 77614Author: Wolfgang Denk <wd@denx.de> 77615Date: Tue May 15 23:38:05 2007 +0200 77616 77617 Minor coding style cleanup. 77618 77619commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e 77620Author: mushtaq khan <mushtaq_k@procsys.com> 77621Date: Fri Apr 20 14:23:02 2007 +0530 77622 77623 Add driver for S-ATA-controller on Intel processors with South 77624 Bridge, ICH-5, ICH-6 and ICH-7. 77625 77626 Implementation: 77627 77628 1. Code is divided in to two files. All functions, which are 77629 controller specific are kept in "drivers/ata_piix.c" file and 77630 functions, which are not controller specific, are kept in 77631 "common/cmd_sata.c" file. 77632 77633 2. Reading and Writing from the S-ATA drive is done using PIO method. 77634 77635 3. Driver can be configured for 48-bit addressing by defining macro 77636 CONFIG_LBA48, if this macro is not defined driver uses the 28-bit 77637 addressing. 77638 77639 4. S-ATA read function is hooked to the File system, commands like 77640 ext2ls and ext2load file can be used. This has been tested. 77641 77642 5. U-Boot command "SATA_init" is added, which initializes the S-ATA 77643 controller and identifies the S-ATA drives connected to it. 77644 77645 6. U-Boot command "sata" is added, which is used to read/write, print 77646 partition table and get info about the drives present. This I have 77647 implemented in same way as "ide" command is implemented in U-Boot. 77648 77649 7. This driver is for S-ATA in native mode. 77650 77651 8. This driver does not support the Native command queuing and 77652 Hot-plugging. 77653 77654 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com> 77655 77656commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0 77657Author: mushtaq khan <mushtaq_k@procsys.com> 77658Date: Mon Apr 30 15:57:22 2007 +0530 77659 77660 Fixes bug clearing the bss section for i386 77661 77662 Hi, 77663 There is a bug in the code of clearing the bss section for processor 77664 i386.(File: cpu/i386/start.S) 77665 In the code, bss_start addr (starting addr of bss section) is put into 77666 the register %eax, but the code which clears the bss section refers to 77667 the addr pointed by %edi. 77668 77669 This patch fixes this bug by putting bss_start into %edi register. 77670 77671 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com> 77672 77673commit c3243cf7b490057277d61acffe4ad0946f9eb4a4 77674Author: Joe Hamman <joe.hamman@embeddedspecialties.com> 77675Date: Mon Apr 30 16:47:28 2007 -0500 77676 77677 Add support for BCM5464 Quad Phy 77678 77679 Added support for Broadcom's BCM5464 Quad Phy 77680 77681 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com> 77682 77683commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a 77684Author: Zang Roy-r61911 <tie-fei.zang@freescale.com> 77685Date: Wed May 9 08:10:57 2007 +0800 77686 77687 Search the exception table with linear algorithm 77688 77689 Search the exception table with linear algorithm instead of 77690 bisecting algorithm. 77691 Because the exception table might be unsorted. 77692 77693 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 77694 77695commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3 77696Author: Aubrey.Li <aubrey.adi@gmail.com> 77697Date: Mon May 14 11:47:35 2007 +0800 77698 77699 Fix compilation issues on MACOSX 77700 77701 Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com> 77702 Signed-off-by: Aubrey Li <aubrey.adi@gmail.com> 77703 77704commit 56fd7162985c412317bbf763a225fba23c64fd31 77705Author: Stephen Williams <steve@icarus.com> 77706Date: Tue May 15 07:55:42 2007 -0700 77707 77708 Fix for compile of JSE target 77709 77710 The attached patch fixes the compile of the JSE board in the 77711 denx git as of 14 may 2007. It is an extremely simple patch, 77712 it just adds the missing define of CFG_SYSTEMACE_WIDTH. 77713 77714 Fix to compile JSE against 20070514 git of u-boot 77715 77716commit 69df3c4da0c93017cceb25a366e794570bd0ed98 77717Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)> 77718Date: Sun May 13 21:01:03 2007 +0900 77719 77720 sh: MS7750SE support. 77721 77722 This adds support for the Hitachi MS7750SE. 77723 77724 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 77725 77726commit 0b135cfc2e524dc249b75057b55dd4cc09842e27 77727Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)> 77728Date: Sun May 13 20:58:00 2007 +0900 77729 77730 sh: First support code of SuperH. 77731 77732 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> 77733 77734commit 61936667e86a250ae12fd2dc189d3588f0a59e0b 77735Author: Stefan Roese <sr@denx.de> 77736Date: Fri May 11 12:01:49 2007 +0200 77737 77738 ppc4xx: Add mtcpr/mfcpr access macros 77739 77740 Signed-off-by: Stefan Roese <sr@denx.de> 77741 77742commit 343c48bd84606c4025c8a7c7263fda465d6e284c 77743Author: Stefan Roese <sr@denx.de> 77744Date: Fri May 11 12:01:06 2007 +0200 77745 77746 ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too 77747 77748 Signed-off-by: Stefan Roese <sr@denx.de> 77749 77750commit 7d98ba770a7eaefa29ce927f31a0956df85bf650 77751Author: Piotr Kruszynski <ppk@semihalf.com> 77752Date: Thu May 10 16:55:52 2007 +0200 77753 77754 [Motion-PRO] Add MTD and JFFS2 support, also add default partition 77755 definition. 77756 77757commit 65fb6a676e821f9570a2a376dc204bf611ce5f81 77758Author: Peter Pearse <peter.pearse@arm.com> 77759Date: Wed May 9 11:42:44 2007 +0100 77760 77761 Add the board directory for SMN42 77762 77763commit 160131bf965785419626df6c388729fe0b597992 77764Author: Peter Pearse <peter.pearse@arm.com> 77765Date: Wed May 9 11:41:58 2007 +0100 77766 77767 Add the files for the SMN42 board 77768 77769commit 5c6d2b5a500f8c49670de8910150b78a41f781fc 77770Author: Peter Pearse <peter.pearse@arm.com> 77771Date: Wed May 9 11:40:34 2007 +0100 77772 77773 Remove the deleted files for the SMN42 patch 77774 77775commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761 77776Author: Peter Pearse <peter.pearse@arm.com> 77777Date: Wed May 9 11:37:56 2007 +0100 77778 77779 New board SMN42 branch 77780 77781commit 29f3be0caf0799ca6b89dfd9824c15619a50000f 77782Author: Peter Pearse <peter.pearse@arm.com> 77783Date: Wed May 9 10:24:38 2007 +0100 77784 77785 Makefile permissions 77786 77787commit b84289b595731e8851df46e893845cc1322c9b9b 77788Author: Ed Swarthout <Ed.Swarthout@freescale.com> 77789Date: Tue May 8 14:17:07 2007 -0500 77790 77791 8641hpcn: Fix Makefile after moving pixis to board/freescale. 77792 77793 The OBJTREE != SRCTREE build scenario was broken. 77794 This fixes it. 77795 77796 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 77797 Signed-off-by: Jon Loeliger <jdl@freescale.com> 77798 77799commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1 77800Author: Michal Simek <monstr@monstr.eu> 77801Date: Tue May 8 15:57:43 2007 +0200 77802 77803 add: reading special purpose registers 77804 77805commit 1a50f164beb065f360fbddb76029607d6b099698 77806Author: Michal Simek <monstr@monstr.eu> 77807Date: Tue May 8 14:52:52 2007 +0200 77808 77809 add: Microblaze V5 exception handling 77810 77811commit ab874d5047e5d30dbc1e517ff26083efffa98ecb 77812Author: Michal Simek <monstr@monstr.eu> 77813Date: Tue May 8 14:39:11 2007 +0200 77814 77815 add: FSL control read and write 77816 77817commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3 77818Author: Piotr Kruszynski <ppk@semihalf.com> 77819Date: Tue May 8 13:05:44 2007 +0200 77820 77821 [Motion-PRO] Add support for I2C, EEPROM and RTC. 77822 77823commit fa5c2ba123b1bf88455bfc21db5e786ca045029d 77824Author: Bartlomiej Sieka <tur@semihalf.com> 77825Date: Tue May 8 10:23:56 2007 +0200 77826 77827 [Motion-PRO] Add ATA support. Add CF-booting commands to the default 77828 environment. 77829 77830commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839 77831Author: Bartlomiej Sieka <tur@semihalf.com> 77832Date: Tue May 8 09:39:12 2007 +0200 77833 77834 [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This 77835 eliminates networking problems in Linux (timeouts). 77836 77837commit 1f1369c34b629be94702684d41d3fddf0f6193e7 77838Author: Bartlomiej Sieka <tur@semihalf.com> 77839Date: Tue May 8 09:21:57 2007 +0200 77840 77841 [Motion-PRO] Enable Flat Device Tree support and modify default environment 77842 to allow booting of FDT-expecting kernels. 77843 77844commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db 77845Author: Michal Simek <monstr@monstr.eu> 77846Date: Mon May 7 23:58:31 2007 +0200 77847 77848 new: USE_MSR_INTR support 77849 77850commit 008861a2f3ef2c062744d733787c7e530a1b8761 77851Author: Bartlomiej Sieka <tur@semihalf.com> 77852Date: Mon May 7 22:36:15 2007 +0200 77853 77854 [MPC5xxx] There are networking problems on the Motion-PRO board with 77855 current PHY initalization code (tftp timeouts all the time). This commit 77856 temporarily disables PHY initalization sequence to make the networking 77857 operational, until a fix is found. 77858 77859commit abca901869c3760b6c5fecb825db6c1d91a78a93 77860Author: Wolfgang Denk <wd@denx.de> 77861Date: Mon May 7 22:10:36 2007 +0200 77862 77863 Get rid of duplicated file (see include/configs/sbc8560.h instead) 77864 77865 Signed-off-by: Wolfgang Denk <wd@denx.de> 77866 77867commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6 77868Author: Wolfgang Denk <wd@denx.de> 77869Date: Mon May 7 22:07:08 2007 +0200 77870 77871 Get rid of duplicated file (see doc/README.SBC8560 instead) 77872 77873 Signed-off-by: Wolfgang Denk <wd@denx.de> 77874 77875commit a7bac7e9b57ba948051beb19ec5be3a75ce75383 77876Author: Michal Simek <monstr@monstr.eu> 77877Date: Mon May 7 19:43:10 2007 +0200 77878 77879 fix: read and write MSR - repair number of parameters 77880 77881commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee 77882Author: Jeffrey Mann <mannj@embeddedplanet.com> 77883Date: Mon May 7 19:42:49 2007 +0200 77884 77885 [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file 77886 77887 A '3' got cut off in the formatting of the last patch to automatically 77888 change the clock speed of the system clock on sequoia board. 77889 77890 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com> 77891 Signed-off-by: Stefan Roese <sr@denx.de> 77892 77893commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39 77894Author: Michal Simek <monstr@monstr.eu> 77895Date: Mon May 7 19:33:51 2007 +0200 77896 77897 new: fsl interrupt support 77898 FSL_Has_data is connected to INTC. 77899 77900commit 792032baa7d625e34c981ab6df521911bd8dc861 77901Author: Michal Simek <monstr@monstr.eu> 77902Date: Mon May 7 19:30:12 2007 +0200 77903 77904 fix: interrupt handler 77905 remove asm code 77906 77907commit f3f001a341ef185d0f13841be5b5dc3395aacc31 77908Author: Michal Simek <monstr@monstr.eu> 77909Date: Mon May 7 19:25:08 2007 +0200 77910 77911 fix: remove asm code 77912 77913commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01 77914Author: Michal Simek <monstr@monstr.eu> 77915Date: Mon May 7 19:12:43 2007 +0200 77916 77917 fix: clean interrupt 77918 77919commit 42efed6130c8fcf7da881385b5427065d2801757 77920Author: Michal Simek <monstr@monstr.eu> 77921Date: Mon May 7 17:22:25 2007 +0200 77922 77923 fix: interrupt handler for multiple sources 77924 77925commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6 77926Author: Michal Simek <monstr@monstr.eu> 77927Date: Mon May 7 17:11:09 2007 +0200 77928 77929 new: add writing to msr register 77930 77931commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2 77932Author: Markus Klotzbuecher <mk@denx.de> 77933Date: Mon May 7 16:43:56 2007 +0200 77934 77935 Fix an ancient CHANGELOG conflict 77936 77937commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562 77938Author: Timur Tabi <timur@freescale.com> 77939Date: Sat May 5 08:12:30 2007 +0200 77940 77941 5xxx: write MAC address to mac-address and local-mac-address 77942 77943 Some device trees have a mac-address property, some have local-mac-address, 77944 and some have both. To support all of these device trees, ftp_cpu_setup() 77945 should write the MAC address to mac-address and local-mac-address, if they 77946 exist. 77947 77948 Signed-off-by: Timur Tabi <timur@freescale.com> 77949 Acked-by: Grant Likely <grant.likely@secretlab.ca> 77950 77951commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2 77952Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com> 77953Date: Sun Apr 29 14:01:54 2007 +0200 77954 77955 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message 77956 77957 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up 77958 message. Use PVR to distinguish between the two variants, and print proper CPU 77959 information. 77960 77961 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com> 77962 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 77963 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 77964 77965commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1 77966Author: Ladislav Michl <ladis@linux-mips.org> 77967Date: Wed Apr 25 16:01:26 2007 +0200 77968 77969 [PATCH] simplify silent console 77970 77971 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 77972 Acked-by: Stefan Roese <sr@denx.de> 77973 77974commit b7598a43f2b421a713d8135e98a42c37d9eb9df0 77975Author: Sergei Shtylyov <sshtylyov@ru.mvista.com> 77976Date: Mon Apr 23 15:30:39 2007 +0200 77977 77978 [PATCH] Avoid assigning PCI resources from zero address 77979 77980 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE 77981 core complains and IDE drivers fails to work. Also, assigning zero to a BAR 77982 was illegal according to PCI 2.1 (the later revisions seem to have excluded the 77983 sentence about "0" being considered an invalid address) -- so, use a reasonable 77984 starting value of 0x1000 (that's what the most Linux archs are using). 77985 77986 Alternatively, one might have fixed the calls to pci_set_region() individually 77987 (some code even seems to have taken care of this issue) but that would have 77988 been a lot more work. :-) 77989 77990 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> 77991 Acked-by: Stefan Roese <sr@denx.de> 77992 77993commit 9ffd451afeb08e5be7ddae680487ec962b2bca25 77994Author: Jeffrey Mann <mannj@embeddedplanet.com> 77995Date: Mon Apr 23 14:00:11 2007 +0200 77996 77997 [patch] setenv(...) can delete environmentalvariables 77998 77999 update setenv() function so that entering a NULL value for the 78000 variable's value will delete the environmental variable
78001 78002 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com> 78003 Acked-by: Stefan Roese <sr@denx.de> 78004 78005commit ebd0a0ae05a44769c4e27458ad4e9f3438250443 78006Author: Mike Frysinger <vapier@gentoo.org> 78007Date: Mon Apr 23 13:54:24 2007 +0200 78008 78009 [patch] use unsigned char in smc91111 driver for mac 78010 78011 the v_mac variable in the smc91111 driver is declared as a signed char ... 78012 this causes problems when one of the bytes in the MAC is "signed" like 0xE0 78013 because when it gets printed out, you get a display like: 78014 0xFFFFFFE0 and that's no good 78015 78016 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 78017 78018commit ffc50f9bb194343c6303517a517708457a5eb6b8 78019Author: Michal Simek <monstr@monstr.eu> 78020Date: Sat May 5 18:54:42 2007 +0200 78021 78022 new: FSL and MSR support #2 78023 78024commit f7e2e0eb0668136305f78bb9c21be79b48a34247 78025Author: Michal Simek <monstr@monstr.eu> 78026Date: Sat May 5 18:27:16 2007 +0200 78027 78028 new: FSL and MSR support 78029 78030commit 2f15278c2eb911c668b4fe562130b78cf554d139 78031Author: Wolfgang Denk <wd@denx.de> 78032Date: Sat May 5 18:23:11 2007 +0200 78033 78034 Coding stylke cleanup; update CHANGELOG. 78035 78036 Signed-off-by: Wolfgang Denk <wd@denx.de> 78037 78038commit 885ec89b648a899a2f32393fd3ffd9f7234c4402 78039Author: Wolfgang Denk <wd@denx.de> 78040Date: Sat May 5 18:05:02 2007 +0200 78041 78042 Add STX GP3 SSA board to MAKEALL script; update CHANGELOG. 78043 78044 Signed-off-by: Wolfgang Denk <wd@denx.de> 78045 78046commit 5499645b3fe17a548af9dfc479ca6e2455f179a2 78047Author: Wolfgang Denk <wd@denx.de> 78048Date: Sat May 5 17:15:50 2007 +0200 78049 78050 Make "file" command happy with some config.mk files; update CHANGELOG 78051 78052commit e3b8c78bc2489c27ae020986ef0eaca684866cef 78053Author: Jeffrey Mann <mannj@embeddedplanet.com> 78054Date: Sat May 5 08:32:14 2007 +0200 78055 78056 ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz 78057 78058 The AMCC Secquoia board has been changed in a new revision from using a 78059 33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD 78060 indicates the difference. This patch reads that bit and uses the correct 78061 clock speed for the board. This code is backward compatable will all 78062 prior boards. All prior boards will be read as 33.000. 78063 78064 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com> 78065 Signed-off-by: Stefan Roese <sr@denx.de> 78066 78067commit f544ff6656fca263ed1ebe39899b6d95da67c8b8 78068Author: Stefan Roese <sr@denx.de> 78069Date: Sat May 5 08:29:01 2007 +0200 78070 78071 ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting 78072 78073 Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big 78074 for the 4k NAND boot image so define bus_frequency to 133MHz here 78075 which is save for the refresh counter setup. 78076 78077 Signed-off-by: Stefan Roese <sr@denx.de> 78078 78079commit 2f550ab976405300f5b07bf2890800840d0aa05f 78080Author: Timur Tabi <timur@freescale.com> 78081Date: Sat May 5 08:12:30 2007 +0200 78082 78083 5xxx: write MAC address to mac-address and local-mac-address 78084 78085 Some device trees have a mac-address property, some have local-mac-address, 78086 and some have both. To support all of these device trees, ftp_cpu_setup() 78087 should write the MAC address to mac-address and local-mac-address, if they 78088 exist. 78089 78090 Signed-off-by: Timur Tabi <timur@freescale.com> 78091 Acked-by: Grant Likely <grant.likely@secretlab.ca> 78092 78093commit a79886590593ba1d667c840caa4940c61639f18f 78094Author: Thomas Knobloch <knobloch@siemens.com> 78095Date: Sat May 5 07:04:42 2007 +0200 78096 78097 NAND: Wrong calculation of page number in nand_block_bad() 78098 78099 In case that there is no memory based bad block table available the 78100 function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call 78101 nand_block_bad() directly. When parameter 'getchip' is set to zero, 78102 nand_block_bad() will not right shift the offset to calculate the 78103 correct page number. 78104 78105 Signed-off-by: Thomas Knobloch <knobloch@siemens.com> 78106 Signed-off-by: Stefan Roese <sr@denx.de> 78107 78108commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6 78109Author: Wolfgang Denk <wd@denx.de> 78110Date: Fri May 4 10:02:33 2007 +0200 78111 78112 Fix initrd length corruption in bootm command. 78113 78114 When using FDT Images, the length of an inital ramdisk was 78115 overwritten (bug introduced by commit 87a449c8, 22 Aug 2006). 78116 78117 Patches by Timur Tabi & Johns Daniel. 78118 78119 Signed-off-by: Wolfgang Denk <wd@denx.de> 78120 78121commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96 78122Author: Kim Phillips <kim.phillips@freescale.com> 78123Date: Thu May 3 19:43:52 2007 -0500 78124 78125 mpc83xx: fix trivial error in MAKEALL 78126 78127 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 78128 78129commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a 78130Author: Wolfgang Denk <wd@denx.de> 78131Date: Thu May 3 16:34:41 2007 +0200 78132 78133 Update board configuration for STX GP3SSA board: 78134 78135 Enable hush shell, environment in flash rather in EEPROM, 78136 more user-friendly default environment, etc. 78137 The simple EEPROM environment can be selected easily in the board 78138 config file. 78139 78140 Signed-off-by: Wolfgang Denk <wd@denx.de> 78141 78142commit 2c6fb199dc5756fc72f49d1f4de105e089049d65 78143Author: Wolfgang Denk <wd@denx.de> 78144Date: Tue Apr 24 14:37:49 2007 +0200 78145 78146 Cleanup STX GP3SSA code; fix build and compile problems. 78147 78148commit 35171dc04e028ecacc23ad916a66295472555dbf 78149Author: Dan Malek <dan@embeddedalley.com> 78150Date: Fri Jan 5 09:15:34 2007 +0100 78151 78152 Add support for STX GP3SSA (stxssa) Board 78153 78154 Signed-off-by Dan Malek, <dan@embeddedalley.com> 78155 78156commit f2134f8e9eb006bdcd729e89f309c07b2fa45180 78157Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 78158Date: Wed May 2 13:31:53 2007 +0200 78159 78160 macb: Don't restart autonegotiation if we already have link 78161 78162 Rework macb_phy_init so that it doesn't attempt to re-negotiate if the 78163 link is already up. 78164 78165 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 78166 78167commit 04fcb5d38bc90779cd9a710d60702075986f0e29 78168Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 78169Date: Wed May 2 13:22:38 2007 +0200 78170 78171 macb: Introduce a few barriers when dealing with DMA descriptors 78172 78173 There were a few theoretical possibilities that the compiler might 78174 optimize away DMA descriptor reads and/or writes and thus cause 78175 synchronization problems with the hardware. Insert barriers where 78176 we depend on reads/writes actually hitting memory. 78177 78178 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 78179 78180commit ffa621a0d12a1ccd81c936c567f8917a213787a8 78181Author: Andy Fleming <afleming@freescale.com> 78182Date: Sat Feb 24 01:08:13 2007 -0600 78183 78184 Cleaned up some 85xx PCI bugs 78185 78186 * Cleaned up the CDS PCI Config Tables and added NULL entries to 78187 the end 78188 * Fixed PCIe LAWBAR assignemt to use the cpu-relative address 78189 * Fixed 85xx PCI code to assign powar region sizes based on the 78190 config values (rather than hard-coding them) 78191 * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address 78192 78193 Signed-off-by: Andy Fleming <afleming@freescale.com> 78194 78195commit 6743105988fc44d5b0d30388c790607835aae7a6 78196Author: Andy Fleming <afleming@freescale.com> 78197Date: Mon Apr 23 02:54:25 2007 -0500 78198 78199 Add support for the 8568 MDS board 78200 78201 This included some changes to common files: 78202 * Add 8568 processor SVR to various places 78203 * Add support for setting the qe bus-frequency value in the dts 78204 * Add the 8568MDS target to the Makefile 78205 78206 Signed-off-by: Andy Fleming <afleming@freescale.com> 78207 78208commit af1c2b84bf27c8565baddc82d1abb93700d10e2e 78209Author: David Updegraff <dave@cray.com> 78210Date: Fri Apr 20 14:34:48 2007 -0500 78211 78212 Add support for treating unknown PHYs as generic PHYs. 78213 78214 When bringing up u-boot on new boards, PHY support sometimes gets 78215 neglected. Most PHYs don't really need any special support, 78216 though. By adding a generic entry that always matches if nothing 78217 else does, we can provide support for "unsupported" PHYs for the 78218 tsec. 78219 78220 The generic PHY driver supports most PHYs, including gigabit. 78221 78222 Signed-off-by: David Updegraff <dave@cray.com> 78223 Signed-off-by: Andy Fleming <afleming@freescale.com> 78224 78225commit a75af9bfd8fff0499efdbb90601cec5a2afef117 78226Author: James Yang <James.Yang@freescale.com> 78227Date: Wed Feb 7 15:28:04 2007 -0600 78228 78229 Conditionalize 8641 Rev1.0 MCM workarounds 78230 78231 Signed-off-by: James Yang <James.Yang@freescale.com> 78232 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78233 78234commit f64702b7fc8f8df39d31add770df6e372f9e9ce3 78235Author: Timur Tabi <timur@freescale.com> 78236Date: Mon Apr 30 13:59:50 2007 -0500 78237 78238 Fix memory initialization on MPC8349E-mITX 78239 78240 Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP. 78241 This allows ddr->sdram_clk_cntl to be properly initialized. This is necessary 78242 on some ITX boards, notably those with a revision 3.1 CPU. 78243 78244 Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into 78245 ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined. 78246 78247 Signed-off-by: Timur Tabi <timur@freescale.com> 78248 Acked-by: Michael Benedict <MBenedict@twacs.com> 78249 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 78250 78251commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3 78252Author: Kim Phillips <kim.phillips@freescale.com> 78253Date: Mon Apr 30 15:26:21 2007 -0500 78254 78255 mpc83xx: replace elaborate boottime verbosity with 'clocks' command 78256 78257 and fix CPU: to align with Board: display text. 78258 78259 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 78260 78261commit c1ab82669d9525998c34e802a12cad662723f22a 78262Author: James Yang <James.Yang@freescale.com> 78263Date: Fri Mar 16 13:02:53 2007 -0500 78264 78265 Rewrote picos_to_clk() to avoid rounding errors. 78266 Clarified that conversion is to DRAM clocks rather than platform clocks. 78267 Made function static to spd_sdram.c. 78268 78269 Signed-off-by: James Yang <James.Yang@freescale.com> 78270 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78271 78272commit 8b39501d28754e72726ce7fb02310e56dbdf116a 78273Author: Stefan Roese <sr@denx.de> 78274Date: Sun Apr 29 14:13:01 2007 +0200 78275 78276 ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver 78277 78278 Signed-off-by: Stefan Roese <sr@denx.de> 78279 78280commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9 78281Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com> 78282Date: Sun Apr 29 14:01:54 2007 +0200 78283 78284 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message 78285 78286 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up 78287 message. Use PVR to distinguish between the two variants, and print proper CPU 78288 information. 78289 78290 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com> 78291 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com> 78292 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 78293 78294commit 5c5d3242935cf3543af01142627494434834cf98 78295Author: Kim Phillips <kim.phillips@freescale.com> 78296Date: Wed Apr 25 12:34:38 2007 -0500 78297 78298 mpc83xx: minor fixups for 8313rdb introduction 78299 78300commit ada4d40091f6ed4a4f0040e08d20db21967e4a67 78301Author: Ladislav Michl <ladis@linux-mips.org> 78302Date: Wed Apr 25 16:01:26 2007 +0200 78303 78304 [PATCH] simplify silent console 78305 78306 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 78307 Acked-by: Stefan Roese <sr@denx.de> 78308 78309commit 144876a380f5756f57412caf74c1d6dc201dd796 78310Author: Michal Simek <monstr@monstr.eu> 78311Date: Tue Apr 24 23:01:02 2007 +0200 78312 78313 [PATCH] MTD partition support, JFFS2 support 78314 78315commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb 78316Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 78317Date: Tue Apr 24 14:03:45 2007 +0200 78318 78319 ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content. 78320 78321 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 78322 78323commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d 78324Author: Andy Fleming <afleming@freescale.com> 78325Date: Mon Apr 23 02:37:47 2007 -0500 78326 78327 Reworked 85xx speed detection code 78328 78329 Changed the code to read the registers and calculate the clock 78330 rates, rather than using a "switch" statement. 78331 78332 Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com> 78333 78334 Signed-off-by: Andy Fleming <afleming@freescale.com> 78335 78336commit 81f481ca708ed6a56bf9c410e3191dbad581c565 78337Author: Andy Fleming <afleming@freescale.com> 78338Date: Mon Apr 23 02:24:28 2007 -0500 78339 78340 Enable 8544 support 78341 78342 * Add support to the Makefile 78343 * Add 8544 configuration support to the tsec driver 78344 * Add 8544 SVR numbers to processor.h 78345 78346 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 78347 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78348 78349commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe 78350Author: Andy Fleming <afleming@freescale.com> 78351Date: Fri Feb 23 17:12:25 2007 -0600 78352 78353 Support 1G size on 8548 78354 78355 e500v2 and newer cores support 1G page sizes. 78356 78357 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 78358 Signed-off-by: Andy Fleming <afleming@freescale.com> 78359 78360commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46 78361Author: Andy Fleming <afleming@freescale.com> 78362Date: Fri Feb 23 17:11:16 2007 -0600 78363 78364 Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG 78365 78366 The other pagesz constants use one letter to specify order of 78367 magnitude. Also change the one reference to it in mpc8548cds/init.S 78368 78369 Signed-off-by: Andy Fleming <afleming@freescale.com> 78370 78371commit 1f9a318cea14272edd10d63739e2d326c90f430e 78372Author: Andy Fleming <afleming@freescale.com> 78373Date: Fri Feb 23 16:28:46 2007 -0600 78374 78375 Only set ddrioovcr for 8548 rev1. 78376 78377 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 78378 Signed-off-by: Andy Fleming <afleming@freescale.com> 78379 78380commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2 78381Author: Andy Fleming <afleming@freescale.com> 78382Date: Sat Feb 24 01:16:45 2007 -0600 78383 78384 Tweak DDR ECC error counter 78385 78386 Enable single-bit error counter when memory was cleared by ddr controller. 78387 78388 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 78389 Signed-off-by: Andy Fleming <afleming@freescale.com> 78390 78391commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b 78392Author: Timur Tabi <timur@freescale.com> 78393Date: Mon Feb 12 13:34:55 2007 -0600 78394 78395 85xx: write MAC address to mac-address and local-mac-address 78396 78397 Some device trees have a mac-address property, some have local-mac-address, 78398 and some have both. To support all of these device trees, ftp_cpu_setup() 78399 should write the MAC address to mac-address and local-mac-address, if they 78400 exist. 78401 78402 Signed-off-by: Timur Tabi <timur@freescale.com> 78403 78404commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4 78405Author: Andy Fleming <afleming@freescale.com> 78406Date: Mon Apr 23 01:44:44 2007 -0500 78407 78408 Some 85xx cpu cleanups 78409 78410 * Cleaned up the TSR[WIS] clearing 78411 * Cleaned up DMA initialization 78412 78413 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 78414 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78415 Acked-by: Andy Fleming <afleming@freescale.com> 78416 78417commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb 78418Author: Andy Fleming <afleming@freescale.com> 78419Date: Mon Apr 23 01:32:22 2007 -0500 78420 78421 Add cpu support for the 8544 78422 78423 Recognize new SVR values, and add a few register definitions 78424 78425 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 78426 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78427 Acked-by: Andy Fleming <afleming@freescale.com> 78428 78429commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae 78430Author: Jon Loeliger <jdl@freescale.com> 78431Date: Wed Apr 11 16:51:02 2007 -0500 78432 78433 Add MPC8544DS basic port board files. 78434 78435 Add board port under new board/freescale directory 78436 structure and reuse existing PIXIS FPGA support there. 78437 78438 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 78439 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78440 78441commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa 78442Author: Jon Loeliger <jdl@freescale.com> 78443Date: Wed Apr 11 16:50:57 2007 -0500 78444 78445 Add MPC8544DS main configuration file. 78446 78447 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 78448 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78449 78450commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6 78451Author: Sergei Shtylyov <sshtylyov@ru.mvista.com> 78452Date: Wed Dec 27 22:07:15 2006 +0300 78453 78454 Fix PCI I/O space mapping on Freescale MPC85x0ADS 78455 78456 The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit 78457 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's 78458 describing the local address window used for the PCI I/O space accesses -- fix 78459 this and carry over the necessary changes into the MPC8560ADS code since the 78460 PCI I/O space mapping was also broken for this board (by the earlier commit 78461 087454609e47295443af793a282cddcd91a5f49c). Add the comments clarifying how 78462 the PCI I/O space must be mapped to all the MPC85xx board config. headers. 78463 78464 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> 78465 78466 board/mpc8540ads/init.S | 4 ++-- 78467 board/mpc8560ads/init.S | 4 ++-- 78468 include/configs/MPC8540ADS.h | 5 ++--- 78469 include/configs/MPC8541CDS.h | 2 +- 78470 include/configs/MPC8548CDS.h | 2 +- 78471 include/configs/MPC8560ADS.h | 8 ++++---- 78472 6 files changed, 12 insertions(+), 13 deletions(-) 78473 78474commit 96629cbabdb727d4a5e62542deefc01d498db6dc 78475Author: Zang Roy-r61911 <tie-fei.zang@freescale.com> 78476Date: Tue Dec 5 16:42:30 2006 +0800 78477 78478 u-boot: Fix e500 v2 core reset bug 78479 78480 The following patch fixes the e500 v2 core reset bug. 78481 For e500 v2 core, a new reset control register is added to reset the 78482 processor. 78483 78484 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 78485 78486commit 63247a5acd58032e6cf33f525bc3923b467bac88 78487Author: Zang Roy-r61911 <tie-fei.zang@freescale.com> 78488Date: Wed Dec 20 11:01:00 2006 +0800 78489 78490 u-boot: v2: Remove the fixed TLB and LAW entrynubmer 78491 78492 Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW 78493 entry number to control the loop. This can reduce the potential risk 78494 for the 85xx processor increasing its TLB adn LAW entry number. 78495 78496 Signed-off-by: Swarthout Edward <swarthout@freescale.com> 78497 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 78498 78499commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf 78500Author: Zang Roy-r61911 <tie-fei.zang@freescale.com> 78501Date: Mon Dec 18 17:01:04 2006 +0800 78502 78503 u-boot: Fix the 85xxcds tsec bug 78504 78505 Fix the 85xxcds tsec bug. 78506 When enable PCI, tsec.o should be added to u-boot.lds to make tsec work. 78507 78508 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 78509 78510commit 7337b237ffc4aaf1b9467024fe472a880d852598 78511Author: Zang Roy-r61911 <tie-fei.zang@freescale.com> 78512Date: Fri Dec 15 14:43:31 2006 +0800 78513 78514 u-boot: Fix CPU2 errata on MPC8548CDS board 78515 78516 This patch apply workaround of CPU2 errata on MPC8548CDS board. 78517 78518 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com> 78519 78520commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09 78521Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com> 78522Date: Mon Dec 18 16:25:15 2006 +0800 78523 78524 u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default 78525 78526 This patch disables MPC8548CDS 2T_TIMING for DDR by default. 78527 78528 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com> 78529 78530commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7 78531Author: Zang Roy-r61911 <tie-fei.zang@freescale.com> 78532Date: Thu Dec 14 14:14:55 2006 +0800 78533 78534 u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board 78535 78536 Enable PCI function and add PEX & rapidio memory map on MPC8548CDS 78537 board. 78538 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 78539 78540commit 96b8a05432f346f36493535c85320b70ec9c7c1b 78541Author: Scott Wood <scottwood@freescale.com> 78542Date: Mon Apr 16 14:54:15 2007 -0500 78543 78544 mpc83xx: Add MPC8313ERDB support. 78545 78546 Signed-off-by: Scott Wood <scottwood@freescale.com> 78547 78548commit 49ea3b6eafe606285ae4d5c378026153dde53200 78549Author: Scott Wood <scottwood@freescale.com> 78550Date: Mon Apr 16 14:34:21 2007 -0500 78551 78552 mpc83xx: Add generic PCI setup code. 78553 78554 Board code can now request the generic setup code rather than having to 78555 copy-and-paste it for themselves. Boards should be converted to use this 78556 once they're tested with it. 78557 78558 Signed-off-by: Scott Wood <scottwood@freescale.com> 78559 78560commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea 78561Author: Scott Wood <scottwood@freescale.com> 78562Date: Mon Apr 16 14:34:19 2007 -0500 78563 78564 mpc83xx: Add 831x support to speed.c. 78565 78566 Signed-off-by: Scott Wood <scottwood@freescale.com> 78567 78568commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f 78569Author: Scott Wood <scottwood@freescale.com> 78570Date: Mon Apr 16 14:34:18 2007 -0500 78571 78572 mpc83xx: Add 831x support to global_data.h 78573 78574 Signed-off-by: Scott Wood <scottwood@freescale.com> 78575 78576commit 95e7ef897e54591e615fc1b458b74c286fe1fb06 78577Author: Scott Wood <scottwood@freescale.com> 78578Date: Mon Apr 16 14:34:16 2007 -0500 78579 78580 mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu(). 78581 78582 Rather than misleadingly define PVR_83xx as the specific type of 83xx 78583 being built for, the PVR of each core revision is defined. checkcpu() now 78584 prints the core that it detects, rather than aborting if it doesn't find 78585 what it thinks it wants. 78586 78587 Signed-off-by: Scott Wood <scottwood@freescale.com> 78588 78589commit a35b0c4950d84cf9e3a9e32b916135956d1ac636 78590Author: Scott Wood <scottwood@freescale.com> 78591Date: Mon Apr 16 14:34:15 2007 -0500 78592 78593 mpc83xx: Recognize SPR values for MPC8311 and MPC8313. 78594 78595 Signed-off-by: Scott Wood <scottwood@freescale.com> 78596 78597commit d87c57b201b4572d16f1b642998faa00c9912b16 78598Author: Scott Wood <scottwood@freescale.com> 78599Date: Mon Apr 16 14:31:55 2007 -0500 78600 78601 mpc83xx: Add register definitions for MPC831x. 78602 78603 Signed-off-by: Scott Wood <scottwood@freescale.com> 78604 78605commit 7fc4c71a143be8666d70803fb25ae60379c95622 78606Author: Stefan Roese <sr@denx.de> 78607Date: Mon Apr 23 15:39:59 2007 +0200 78608 78609 Fix file mode 78610 78611 Signed-off-by: Stefan Roese <sr@denx.de> 78612 78613commit 38257988abfe74d459ca2ad748b109ca04e4efe1 78614Author: Sergei Shtylyov <sshtylyov@ru.mvista.com> 78615Date: Mon Apr 23 15:30:39 2007 +0200 78616 78617 [PATCH] Avoid assigning PCI resources from zero address 78618 78619 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE 78620 core complains and IDE drivers fails to work. Also, assigning zero to a BAR 78621 was illegal according to PCI 2.1 (the later revisions seem to have excluded the 78622 sentence about "0" being considered an invalid address) -- so, use a reasonable 78623 starting value of 0x1000 (that's what the most Linux archs are using). 78624 78625 Alternatively, one might have fixed the calls to pci_set_region() individually 78626 (some code even seems to have taken care of this issue) but that would have 78627 been a lot more work. :-) 78628 78629 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> 78630 Acked-by: Stefan Roese <sr@denx.de> 78631 78632commit afb903a2eb9436baa9270ccc0c27082d86497d89 78633Author: Jeffrey Mann <mannj@embeddedplanet.com> 78634Date: Mon Apr 23 14:00:11 2007 +0200 78635 78636 [patch] setenv(...) can delete environmentalvariables 78637 78638 update setenv() function so that entering a NULL value for the 78639 variable's value will delete the environmental variable 78640 78641 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com> 78642 Acked-by: Stefan Roese <sr@denx.de> 78643 78644commit 36f104e5caa747d568eff26b369565af57c2ffa6 78645Author: Mike Frysinger <vapier@gentoo.org> 78646Date: Mon Apr 23 13:54:24 2007 +0200 78647 78648 [patch] use unsigned char in smc91111 driver for mac 78649 78650 the v_mac variable in the smc91111 driver is declared as a signed char ... 78651 this causes problems when one of the bytes in the MAC is "signed" like 0xE0 78652 because when it gets printed out, you get a display like: 78653 0xFFFFFFE0 and that's no good 78654 78655 Signed-off-by: Mike Frysinger <vapier@gentoo.org> 78656 78657commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459 78658Author: Rodolfo Giometti <giometti@enneenne.com> 78659Date: Mon Apr 23 13:10:52 2007 +0200 78660 78661 USB: (Another) delay for crappy USB keys. 78662 78663 Some USB keys are slow in giving back an answer when the Root HUB 78664 enables power lines. 78665 78666 Signed-off-by: Rodolfo Giometti <giometti@linux.it> 78667 78668commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522 78669Author: Stefan Roese <sr@denx.de> 78670Date: Mon Apr 23 12:00:22 2007 +0200 78671 78672 Remove BOARDLIBS usage completely 78673 78674 Signed-off-by: Stefan Roese <sr@denx.de> 78675 78676commit 32556443840f127170e4baa8bdd5b567039f6c36 78677Author: Michal Simek <monstr@monstr.eu> 78678Date: Sat Apr 21 21:07:22 2007 +0200 78679 78680 [PATCH] SystemACE support for Microblaze 78681 78682commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f 78683Author: Michal Simek <monstr@monstr.eu> 78684Date: Sat Apr 21 21:02:40 2007 +0200 78685 78686 16bit read/write little endian 78687 78688commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4 78689Author: Michal Simek <monstr@monstr.eu> 78690Date: Sat Apr 21 20:53:31 2007 +0200 78691 78692 Change ML401 parameters - Xilinx BSP 78693 78694commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d 78695Author: Ed Swarthout <Ed.Swarthout@freescale.com> 78696Date: Wed Feb 28 05:37:29 2007 -0600 78697 78698 mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines. 78699 78700 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 78701 78702commit 79cb47391eebef85acadb3f6961ef6c55cace6ac 78703Author: Zhang Wei <wei.zhang@freescale.com> 78704Date: Fri Jan 19 10:42:37 2007 +0800 78705 78706 Enable LAWs for MPC8641 PCI-Ex2. 78707 78708 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 78709 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78710 78711commit bd7851ce1e1f140665b520026abf1042968b1102 78712Author: Jon Loeliger <jdl@freescale.com> 78713Date: Fri Apr 20 14:12:26 2007 -0500 78714 78715 mpc86xx; Write MAC address to mac-address and local-mac-address 78716 78717 Some device trees have a mac-address property, some have local-mac-address, 78718 and some have both. To support all of these device trees, ftp_cpu_setup() 78719 should write the MAC address to mac-address and local-mac-address, if they 78720 exist. 78721 78722 Signed-off-by: Timur Tabi <timur@freescale.com> 78723 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78724 78725commit 7dbdf28b8bd855a8530dc3292e4982575a197060 78726Author: Jon Loeliger <jdl@freescale.com> 78727Date: Fri Apr 20 14:11:38 2007 -0500 78728 78729 mpc86xx: protect memcpy to bad address if a mac-address is missing from dt 78730 78731 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 78732 Signed-off-by: Jon Loeliger <jdl@freescale.com> 78733 78734commit 14da5f7675bbb427c469e3f45006e027b6e21db9 78735Author: Wolfgang Denk <wd@denx.de> 78736Date: Fri Apr 20 17:43:28 2007 +0200 78737 78738 Cleanup compiler warnings, update CHANGELOG 78739 78740 Signed-off-by: Wolfgang Denk <wd@denx.de> 78741 78742commit 6923565db12af34fd5e02d354ee65a8c78ac460f 78743Author: Detlev Zundel <dzu@denx.de> 78744Date: Fri Apr 20 12:01:47 2007 +0200 78745 78746 Fix breakage of NC650 board with respect to nand support. 78747 78748 Signed-off-by: Detlev Zundel <dzu@denx.de> 78749 78750commit 39f23cd90947639ac278a18ff277ec786b5ac167 78751Author: Domen Puncer <domen.puncer@telargo.com> 78752Date: Fri Apr 20 11:13:16 2007 +0200 78753 78754 [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation 78755 78756 G2 core reference manual says decrementer and time base 78757 are decreasing/increasing once every 4 bus clock cycles. 78758 Lets fix it, so time in Linux won't run twice as fast 78759 78760 Signed-off-by: Domen Puncer <domen.puncer@telargo.com> 78761 Acked-by: Grant Likely <grant.likely@secretlab.ca> 78762 78763commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56 78764Author: Gerald Van Baren <vanbaren@cideas.com> 78765Date: Thu Apr 19 23:14:39 2007 -0400 78766 78767 Fix serious pointer bug with bootm and reserve map. 78768 78769 What was suppose to be a stack variable was declared as a pointer, 78770 overwriting random memory. 78771 Also moved the libfdt.a requirement into the main Makefile. That is 78772 The U-Boot Way. 78773 78774commit d21686263574e95cb3e9e9b0496f968b1b897fdb 78775Author: Stefan Roese <sr@denx.de> 78776Date: Thu Apr 19 09:53:52 2007 +0200 78777 78778 ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai 78779 78780 Previous versions used full wait states for the chip select #1 which 78781 is connected to the Xilinix SystemACE controller on the AMCC Katmai 78782 evaluation board. This leads to really slow access and therefore low 78783 performance. This patch now sets up the chip select a lot faster 78784 resulting in much better read/write performance of the Linux driver. 78785 78786 Signed-off-by: Stefan Roese <sr@denx.de> 78787 78788commit 37837828d89084879bee2f2b8c7c68d4695940df 78789Author: Wolfgang Denk <wd@denx.de> 78790Date: Wed Apr 18 17:49:29 2007 +0200 78791 78792 Clenaup, update CHANGELOG 78793 78794 Signed-off-by: Wolfgang Denk <wd@denx.de> 78795 78796commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449 78797Author: Wolfgang Denk <wd@denx.de> 78798Date: Wed Apr 18 17:20:58 2007 +0200 78799 78800 Update CHANGELOG 78801 78802 Signed-off-by: Wolfgang Denk <wd@denx.de> 78803 78804commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b 78805Author: Wolfgang Denk <wd@denx.de> 78806Date: Wed Apr 18 17:07:26 2007 +0200 78807 78808 Cleanup, update CHANGELOG 78809 78810 Sigend-off-by: Wolfgang Denk <wd@denx.de> 78811 78812commit 5f6c732affea9647762d27a4617a2ae64c52dceb 78813Author: Wolfgang Denk <wd@denx.de> 78814Date: Wed Apr 18 16:17:46 2007 +0200 78815 78816 Update CHANGELOG 78817 78818commit ad4eb555671d97f96dc56eab55103b1f86874b01 78819Author: Wolfgang Denk <wd@denx.de> 78820Date: Wed Apr 18 14:30:39 2007 +0200 78821 78822 MCC200 board: remove warning which is obsolete after PSoC firmware changes 78823 78824 Signed-off-by: Wolfgang Denk <wd@denx.de> 78825 78826commit 3747a3f010b2b1442dec3e871c69788b6017aaae 78827Author: Domen Puncer <domen.puncer@telargo.com> 78828Date: Wed Apr 18 12:11:05 2007 +0200 78829 78830 [PATCH] icecube/lite5200b: document wakeup from low-power support 78831 78832 Signed-off-by: Domen Puncer <domen.puncer@telargo.com> 78833 78834commit e673226ff9d6aa91b47ceac74b8c13770b06bb37 78835Author: Stefan Roese <sr@denx.de> 78836Date: Wed Apr 18 12:07:47 2007 +0200 78837 78838 ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM 78839 78840 Signed-off-by: Stefan Roese <sr@denx.de> 78841 78842commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f 78843Author: Stefan Roese <sr@denx.de> 78844Date: Wed Apr 18 12:05:59 2007 +0200 78845 78846 ppc4xx: Add output for bootrom location to 405EZ ports 78847 78848 Now 405EZ ports also show upon bootup from which boot device 78849 they are configured to boot: 78850 78851 U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05) 78852 78853 CPU: AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz) 78854 Bootstrap Option E - Boot ROM Location EBC (32 bits) 78855 16 kB I-Cache 16 kB D-Cache 78856 Board: Acadia - AMCC PPC405EZ Evaluation Board 78857 78858 Signed-off-by: Stefan Roese <sr@denx.de> 78859 78860commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85 78861Author: Peter Pearse <peter.pearse@arm.com> 78862Date: Tue Apr 17 13:30:33 2007 +0100 78863 78864 Move ppearse to ARM board list 78865 Add Konstantin Kletschke for scb9328. 78866 Signed-off-by: Peter Pearse <peter.pearse@arm.com> 78867 78868commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3 78869Author: Domen Puncer <domen.puncer@telargo.com> 78870Date: Mon Apr 16 14:00:13 2007 +0200 78871 78872 [PATCH] icecube/lite5200b: wakeup from low-power support 78873 78874 U-Boot part of Lite5200b low power mode support. 78875 Puts SDRAM out of self-refresh and transfers control to 78876 address saved at physical 0x0. 78877 78878 Signed-off-by: Domen Puncer <domen.puncer@telargo.com> 78879 Acked-by: Grant Likely <grant.likely@secretlab.ca> 78880 78881commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460 78882Author: Gerald Van Baren <vanbaren@cideas.com> 78883Date: Sun Apr 15 13:54:26 2007 -0400 78884 78885 Fix the ft_cpu_setup() property settings. 78886 78887 Use "setter" functions instead of flags, cleaner and more flexible. 78888 It also fixes the problem noted by Timur Tabi that the ethernet MAC 78889 addresses were all being set incorrectly to the same MAC address. 78890 78891commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4 78892Author: Gerald Van Baren <vanbaren@cideas.com> 78893Date: Sat Apr 14 22:51:24 2007 -0400 78894 78895 Improve the bootm command for CONFIG_OF_LIBFDT 78896 78897 In bootm, create the "/chosen" node only if it doesn't already exist 78898 (better matches the previous behavior). 78899 Update for proper reserved memory map handling for initrd. 78900 78901commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888 78902Author: Gerald Van Baren <vanbaren@cideas.com> 78903Date: Sat Apr 14 22:46:41 2007 -0400 78904 78905 Add some utilities to manipulate the reserved memory map. 78906 78907commit 8048cdd56f04a756eeea4951f402bf5cc33785db 78908Author: Wolfgang Denk <wd@denx.de> 78909Date: Sat Apr 14 21:16:54 2007 +0200 78910 78911 Update CHANGELOG 78912 78913commit 8e6875183cdca91c134408d119d4abcd48ef6856 78914Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 78915Date: Sun Dec 17 18:56:46 2006 +0100 78916 78917 AVR32: Enable MMC support 78918 78919 Set up the portmux for the MMC interface and enable the MMC driver 78920 along with support for DOS partitions, ext2 and FAT filesystems. 78921 78922 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 78923 78924commit fc26c97bb6df41b4a95662c34054fe912387bf38 78925Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 78926Date: Fri Jan 20 10:03:53 2006 +0100 78927 78928 Atmel MCI driver 78929 78930 Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs. 78931 78932 The AT91 ARM-based CPUs use basically the same hardware, so it should 78933 be possible to share this driver, but no effort has been made so far. 78934 78935 Hardware documentation can be found in the AT32AP7000 data sheet, 78936 which can be downloaded from 78937 78938 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682 78939 78940 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 78941 78942commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f 78943Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 78944Date: Sun Dec 17 18:55:37 2006 +0100 78945 78946 AVR32: Add clk and gpio infrastructure for mmci 78947 78948 Implement functions for configuring the mmci pins, as well as 78949 functions for getting the clock rate of the mmci controller. 78950 78951 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 78952 78953commit 7fac3f69e9f05c5e5326681976c35d129324c4de 78954Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 78955Date: Sun Dec 17 18:53:56 2006 +0100 78956 78957 Enable partition support with MMC 78958 78959 Include implementations of init_part() and get_partition_info() when 78960 CONFIG_MMC is set. 78961 78962 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 78963 78964commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872 78965Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 78966Date: Sun Dec 17 17:14:30 2006 +0100 78967 78968 AVR32: Enable networking 78969 78970 Implement MACB initialization for AVR32 and ATSTK1000, and turn 78971 everything on, including the MACB driver. 78972 78973 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 78974 78975commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009 78976Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 78977Date: Fri Jan 20 10:03:34 2006 +0100 78978 78979 Atmel MACB ethernet driver 78980 78981 Driver for the Atmel MACB on-chip ethernet controller. 78982 78983 This driver has been tested on the ATSTK1000 board with a AT32AP7000 78984 CPU. It should probably work on AT91SAM926x as well with some minor 78985 modifications. 78986 78987 Hardware documentation can be found in the AT32AP7000 data sheet, 78988 which can be downloaded from 78989 78990 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682 78991 78992 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 78993 78994commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556 78995Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 78996Date: Sun Dec 17 16:56:14 2006 +0100 78997 78998 AVR32: Add clk and gpio infrastructure for macb0 and macb1 78999 79000 Implement functions for configuring the macb0 and macb1 pins, as
79001 well as functions for getting the clock rate of the various 79002 busses the macb ethernet controllers are connected to. 79003 79004 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79005 79006commit d5acb95b16a0a74c643524342c3437e765426d05 79007Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79008Date: Sun Dec 17 15:39:15 2006 +0100 79009 79010 AVR32: Implement simple DMA memory allocator 79011 79012 Implement dma_alloc_coherent() which returns cache-aligned 79013 uncacheable memory. 79014 79015 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79016 79017commit 91975b0fea773c9e681fea8cf3349669f27685ee 79018Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79019Date: Sun Dec 17 15:46:02 2006 +0100 79020 79021 Import <linux/mii.h> from the Linux kernel 79022 79023 Instead of creating yet another set of MII register definitions 79024 in the macb driver, here's a complete set of definitions for everyone 79025 to use. 79026 79027 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79028 79029commit 1b804b229556a4d862da93c0ec94e79419364b2c 79030Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79031Date: Wed Mar 21 19:47:36 2007 +0100 79032 79033 AVR32: Include more commands for ATSTK1000 79034 79035 Include the imi, imls and jffs commands sets by default on ATSTK1000. 79036 Also define CONFIG_BOOTARGS to something more useful, define 79037 CONFIG_BOOTCOMMAND and enable autoboot by default. 79038 79039 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79040 79041commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d 79042Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79043Date: Wed Mar 21 19:44:48 2007 +0100 79044 79045 AVR32: Provide a definition of struct stat 79046 79047 Copy the definition of struct stat from the Linux kernel. 79048 79049 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79050 79051commit 12f099c08167a7a51aeee623bc16dafd0841271c 79052Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79053Date: Sun Dec 17 14:46:06 2006 +0100 79054 79055 AVR32: Use initdram() instead of board_init_memories() 79056 79057 Conform to the "standard" interface and use initdram() instead of 79058 board_init_memories() on AVR32. This enables us to get rid of the 79059 sdram_size member of the global_data struct as well. 79060 79061 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79062 79063commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c 79064Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79065Date: Mon Nov 20 15:53:10 2006 +0100 79066 79067 AVR32: Relocate u-boot to SDRAM 79068 79069 Relocate the u-boot image into SDRAM like everyone else does. This 79070 means that we can handle much larger .data and .bss than we used to. 79071 79072 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79073 79074commit df548d3c3e2bbc40258713167859ffc2ce99a900 79075Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79076Date: Sun Nov 19 18:06:53 2006 +0100 79077 79078 AVR32: Resource management rewrite 79079 79080 Rewrite the resource management code (i.e. I/O memory, clock gating, 79081 gpio) so it doesn't depend on any global state. This is necessary 79082 because this code is heavily used before relocation to RAM, so we 79083 can't write to any global variables. 79084 79085 As an added bonus, this makes u-boot's memory footprint a bit smaller, 79086 although some functionality has been left out; all clocks are enabled 79087 all the time, and there's no checking for gpio line conflicts. 79088 79089 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79090 79091commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9 79092Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79093Date: Sat Nov 18 18:01:13 2006 +0100 79094 79095 AVR32: Clean up memory-map.h for at32ap7000 79096 79097 Convert spaces to tabs (must have missed this one last time around), 79098 sort the entries by address and group them together by bus 79099 connectivity. 79100 79101 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79102 79103commit 28c699ef69f4b6cdf252e4747b7b590028a88981 79104Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79105Date: Sat Nov 18 17:32:31 2006 +0100 79106 79107 AVR32: Build position-independent u-boot 79108 79109 Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot 79110 position independent. This will make relocation a lot easier. 79111 79112 -mno-init-got means that gcc shouldn't emit code to load the GOT 79113 address into r6 in every function prologue. We do it once and for 79114 all in the early startup assembly code, so enabling this option 79115 makes u-boot a bit faster and smaller. 79116 79117 The assembly parts have always been position-independent, so no code 79118 changes should be necessary. 79119 79120 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79121 79122commit 5374b36de91d006d1df9536259fa9f66b01aa3aa 79123Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79124Date: Sat Nov 18 17:24:31 2006 +0100 79125 79126 AVR32: Use avr32-linux- cross-compilation prefix by default 79127 79128 It doesn't really matter which toolchain you use to compile u-boot, 79129 but the avr32-linux one is probably what most people have installed. 79130 79131 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79132 79133commit c841beeddebece0039e724fb27f4d1a39ee1c6b6 79134Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 79135Date: Sat Nov 18 17:15:30 2006 +0100 79136 79137 AVR32: Split start_u_boot into board_init_f and board_init_r 79138 79139 Split the avr32 initialization code into a function to run before 79140 relocation, board_init_f and a function to run after relocation, 79141 board_init_r. For now, board_init_f simply calls board_init_r 79142 at the end. 79143 79144 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 79145 79146commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e 79147Author: Heiko Schocher <hs@pollux.denx.de> 79148Date: Sat Apr 14 05:26:48 2007 +0200 79149 79150 [Fix] Set the LED status register on the UC101 for the LXT971 PHY. 79151 clear the Display after reset. 79152 79153 Signed-off-by: Heiko Schocher <hs@denx.de> 79154 79155commit 7882751c78b7ecabfd49b0eff8de27661c71f16c 79156Author: Denis Peter <d.peter@mpl.ch> 79157Date: Fri Apr 13 09:13:33 2007 +0200 79158 79159 [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c 79160 79161 Fix bug introduced by "Fix get_partition_info() parameter error in all 79162 other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented 79163 to use diskboot or scsiboot form another device than 0. 79164 79165 Signed-off-by: Denis Peter <d.peter@mpl.ch> 79166 79167commit 0b94504d22e70f537c17a0d38c87edb6e370977d 79168Author: Greg Lopp <lopp@pobox.com> 79169Date: Fri Apr 13 08:02:24 2007 +0200 79170 79171 [PATCH] Fix use of "void *" for block dev read/write buffer pointers 79172 79173 Signed-of-by: Greg Lopp <lopp@pobox.com> 79174 Acked-by: Grant Likely <grant.likely@secretlab.ca> 79175 79176commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9 79177Author: Xie Xiaobo <r63061@freescale.com> 79178Date: Fri Mar 9 19:08:25 2007 +0800 79179 79180 Fix two bugs for MPC83xx DDR2 controller SPD Init 79181 79182 There are a few bugs in the cpu/mpc83xx/spd_sdram.c 79183 the first bug is that the picos_to_clk routine introduces a huge 79184 rounding error in 83xx. 79185 the second bug is that the mode register write recovery field is 79186 tWR-1, not tWR >> 1. 79187 79188commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13 79189Author: Jeffrey Mann <mannj@embeddedplanet.com> 79190Date: Thu Apr 12 14:15:59 2007 +0200 79191 79192 ppc4xx: Fix i2c divisor calcularion for PPC4xx 79193 79194 This patch fixes changes the i2c_init(...) function to use the function 79195 get_OPB_freq() rather than calculating the OPB speed by 79196 sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is 79197 specific per processor. The prior method was not and so was calculating 79198 the wrong speed for some PPC4xx processors. 79199 79200 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com> 79201 Signed-off-by: Stefan Roese <sr@denx.de> 79202 79203commit 6c9ba919375db977aaad9146bf320c7afd07ae7a 79204Author: Wolfgang Denk <wd@denx.de> 79205Date: Wed Apr 11 17:25:01 2007 +0200 79206 79207 Update CHANGELOG 79208 79209 Signed-off-by: Wolfgang Denk <wd@denx.de> 79210 79211commit 51056dd9863e6a1bc363afbbe1775c58cd967418 79212Author: Wolfgang Denk <wd@denx.de> 79213Date: Wed Apr 11 17:22:55 2007 +0200 79214 79215 Update for SC3 board 79216 79217 * Make IDE timeout configurable through ide_reset_timeout variable. 79218 * Use Newline as "password" string 79219 * Use just a single partition in NAND flash 79220 79221commit 3d98b85800c80dc68227c8f10bf5c93456d6d054 79222Author: Haiying Wang <haiying.wang@freescale.com> 79223Date: Mon Jan 22 12:37:30 2007 -0600 79224 79225 Add PIXIS FPGA support for MPC8641HPCN board. 79226 79227 Move the 8641HPCN's PIXIS code to the new directory 79228 board/freescale/common/ as it will be shared by 79229 future boards not in the same processor family. 79230 79231 Write a "pixis_reset" command that utilizes the FPGA 79232 reset sequencer to support alternate soft-reset options 79233 such as using the "alternate" flash bank, enabling 79234 the watch dog, or choosing different CPU frequencies. 79235 79236 Add documentation for the pixis_reset to README.mpc8641hpcn. 79237 79238 Signed-off-by: Haiying Wang <haiying.wang@freescale.com> 79239 Signed-off-by: Jon Loeliger <jdl@freescale.com> 79240 79241commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642 79242Author: Gerald Van Baren <vanbaren@cideas.com> 79243Date: Fri Apr 6 14:19:43 2007 -0400 79244 79245 Moved fdt command support code to fdt_support.c 79246 79247 ...in preparation for improving the bootm command's handling of fdt blobs. 79248 Also cleaned up some coding sloppiness. 79249 79250commit 6679f9299534e488a171a9bb8f9bb891de247aab 79251Author: Gerald Van Baren <vanbaren@cideas.com> 79252Date: Fri Apr 6 14:17:14 2007 -0400 79253 79254 libfdt: Make fdt_check_header() public 79255 79256 Changed _fdt_check_header() to fdt_check_header() and made it part of 79257 the interface - it is a useful routine. 79258 79259 Also did some asthetics cleanup to the include files (headers). 79260 79261commit c0707ce65677650b5ceab0500ee50ae5168afef2 79262Author: Aubrey Li <aubrey.adi@gmail.com> 79263Date: Thu Apr 5 18:34:06 2007 +0800 79264 79265 [Blackfin][PATCH] Kill off a bunch of common local prototypes 79266 79267commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d 79268Author: Aubrey Li <aubrey.adi@gmail.com> 79269Date: Thu Apr 5 18:33:04 2007 +0800 79270 79271 [Blackfin][PATCH] Fix dynamic CPLB generation issue 79272 79273commit 0445e3a264251d75b1be45ef713c70726a2952f0 79274Author: Aubrey Li <aubrey.adi@gmail.com> 79275Date: Thu Apr 5 18:31:47 2007 +0800 79276 79277 [Blackfin][PATCH] minior cleanup 79278 79279commit 155fd766573981090e638b493d5857562151862e 79280Author: Aubrey Li <aubrey.adi@gmail.com> 79281Date: Thu Apr 5 18:31:18 2007 +0800 79282 79283 [Blackfin][PATCH] Fix copyright and update license 79284 79285commit 9fd437bbd75d282f899e1da50be20a2bf38450bc 79286Author: Aubrey Li <aubrey.adi@gmail.com> 79287Date: Thu Apr 5 18:30:25 2007 +0800 79288 79289 [Blackfin][PATCH] Add BF537 EMAC driver initialization 79290 79291commit 889256e8604e0c68db1d866d720894dffede9df6 79292Author: Aubrey Li <aubrey.adi@gmail.com> 79293Date: Thu Apr 5 18:29:55 2007 +0800 79294 79295 [Blackfin][PATCH] call real the system synchronize instruction 79296 79297commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05 79298Author: Aubrey Li <aubrey.adi@gmail.com> 79299Date: Thu Apr 5 18:29:17 2007 +0800 79300 79301 [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it 79302 79303commit dfeeab2cd680df047e68e723b246adf6f33bb556 79304Author: Aubrey Li <aubrey.adi@gmail.com> 79305Date: Thu Apr 5 18:28:34 2007 +0800 79306 79307 [Blackfin][PATCH]: fix flash unaligned copy issue 79308 79309commit 443feb740584e406efa203af909fe2926608e8d5 79310Author: Igor Marnat <marny@rambler.ru> 79311Date: Wed Mar 21 09:55:01 2007 +0300 79312 79313 Update usage of 'nc' in README.NetConsole 79314 79315 Added information about usage of NetConsole on systems where the -l and -p 79316 switches are mutually exclusive. 79317 79318 Signed-off-by: Igor Marnat <marny@rambler.ru> 79319 Signed-off-by: Ben Warren <bwarren@qstreams.com> 79320 79321commit 31c98a88228021b314c89ebb8104fb6473da4471 79322Author: Wolfgang Denk <wd@denx.de> 79323Date: Wed Apr 4 02:09:30 2007 +0200 79324 79325 Minor coding style cleanup. 79326 79327commit 94abd7c0583ebe01e799b25f451201deeaab550d 79328Author: Wolfgang Denk <wd@denx.de> 79329Date: Wed Apr 4 01:49:15 2007 +0200 79330 79331 Minor cleanup. 79332 79333commit 822af351ad2babc7d99033361a5fcacd30f6bc78 79334Author: Rodolfo Giometti <giometti@enneenne.com> 79335Date: Tue Apr 3 14:27:18 2007 +0200 79336 79337 Support for the Philips ISP116x HCD (Host Controller Driver) 79338 79339 Signed-off-by: Rodolfo Giometti <giometti@enneenne.com> 79340 79341commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8 79342Author: Markus Klotzbuecher <mk@denx.de> 79343Date: Tue Apr 3 14:27:08 2007 +0200 79344 79345 USB: cleanup monahans usb support. Remove dead code. 79346 79347 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 79348 79349commit a65c5768e5537530bd1780af3d3fddc3113a163c 79350Author: Stefan Roese <sr@denx.de> 79351Date: Mon Apr 2 10:09:30 2007 +0200 79352 79353 ppc4xx: Change SysACE address on Katmai 79354 79355 With this new base address of the Xilinx SystemACE controller 79356 the Linux driver will be easier to adapt, since it can now be 79357 mapped via the "normal" ioremap() call. 79358 79359 Signed-off-by: Stefan Roese <sr@denx.de> 79360 79361commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73 79362Author: Gerald Van Baren <vanbaren@cideas.com> 79363Date: Sat Mar 31 14:30:53 2007 -0400 79364 79365 Fix some minor whitespace violations. 79366 79367commit 213bf8c822de8eecaf69860684469cdaba2e9e6a 79368Author: Gerald Van Baren <vanbaren@cideas.com> 79369Date: Sat Mar 31 12:23:51 2007 -0400 79370 79371 Add a flattened device tree (fdt) command (2 of 2) 79372 79373 Modifications to the existing code to support the new fdt command. 79374 79375commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e 79376Author: Gerald Van Baren <vanbaren@cideas.com> 79377Date: Sat Mar 31 12:22:10 2007 -0400 79378 79379 Add a flattened device tree (fdt) command (1 of 2) 79380 79381 The fdt command uses David Gibson's libfdt library to manipulate as well 79382 as print the flattened device tree. This patch is the new command, 79383 the second part is the modifications to the existing code. 79384 79385commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e 79386Author: Gerald Van Baren <vanbaren@cideas.com> 79387Date: Sat Mar 31 12:13:43 2007 -0400 79388 79389 libfdt: Enhanced and published fdt_next_tag() 79390 79391 Enhanced the formerly private function _fdt_next_tag() to allow stepping 79392 through the tree, used to produce a human-readable dump, and made 79393 it part of the published interface. 79394 Also added some comments. 79395 79396commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71 79397Author: Gerald Van Baren <vanbaren@cideas.com> 79398Date: Sat Mar 31 12:05:39 2007 -0400 79399 79400 libfdt: Customizations for use by u-boot. 79401 79402 Changes to David Gibson's original source to fit into u-boot's 79403 environment. No functionality changes. 79404 79405commit 35748177c64a4a83a00057e93bb33e40278a2a96 79406Author: Gerald Van Baren <vanbaren@cideas.com> 79407Date: Sat Mar 31 12:00:56 2007 -0400 79408 79409 libfdt: Import libfdt source (2 of 2) 79410 79411 This adds the applicable libfdt source files (unmodified) and a README 79412 to explain where the source came from. 79413 79414commit 7cd5da0fe877e7171a4cdd44880bce783132871a 79415Author: Gerald Van Baren <vanbaren@cideas.com> 79416Date: Sat Mar 31 11:59:59 2007 -0400 79417 79418 libfdt: Import libfdt source (1 of 2) 79419 79420 This adds the applicable libfdt source files (unmodified) and a README 79421 to explain where the source came from. 79422 79423commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b 79424Author: Stefan Roese <sr@denx.de> 79425Date: Sat Mar 31 13:16:23 2007 +0200 79426 79427 ppc4xx: Update Katmai bootstrap command 79428 79429 Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB 79430 is selected. 79431 79432 Signed-off-by: Stefan Roese <sr@denx.de> 79433 79434commit cabee756a6532986729477c3cc1ea16ef8517ad2 79435Author: Stefan Roese <sr@denx.de> 79436Date: Sat Mar 31 13:15:06 2007 +0200 79437 79438 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe) 79439 79440 Additional RAM information is now printed upon powerup, like 79441 DDR2 frequency and CAS latency. 79442 79443 Signed-off-by: Stefan Roese <sr@denx.de> 79444 79445commit 60723803431ac75cad085690789e433d5ab9174e 79446Author: Stefan Roese <sr@denx.de> 79447Date: Sat Mar 31 08:48:36 2007 +0200 79448 79449 ppc4xx: Change Yucca config file to support ECC 79450 79451 With the updated 44x DDR2 driver the Yucca board now supports 79452 ECC generation and checking. 79453 79454 Signed-off-by: Stefan Roese <sr@denx.de> 79455 79456commit 490e5730c674b20d708b783a2c5ffd7208f83873 79457Author: Stefan Roese <sr@denx.de> 79458Date: Sat Mar 31 08:47:34 2007 +0200 79459 79460 ppc4xx: Fix "bootstrap" command for Katmai board 79461 79462 The board specific "bootstrap" command is now fixed and can 79463 be used for the AMCC Katmai board to configure different 79464 CPU/PLB/OPB frequencies. 79465 79466 Signed-off-by: Stefan Roese <sr@denx.de> 79467 79468commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1 79469Author: Stefan Roese <sr@denx.de> 79470Date: Sat Mar 31 08:46:08 2007 +0200 79471 79472 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe) 79473 79474 Fix a bug in the auto calibration routine. This driver now runs 79475 more reliable with the tested modules. It's also tested with 79476 167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai. 79477 79478 Signed-off-by: Stefan Roese <sr@denx.de> 79479 79480commit 342cd097be1e7affe82f42ab3da220959a699e64 79481Author: Michal Simek <monstr@monstr.eu> 79482Date: Fri Mar 30 22:52:09 2007 +0200 79483 79484 [PATCH] Clean include dependence 79485 79486commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906 79487Author: Michal Simek <monstr@monstr.eu> 79488Date: Fri Mar 30 22:42:45 2007 +0200 79489 79490 [CLEAN] Remove inefficient Suzaku code 79491 79492commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d 79493Author: Stefan Roese <sr@denx.de> 79494Date: Wed Mar 28 15:03:16 2007 +0200 79495 79496 Merge some AMCC make targets to keep the top-level Makefile smaller 79497 79498 Signed-off-by: Stefan Roese <sr@denx.de> 79499 79500commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e 79501Author: Stefan Roese <sr@denx.de> 79502Date: Wed Mar 28 14:52:12 2007 +0200 79503 79504 i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined 79505 79506 The "old" i2c commands (iprobe, imd...) are now compiled in again, 79507 even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE 79508 config option. 79509 79510 Signed-off-by: Stefan Roese <sr@denx.de> 79511 79512commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a 79513Author: Michal Simek <monstr@monstr.eu> 79514Date: Tue Mar 27 00:32:16 2007 +0200 79515 79516 PATCH: Resolve GPL license problem 79517 79518commit ae00bb4b2944dc64a485ed72a19754b11af7c223 79519Author: Rodolfo Giometti <giometti@enneenne.com> 79520Date: Mon Mar 26 12:03:36 2007 +0200 79521 79522 PXA: pxa27x USB OHCI support 79523 79524 Signed-off-by: Rodolfo Giometti <giometti@linux.it> 79525 79526commit ae79f60677c208326535647dcbd5c3ec40dbcb0b 79527Author: Markus Klotzbuecher <mk@denx.de> 79528Date: Mon Mar 26 11:21:05 2007 +0200 79529 79530 USB: remove the S3C24X0_merge #define, which was introduced while 79531 merging OHCI drivers. 79532 79533 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 79534 79535commit 1798049522f594013aea29457d46794298c6ae15 79536Author: Michal Simek <root@monstr.eu> 79537Date: Mon Mar 26 01:39:07 2007 +0200 79538 79539 Support for XUPV2P board 79540 Reset support 79541 BSP autoconfig support 79542 79543commit 0d974d5297349504a2ddfa09314be573b5df320a 79544Author: Stefan Roese <sr@denx.de> 79545Date: Sat Mar 24 15:57:09 2007 +0100 79546 79547 [PATCH] Add 4xx GPIO functions 79548 79549 This patch adds some 4xx GPIO functions. It also moves some of the 79550 common code and defines into a common 4xx GPIO header file. 79551 79552 Signed-off-by: Stefan Roese <sr@denx.de> 79553 79554commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11 79555Author: Stefan Roese <sr@denx.de> 79556Date: Sat Mar 24 15:55:58 2007 +0100 79557 79558 [PATCH] Small Sequoia cleanup 79559 79560 Signed-off-by: Stefan Roese <sr@denx.de> 79561 79562commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf 79563Author: Stefan Roese <sr@denx.de> 79564Date: Sat Mar 24 15:45:34 2007 +0100 79565 79566 [PATCH] Clean up 40EZ/Acadia support 79567 79568 This patch cleans up all the open issue of the preliminary 79569 Acadia support. 79570 79571 Signed-off-by: Stefan Roese <sr@denx.de> 79572 79573commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997 79574Author: Jon Loeliger <jdl@freescale.com> 79575Date: Tue Dec 12 11:02:20 2006 -0600 79576 79577 Fix 8641HPCN problem with ld version 2.16 79578 79579 (Dot outside sections problem). 79580 79581 This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540. 79582 79583 Signed-off-by: Jon Loeliger <jdl@freescale.com> 79584 79585commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c 79586Author: Haiying Wang <haiying.wang@freescale.com> 79587Date: Thu Dec 7 10:35:55 2006 -0600 79588 79589 Set Rev 2.x 86xx PIC in mixed mode. 79590 79591 Prevent false interrupt from hanging Linux as MSR[EE] is set 79592 to enable interrupts by changing the PIC out of the default 79593 pass through mode into mixed mode. 79594 79595 Signed-off-by: Haiying Wang <haiying.wang@freescale.com> 79596 Signed-off-by: Jon Loeliger <jdl@freescale.com> 79597 79598commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e 79599Author: Jason Jin <jason.jin@freescale.com> 79600Date: Thu Dec 7 10:32:35 2006 -0600 79601 79602 Add flash cmd function to 8641HPCN ramboot 79603 79604 Also fixes some commmand for 8641 HPCN ramboot case. 79605 79606 Signed-off-by: Jason Jin <jason.jin@freescale.com> 79607 Signed-off-by: Jon Loeliger <jdl@freescale.com> 79608 79609commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46 79610Author: Ed Swarthout <ed.swarthout@freescale.com> 79611Date: Thu Dec 7 10:34:14 2006 -0600 79612 79613 Add support for 8641 Rev 2 silicon. 79614 79615 Without this patch, I am unable to get to the prompt on rev 2 silicon. 79616 Only set ddrioovcr for rev1. 79617 79618 Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com> 79619 Signed-off-by: Jon Loeliger <jdl@freescale.com> 79620 79621commit 44ba464b99001f8bd1c456a1e9d59726252f707a 79622Author: Wolfgang Denk <wd@denx.de> 79623Date: Thu Mar 22 00:13:12 2007 +0100 79624 79625 Code cleanup / re-insert previous Copyright entries. 79626 79627 Signed-off-by: Wolfgang Denk <wd@denx.de> 79628 79629commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302 79630Author: Wolfgang Denk <wd@denx.de> 79631Date: Wed Mar 21 23:26:15 2007 +0100 79632 79633 Code cleanup. Update CHANGELOG 79634 79635commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286 79636Author: Stefan Roese <sr@denx.de> 79637Date: Wed Mar 21 14:54:29 2007 +0100 79638 79639 ppc4xx: Fix file mode of include/configs/acadia.h 79640 79641 Signed-off-by: Stefan Roese <sr@denx.de> 79642 79643commit d5f4614c9350d9333e575100fb250aab774d0258 79644Author: Markus Klotzbuecher <mk@denx.de> 79645Date: Wed Mar 21 14:41:46 2007 +0100 79646 79647 SPC1920: fix small clock routing bug 79648 79649 Signed-off-by: Markus Klotzbuecher <mk@denx.de> 79650 79651commit 16c0cc1c82081a493ab87c51980b28336ce1bce8 79652Author: Stefan Roese <sr@denx.de> 79653Date: Wed Mar 21 13:39:57 2007 +0100 79654 79655 [PATCH] Add AMCC Acadia (405EZ) eval board support 79656 79657 This patch adds support for the new AMCC Acadia eval board. 79658 79659 Please note that this Acadia/405EZ support is still in a beta stage. 79660 Still lot's of cleanup needed but we need a preliminary release now. 79661 79662 Signed-off-by: Stefan Roese <sr@denx.de> 79663 79664commit e01bd218b00af73499331a1a701625a852cd286f 79665Author: Stefan Roese <sr@denx.de> 79666Date: Wed Mar 21 13:38:59 2007 +0100 79667 79668 [PATCH] Add AMCC PPC405EZ support 79669 79670 This patch adds support for the new AMCC 405EZ PPC. It is in 79671 preparation for the AMCC Acadia board support. 79672 79673 Please note that this Acadia/405EZ support is still in a beta stage. 79674 Still lot's of cleanup needed but we need a preliminary release now. 79675 79676 Signed-off-by: Stefan Roese <sr@denx.de> 79677 79678commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1 79679Author: Heiko Schocher <hs@pollux.denx.de> 79680Date: Wed Mar 21 08:45:17 2007 +0100 79681 79682 [PATCH] TQM8272: dont change the bits given from the HRCW 79683 for the SIUMCR and BCR Register. 79684 Fix the calculation for the EEprom Size 79685 79686 Signed-off-by: Heiko Schocher <hs@denx.de> 79687 79688commit 654589873dbafcf104dff133ce0d03a4506e9cc3 79689Author: Aubrey Li <aubrey.adi@gmail.com> 79690Date: Tue Mar 20 18:16:24 2007 +0800 79691 79692 [Blackfin][PATCH] Add BF561 EZKIT board support 79693 79694commit a6154fd1cfd020f6da8527e0365b1020a11a71d0 79695Author: Aubrey Li <aubrey.adi@gmail.com> 79696Date: Mon Mar 19 22:55:58 2007 +0800 79697 79698 [Blackfin][PATCH] minor cleanup 79699 79700commit 389b6bb50f745bf5038ce030300d8a8512e96f79 79701Author: Wolfgang Denk <wd@denx.de> 79702Date: Mon Mar 19 13:10:08 2007 +0100 79703 79704 Remove obsoleted POST files. 79705 79706 Signed-off-by: Wolfgang Denk <wd@denx.de> 79707 79708commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6 79709Author: Aubrey Li <aubrey.adi@gmail.com> 79710Date: Mon Mar 19 01:26:11 2007 +0800 79711 79712 [PATCH] Add flash chip M29W320ET/B support 79713 79714commit 26bf7deca364a5b33f39e8f14ddd3f4081345015 79715Author: Aubrey Li <aubrey.adi@gmail.com> 79716Date: Mon Mar 19 01:24:52 2007 +0800 79717 79718 [Blackfin][PATCH] Add BF537 stamp board support 79719 79720commit 8423e5e31a7235d05a482627315fb11d49c17bd7 79721Author: Stefan Roese <sr@denx.de> 79722Date: Fri Mar 16 21:11:42 2007 +0100 79723 79724 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board 79725 79726 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the 79727 DDR memory are dynamically programmed matching the total size 79728 of the equipped memory (DIMM modules). 79729 79730 Signed-off-by: Stefan Roese <sr@denx.de> 79731 79732commit 76d1466f918b881cda2d259254761e73885093c2 79733Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79734Date: Tue Mar 13 13:38:05 2007 +0100 79735 79736 [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405 79737 boards in terms of unification. 79738 79739 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79740 79741commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0 79742Author: Wolfgang Denk <wd@denx.de> 79743Date: Tue Mar 13 16:05:55 2007 +0100 79744 79745 Make SC3 board build with 'make O='; use 'addcons' consistently 79746 (SC3 and Jupiter used to use 'addcon' instead). 79747 79748 Signed-off-by: Wolfgang Denk wd@denx.de 79749 79750commit 8502e30a28e492c756ea2d7df0ace026388fce4b 79751Author: Heiko Schocher <hs@pollux.denx.de> 79752Date: Tue Mar 13 09:40:59 2007 +0100 79753 79754 [PATCH] update board config for jupiter Board: 79755 added Hush Shell, 79756 CONFIG_CMDLINE_EDITING, 79757 CFG_ENV_ADDR_REDUND activated 79758 79759 Signed-off-by: Heiko Schocher <hs@denx.de> 79760 79761commit 0d93de11449390a5984b0236c3612e50f6dbb7e8 79762Author: Aubrey Li <aubrey.adi@gmail.com> 79763Date: Mon Mar 12 12:11:55 2007 +0800 79764 79765 [Blackfin][PATCH] minor cleanup 79766 79767commit bfa5754a58477ac917d21527cd0f079d87cf188e 79768Author: Aubrey Li <aubrey.adi@gmail.com> 79769Date: Mon Mar 12 01:42:06 2007 +0800 79770 79771 [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue 79772 79773commit 8440bb14581a294375c34b91b42512f9753d1130 79774Author: Aubrey Li <aubrey.adi@gmail.com> 79775Date: Mon Mar 12 00:25:14 2007 +0800 79776 79777 [Blackfin][PATCH] code cleanup 79778 79779commit cfc67116a706fd18b8f6a9c11a16753c5626d689 79780Author: Michal Simek <monstr@monstr.eu> 79781Date: Sun Mar 11 13:48:24 2007 +0100 79782 79783 [Microblaze][PATCH] part 2 79784 timer support 79785 interrupt controller support 79786 flash support 79787 ethernet support 79788 cache support 79789 board information support 79790 env support 79791 booting image support 79792 79793 adding support for Xilinx ML401 79794 79795commit 76316a318de91f6184e7c22a10e02d275ade2441 79796Author: Michal Simek <monstr@monstr.eu> 79797Date: Sun Mar 11 13:42:58 2007 +0100 79798 79799 [Microblaze][PATCH] 79800 timer support 79801 interrupt controller support 79802 flash support 79803 ethernet support 79804 cache support 79805 board information support 79806 env support 79807 booting image support 79808 79809 adding support for Xilinx ML401 79810 79811commit 8db13d63157811c839d15a313d9f2d2f5fd10af3 79812Author: Aubrey Li <aubrey.adi@gmail.com> 79813Date: Sat Mar 10 23:49:29 2007 +0800 79814 79815 [Blackfin][PATCH] code cleanup 79816 79817commit ef26a08fef928b7bc11ae2c109e638dc3a016d91 79818Author: Aubrey.Li <aubrey.adi@gmail.com> 79819Date: Fri Mar 9 13:40:56 2007 +0800 79820 79821 [Blackfin][PATCH-2/2] Common files changed to support bf533 platform 79822 79823commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f 79824Author: Aubrey.Li <aubrey.adi@gmail.com> 79825Date: Fri Mar 9 13:38:44 2007 +0800 79826 79827 [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support 79828 79829commit 992423ab43c2bcf6b704853bd00af77450915e20 79830Author: Stefan Roese <sr@denx.de> 79831Date: Thu Mar 8 23:00:08 2007 +0100 79832 79833 ppc4xx: Fix file mode of sequoia.c 79834 79835 Signed-off-by: Stefan Roese <sr@denx.de> 79836 79837commit eb92f613556800f7483666db09d9a237ad911d4a 79838Author: Wolfgang Denk <wd@pollux.denx.de> 79839Date: Thu Mar 8 22:52:51 2007 +0100 79840 79841 Minor cleanup. 79842 79843commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1 79844Author: John Otken john@softadvances.com <john@softadvances.com> 79845Date: Thu Mar 8 09:39:48 2007 -0600 79846 79847 ppc4xx: Clear Sequoia/Rainier security engine reset bits 79848 79849 Signed-off-by: John Otken john@softadvances.com <john@softadvances.com> 79850 79851commit 650a330dd2539130c8c324791e2f9f75aed79d4e 79852Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79853Date: Thu Mar 8 16:26:52 2007 +0100 79854 79855 [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules 79856 79857 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79858 79859commit d9fc703246840c4b268debf48c334ba55c597dc0 79860Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79861Date: Thu Mar 8 16:25:47 2007 +0100 79862 79863 [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined 79864 79865 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79866 79867commit ced5b9029043397348cdc88e0cfcd6b1f629250b 79868Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79869Date: Thu Mar 8 16:23:11 2007 +0100 79870 79871 [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS 79872 79873 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79874 79875commit d8a8ea5c476d37006fc7f85b7f903142795c8b14 79876Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79877Date: Thu Mar 8 16:20:32 2007 +0100 79878 79879 [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM 79880 79881 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79882 79883commit f9fc6a5852a6335840882fa2111925010eea1abe 79884Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79885Date: Wed Mar 7 15:32:01 2007 +0100 79886 79887 fixed ethernet phy configuration for plu405 board 79888 79889 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com> 79890 79891commit 769104c9356594deb2092e204a39c05b33202d6c 79892Author: Wolfgang Denk <wd@pollux.denx.de> 79893Date: Thu Mar 8 21:49:27 2007 +0100 79894 79895 Minor cleanup 79896 79897commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa 79898Author: Stefan Roese <sr@denx.de> 79899Date: Thu Mar 8 10:13:16 2007 +0100 79900 79901 [PATCH] Update AMCC Luan 440SP eval board support 79902 79903 The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR 79904 inititializition. This includes DDR auto calibration and support 79905 for different DIMM modules, instead of the fixed setup used in 79906 the earlier version. 79907 79908 This patch also enables the cache in FLASH for the startup 79909 phase of U-Boot (while running from FLASH). After relocating to 79910 SDRAM the cache is disabled again. This will speed up the boot 79911 process, especially the SDRAM setup, since there are some loops 79912 for memory testing (auto calibration). 79913 79914 Signed-off-by: Stefan Roese <sr@denx.de> 79915 79916commit 2f5df47351910a2936c7741cf111855829200943 79917Author: Stefan Roese <sr@denx.de> 79918Date: Thu Mar 8 10:10:18 2007 +0100 79919 79920 [PATCH] Update AMCC Yucca 440SPe eval board support 79921 79922 The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR 79923 inititializition. This includes DDR auto calibration and support 79924 for different DIMM modules, instead of the fixed setup used in 79925 the earlier version. 79926 79927 Signed-off-by: Stefan Roese <sr@denx.de> 79928 79929commit 2721a68a9ea91f1e494649ce68b2577261f578e2 79930Author: Stefan Roese <sr@denx.de> 79931Date: Thu Mar 8 10:07:18 2007 +0100 79932 79933 ppc4xx: Small AMCC Katmai 440SPe update 79934 79935 Signed-off-by: Stefan Roese <sr@denx.de> 79936 79937commit df294497479b1dca6dd86318b2a912f72fede0df 79938Author: Stefan Roese <sr@denx.de> 79939Date: Thu Mar 8 10:06:09 2007 +0100 79940 79941 ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP 79942 79943 Signed-off-by: Stefan Roese <sr@denx.de> 79944 79945commit 83853178bd36bca6f0f8f1331476620c84a587fc 79946Author: Ed Swarthout <Ed.Swarthout@freescale.com> 79947Date: Wed Mar 7 12:14:50 2007 -0600 79948 79949 net - Support ping reply when processing net-loop 79950 79951 Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY. 79952 79953 This permits the ping command to test the phy interface when the phy 79954 is put in loopback mode (typically by setting register 0 bit 14). 79955 79956 It also allows the port to respond to an external ping when u-boot is 79957 processing some other net command (such as tftp). This is useful when 79958 tftp appears to hang. 79959 79960 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> 79961 Signed-off-by: Ben Warren <bwarren@qstreams.com> 79962 79963commit fa1aef15bcd47736687be1af544506e90fba545d 79964Author: Stefan Roese <sr@denx.de> 79965Date: Wed Mar 7 16:43:00 2007 +0100 79966 79967 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board 79968 79969 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the 79970 DDR memory are dynamically programmed matching the total size 79971 of the equipped memory (DIMM modules). 79972 79973 Signed-off-by: Stefan Roese <sr@denx.de> 79974 79975commit e2ebe696818939e2b974628be9c921ea3fe9de13 79976Author: Stefan Roese <sr@denx.de> 79977Date: Wed Mar 7 16:39:36 2007 +0100 79978 79979 [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's 79980 79981 This patch fixes a problem that occurs when 2 DIMM's are 79982 used. This problem was first spotted and fixed by Gerald Jackson 79983 <gerald.jackson@reaonixsecurity.com> but this patch fixes the 79984 problem in a little more clever way. 79985 79986 This patch also adds the nice functionality to dynamically 79987 create the TLB entries for the SDRAM (tlb.c). So we should 79988 never run into such problems with wrong (too short) TLB 79989 initialization again on these platforms. 79990 79991 As this feature is new to the "old" 44x SPD DDR driver, it 79992 has to be enabled via the CONFIG_PROG_SDRAM_TLB define. 79993 79994 Signed-off-by: Stefan Roese <sr@denx.de> 79995 79996commit 39218433983417b9df087976a79e3f80dd5e83d6 79997Author: Wolfgang Denk <wd@denx.de> 79998Date: Wed Mar 7 16:33:44 2007 +0100 79999 80000 UC101: fix compiler warnings
80001 80002commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce 80003Author: Wolfgang Denk <wd@pollux.denx.de> 80004Date: Wed Mar 7 16:19:46 2007 +0100 80005 80006 HMI1001: fix build error, cleanup compiler warnings. 80007 80008commit ad5bb451ade552c44bef9119d907929ebc2c126f 80009Author: Wolfgang Denk <wd@pollux.denx.de> 80010Date: Tue Mar 6 18:08:43 2007 +0100 80011 80012 Restructure POST directory to support of other CPUs, boards, etc. 80013 80014commit a5284efd125967675b2e9c6ef7b95832268ad360 80015Author: Wolfgang Denk <wd@pollux.denx.de> 80016Date: Tue Mar 6 18:01:47 2007 +0100 80017 80018 Fix HOSTARCH handling. 80019 Patch by Mike Frysinger, Mar 05 2007 80020 80021commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44 80022Author: Stefan Roese <sr@denx.de> 80023Date: Tue Mar 6 07:47:04 2007 +0100 80024 80025 [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup 80026 80027 As provided by the AMCC applications team, this patch optimizes the 80028 DDR2 setup for 166MHz bus speed. The values provided are also save 80029 to use on a "normal" 133MHz PLB bus system. Only the refresh counter 80030 setup has to be adjusted as done in this patch. 80031 80032 For this the NAND booting version had to include the "speed.c" file 80033 from the cpu/ppc4xx directory. With this addition the NAND SPL image 80034 will just fit into the 4kbytes of program space. gcc version 4.x as 80035 provided with ELDK 4.x is needed to generate this optimized code. 80036 80037 Signed-off-by: Stefan Roese <sr@denx.de> 80038 80039commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68 80040Author: Wolfgang Denk <wd@pollux.denx.de> 80041Date: Sun Mar 4 01:36:05 2007 +0100 80042 80043 Some code cleanup. 80044 80045commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148 80046Author: Kim Phillips <kim.phillips@freescale.com> 80047Date: Wed Feb 28 00:02:04 2007 -0600 80048 80049 mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings 80050 80051 (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit) 80052 80053commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf 80054Author: Kumar Gala <galak@kernel.crashing.org> 80055Date: Tue Feb 27 23:51:42 2007 -0600 80056 80057 mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode 80058 80059 The config value for: 80060 * CFG_ACR_PIPE_DEP 80061 * CFG_ACR_RPTCNT 80062 * CFG_SPCR_TSEC1EP 80063 * CFG_SPCR_TSEC2EP 80064 * CFG_SCCR_TSEC1CM 80065 * CFG_SCCR_TSEC2CM 80066 80067 Were not being used when setting the appropriate register 80068 80069 Added: 80070 * CFG_SCCR_USBMPHCM 80071 * CFG_SCCR_USBDRCM 80072 * CFG_SCCR_PCICM 80073 * CFG_SCCR_ENCCM 80074 80075 To allow full config of the SCCR. 80076 80077 Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349 80078 that were just bogus. 80079 80080 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 80081 80082commit d51b3cf371cd441030460ef19d36b2924c361b1a 80083Author: Kim Phillips <kim.phillips@freescale.com> 80084Date: Thu Feb 22 20:06:57 2007 -0600 80085 80086 mpc83xx: update [local-]mac-address properties on UEC based devices 80087 80088 8360 and 832x weren't updating their [local-]mac-address 80089 properties. This patch fixes that. 80090 80091 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 80092 80093commit 61f4f912acbe60776c5e00df1ec94094ce672957 80094Author: Timur Tabi <timur@freescale.com> 80095Date: Tue Feb 13 10:41:42 2007 -0600 80096 80097 mpc83xx: write MAC address to mac-address and local-mac-address 80098 80099 Some device trees have a mac-address property, some have local-mac-address, 80100 and some have both. To support all of these device trees, this patch 80101 updates ftp_cpu_setup() to write the MAC address to mac-address if it exists. 80102 This function already updates local-mac-address. 80103 80104 Signed-off-by: Timur Tabi <timur@freescale.com> 80105 80106commit 22d71a71f57fd5d38b27ac3848e50d790360a598 80107Author: Kim Phillips <kim.phillips@freescale.com> 80108Date: Tue Feb 27 18:41:08 2007 -0600 80109 80110 mpc83xx: add command line editing by default 80111 80112commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca 80113Author: Kim Phillips <kim.phillips@freescale.com> 80114Date: Wed Feb 14 19:50:53 2007 -0600 80115 80116 mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers 80117 80118 Disable G1TXCLK, G2TXCLK h/w buffers. This patch 80119 fixes a networking timeout issue with MPC8360EA (Rev.2) PBs. 80120 80121 Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards. 80122 80123 Signed-off-by: Kim Phillips <kim.phillips@freescale.com> 80124 Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com> 80125 80126commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f 80127Author: Xie Xiaobo <r63061@freescale.com> 80128Date: Wed Feb 14 18:27:17 2007 +0800 80129 80130 mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx 80131 80132 The code supply fixed and SPD initialization for MPC83xx DDR2 Controller. 80133 it pass DDR/DDR2 compliance tests. 80134 80135 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com> 80136 80137commit b110f40bd180c6b560276589beedf753e97c46ce 80138Author: Xie Xiaobo <r63061@freescale.com> 80139Date: Wed Feb 14 18:27:06 2007 +0800 80140 80141 mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS 80142 80143 MPC8360E rev2.0 have new spridr,and PVR value, 80144 The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM. 80145 80146 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com> 80147 80148commit 8d172c0f0d85998a256a95b7459a5403a30380ed 80149Author: Xie Xiaobo <r63061@freescale.com> 80150Date: Wed Feb 14 18:26:44 2007 +0800 80151 80152 mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS 80153 80154 MPC8349E rev3.1 have new spridr,and PVR value, 80155 The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM. 80156 80157 Signed-off-by: Xie Xiaobo<X.Xie@freescale.com> 80158 80159commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b 80160Author: Joakim Tjernlund <joakim.tjernlund@transmode.se> 80161Date: Wed Jan 31 11:04:19 2007 +0100 80162 80163 mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c 80164 80165 Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0) 80166 which is used to se if an slave will ACK after receiving its address. 80167 80168 Correct i2c probing to use this method as the old method could upset 80169 a slave as it wrote a data byte to it. 80170 80171 Add a small delay in i2c_init() to let the controller 80172 shutdown any ongoing I2C activity. 80173 80174 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 80175 80176commit 7a78f148d6a7298e4fface680dc7eacd877b1aba 80177Author: Timur Tabi <timur@freescale.com> 80178Date: Wed Jan 31 15:54:29 2007 -0600 80179 80180 mpc83xx: Add support for the MPC8349E-mITX-GP 80181 80182 Add support for the MPC8349E-mITX-GP, a stripped-down version of the 80183 MPC8349E-mITX. Bonus features include support for low-boot (BMS bit in 80184 HRCW is 0) for the ITX and a README for the ITX and the ITX-GP. 80185 80186 Signed-off-by: Timur Tabi <timur@freescale.com> 80187 80188commit fab16807adad350f618024350c6950165c247c72 80189Author: Timur Tabi <timur@freescale.com> 80190Date: Wed Jan 31 15:54:20 2007 -0600 80191 80192 mpc83xx: Delete sdram_init() for MPC8349E-mITX 80193 80194 There is no SDRAM on any of the 8349 ITX variants, so function sdram_init() 80195 never does anything. This patch deletes it. 80196 80197 Signed-off-by: Timur Tabi <timur@freescale.com> 80198 80199commit a87c856eb411b9365937d0d4b9c21e46adbe1c14 80200Author: Dave Liu <daveliu@freescale.com> 80201Date: Fri Jan 19 10:43:26 2007 +0800 80202 80203 mpc83xx: Fix the LAW1/3 bug 80204 80205 The patch solves the alignment problem of the local bus access windows to 80206 render accessible the memory bank and PHY registers of UPC 1 (starting at 80207 0xf801 0000). What we actually did was to adjust the sizes of the bus 80208 access windows so that the base address alignment requirement would be met. 80209 80210 Signed-off-by: Chereji Marian <marian.chereji@freescale.com> 80211 Signed-off-by: Gridish Shlomi <gridish@freescale.com> 80212 Signed-off-by: Dave Liu <daveliu@freescale.com> 80213 80214commit 97c4b397dce236a7318b304667bf89e59d08b17c 80215Author: Kim Phillips <kim.phillips@freescale.com> 80216Date: Tue Jan 30 16:15:31 2007 -0600 80217 80218 mpc83xx: don't hang if watchdog configured on 8360, 832x 80219 80220 don't hang if watchdog configured on 8360, 832x 80221 80222 The watchdog programming model is the same across all 83xx devices; 80223 make the code reflect that. 80224 80225commit b70047478570e371ce7223be342ce98afea0f7d6 80226Author: Kim Phillips <kim.phillips@freescale.com> 80227Date: Tue Jan 30 16:15:21 2007 -0600 80228 80229 mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt 80230 80231 protect memcpy to bad address if a local-mac-address is missing from dt 80232 80233commit 6752ed088c75c26a89b70c46b7326a4cd6015f29 80234Author: Kim Phillips <kim.phillips@freescale.com> 80235Date: Tue Jan 30 16:15:04 2007 -0600 80236 80237 mpc83xx: make 8360 default environment fdt be 8360 (not 8349) 80238 80239 make 8360 default environment fdt be 8360 (not 8349) 80240 80241commit a28899c910024a0226331df07207b1038c300c93 80242Author: Emilian Medve <Emilian.Medve@freescale.com> 80243Date: Tue Jan 30 16:14:50 2007 -0600 80244 80245 mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC 80246 80247 The problem is not gcc4 but the code itself. The BD_STATUS() macro can't 80248 be used for busy-waiting since it strips the 'volatile' property from 80249 the bd variable. gcc3 was working by pure luck. 80250 80251 This is a follow on patch to "Fix the UEC driver bug of QE" 80252 80253commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89 80254Author: Kumar Gala <galak@kernel.crashing.org> 80255Date: Tue Jan 30 14:08:30 2007 -0600 80256 80257 mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead 80258 80259 The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all 80260 MPC834X class processors. Change the protections from CONFIG_MPC8349 to 80261 CONFIG_MPC834X so they are more generic. 80262 80263 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 80264 80265commit ae246dc6c1937c291014eadd90b6d48c438c7cb0 80266Author: Kim Phillips <kim.phillips@freescale.com> 80267Date: Thu Jan 25 13:40:55 2007 -0600 80268 80269 mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL 80270 80271commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb 80272Author: Kim Phillips <kim.phillips@freescale.com> 80273Date: Wed Jan 24 17:18:37 2007 -0600 80274 80275 mpc83xx: sort Makefile targets 80276 80277 reordered targets alphabetically 80278 80279commit 91e25769771c1164ed63ffca0add49f934ae3343 80280Author: Paul Gortmaker <paul.gortmaker@windriver.com> 80281Date: Tue Jan 16 11:38:14 2007 -0500 80282 80283 mpc83xx: U-Boot support for Wind River SBC8349 80284 80285 I've redone the SBC8349 support to match git-current, which 80286 incorporates all the MPC834x updates from Freescale since the 1.1.6 80287 release, including the DDR changes. 80288 80289 I've kept all the SBC8349 files as parallel as possible to the 80290 MPC8349EMDS ones for ease of maintenance and to allow for easy 80291 inspection of what was changed to support this board. Hence the SBC8349 80292 U-Boot has FDT support and everything else that the MPC8349EMDS has. 80293 80294 Fortunately the Freescale updates added support for boards using CS0, 80295 but I had to change spd_sdram.c to allow for board specific settings for 80296 the sdram_clk_cntl (it is/was hard coded to zero, and that remains the 80297 default if the board doesn't specify a value.) 80298 80299 Hopefully this should be mergeable as-is and require no whitespace 80300 cleanups or similar, but if something doesn't measure up then let me 80301 know and I'll fix it. 80302 80303 Thanks, 80304 Paul. 80305 80306commit 05031db456ab227f3e3752f37b9b812b65bb83ad 80307Author: Sam Song <samsongshu@yahoo.com.cn> 80308Date: Thu Dec 14 19:03:21 2006 +0800 80309 80310 mpc83xx: Remove a redundant semicolon in mpc8349itx.c 80311 80312 A redundant semicolon existed in mpc8349itx.c 80313 should be removed. 80314 80315 Signed-off-by: Sam Song <samsongshu@yahoo.com.cn> 80316 80317commit f35f358241c549be3f75cfe2eaa642914275b7ba 80318Author: Jerry Van Baren <gerald.vanbaren@comcast.net> 80319Date: Wed Dec 6 21:23:55 2006 -0500 80320 80321 mpc83xx: Put the version (and magic) after the HRCW. 80322 80323 Put the version (and magic) after the HRCW. This puts it in a fixed 80324 location in flash, not at the start of flash but as close as we can get. 80325 80326 Signed-off-by: Jerry Van Baren <vanbaren@cideas.com> 80327 80328commit 48aecd969171a6e99a55fae04933857787f9a5bd 80329Author: Dave Liu <r63238@freescale.com> 80330Date: Thu Dec 7 21:14:51 2006 +0800 80331 80332 mpc83xx: Add the MPC832XEMDS board readme 80333 80334 Add the MPC832XEMDS board readme 80335 80336 Signed-off-by: Dave Liu <daveliu@freescale.com> 80337 80338commit 24c3aca3f1358b113d3215adb5433b156e99f72b 80339Author: Dave Liu <r63238@freescale.com> 80340Date: Thu Dec 7 21:13:15 2006 +0800 80341 80342 mpc83xx: Add support for the MPC832XEMDS board 80343 80344 This patch supports DUART, ETH3/4 and PCI etc. 80345 80346 Signed-off-by: Dave Liu <daveliu@freescale.com> 80347 80348commit e080313c32322e15ab5a18eb896a252858c57284 80349Author: Dave Liu <r63238@freescale.com> 80350Date: Thu Dec 7 21:11:58 2006 +0800 80351 80352 mpc83xx: streamline the 83xx immr head file 80353 80354 For better format and style, I streamlined the 83xx head files, 80355 including immap_83xx.h and mpc83xx.h. In the old head files, 1) 80356 duplicated macro definition appear in the both files; 2) the structure 80357 of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The 80358 macro definition put inside the each structure. So, I cleaned up the 80359 structure of QE immr from immap_83xx.h, deleted the duplicated stuff and 80360 moved the macro definition to mpc83xx.h, Just like MPC8260. 80361 80362 CHANGELOG 80363 80364 *streamline the 83xx immr head file 80365 80366 Signed-off-by: Dave Liu <daveliu@freescale.com> 80367 80368commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0 80369Author: Dave Liu <r63238@freescale.com> 80370Date: Wed Dec 6 11:38:17 2006 +0800 80371 80372 mpc83xx: Fix the UEC driver bug of QE 80373 80374 The patch prevents the GCC tool chain from striping useful code for 80375 optimization. It will make UEC ethernet driver workable, Otherwise the 80376 UEC will fail in tx when you are using gcc4.x. but the driver can work 80377 when using gcc3.4.3. 80378 80379 CHANGELOG 80380 80381 *Prevent the GCC from striping code for optimization, Otherwise the UEC 80382 will tx failed when you are using gcc4.x. 80383 80384 Signed-off-by: Dave Liu <daveliu@freescale.com> 80385 80386commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35 80387Author: Stefan Roese <sr@denx.de> 80388Date: Thu Mar 1 21:11:36 2007 +0100 80389 80390 [PATCH] Update AMCC Katmai 440SPe eval board support 80391 80392 This patch updates the recently added Katmai board support. The biggest 80393 change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2 80394 driver. 80395 80396 Please note, that still some problems are left with some memory 80397 configurations. See the driver for more details. 80398 80399 Signed-off-by: Stefan Roese <sr@denx.de> 80400 80401commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a 80402Author: Stefan Roese <sr@denx.de> 80403Date: Thu Mar 1 07:03:25 2007 +0100 80404 80405 [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM 80406 80407 Signed-off-by: Stefan Roese <sr@denx.de> 80408 80409commit ccbc7036648e465697ca298ba51e0e76dda352a0 80410Author: Wolfgang Denk <wd@pollux.denx.de> 80411Date: Wed Feb 28 01:28:53 2007 +0100 80412 80413 SC3: fix typo in default environment 80414 80415commit e344568b1b46af85ec32d815586f91bc115d6223 80416Author: Sergei Poselenov <sposelenov@emcraft.com> 80417Date: Tue Feb 27 20:15:30 2007 +0300 80418 80419 MCC200: Fixes for update procedure 80420 80421 - fix logic error in image type handling 80422 - make sure file system images (cramfs etc.) get stored in flash 80423 with image header stripped so they can be mounted through MTD 80424 80425commit 743571145b37182757d4e688a77860b36ee77573 80426Author: Wolfgang Denk <wd@pollux.denx.de> 80427Date: Tue Feb 27 14:26:04 2007 +0100 80428 80429 Minor code cleanup. 80430 80431commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72 80432Author: Sergei Poselenov <sposelenov@emcraft.com> 80433Date: Tue Feb 27 12:40:16 2007 +0300 80434 80435 MCC200 update - add LCD Progress Indicator 80436 80437commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44 80438Author: Stefan Roese <sr@denx.de> 80439Date: Thu Feb 22 07:43:34 2007 +0100 80440 80441 [PATCH] get_dev() now unconditionally uses manual relocation 80442 80443 Since the relocation fix is not included yet and we're not sure how 80444 it will be added, this patch removes code that required relocation 80445 to be fixed for now. 80446 80447 Signed-off-by: Stefan Roese <sr@denx.de> 80448 80449commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b 80450Author: Stefan Roese <sr@denx.de> 80451Date: Thu Feb 22 07:40:23 2007 +0100 80452 80453 [PATCH] Change systemace driver to select 8 & 16bit mode 80454 80455 As suggested by Grant Likely this patch enables the Xilinx SystemACE 80456 driver to select 8 or 16bit mode upon startup. 80457 80458 Signed-off-by: Stefan Roese <sr@denx.de> 80459 80460commit 3a197b2fe49d6fa03978e60af2394efe9c70b527 80461Author: Haiying Wang <Haiying.Wang@freescale.com> 80462Date: Wed Feb 21 16:52:31 2007 +0100 80463 80464 [PATCH v3] Add sync to ensure flash_write_cmd is fully finished 80465 80466 Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command 80467 is fully finished. The sync() is defined in each CPU's io.h file. For 80468 those CPUs which do not need sync for now, a dummy sync() is defined in 80469 their io.h as well. 80470 80471 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 80472 80473commit da04995c7dc6772013a9a0dc5c767f190c402478 80474Author: Stefan Roese <sr@denx.de> 80475Date: Wed Feb 21 13:44:34 2007 +0100 80476 80477 [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write) 80478 80479 Signed-off-by: Stefan Roese <sr@denx.de> 80480 80481commit 751bb57107d78978ae08e697c3deba816f5be091 80482Author: Stefan Roese <sr@denx.de> 80483Date: Tue Feb 20 13:21:57 2007 +0100 80484 80485 [PATCH] Fix relocation problem with "new" get_dev() function 80486 80487 This patch enables the "new" get_dev() function for block devices 80488 introduced by Grant Likely to be used on systems that still suffer 80489 from the relocation problems (manual relocation neede because of 80490 problems with linker script). 80491 80492 Hopefully we can resolve this relocation issue soon for all platform 80493 so we don't need this additional code anymore. 80494 80495 Signed-off-by: Stefan Roese <sr@denx.de> 80496 80497commit d93e2212f962668b3dce091ff5edc33f2347fe37 80498Author: Stefan Roese <sr@denx.de> 80499Date: Tue Feb 20 13:17:42 2007 +0100 80500 80501 [PATCH] Update SystemACE driver for 16bit access 80502 80503 This patch removes some problems when the Xilinx SystemACE driver 80504 is used with 16bit access on an big endian platform (like the 80505 AMCC Katmai). 80506 80507 Signed-off-by: Stefan Roese <sr@denx.de> 80508 80509commit 874bb7b88fe9b4648e1288a387af2e31014a72f3 80510Author: Stefan Roese <sr@denx.de> 80511Date: Tue Feb 20 13:15:40 2007 +0100 80512 80513 [PATCH] Clean up Katmai (440SPe) linker script 80514 80515 Signed-off-by: Stefan Roese <sr@denx.de> 80516 80517commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f 80518Author: Stefan Roese <sr@denx.de> 80519Date: Tue Feb 20 10:57:08 2007 +0100 80520 80521 [PATCH] Add support for the AMCC Katmai (440SPe) eval board 80522 80523 Signed-off-by: Stefan Roese <sr@denx.de> 80524 80525commit 0dc018ece13effc689e47479ea9ebf1c98a507f5 80526Author: Stefan Roese <sr@denx.de> 80527Date: Tue Feb 20 10:51:26 2007 +0100 80528 80529 [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT 80530 80531 This patch switches to the desired I2C bus when the date/dtt 80532 commands are called. This can be configured using the 80533 CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines. 80534 80535 Signed-off-by: Stefan Roese <sr@denx.de> 80536 80537commit 4037ed3b63923cfcec27f784a89057c3cbabcedb 80538Author: Stefan Roese <sr@denx.de> 80539Date: Tue Feb 20 10:43:34 2007 +0100 80540 80541 [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support 80542 80543 This patch adds support for the DDR2 controller used on the 80544 440SP and 440SPe. It is tested on the Katmai (440SPe) eval 80545 board and works fine with the following DIMM modules: 80546 80547 - Corsair CM2X512-5400C4 (512MByte per DIMM) 80548 - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM) 80549 - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM) 80550 80551 This patch also adds the nice functionality to dynamically 80552 create the TLB entries for the SDRAM (tlb.c). So we should 80553 never run into such problems with wrong (too short) TLB 80554 initialization again on these platforms. 80555 80556 Signed-off-by: Stefan Roese <sr@denx.de> 80557 80558commit 36d830c9830379045f5daa9f542ac1c990c70068 80559Author: Stefan Roese <sr@denx.de> 80560Date: Tue Feb 20 10:35:42 2007 +0100 80561 80562 [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files 80563 80564 Since the existing 4xx SPD SDRAM initialization routines for the 80565 405 SDRAM controller and the 440 DDR controller don't have much in 80566 common this patch splits both drivers into different files. 80567 80568 This is in preparation for the 440 DDR2 controller support (440SP/e). 80569 80570 Signed-off-by: Stefan Roese <sr@denx.de> 80571 80572commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6 80573Author: Stefan Roese <sr@denx.de> 80574Date: Tue Feb 20 10:27:08 2007 +0100 80575 80576 [PATCH] PPC4xx: Add support for multiple I2C busses 80577 80578 This patch adds support for multiple I2C busses on the PPC4xx 80579 platforms. Define CONFIG_I2C_MULTI_BUS in the board config file 80580 to make use of this feature. 80581 80582 It also merges the 405 and 440 i2c header files into one common 80583 file 4xx_i2c.h. 80584 80585 Also the 4xx i2c reset procedure is reworked since I experienced 80586 some problems with the first access on the 440SPe Katmai board. 80587 80588 Signed-off-by: Stefan Roese <sr@denx.de> 80589 80590commit eb867a76238fb38e952c37871b16d0d7fd61c95f 80591Author: Grant Likely <grant.likely@secretlab.ca> 80592Date: Tue Feb 20 09:05:45 2007 +0100 80593 80594 [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers 80595 80596 Block device read/write is anonymous data; there is no need to use a 80597 typed pointer. void * is fine. Also add a hook for block_read functions 80598 80599 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 80600 80601commit 53758fa20e935cc87eeb0519ed365df753a6f289 80602Author: Grant Likely <grant.likely@secretlab.ca> 80603Date: Tue Feb 20 09:05:38 2007 +0100 80604 80605 [PATCH 8_9] Add block_write hook to block_dev_desc_t 80606 80607 Preparation for future patches which support block device writing 80608 80609 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 80610 80611commit f4852ebe6ca946a509667eb68be42026f837be76 80612Author: Grant Likely <grant.likely@secretlab.ca> 80613Date: Tue Feb 20 09:05:31 2007 +0100 80614 80615 [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros 80616 80617 Register read/write does not need to be wrapped in a full function. The 80618 patch replaces them with macros. 80619 80620 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 80621 80622commit 3a8ce9af6fcb5744a7851b4440c07688acc40844 80623Author: Grant Likely <grant.likely@secretlab.ca> 80624Date: Tue Feb 20 09:05:23 2007 +0100 80625 80626 [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c 80627 80628 The code in this file is not a command; it is a device driver. Put it in 80629 the correct place. There are zero functional changes in this patch, it 80630 only moves the file. 80631 80632 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 80633 80634commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4 80635Author: Grant Likely <grant.likely@secretlab.ca> 80636Date: Tue Feb 20 09:05:16 2007 +0100 80637 80638 [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent) 80639 80640 This patch is in preparation of additional changes to the sysace driver. 80641 May as well take this opportunity to fixup the inconsistent whitespace since 80642 this file is about to undergo major changes anyway. 80643 80644 There are zero functional changes in this patch. It only cleans up the 80645 the whitespace. 80646 80647 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 80648 80649commit 80ba981d940471fe7e539e64fa3d2bd80002beda 80650Author: Grant Likely <grant.likely@secretlab.ca> 80651Date: Tue Feb 20 09:05:07 2007 +0100 80652 80653 [PATCH 4_4] Remove local implementation of isprint() in ft_build.c 80654 80655 isprint is already defined in ctype.c 80656 80657 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 80658 80659commit c95c4280d751ca078c2ff58228d2f2b44ccf0600 80660Author: Grant Likely <grant.likely@secretlab.ca> 80661Date: Tue Feb 20 09:05:00 2007 +0100 80662 80663 [PATCH 3_9] Move buffer print code from md command to common function 80664 80665 Printing a buffer is a darn useful thing. Move the buffer print code 80666 into print_buffer() in lib_generic/ 80667 80668 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 80669 80670commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a 80671Author: Grant Likely <grant.likely@secretlab.ca> 80672Date: Tue Feb 20 09:04:52 2007 +0100 80673 80674 [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets 80675 80676 Change the xilinx device drivers and board code to include config.h 80677 instead of xparameters.h directly. config.h always includes the 80678 correct xparameters file. This change reduces the posibility of 80679 including the wrong file when adding a new xilinx board port 80680 80681 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 80682 80683commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7 80684Author: Grant Likely <grant.likely@secretlab.ca> 80685Date: Tue Feb 20 09:04:34 2007 +0100 80686 80687 [PATCH 1_4] Merge common get_dev() routines for block devices 80688 80689 Each of the filesystem drivers duplicate the get_dev routine. This change 80690 merges them into a single function in part.c 80691 80692 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 80693 80694commit f5fcc3c20b65554e98a165542c36ee0c610a2d81 80695Author: Wolfgang Denk <wd@pollux.denx.de> 80696Date: Mon Feb 19 23:09:51 2007 +0100 80697 80698 MCC200: Software Updater: allow both "ramdisk" and "filesystem" types 80699 as root file system images. 80700 80701commit 489c696ae7211218961d159e43e722d74c36fcbc 80702Author: Sergei Poselenov <sposelenov@emcraft.com> 80703Date: Wed Feb 14 14:30:28 2007 +0300 80704 80705 MCC200: Extensions to Software Update Mechanism 80706 80707 Update / extend Software Update Mechanism for MCC200 board: 80708 80709 - Add support for rootfs image added. The environment variables 80710 "rootfs_st" and "rootfs_nd" can be used to override the default 80711 values of the image start and end. 80712 - Remove excessive key check code. 80713 - Code cleanup. 80714 80715commit 4be23a12f23f1372634edc3215137b09768b7949 80716Author: Stefan Roese <sr@denx.de> 80717Date: Mon Feb 19 08:23:15 2007 +0100 80718 80719 [PATCH] Update Sequoia EBC configuration (NOR FLASH) 80720 80721 As spotted by Matthias Fuchs, the READY input should not be 80722 enabled for the NOR FLASH on the Sequoia board. 80723 80724 Signed-off-by: Stefan Roese <sr@denx.de> 80725 80726commit 2605e90bf676d48123afe5719a846d2b52b24aac 80727Author: Heiko Schocher <hs@pollux.denx.de> 80728Date: Fri Feb 16 07:57:42 2007 +0100 80729 80730 [PATCH] Added support for the jupiter board. 80731 80732 Signed-off-by: Heiko Schocher <hs@denx.de> 80733 80734commit 497d012e5be0194e1084073d0081eb1a844796b2 80735Author: Gary Jennejohn <garyj@pollux.denx.de> 80736Date: Mon Feb 12 13:11:50 2007 +0100 80737 80738 LPC2292: patch from Siemens. 80739 80740commit b0b1a920aebead0d44146e73676ae9d80fffc8e2 80741Author: Stefan Roese <sr@denx.de> 80742Date: Sat Feb 10 08:49:31 2007 +0100 80743 80744 [PATCH] Add missing p3mx.h file to repository (ups) 80745 80746 Signed-off-by: Stefan Roese <sr@denx.de> 80747 80748commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a 80749Author: Bartlomiej Sieka <tur@semihalf.com> 80750Date: Fri Feb 9 10:45:42 2007 +0100 80751 80752 [Motion-PRO] Preliminary support for the Motion-PRO board. 80753 80754commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994 80755Author: Stefan Roese <sr@denx.de> 80756Date: Wed Feb 7 16:51:08 2007 +0100 80757 80758 [PATCH] Update some AMCC 4xx board config files (set initrd_high) 80759 80760 Some boards that can have more than 768MBytes of SDRAM need to 80761 set "initrd_high", so that the initrd can be accessed by the 80762 Linux kernel. 80763 80764 Signed-off-by: Stefan Roese <sr@denx.de> 80765 80766commit 7372ca68227930d03cffa548310524cad5b96733 80767Author: Stefan Roese <sr@denx.de> 80768Date: Fri Feb 2 12:44:22 2007 +0100 80769 80770 [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards 80771 80772 Previously the strapping DCR/SDR was read to determine if the internal PCI 80773 arbiter is enabled or not. This strapping bit can be overridden, so now 80774 the current status is read from the correct DCR/SDR register. 80775 80776 Signed-off-by: Stefan Roese <sr@denx.de> 80777 80778commit 2aa54f651a42d198673318f07a20c89a43e4d197 80779Author: Stefan Roese <sr@denx.de> 80780Date: Fri Feb 2 12:42:08 2007 +0100 80781 80782 [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier 80783 80784 Signed-off-by: Stefan Roese <sr@denx.de> 80785 80786commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b 80787Author: Stefan Roese <sr@denx.de> 80788Date: Thu Feb 1 13:22:41 2007 +0100 80789 80790 [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file 80791 80792 When PCI PNP is enabled the pci pnp configuration routine is called 80793 which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some 80794 problems with some PCI cards. For now disable the PCI PNP configuration. 80795 80796 Signed-off-by: Stefan Roese <sr@denx.de> 80797 80798commit 2902fadade3be7659467e8d074048c6b7068f5c0 80799Author: Stefan Roese <sr@denx.de> 80800Date: Wed Jan 31 16:56:10 2007 +0100 80801 80802 [PATCH] Update 440EPx/440GRx cpu detection 80803 80804 Signed-off-by: Stefan Roese <sr@denx.de> 80805 80806commit d5ea287b02a6945c3977410e364a879dd1a555c8 80807Author: Stefan Roese <sr@denx.de> 80808Date: Wed Jan 31 16:38:04 2007 +0100 80809 80810 [PATCH] Update esd cpci5200 files 80811 80812 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 80813 80814commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab 80815Author: Stefan Roese <sr@denx.de> 80816Date: Wed Jan 31 16:37:34 2007 +0100 80817 80818 [PATCH] Add support for esd mecp5200 board 80819 80820 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com> 80821 80822commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff 80823Author: Stefan Roese <sr@denx.de> 80824Date: Wed Jan 31 12:38:50 2007 +0100 80825 80826 [PATCH] Remove unneccessary yellowstone board config file 80827 80828 Signed-off-by: Stefan Roese <sr@denx.de> 80829 80830commit e802594b6fa1b166308820c276b96dc0d7cc731c 80831Author: Stefan Roese <sr@denx.de> 80832Date: Tue Jan 30 17:06:10 2007 +0100 80833 80834 [PATCH] Update Sequoia (440EPx) config file 80835 80836 The config file now handles the 2nd target, the Rainier (440GRx) 80837 evaluation board better. Additionally the PPC input clock was 80838 adjusted to match the correct value of 33.0 MHz. 80839 80840 Signed-off-by: Stefan Roese <sr@denx.de> 80841 80842commit 700200c67e73b83751418abe7815840dca8fd6cb 80843Author: Stefan Roese <sr@denx.de> 80844Date: Tue Jan 30 17:04:19 2007 +0100 80845 80846 [PATCH] Merge Yosemite & Yellowstone board ports 80847 80848 Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR) 80849 share one config file and all board specific files. This way we 80850 don't have to maintain two different sets of files for nearly 80851 identical boards. 80852 80853 Signed-off-by: Stefan Roese <sr@denx.de> 80854 80855commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6 80856Author: Stefan Roese <sr@denx.de> 80857Date: Tue Jan 30 15:01:49 2007 +0100 80858 80859 [PATCH] Update Prodrive SCPU (PDNB3 variant) board 80860 80861 SCPU doesn't use redundant environment in flash. 80862 80863 Signed-off-by: Stefan Roese <sr@denx.de> 80864 80865commit 6304430ed642ea8fa15c9e5af965ac2e033eec45 80866Author: Stefan Roese <sr@denx.de> 80867Date: Tue Jan 30 12:51:07 2007 +0100 80868 80869 [PATCH] alpr: Update alpr board config file 80870 80871 Signed-off-by: Stefan Roese <sr@denx.de> 80872 80873commit f8db84f132b1e335f20f96138a1f09ed97b08664 80874Author: Wolfgang Denk <wd@pollux.denx.de> 80875Date: Tue Jan 30 00:50:40 2007 +0100 80876 80877 LPC2292 SODIMM port coding style cleanup. 80878 80879commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3 80880Author: Gary Jennejohn <garyj@pollux.denx.de> 80881Date: Wed Jan 24 12:16:56 2007 +0100 80882 80883 Add port for the lpc2292sodimm evaluation board from EmbeddedArtists 80884 80885commit 2daf046ba627f85f44195815778140039636244e 80886Author: Bartlomiej Sieka <tur@semihalf.com> 80887Date: Tue Jan 23 17:22:06 2007 +0100 80888 80889 [iDMR] Add MTD and JFFS2 support, also add default partition definition. 80890 80891commit f7db33101fbc9c8f0a10738ce87034875a17aeb9 80892Author: Bartlomiej Sieka <tur@semihalf.com> 80893Date: Tue Jan 23 14:21:14 2007 +0100 80894 80895 [iDMR] Flash driver on initialisation write-protects some sectors, 80896 currently sectors 0-3. Sector 3 does not need to be protected, though 80897 (U-boot occupies sectors 0-1 and the environment sector 2). This commit 80898 fixes this, i.e., only sectors 0-2 are protected. 80899 80900commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de 80901Author: Bartlomiej Sieka <tur@semihalf.com> 80902Date: Tue Jan 23 14:11:22 2007 +0100 80903 80904 [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g., 80905 "mii device" results in "Unexpected exception"). Fixing this properly 80906 requires some clean-up in the FEC drivers infrastructure for ColdFire, so 80907 this commit disables MII commads for now. 80908 80909commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c 80910Author: Bartlomiej Sieka <tur@semihalf.com> 80911Date: Tue Jan 23 13:25:22 2007 +0100 80912 80913 [ColdFire MCF5271 family] Add CPU detection based on the value of Chip 80914 Identification Register (CIR). 80915 80916commit fdef388758506765d4d6a7155c8f1584c63ff581 80917Author: roy zang <tie-fei.zang@freescale.com> 80918Date: Mon Jan 22 13:19:21 2007 +0800 80919 80920 use CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP 80921 The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007 80922 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support 80923 mpc7448hpc2 board. 80924 80925commit a4012396645533aef218354eeba754dff0deace8 80926Author: Wolfgang Denk <wd@pollux.denx.de> 80927Date: Fri Jan 19 23:08:39 2007 +0100 80928 80929 Minor code cleanup. 80930 80931commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39 80932Author: Heiko Schocher <hs@pollux.denx.de> 80933Date: Fri Jan 19 19:57:10 2007 +0100 80934 80935 [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT. 80936 80937 Signed-off-by: Heiko Schocher <hs@denx.de> 80938 80939commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167 80940Author: Heiko Schocher <hs@pollux.denx.de> 80941Date: Fri Jan 19 18:05:26 2007 +0100 80942 80943 [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver 80944 if you must swap the bytes between reading/writing. 80945 (Needed for the SC3 board) 80946 80947 Signed-off-by: Heiko Schocher <hs@denx.de> 80948 80949commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276 80950Author: Stefan Roese <sr@denx.de> 80951Date: Thu Jan 18 16:05:47 2007 +0100 80952 80953 [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board 80954 80955 Signed-off-by: Stefan Roese <sr@denx.de> 80956 80957commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e 80958Author: Stefan Roese <sr@denx.de> 80959Date: Thu Jan 18 11:54:52 2007 +0100 80960 80961 [PATCH] Update Prodrive P3Mx support 80962 80963 Signed-off-by: Stefan Roese <sr@denx.de> 80964 80965commit 34167a36c29ee946b727465db5c014746a08e978 80966Author: Stefan Roese <sr@denx.de> 80967Date: Thu Jan 18 11:48:10 2007 +0100 80968 80969 [PATCH] Add missing Taishan config file 80970 80971 Signed-off-by: Stefan Roese <sr@denx.de> 80972 80973commit cb4820725e9fc409c5cbc8e83054a6ed522d2111 80974Author: Heiko Schocher <hs@pollux.denx.de> 80975Date: Thu Jan 18 11:28:51 2007 +0100 80976 80977 [PATCH] Fix: Compilerwarnings for SC3 board. 80978 The EBC Configuration Register is now by CFG_EBC_CFG definable 80979 Added JFFS2 support for the SC3 board. 80980 80981 Signed-off-by: Heiko Schocher <hs@denx.de> 80982 80983commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd 80984Author: Stefan Roese <sr@denx.de> 80985Date: Thu Jan 18 10:25:34 2007 +0100 80986 80987 [PATCH] Add support for AMCC Taishan PPC440GX eval board 80988 80989 Signed-off-by: Stefan Roese <sr@denx.de> 80990 80991commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad 80992Author: Wolfgang Denk <wd@pollux.denx.de> 80993Date: Tue Jan 16 18:30:50 2007 +0100 80994 80995 Raname solidcard3 into sc3; add redundant env for sc3 80996 80997commit 1bbbbdd20fcec9933697000dcf55ff7972622596 80998Author: Wolfgang Denk <wd@pollux.denx.de> 80999Date: Tue Jan 16 12:46:35 2007 +0100 81000
81001 Update default environment for Solidcard3 81002 81003commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd 81004Author: Stefan Roese <sr@denx.de> 81005Date: Mon Jan 15 09:46:29 2007 +0100 81006 81007 [PATCH] Fix 440SPe rev B detection from previous patch 81008 81009 Signed-off-by: Stefan Roese <sr@denx.de> 81010 81011commit a443d31410c571ee8f970da819a44d698fdd6b1f 81012Author: Heiko Schocher <hs@pollux.denx.de> 81013Date: Sun Jan 14 13:35:31 2007 +0100 81014 81015 [FIX] correct I2C Writes for the LM81 Sensor. 81016 81017 Signed-off-by: Heiko Schocher <hs@denx.de> 81018 81019commit 0bba5452835f19a61204edcda3a58112fd8e2208 81020Author: Wolfgang Denk <wd@pollux.denx.de> 81021Date: Sat Jan 13 11:17:10 2007 +0100 81022 81023 Undo commit 3033ebb2: reset command does not take any arguments 81024 81025 Haiying Wang's modification to the reset command was broken, undo it. 81026 81027 Signed-off-by: Wolfgang Denk <wd@denx.de> 81028 81029commit 95981778cff0038fd9941044d6a3eda810e33258 81030Author: Stefan Roese <sr@denx.de> 81031Date: Sat Jan 13 08:01:03 2007 +0100 81032 81033 [PATCH] Update 440SP(e) cpu revisions 81034 81035 Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's. 81036 81037 Signed-off-by: Stefan Roese <sr@denx.de> 81038 81039commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7 81040Author: Stefan Roese <sr@denx.de> 81041Date: Sat Jan 13 07:59:56 2007 +0100 81042 81043 [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed 81044 81045 Now the board revision and the current PCI bus speed are printed after 81046 the board message. 81047 81048 Also the EBC initialising is now done via defines in the board config 81049 file. 81050 81051 Signed-off-by: Stefan Roese <sr@denx.de> 81052 81053commit 36adff362c2c0141ff8a810d42a7e478f779130f 81054Author: Stefan Roese <sr@denx.de> 81055Date: Sat Jan 13 07:59:19 2007 +0100 81056 81057 [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed 81058 81059 Now the board revision and the current PCI bus speed are printed after 81060 the board message. 81061 81062 Also the EBC initialising is now done via defines in the board config 81063 file. 81064 81065 Signed-off-by: Stefan Roese <sr@denx.de> 81066 81067commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6 81068Author: Stefan Roese <sr@denx.de> 81069Date: Sat Jan 13 07:57:51 2007 +0100 81070 81071 [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed 81072 81073 Now the board revision and the current PCI bus speed are printed after 81074 the board message. 81075 81076 Signed-off-by: Stefan Roese <sr@denx.de> 81077 81078commit ca43ba18e910206ef8063e4b22d282630bff3fd2 81079Author: Heiko Schocher <hs@pollux.denx.de> 81080Date: Thu Jan 11 15:44:44 2007 +0100 81081 81082 Added support for the SOLIDCARD III board from Eurodesign 81083 81084 Signed-off-by: Heiko Schocher <hs@denx.de> 81085 81086commit 6abaee42621c07e81a2cd189ad4368b5e8c50280 81087Author: Reinhard Thies <Reinhard.Thies@web.de> 81088Date: Wed Jan 10 14:41:14 2007 +0100 81089 81090 Adjusted default environment for cam5200 board. 81091 81092commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9 81093Author: Wolfgang Denk <wd@pollux.denx.de> 81094Date: Wed Jan 10 15:35:52 2007 +0100 81095 81096 Update CHANGELOG 81097 81098commit 787fa15860a57833e50bd30555079a9cd4e519b8 81099Author: Wolfgang Denk <wd@pollux.denx.de> 81100Date: Wed Jan 10 01:28:39 2007 +0100 81101 81102 Fix auto_update for MCC200 board. 81103 81104 The invocation of do_auto_update() is moved to the end of the 81105 misc_init_r() function, after the flash mappings have been 81106 initialized. Please find attached a patch that implements that 81107 change. 81108 81109 Also correct the decoding of the keypad status. With this update, the 81110 key that will trigger the update is Column 2, Row 2. 81111 81112commit d9384de2f571046e71081bae22b49e3d5ca2e3d5 81113Author: Marian Balakowicz <m8@semihalf.com> 81114Date: Wed Jan 10 00:26:15 2007 +0100 81115 81116 CAM5200 flash driver modifications: 81117 - use CFI driver (replaces custom flash driver) for main 'cam5200' target 81118 - add second build target 'cam5200_niosflash' which still uses custom driver 81119 81120commit 67fea022fa957f59653b5238c7496f80a6b70432 81121Author: Markus Klotzbuecher <mk@denx.de> 81122Date: Tue Jan 9 16:02:48 2007 +0100 81123 81124 SPC1920: cleanup memory contoller setup 81125 81126commit 8fc2102faa23593c80381437c09f7745a14deb40 81127Author: Markus Klotzbuecher <mk@denx.de> 81128Date: Tue Jan 9 14:57:14 2007 +0100 81129 81130 Fix the cpu speed setup to work with all boards. 81131 81132commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c 81133Author: Markus Klotzbuecher <mk@denx.de> 81134Date: Tue Jan 9 14:57:13 2007 +0100 81135 81136 SPC1920: add support for the FM18L08 Ramtron FRAM 81137 81138commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223 81139Author: Markus Klotzbuecher <mk@denx.de> 81140Date: Tue Jan 9 14:57:13 2007 +0100 81141 81142 SPC1920: update the HPI register addresses to work with the second 81143 generation of hardware 81144 81145commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e 81146Author: Markus Klotzbuecher <mk@creamnet.de> 81147Date: Tue Jan 9 14:57:13 2007 +0100 81148 81149 Miscellanious spc1920 related cleanups 81150 81151commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120 81152Author: Markus Klotzbuecher <mk@denx.de> 81153Date: Tue Jan 9 14:57:12 2007 +0100 81154 81155 SPC1920 GO/NOGO led should be set to color red in U-Boot 81156 81157commit 0be62728aac459ba268d6d752ed49ec0e2bc7348 81158Author: Markus Klotzbuecher <mk@creamnet.de> 81159Date: Tue Jan 9 14:57:12 2007 +0100 81160 81161 Add support for the DS3231 RTC 81162 81163commit 8139567b60d678584b05f0718a681f2047c5e14f 81164Author: Markus Klotzbuecher <mk@creamnet.de> 81165Date: Tue Jan 9 14:57:11 2007 +0100 81166 81167 SMC1 uses external CLK4 instead of BRG on spc1920 81168 81169commit d8d9de1a02fbd880b613d607143d1f57342affc7 81170Author: Markus Klotzbuecher <mk@creamnet.de> 81171Date: Tue Jan 9 14:57:10 2007 +0100 81172 81173 Update the SPC1920 CMB PLD driver 81174 81175commit 3f34f869162750e5e999fd140f884f5de952bcfe 81176Author: Markus Klotzbuecher <mk@creamnet.de> 81177Date: Tue Jan 9 14:57:10 2007 +0100 81178 81179 Add / enable I2C support on the spc1920 board 81180 81181commit d28707dbce1e9ac2017ad051da4133bf22b4204f 81182Author: Markus Klotzbuecher <mk@creamnet.de> 81183Date: Tue Jan 9 14:57:10 2007 +0100 81184 81185 Add support for the tms320671x host port interface (HPI) 81186 81187commit f4eb54529bb3664c3a562e488b460fe075f79d67 81188Author: Wolfgang Denk <wd@pollux.denx.de> 81189Date: Sun Jan 7 00:13:11 2007 +0100 81190 81191 Prepare for release 1.2.0 81192 81193commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02 81194Author: Stefan Roese <sr@denx.de> 81195Date: Sat Jan 6 15:58:09 2007 +0100 81196 81197 [PATCH] 44x: Fix problem with DDR controller setup (refresh rate) 81198 81199 This patch fixes a problem with an incorrect setup for the refresh 81200 timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c 81201 81202 Signed-off-by: Stefan Roese <sr@denx.de> 81203 81204commit f16c1da9577f06c5fc08651a4065537407de4635 81205Author: Stefan Roese <sr@denx.de> 81206Date: Sat Jan 6 15:56:13 2007 +0100 81207 81208 [PATCH] Update ALPR board files 81209 81210 This update brings the ALPR board support to the newest version. 81211 It also fixes a problem with the NAND driver. 81212 81213 Signed-off-by: Stefan Roese <sr@denx.de> 81214 81215commit cd1d937f90250a32988c37b2b4af8364d25de8ed 81216Author: Stefan Roese <sr@denx.de> 81217Date: Fri Jan 5 11:46:05 2007 +0100 81218 81219 [PATCH] nand: Fix problem with oobsize calculation 81220 81221 Here the description from Brian Brelsford <Brian_Brelsford@dell.com>: 81222 81223 The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part 81224 returns a 0x15. In the code fragment below bits [1:0] determine the 81225 page size, it is ANDed via "(extid & 0x3)" then shifted out. The 81226 next field is also ANDed with 0x3. However this is a one bit field 81227 as defined in the Hynix and Samsung parts in the 4th ID byte that 81228 determins the oobsize, not a two bit field. It works on Samsung as 81229 bits[3:2] are 01. However for the Hynix there is a 11 in these two 81230 bits, so the oob size gets messed up. 81231 81232 I checked the correct linux code and the suggested fix from Brian is 81233 also available in the linux nand mtd driver. 81234 81235 Signed-off-by: Stefan Roese <sr@denx.de> 81236 81237commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e 81238Author: Stefan Roese <sr@denx.de> 81239Date: Fri Jan 5 10:40:36 2007 +0100 81240 81241 [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx) 81242 81243 This fix will make the MAL burst disabling patch for the Linux 81244 EMAC driver obsolete. 81245 81246 Signed-off-by: Stefan Roese <sr@denx.de> 81247 81248commit 023889838282b6237b401664f22dd22dfba2c066 81249Author: Stefan Roese <sr@denx.de> 81250Date: Fri Jan 5 10:38:05 2007 +0100 81251 81252 [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board 81253 81254 This code will optimize the DDR2 controller setup on a board specific 81255 basis. 81256 81257 Note: This code doesn't work right now on the NAND booting image for the 81258 Sequoia board, since it doesn't fit into the 4kBytes for the SPL image. 81259 81260 Signed-off-by: Stefan Roese <sr@denx.de> 81261 81262commit cce4acbb68398634b8d011ed7bb0d12269c84230 81263Author: Bartlomiej Sieka <tur@semihalf.com> 81264Date: Thu Dec 28 19:08:21 2006 +0100 81265 81266 Few V38B changes: 81267 - fix a typo in V38B config file 81268 - move watchdog initialisation earlier in the boot process 81269 - add "wdt=off" to default kernel command line (disables kernel watchdog) 81270 81271commit 92eb729bad876725aeea908d2addba0800620840 81272Author: Wolfgang Denk <wd@pollux.denx.de> 81273Date: Wed Dec 27 01:26:13 2006 +0100 81274 81275 Fix bug in adaption of Stefano Babic's CFI driver patch. 81276 81277commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3 81278Author: Wolfgang Denk <wd@pollux.denx.de> 81279Date: Sun Dec 24 01:42:57 2006 +0100 81280 81281 Minor code cleanup. 81282 81283commit d784fdb05900ada3686d5778783e1fb328e9fb66 81284Author: Stefano Babic <sbabic@denx.de> 81285Date: Tue Dec 12 00:22:42 2006 +0100 81286 81287 Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode) 81288 81289commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2 81290Author: Stefan Roese <sr@denx.de> 81291Date: Fri Dec 22 14:29:40 2006 +0100 81292 81293 [PATCH] Fix sequoia flash autodetection (finally correct) 81294 81295 Now 32MByte and 64MByte FLASH is know to work and other 81296 configurations should work too. 81297 81298 Signed-off-by: Stefan Roese <sr@denx.de> 81299 81300commit 82e5236a8b719543643fd26d5827938ab2b94818 81301Author: Wolfgang Denk <wd@pollux.denx.de> 81302Date: Fri Dec 22 10:30:26 2006 +0100 81303 81304 Minor code cleanup; update CHANGELOG. 81305 81306commit fa23044564091f05d9695beb7b5b9a931e7f41a4 81307Author: Heiko Schocher <hs@pollux.denx.de> 81308Date: Thu Dec 21 17:17:02 2006 +0100 81309 81310 Added support for the TQM8272 board from TQ 81311 81312 Signed-off-by: Heiko Schocher <hs@denx.de> 81313 81314commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c 81315Author: Heiko Schocher <hs@pollux.denx.de> 81316Date: Thu Dec 21 16:14:48 2006 +0100 81317 81318 [PATCH] Add support for the UC101 board from MAN. 81319 81320 Signed-off-by: Heiko Schocher <hs@denx.de> 81321 81322commit c84bad0ef60e7055ab0bd49b93069509cecc382a 81323Author: Bartlomiej Sieka <tur@semihalf.com> 81324Date: Wed Dec 20 00:29:43 2006 +0100 81325 81326 Fix to make the baudrate changes immediate for the MCF52x2 family. 81327 81328commit daa6e418bcc0c717752e8de939c213c790286096 81329Author: Bartlomiej Sieka <tur@semihalf.com> 81330Date: Wed Dec 20 00:27:32 2006 +0100 81331 81332 Preliminary support for the iDMR board (ColdFire). 81333 81334commit cdb97a6678826f85e7c69eae6a1c113d034c9b10 81335Author: Andrei Safronov <safronov@pollux.denx.de> 81336Date: Fri Dec 8 16:23:08 2006 +0100 81337 81338 automatic update mechanism 81339 81340commit 9d27b3a0685ff99fc477983f315c04d49f657a8a 81341Author: roy zang <tie-fei.zang@freescale.com> 81342Date: Mon Dec 4 17:56:59 2006 +0800 81343 81344 Slight code clean up. 81345 Add comments, delete duplicate define and remove spaces. 81346 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 81347 81348commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1 81349Author: roy zang <tie-fei.zang@freescale.com> 81350Date: Mon Dec 4 17:54:21 2006 +0800 81351 81352 Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original 81353 multiplier table can not refect the real PLL clock behavior of these 81354 processors. Please refer to the hardware specification for detailed 81355 information of the corresponding processors. 81356 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 81357 81358commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0 81359Author: roy zang <tie-fei.zang@freescale.com> 81360Date: Mon Dec 4 14:46:23 2006 +0800 81361 81362 Remove the static MAC address, ip address, server ip, netmask and 81363 gateway ip for network setting. 81364 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 81365 81366commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf 81367Author: roy zang <tie-fei.zang@freescale.com> 81368Date: Mon Dec 4 14:33:08 2006 +0800 81369 81370 Remove the duplicate memory test code for mpc744ihpc2 board. 81371 If a memory test is needed, please use the functions in 81372 post/memory.c or memtest command. 81373 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 81374 81375commit c9c1eeed7dd193fa65fb194654132040d49d4d3a 81376Author: roy zang <tie-fei.zang@freescale.com> 81377Date: Fri Dec 1 19:01:25 2006 +0800 81378 81379 Fix the exception occuring in RAM table search issue. 81380 The original search_one_table() function code can only processes the search 81381 for the exception occurring in FLASH/ROM, because the exception and fixup 81382 table usually locate in FLASH. If the exception address is also in 81383 FLASH, it will be OK. 81384 If the exception occurs in RAM, after the u-boot relocation, a 81385 relocation offset should be added. 81386 81387 clean up the code in cpu/74xx_7xx/cpu.c 81388 81389 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 81390 81391commit ee311214e0d216f904feea269599d0934bf71f23 81392Author: roy zang <tie-fei.zang@freescale.com> 81393Date: Fri Dec 1 11:47:36 2006 +0800 81394 81395 Clean up the code according to codestyle: 81396 (1) remove some C++ comments. 81397 (2) remove trailing white space. 81398 (3) remove trailing empty line. 81399 (4) Indentation by table. 81400 (5) remove {} in one line condition. 81401 (6) add space before '(' in function call. 81402 Remove some weird printf () output. 81403 Add necessary comments. 81404 Modified Makefile to support building in a separate directory. 81405 81406commit dd520bf314c7add4183c5191692180f576f96b60 81407Author: Wolfgang Denk <wd@pollux.denx.de> 81408Date: Thu Nov 30 18:02:20 2006 +0100 81409 81410 Code cleanup. 81411 81412commit 8d9a8610b8256331132227e9e6585c6bd5742787 81413Author: Wolfgang Denk <wd@pollux.denx.de> 81414Date: Thu Nov 30 01:54:07 2006 +0100 81415 81416 Code cleanup. Update CHANGELOG. 81417 81418commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba 81419Author: Grant Likely <grant.likely@secretlab.ca> 81420Date: Wed Nov 29 16:23:42 2006 +0100 81421 81422 [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals 81423 81424 The soc node of the mpc52xx needs to be loaded with the IPB bus frequency, 81425 not the XLB frequency. 81426 81427 This patch depends on the previous patches for MPC52xx device tree support 81428 81429 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 81430 Signed-off-by: Sylvain Munaut <tnt@246tNt.com> 81431 81432commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6 81433Author: Stefan Roese <sr@denx.de> 81434Date: Wed Nov 29 15:42:37 2006 +0100 81435 81436 [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards 81437 81438 This patch adds support for the Prodrive P3M750 (PPC750 & MV64460) 81439 and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are 81440 quite similar and share the same board directory "prodrive/p3mx" 81441 and the same config file "p3mx.h". 81442 81443 Signed-off-by: Stefan Roese <sr@denx.de> 81444 81445commit 1bdd46832aeb569f5e04b1f20f64318525b6525a 81446Author: Stefan Roese <sr@denx.de> 81447Date: Wed Nov 29 12:53:15 2006 +0100 81448 81449 [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command 81450 81451 In the bootvx command the load address was only read from the env 81452 variable "loadaddr" and not optionally passed as paramter as described 81453 in the help. This is fixed with this patch. The behaviour is now the 81454 same as in the bootelf command. 81455 81456 Signed-off-by: Stefan Roese <sr@denx.de> 81457 81458commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592 81459Author: Stefan Roese <sr@denx.de> 81460Date: Wed Nov 29 12:03:57 2006 +0100 81461 81462 [PATCH] include/ppc440.h minor error affecting interrupts 81463 81464 Fixed include/ppc440.c for UIC address Bug 81465 81466 Corrects bug affecting the addresses for the universal interrupt 81467 controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips. 81468 81469 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com> 81470 Signed-off-by: Stefan Roese <sr@denx.de> 81471 81472commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a 81473Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 81474Date: Tue Nov 28 16:17:27 2006 -0600 81475 81476 Make fsl-i2c not conflict with SOFT I2C 81477 81478 Signed-off-by: Timur Tabi <timur@freescale.com> 81479 81480commit 14198bf768fdc958e3c1afd2404e5262208e98d7 81481Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> 81482Date: Tue Nov 28 16:17:18 2006 -0600 81483 81484 Fix I2C master address initialization. 81485 81486 Signed-off-by: Timur Tabi <timur@freescale.com> 81487 81488commit cf3d045e51ca8dcc6cf759827140861d6ac25c04 81489Author: Kim Phillips <kim.phillips@freescale.com> 81490Date: Tue Nov 28 23:31:19 2006 -0600 81491 81492 Assign maintainers for mpc8349emds and mpc8360emds 81493 81494 Dave for mpc8360emds, and me for mpc8349emds. 81495 81496commit 1aa934c81b77f2080d3ca4b226eab67b17a33961 81497Author: Kim Phillips <kim.phillips@freescale.com> 81498Date: Tue Nov 28 23:28:33 2006 -0600 81499 81500 Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c 81501 81502 give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src 81503 since they are passed by reference to ucc_get_cmxucr_reg and assigned. 81504 81505commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5 81506Author: Timur Tabi <timur@freescale.com> 81507Date: Tue Nov 28 12:09:35 2006 -0600 81508 81509 mpc83xx: Miscellaneous code style fixes 81510 81511 Implement various code style fixes and similar changes. 81512 81513 Signed-off-by: Timur Tabi <timur@freescale.com> 81514 81515commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706 81516Author: Stefan Roese <sr@denx.de> 81517Date: Tue Nov 28 17:55:49 2006 +0100 81518 81519 [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux. 81520 81521 This patch adds the code and configuration necessary to boot with an 81522 arch/powerpc Linux kernel. 81523 81524 Signed-off-by: Grant Likely <grant.likely@gmail.com> 81525 Acked-by: Jon Loeliger <jdl@freescale.com> 81526 81527commit e732faec95a83cb468b4850ae807c8301dde8f6a 81528Author: Stefan Roese <sr@denx.de> 81529Date: Tue Nov 28 16:09:24 2006 +0100 81530 81531 [PATCH] PPC4xx: 440SP Rev. C detection added 81532 81533 Signed-off-by: Stefan Roese <sr@denx.de> 81534 81535commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0 81536Author: Stefan Roese <sr@denx.de> 81537Date: Tue Nov 28 11:04:45 2006 +0100 81538 81539 [PATCH] nand: Fix patch merge problem 81540 81541 Signed-off-by: Stefan Roese <sr@denx.de> 81542 81543commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2 81544Author: Stefan Roese <sr@denx.de> 81545Date: Tue Nov 28 11:04:45 2006 +0100 81546 81547 [PATCH] nand: Fix patch merge problem 81548 81549 Signed-off-by: Stefan Roese <sr@denx.de> 81550 81551commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa 81552Author: Wolfgang Denk <wd@pollux.denx.de> 81553Date: Mon Nov 27 22:53:53 2006 +0100 81554 81555 Update CHANGELOG 81556 81557commit f6e495f54cdb8fe340b9c03deab40ad746d52fae 81558Author: Stefan Roese <sr@denx.de> 81559Date: Mon Nov 27 17:43:25 2006 +0100 81560 81561 [PATCH] 4xx_enet.c: Correct the setting of zmiifer register 81562 81563 Patch below corrects the setting of the zmiifer register, it was 81564 overwritting the register rather than ORing the settings. 81565 81566 Signed-off-by: Neil Wilson <NWilson@airspan.com> 81567 Signed-off-by: Stefan Roese <sr@denx.de> 81568 81569commit d1a72545296800b7e219f93104ad5836f0003d66 81570Author: Stefan Roese <sr@denx.de> 81571Date: Mon Nov 27 17:34:10 2006 +0100 81572 81573 [PATCH] Select NAND embedded environment from board configuration 81574 81575 The current NAND Bootloader setup forces the environment 81576 variables to be in line with the bootloader. This change 81577 enables the configuration to be made in the board include 81578 file instead so that it can be individually enabled. 81579 81580 Signed-off-by: Nick Spence <nick.spence@freescale.com> 81581 Signed-off-by: Stefan Roese <sr@denx.de> 81582 81583commit 15784862857c3c2214498defcfed84ff137fb81e 81584Author: Stefan Roese <sr@denx.de> 81585Date: Mon Nov 27 17:22:19 2006 +0100 81586 81587 [PATCH] nand_wait() timeout fixes 81588 81589 Two fixes for the nand_wait() function in 81590 drivers/nand/nand_base.c: 81591 81592 1. Use correct timeouts. The original timeouts in Linux 81593 source are 400ms and 20ms not 40s and 20s 81594 81595 2. Return correct error value in case of timeout. 0 is 81596 interpreted as OK. 81597 81598 Signed-off-by: Rui Sousa <rui.sousa@laposte.net> 81599 Signed-off-by: Stefan Roese <sr@denx.de> 81600 81601commit da5553b095bf04f4f109ad7e565dae3aba47b230 81602Author: Stefan Roese <sr@denx.de> 81603Date: Mon Nov 27 17:04:06 2006 +0100 81604 81605 [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel 81606 81607 This patch allows an arch/ppc kernel to be booted by just passing 1 or 2 81608 arguments to bootm. It removes the getenv("disable_of") test that used 81609 to be used for this purpose. 81610 81611 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 81612 Acked-by: Jon Loeliger <jdl@freescale.com> 81613 81614commit a9398e018593782c5fa7d0741955fc1256b34c1e 81615Author: Wolfgang Denk <wd@pollux.denx.de> 81616Date: Mon Nov 27 15:32:42 2006 +0100 81617 81618 Minor code cleanup. Update CHANGELOG. 81619 81620commit 1729b92cde575476684bffe819d0b7791b57bff2 81621Author: Stefan Roese <sr@denx.de> 81622Date: Mon Nov 27 14:52:04 2006 +0100 81623 81624 [PATCH] 4xx: Fix problem with board specific reset code (now for real) 81625 81626 Signed-off-by: Stefan Roese <sr@denx.de> 81627 81628commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7 81629Author: Stefan Roese <sr@denx.de> 81630Date: Mon Nov 27 14:49:51 2006 +0100 81631 81632 [PATCH] alpr: remove unused board specific flash driver 81633 81634 Signed-off-by: Stefan Roese <sr@denx.de> 81635 81636commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1 81637Author: Stefan Roese <sr@denx.de> 81638Date: Mon Nov 27 14:48:41 2006 +0100 81639 81640 [PATCH] 4xx: Fix problem with board specific reset code 81641 81642 Signed-off-by: Stefan Roese <sr@denx.de> 81643 81644commit ec0c2ec725aec9524a177a77ce75559e644a931a 81645Author: Stefan Roese <sr@denx.de> 81646Date: Mon Nov 27 14:46:06 2006 +0100 81647 81648 [PATCH] Remove testing 4xx enet PHY setup 81649 81650 Signed-off-by: Stefan Roese <sr@denx.de> 81651 81652commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148 81653Author: Stefan Roese <sr@denx.de> 81654Date: Mon Nov 27 14:12:17 2006 +0100 81655 81656 [PATCH] Update Prodrive ALPR board support (440GX) 81657 81658 Signed-off-by: Stefan Roese <sr@denx.de> 81659 81660commit 58b485776698c3d71ec5a215e392123b4c15afa3 81661Author: Markus Klotzbuecher <mk@denx.de> 81662Date: Mon Nov 27 11:51:21 2006 +0100 81663 81664 Add a small README with information on the generic ohci driver. 81665 81666commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f 81667Author: Markus Klotzbuecher <mk@denx.de> 81668Date: Mon Nov 27 11:46:46 2006 +0100 81669 81670 Fix some endianness issues related to the generic ohci driver 81671 81672commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418 81673Author: Markus Klotzbuecher <mk@denx.de> 81674Date: Mon Nov 27 11:44:58 2006 +0100 81675 81676 Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able 81677 to choose between the old and the generic OHCI drivers. 81678 81679commit 53e336e9ffc51035bdc4e5867631b3378761b4df 81680Author: Markus Klotzbuecher <mk@denx.de> 81681Date: Mon Nov 27 11:43:09 2006 +0100 81682 81683 Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver 81684 and adapted board configs TQM5200 and yosemite accordingly. This commit 81685 also makes the maximum number of root hub ports configurable 81686 (CFG_USB_OHCI_MAX_ROOT_PORTS). 81687 81688commit 78d620ebb5871d252270dedfad60c6568993b780 81689Author: Wolfgang Denk <wd@atlas.denx.de> 81690Date: Thu Nov 23 22:58:58 2006 +0100 81691 81692 Updates for TQM5200 modules: 81693 - fix off-by-one error in board/tqm5200/cam5200_flash.c error message 81694 - simplify "udate" definitions 81695 81696commit 2053283304eeddf250d109e6791eb6fa4cad14f7 81697Author: Stefan Roese <sr@denx.de> 81698Date: Wed Nov 22 13:20:50 2006 +0100 81699 81700 [PATCH] PPC4xx start.S: Fix for processor errata 81701 81702 Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx 81703 errata 1.12: 440_33 by moving patch up in code. 81704 81705 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com> 81706 Signed-off-by: Stefan Roese <sr@denx.de> 81707 81708commit 4ef6251403f637841000e0fef9e832aa01339822 81709Author: Stefan Roese <sr@denx.de> 81710Date: Mon Nov 20 20:39:52 2006 +0100 81711 81712 [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH 81713 81714 Signed-off-by: Stefan Roese <sr@denx.de> 81715 81716commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0 81717Author: Wolfgang Denk <wd@pollux.denx.de> 81718Date: Mon Nov 20 10:28:30 2006 +0100 81719 81720 Update CHANGELOG 81721 81722commit 260421a21e934a68d31fb6125b0fbd2631a8ca20 81723Author: Stefan Roese <sr@denx.de> 81724Date: Mon Nov 13 13:55:24 2006 +0100 81725 81726 [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated] 81727 81728 * Adds support for AMD command set Top Boot flash geometry reversal 81729 * Adds support for reading JEDEC Manufacturer ID and Device ID 81730 * Adds support for displaying command set, manufacturer id and 81731 device ids (flinfo) 81732 * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined 81733 * Removes outdated change history (refer to git log instead) 81734 81735 Signed-off-by: Tolunay Orkun <listmember@orkun.us> 81736 Signed-off-by: Stefan Roese <sr@denx.de> 81737 81738commit b21b511d4c50408f4853f46f06b601272196223f 81739Author: Wolfgang Denk <wd@pollux.denx.de> 81740Date: Sun Nov 12 21:13:23 2006 +0100 81741 81742 Update CHANGELOG 81743 81744commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245 81745Author: Bartlomiej Sieka <tur@semihalf.com> 81746Date: Sat Nov 11 22:48:22 2006 +0100 81747 81748 Disable the watchdog in the default config for the V38B board. 81749 81750commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a 81751Author: Bartlomiej Sieka <tur@semihalf.com> 81752Date: Sat Nov 11 22:43:00 2006 +0100 81753 81754 Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin 81755 group is enabled for USB earlier (in cpu_init_f() instead of 81756 usb_lowlevel_init()). 81757 81758commit 91650b3e4de688038d4f71279c44858e3e2c6870 81759Author: Wolfgang Denk <wd@pollux.denx.de> 81760Date: Mon Nov 6 17:06:36 2006 +0100 81761 81762 Sequential accesses to non-existent memory must be synchronized, 81763 at least on G2 cores. 81764 81765 This fixes get_ram_size() problems on MPC5200 Rev. B boards. 81766 81767commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa 81768Author: Timur Tabi <timur@freescale.com> 81769Date: Fri Nov 3 19:15:00 2006 -0600 81770 81771 mpc83xx: Update 83xx to use fsl_i2c.c 81772 81773 Update the 83xx tree to use I2C support in drivers/fsl_i2c.c. Delete 81774 cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files. 81775 Added multiple I2C bus support to fsl_i2c.c. 81776 81777 Signed-off-by: Timur Tabi <timur@freescale.com> 81778 81779commit d239d74b1c937984bc519083a8e7de373a390f06 81780Author: Timur Tabi <timur@freescale.com> 81781Date: Fri Nov 3 12:00:28 2006 -0600 81782 81783 mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR 81784 81785 Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx 81786 tree matches the other 8xxx trees. 81787 81788 Signed-off-by: Timur Tabi <timur@freescale.com> 81789 81790commit f7fb2e703ec9688541416962724adff70a7322cb 81791Author: Kim Phillips <kim.phillips@freescale.com> 81792Date: Thu Nov 2 19:47:11 2006 -0600 81793 81794 mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c 81795 81796commit 90f30a710a3c619b5405860a686c4ddfc495d4b6 81797Author: Dave Liu <daveliu@freescale.com> 81798Date: Thu Nov 2 18:05:50 2006 -0600 81799 81800 mpc83xx: Fix the incorrect dcbz operation 81801 81802 The 834x rev1.x silicon has one CPU5 errata. 81803 81804 The issue is when the data cache locked with 81805 HID0[DLOCK], the dcbz instruction looks like no-op inst. 81806 81807 The right behavior of the data cache is when the data cache 81808 Locked with HID0[DLOCK], the dcbz instruction allocates 81809 new tags in cache. 81810 81811 The 834x rev3.0 and later and 8360 have not this bug inside. 81812 81813 So, when 834x rev3.0/8360 are working with ECC, the dcbz 81814 instruction will corrupt the stack in cache, the processor will 81815 checkstop reset. 81816 81817 However, the 834x rev1.x can work with ECC with these code, 81818 because the sillicon has this cache bug. The dcbz will not 81819 corrupt the stack in cache. 81820 Really, it is the fault code running on fault sillicon. 81821 81822 This patch fix the incorrect dcbz operation. Instead of 81823 CPU FP writing to initialise the ECC. 81824 81825 CHANGELOG: 81826 * Fix the incorrect dcbz operation instead of CPU FP 81827 writing to initialise the ECC memory. Otherwise, it 81828 will corrupt the stack in cache, The processor will checkstop 81829 reset. 81830 81831 Signed-off-by: Dave Liu <daveliu@freescale.com> 81832 81833commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d 81834Author: Kim Phillips <kim.phillips@freescale.com> 81835Date: Wed Nov 1 00:10:40 2006 -0600 81836 81837 mpc83xx: add OF_FLAT_TREE bits to 83xx boards 81838 81839 add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and 81840 STDOUT_PATH configuration bits to mpc8349emds, 81841 mpc8349itx, and mpc8360emds board code. 81842 81843 redo environment to use bootm with the fdtaddr 81844 for booting ARCH=powerpc kernels by default, 81845 and provide default fdtaddr values. 81846 81847commit 48041365b3420589ad464ebc7752e0053538b729 81848Author: Kim Phillips <kim.phillips@freescale.com> 81849Date: Wed Nov 1 00:07:25 2006 -0600 81850 81851 mpc83xx: change ft code to modify local-mac-address property 81852 81853 Update 83xx OF code to update local-mac-address properties 81854 for ethernet instead of the obsolete 'address' property. 81855 81856commit 9ca880a250870a7d55754291b5591d2b5fe89b54 81857Author: Timur Tabi <timur@freescale.com> 81858Date: Tue Oct 31 21:23:16 2006 -0600 81859 81860 mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS 81861 81862 This patch also adds an improved I2C set_speed(), which handles all clock 81863 frequencies. 81864 81865 Signed-off-by: Timur Tabi <timur@freescale.com> 81866 81867commit ac4b5622ce050b5ee1e154b98df630d778661632 81868Author: Dave Liu <daveliu@freescale.com> 81869Date: Tue Oct 31 19:54:59 2006 -0600 81870 81871 mpc83xx: add the README.mpc8360emds 81872 81873 add doc/README.mpc8360emds to accompany the new board support 81874 81875commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef 81876Author: Dave Liu <daveliu@freescale.com> 81877Date: Fri Nov 3 12:11:15 2006 -0600 81878 81879 mpc83xx: add QE ethernet support 81880 81881 this patch adds support for the QUICC Engine based UCC gigabit ethernet device. 81882 81883commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73 81884Author: Dave Liu <daveliu@freescale.com> 81885Date: Fri Nov 3 19:33:44 2006 -0600 81886 81887 mpc83xx: Add MPC8360EMDS basic board support 81888 81889 Add support for the Freescale MPC8360EMDS board. 81890 Includes DDR, DUART, Local Bus, PCI. 81891 81892commit 23892e49352de74f7fac36ff90bb1be143d195e3 81893Author: Dave Liu <daveliu@freescale.com> 81894Date: Tue Oct 31 19:30:40 2006 -0600 81895 81896 mpc83xx: add the QUICC Engine (QE) immap file 81897 81898 common QE immap file. Also required for 8360. 81899 81900commit b701652a4992bdcc62fb1a6038a85beef9e55da4 81901Author: Dave Liu <daveliu@freescale.com> 81902Date: Tue Oct 31 19:25:38 2006 -0600 81903 81904 mpc83xx: Add 8360 specifics to 83xx immap 81905 81906 Mainly add QE device dependencies, with appropriate 8360 protection. 81907 Lindent also run. 81908 81909commit 988833324a7fda482c8ac3ca23eb539f8232e404 81910Author: Timur Tabi <timur@freescale.com> 81911Date: Tue Oct 31 19:14:41 2006 -0600 81912 81913 mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX 81914 81915 PREREQUISITE PATCHES: 81916 81917 * This patch can only be applied after the following patches have been applied: 81918 81919 1) DNX#2006092142000015 "Add support for the MPC8349E-mITX 1/2" 81920 2) DNX#2006092142000024 "Add support for the MPC8349E-mITX 2/2" 81921 81922 CHANGELOG: 81923 81924 * For the 8349E-mITX, fix some size values in pci_init_board(), enable 81925 the clock for the 2nd USB board (Linux kernel will hang otherwise), 81926 and fix the CONFIG_BOOTARGS macro. 81927 81928 Signed-off-by: Timur Tabi <timur@freescale.com> 81929 81930commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357 81931Author: Timur Tabi <timur@freescale.com> 81932Date: Tue Oct 31 18:44:42 2006 -0600 81933 81934 mpc83xx: Add support for the MPC8349E-mITX 81935 81936 PREREQUISITE PATCHES: 81937 81938 * This patch can only be applied after the following patches have been applied: 81939 81940 1) DNX#2006090742000024 "Add support for multiple I2C buses" 81941 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x" 81942 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c" 81943 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems" 81944 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems" 81945 81946 CHANGELOG: 81947 81948 * Add support for the Freescale MPC8349E-mITX reference design platform. 81949 The second TSEC (Vitesse 7385 switch) is not supported at this time. 81950 81951 Signed-off-by: Timur Tabi <timur@freescale.com> 81952 81953commit 183da6d9b446cc12123455844ad1187e2375626f 81954Author: Ben Warren <bwarren@qstreams.com> 81955Date: Tue Sep 12 10:15:53 2006 -0400 81956 81957 Additional MPC8349 support for multibus i2c 81958 81959 Hello, 81960 81961 Here is a patch for a file that was accidentally left out of a previous 81962 attempt. 81963 81964 It accompanies the patch with ticket DNX#2006090742000024 81965 81966 CHANGELOG: 81967 Change PCI initialization to use new multi-bus I2C API. 81968 81969 regards, 81970 Ben 81971 81972commit b24f119d672b709d153ff2ac091d4aa63ec6877d 81973Author: Ben Warren <bwarren@qstreams.com> 81974Date: Thu Sep 7 16:51:04 2006 -0400 81975 81976 Multi-bus I2C implementation of MPC834x 81977 81978 Hello, 81979 81980 Attached is a patch implementing multiple I2C buses on the MPC834x CPU 81981 family and the MPC8349EMDS board in particular. 81982 This patch requires Patch 1 (Add support for multiple I2C buses). 81983 Testing was performed on a 533MHz board. 81984 81985 /*** Note: This patch replaces ticket DNX#2006083042000027 ***/ 81986 81987 Signed-off-by: Ben Warren <bwarren@qstreams.com> 81988 81989 CHANGELOG: 81990 Implemented driver-level code to support two I2C buses on the 81991 MPC834x CPU family and the MPC8349EMDS board. Available I2C bus speeds 81992 are 50kHz, 100kHz and 400kHz on each bus. 81993 81994 regards, 81995 Ben 81996 81997commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae 81998Author: Ben Warren <bwarren@qstreams.com> 81999Date: Thu Sep 7 16:50:54 2006 -0400 82000
82001 Add support for multiple I2C buses 82002 82003 Hello, 82004 82005 Attached is a patch providing support for multiple I2C buses at the 82006 command level. The second part of the patch includes an implementation 82007 for the MPC834x CPU and MPC8349EMDS board. 82008 82009 /*** Note: This patch replaces ticket DNX#2006083042000018 ***/ 82010 82011 Signed-off-by: Ben Warren <bwarren@qstreams.com> 82012 82013 Overview: 82014 82015 1. Include new 'i2c' command (based on USB implementation) using 82016 CONFIG_I2C_CMD_TREE. 82017 82018 2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS. Note that 82019 the commands to change bus number and speed are only available under the 82020 new 'i2c' command mentioned in the first bullet. 82021 82022 3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus 82023 systems. When CONFIG_I2C_MULTI_BUS is used, this option takes the form 82024 of an array of bus-device pairs. Otherwise, it is an array of uchar. 82025 82026 CHANGELOG: 82027 Added new 'i2c' master command for all I2C interaction. This is 82028 conditionally compiled with CONFIG_I2C_CMD_TREE. New commands added for 82029 setting I2C bus speed as well as changing the active bus if the board 82030 has more than one (conditionally compiled with 82031 CONFIG_I2C_MULTI_BUS). Updated NOPROBE logic to handle multiple buses. 82032 Updated README. 82033 82034 regards, 82035 Ben 82036 82037commit bed85caf872714ebf53013967a695c9d63acfc68 82038Author: Timur Tabi <timur@freescale.com> 82039Date: Tue Oct 31 18:13:36 2006 -0600 82040 82041 mpc83xx: Add support for Errata DDR6 on MPC 834x systems 82042 82043 CHANGELOG: 82044 82045 * Errata DDR6, which affects all current MPC 834x processors, lists changes 82046 required to maintain compatibility with various types of DDR memory. This 82047 patch implements those changes. 82048 82049 Signed-off-by: Timur Tabi <timur@freescale.com> 82050 82051commit afd6e470f639883002c7c59d562690a5cb0f4865 82052Author: Timur Tabi <timur@freescale.com> 82053Date: Wed Oct 25 18:45:23 2006 -0500 82054 82055 mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it 82056 82057commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a 82058Author: Timur Tabi <timur@freescale.com> 82059Date: Tue Aug 22 17:07:00 2006 -0500 82060 82061 mpc83xx: Add support for variable flash memory sizes on 83xx systems 82062 82063 CHANGELOG: 82064 82065 * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access 82066 window registers, instead of using a hard-coded value of 8MB. 82067 82068 Signed-off-by: Timur Tabi <timur@freescale.com> 82069 82070commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965 82071Author: Tanya Jiang <tanya.jiang@freescale.com> 82072Date: Thu Aug 3 18:38:13 2006 +0800 82073 82074 mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros 82075 82076 Unified TQM834x variable names with 83xx and consolidated macro 82077 in preparation for the 8360 and other upcoming 83xx devices. 82078 82079 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com> 82080 82081commit f6eda7f80ccc13d658020268c507d7173cf2e8aa 82082Author: Dave Liu <daveliu@freescale.com> 82083Date: Wed Oct 25 14:41:21 2006 -0500 82084 82085 mpc83xx: Changed to unified mpx83xx names and added common 83xx changes 82086 82087 Incorporated the common unified variable names and the changes in preparation 82088 for releasing mpc8360 patches. 82089 82090 Signed-off-by: Dave Liu <daveliu@freescale.com> 82091 82092commit 3894c46c27c64891f93ac04edde86a9fa9758d92 82093Author: Tanya Jiang <tanya.jiang@freescale.com> 82094Date: Thu Aug 3 18:36:02 2006 +0800 82095 82096 mpc83xx: Fix missing build for mpc8349emds pci.c 82097 82098 Make pci build for mpc8349emds 82099 82100 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com> 82101 82102commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219 82103Author: Tanya Jiang <tanya.jiang@freescale.com> 82104Date: Thu Aug 3 18:39:49 2006 +0800 82105 82106 mpc83xx: Removed unused file resetvec.S for mpc83xx cpu 82107 82108 Removed unused file resetvec.S for mpc83xx cpu 82109 82110 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com> 82111 82112commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf 82113Author: Nick Spence <Nick.Spence@freescale.com> 82114Date: Sat Sep 30 00:32:59 2006 -0700 82115 82116 NAND Flash verify across block boundaries 82117 82118 This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is 82119 defined 82120 and the write crosses a block boundary. The pointer to the verification 82121 buffer (bufstart) is not being updated to reflect the starting of the 82122 new 82123 block so the verification of the second block fails. 82124 82125 CHANGELOG: 82126 82127 * Fix NAND FLASH page verification across block boundaries 82128 82129commit f484dc791a3932537213c43c654cc1295c64b84c 82130Author: Nick Spence <nick.spence@freescale.com> 82131Date: Thu Sep 7 07:39:46 2006 -0700 82132 82133 Added RGMII support to the TSECs and Marvell 881111 Phy 82134 82135 Added a phy initialization to adjust the RGMII RX and TX timing 82136 Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode 82137 82138 Signed-off-by: Nick Spence <nick.spence@freescale.com> 82139 82140commit 4831c8b8a97799da77923d6bbb4c260c0d45521c 82141Author: roy zang <tie-fei.zang@freescale.com> 82142Date: Fri Nov 3 13:10:00 2006 +0800 82143 82144 Remove some unused CFG define. 82145 undef CFG_DRAM_TEST 82146 82147commit 99c09c4dec34f77c243bf51bea532e3f339410ad 82148Author: roy zang <tie-fei.zang@freescale.com> 82149Date: Fri Nov 3 13:07:36 2006 +0800 82150 82151 Change the TEXT_BASE from 0xFFF00000 to 0xFF000000. 82152 Both work. 0xFF000000 seems more reasonable. 82153 82154commit c59200443072353044aa4bf737a5a60f9a9af231 82155Author: Wolfgang Denk <wd@pollux.denx.de> 82156Date: Thu Nov 2 15:15:01 2006 +0100 82157 82158 Release U-Boot 1.1.6 82159 82160commit c1fbe4103a0d6c8957f912af902d705ba67836f2 82161Author: roy zang <tie-fei.zang@freescale.com> 82162Date: Thu Nov 2 19:14:48 2006 +0800 82163 82164 This patch comes from Yuli's posted patch on 8/8/2006 82165 titled "CFI Driver Little-Endian write Issue". 82166 82167 http://sourceforge.net/mailarchive/message.php?msg_id=36311999 82168 82169 If that patch applied, please discard this one. 82170 Until now , I do not see his patch is applied. So please apply this one. 82171 82172 Signed-off-by: Yuli Barcohen <yuli@arabellasw.com> 82173 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82174 82175commit b825f158e449e1e9cf74c08e572955e122394c96 82176Author: roy zang <tie-fei.zang@freescale.com> 82177Date: Thu Nov 2 19:12:31 2006 +0800 82178 82179 Tsi108 on chip i2c support. 82180 82181 The i2c Interface provides a master-only, serial interface that can be 82182 used for initializing Tsi108/Tsi109 registers from an EEPROM after a 82183 device reset. 82184 82185 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com> 82186 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82187 82188commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8 82189Author: roy zang <tie-fei.zang@freescale.com> 82190Date: Thu Nov 2 19:11:06 2006 +0800 82191 82192 Tsi108 on chip pci controller support. 82193 82194 If there is no pci card, the tsi108/109 pci configure read will 82195 cause a machine check exception to the processor. PCI error should 82196 also be cleared after the read. 82197 82198 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com> 82199 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82200 82201commit d1927cee977126e547ceeba23e4f978f377cfb8f 82202Author: roy zang <tie-fei.zang@freescale.com> 82203Date: Thu Nov 2 19:08:55 2006 +0800 82204 82205 Tundra tsi108 on chip Ethernet controller support. 82206 82207 The following is a brief description of the Ethernet controller: 82208 The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent 82209 Gigabit Ethernet ports,E0 and E1. It uses a single Management interface 82210 to manage the two physical connection devices (PHYs). Each Ethernet port 82211 has its own statistics monitor that tracks and reports key interface 82212 statistics. Each port supports a 256-entry hash table for address 82213 filtering. In addition, each port is bridged to the Switch Fabric 82214 through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO. 82215 82216 Each Ethernet port also has a pair of internal Ethernet DMA channels to 82217 support the transmit and receive data flows. The Ethernet DMA channels 82218 use descriptors set up in memory, the memory map of the device, and 82219 access via the Switch Fabric. The Ethernet Controller?s DMA arbiter 82220 handles arbitration for the Switch Fabric. The Controller also 82221 has a register businterface for register accesses and status monitor 82222 control. 82223 82224 The PMD (Physical Media Device) interface operates in MII, GMII, or TBI 82225 modes. The MII mode is used for connecting with 10 or 100 Mbit/s PMDs. 82226 The GMII and TBI modes are used to connect with Gigabit PMDs. Internal 82227 data flows to and from the Ethernet Controller through the Switch Fabric. 82228 82229 Each Ethernet port uses its transmit and receive DMA channels to manage 82230 data flows through buffer descriptors that are predefined by the 82231 system (the descriptors can exist anywhere in the system memory map). 82232 These descriptors are data structures that point to buffers filled 82233 with data ready to transmit over Ethernet, or they point to empty 82234 buffers ready to receive data from Ethernet. 82235 82236 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com> 82237 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82238 82239commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e 82240Author: roy zang <tie-fei.zang@freescale.com> 82241Date: Thu Nov 2 19:01:33 2006 +0800 82242 82243 Tundra tsi108 header file. 82244 82245 The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for 82246 PowerPC processors that offers numerous system interconnect options for 82247 embedded application designers. The Tsi108 can interconnect 60x or 82248 MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet, 82249 and Flash. Provided the macro define for tsi108 chip. 82250 82251 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com> 82252 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82253 82254commit 87c4db09699c6b89176b31004afcb83eb1585d47 82255Author: roy zang <tie-fei.zang@freescale.com> 82256Date: Thu Nov 2 18:59:15 2006 +0800 82257 82258 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support. 82259 mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2. 82260 82261 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com> 82262 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82263 82264commit 27801b8ab11c61b577e45742a515bb3b23b80241 82265Author: roy zang <tie-fei.zang@freescale.com> 82266Date: Thu Nov 2 18:57:21 2006 +0800 82267 82268 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support. 82269 Make ,config.mk and link file for the mpc7448hpc2 board. 82270 82271 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com> 82272 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82273 82274commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6 82275Author: roy zang <tie-fei.zang@freescale.com> 82276Date: Thu Nov 2 18:55:04 2006 +0800 82277 82278 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support. 82279 The mpc7448hpc2 board support header file. 82280 82281 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com> 82282 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82283 82284commit 625bb5ddb50b243f931262ca8c46956409471917 82285Author: roy zang <tie-fei.zang@freescale.com> 82286Date: Thu Nov 2 18:52:21 2006 +0800 82287 82288 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support. 82289 The mpc7448hpc2 board support low level assemble language init code. 82290 82291 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com> 82292 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82293 82294commit 4c52783b3d024e153c4972b97332e314bc3bdc46 82295Author: roy zang <tie-fei.zang@freescale.com> 82296Date: Thu Nov 2 18:49:51 2006 +0800 82297 82298 General code modification for mpc7448hpc2 board support. 82299 1. Add 7447A and 7448 processor support. 82300 2. Add the following flags. 82301 82302 CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically 82303 (such as by switch on board), this flag should be set. 82304 82305 CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot 82306 relocates to RAM, this flag should be set. 82307 82308 CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the 82309 system hang in exception, this flag should be set. 82310 82311 There is a design issue for tsi108/109 pci configure read. When pci scan 82312 the slots, if there is no pci card, the tsi108/9 will cause a machine 82313 check exception for mpc7448 processor. 82314 82315 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com> 82316 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82317 82318commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695 82319Author: roy zang <tie-fei.zang@freescale.com> 82320Date: Thu Nov 2 18:34:47 2006 +0800 82321 82322 Add README file for mpc7448hpc2 board. 82323 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com> 82324 82325commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526 82326Author: Bartlomiej Sieka <tur@semihalf.com> 82327Date: Wed Nov 1 02:04:38 2006 +0100 82328 82329 Finish up support for MarelV38B board 82330 - add watchdog support 82331 - enable GPIO_WKUP_7 pin for input 82332 - code cleanup 82333 82334commit ffa150bc90c943ca265170bd1be3f293674dd5c7 82335Author: Bartlomiej Sieka <tur@semihalf.com> 82336Date: Wed Nov 1 01:45:46 2006 +0100 82337 82338 - Fix issues related to the use of ELDK 4 when compiling for MarelV38B: 82339 * remove warnings when compiling ethaddr.c 82340 * adjust linker script (fixes a crash resulting from incorrect 82341 definition of __u_boot_cmd_start) 82342 - Some MarelV38B code cleanup. 82343 82344commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385 82345Author: Bartlomiej Sieka <tur@semihalf.com> 82346Date: Wed Nov 1 01:38:16 2006 +0100 82347 82348 - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the 82349 MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's 82350 Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with 82351 MPC5XXX_WU_GPIO_DATA_O for affected boards. 82352 82353 - Add defintions for some MPC5XXX GPIO pins. 82354 82355commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8 82356Author: Bartlomiej Sieka <tur@semihalf.com> 82357Date: Wed Nov 1 01:34:29 2006 +0100 82358 82359 Changed MarelV38B board make target to lowercase. Config file cleanup. 82360 82361commit 1954be6e9c9421b45d0a9d05b10356acc7563150 82362Author: Wolfgang Denk <wd@pollux.denx.de> 82363Date: Sun Oct 29 01:03:51 2006 +0200 82364 82365 Automatically adjust ARFLAGS so "make -s" is really silent. 82366 82367commit fae684e89844856383bdf101440889557df3e6b1 82368Author: Stefan Roese <sr@denx.de> 82369Date: Sat Oct 28 16:45:00 2006 +0200 82370 82371 [PATCH] omap925.c: Remove unused functions 82372 82373 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 82374 Signed-off-by: Stefan Roese <sr@denx.de> 82375 82376commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776 82377Author: Stefan Roese <sr@denx.de> 82378Date: Sat Oct 28 17:12:58 2006 +0200 82379 82380 [PATCH] Add some missing machtypes for netstar & voiceblue boards 82381 82382 Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of 82383 numbers in code. 82384 82385 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 82386 Signed-off-by: Stefan Roese <sr@denx.de> 82387 82388commit 856f054410cef52d868feb330168b2a4c4091328 82389Author: Stefan Roese <sr@denx.de> 82390Date: Sat Oct 28 15:55:52 2006 +0200 82391 82392 [PATCH] NAND: Partition name support added to NAND subsystem 82393 82394 chpart, nboot and NAND subsystem related commands now accept also partition 82395 name to specify offset. 82396 82397 Signed-off-by: Ladislav Michl <ladis@linux-mips.org> 82398 Signed-off-by: Stefan Roese <sr@denx.de> 82399 82400commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6 82401Author: Wolfgang Denk <wd@pollux.denx.de> 82402Date: Sat Oct 28 02:29:44 2006 +0200 82403 82404 Update CHANGELOG. 82405 82406commit 2751a95abd1b96911081c357e96a12fa97b40dee 82407Author: Wolfgang Denk <wd@pollux.denx.de> 82408Date: Sat Oct 28 02:29:14 2006 +0200 82409 82410 Enable commandline editing and hush shell on all TQM boards. 82411 82412commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7 82413Author: Wolfgang Denk <wd@pollux.denx.de> 82414Date: Sat Oct 28 02:28:02 2006 +0200 82415 82416 README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE 82417 82418commit 471a7be7a042e95e440f5de969c9765214ae8d6e 82419Author: Wolfgang Denk <wd@denx.de> 82420Date: Sat Oct 28 01:14:32 2006 +0200 82421 82422 Check for illegal character '=' in environment variable names. 82423 82424 Make sure the string passed as variable name does not contain a '=' 82425 character. This not only prevents the common error or typing 82426 "setenv foo=bar" instead of "setenv foo bar", but (more importantly) 82427 also closes a backdoor which allowed to delete write-protected 82428 environment variables, for example by using "setenv ethaddr=". 82429 82430commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2 82431Author: Wolfgang Denk <wd@pollux.denx.de> 82432Date: Sat Oct 28 00:38:39 2006 +0200 82433 82434 Minor code cleanup. 82435 82436commit e11887a77d81077416a2d1c5e0354916fee8c034 82437Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 82438Date: Thu Oct 26 17:55:31 2006 +0200 82439 82440 Don't pass any debug options directly to the assembler 82441 82442 When passing the -g option to gcc, gcc automatically selects a 82443 suitable --g<format> option to pass on to the assembler. 82444 Thus, there's no point in forcing a specific debug option on the 82445 assembler using the -Wa mechanism. 82446 82447 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 82448 82449commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393 82450Author: Jon Loeliger <jdl@freescale.com> 82451Date: Fri Oct 27 07:47:22 2006 -0500 82452 82453 MPC86xx: Cleaned up unused and conditionally used local variables. 82454 82455 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82456 82457commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9 82458Author: Wolfgang Denk <wd@pollux.denx.de> 82459Date: Fri Oct 27 11:55:21 2006 +0200 82460 82461 Fix "ar" flags in some Makefiles to allow for silent "make -s" 82462 82463commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f 82464Author: Ben Warren <bwarren@qstreams.com> 82465Date: Thu Oct 26 14:38:25 2006 -0400 82466 82467 Fix TSEC driver (now for real): avoid crashes if PHY is not attached 82468 to a TSEC (e.g. a switch is connected via RMII) or 82469 if the PHY is defective/incorrectly configured. 82470 82471 Signed-off-by: Ben Warren <bwarren@qstreams.com> 82472 82473commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999 82474Author: Ben Warren <bwarren@qstreams.com> 82475Date: Thu Oct 26 14:38:25 2006 -0400 82476 82477 Fix TSEC driver: avoid crashes if PHY is not attached 82478 to a TSEC (e.g. a switch is connected via RMII) or 82479 if the PHY is defective/incorrectly configured. 82480 82481 Signed-off-by: Ben Warren <bwarren@qstreams.com> 82482 82483commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6 82484Author: Wolfgang Denk <wd@pollux.denx.de> 82485Date: Thu Oct 26 16:24:31 2006 +0200 82486 82487 Code cleanup. 82488 82489commit 5e3b0bc19f07ed277d85324ad0427642c8981baf 82490Author: Haavard Skinnemoen <hskinnemoen@atmel.com> 82491Date: Wed Oct 25 15:48:59 2006 +0200 82492 82493 Finish up support for the ATSTK1000/ATSTK1002 boards 82494 82495 Add atstk1002_config target to Makefile and move the AVR32 section 82496 down below Blackfin so that it doesn't end up in the middle of 82497 MIPS. 82498 82499 Drop the autogenerated linker script thing for now. Will have to 82500 revisit how to handle chips with different flash and RAM layout 82501 later. 82502 82503 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 82504 82505commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4 82506Author: Kumar Gala <galak@kernel.crashing.org> 82507Date: Tue Oct 24 23:47:37 2006 -0500 82508 82509 Added support for Multi-Image files that contain a device tree 82510 82511 If a Multi-Image file contains a third image we try to use it as a 82512 device tree. The device tree image is assumed to be uncompressed in the 82513 image file. We automatically allocate space for the device tree in memory 82514 and provide an 8k pad to allow more than a reasonable amount of growth. 82515 82516 Additionally, a device tree that was contained in flash will now automatically 82517 get copied to system memory as part of boot. Previously an error was 82518 reported if one tried to boot a device tree that was in flash. 82519 82520 Signed-off-by: Kumar Gala <galak@kernel.crashing.org> 82521 82522commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512 82523Author: Wolfgang Denk <wd@denx.de> 82524Date: Tue Oct 24 21:35:55 2006 +0200 82525 82526 Switch to automatically generated CHANGELOG file. 82527 (use "make CHANGELOG" to update it from time to time) 82528 82529commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6 82530Author: Stefan Roese <sr@denx.de> 82531Date: Tue Oct 24 18:06:48 2006 +0200 82532 82533 Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c 82534 Patch by Stefan Roese, 24 Oct 2006 82535 82536commit 8ae3b713b2286e0c3213b7802062e4c1599010de 82537Author: Wolfgang Denk <wd@pollux.denx.de> 82538Date: Tue Oct 24 17:24:55 2006 +0200 82539 82540 Merge with /home/wd/git/u-boot/master 82541 82542commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e 82543Author: Wolfgang Denk <wd@pollux.denx.de> 82544Date: Tue Oct 24 15:32:57 2006 +0200 82545 82546 Code cleanup 82547 82548commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e 82549Author: Wolfgang Denk <wd@pollux.denx.de> 82550Date: Tue Oct 24 14:51:36 2006 +0200 82551 82552 Move atstk1000 files into vendor specific directory. 82553 Patch by Haavard Skinnemoen, 12 Sep 2006 82554 82555commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37 82556Author: Wolfgang Denk <wd@pollux.denx.de> 82557Date: Tue Oct 24 14:42:37 2006 +0200 82558 82559 Add ATSTK1000 and ATSTK1002 board support 82560 Patch by Haavard Skinnemoen, 06 Sep 2006 82561 82562 This patch adds support for the ATSTK1000 with the ATSTK1002 CPU 82563 daughterboard. 82564 82565 ATSTK1000 is a full-featured development board for AT32AP CPUs. It 82566 has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker, 82567 and connectors for USART, PS/2, VGA, USB, MMC/SD cards and 82568 CompactFlash cards. For more information, please see this page: 82569 82570 http://www.atmel.com/dyn/products/tools.asp?family_id=682 82571 82572 The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the 82573 AT32AP7000 chip. 82574 82575 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 82576 82577commit f93ae788c3640fcde5db383471d45548ff4060d0 82578Author: Wolfgang Denk <wd@pollux.denx.de> 82579Date: Tue Oct 24 14:31:24 2006 +0200 82580 82581 Add common serial driver for Atmel AT32 and AT91 chips 82582 Patch by Haavard Skinnemoen, 06 Sep 2006 82583 82584 This is a first attempt at creating a common serial driver for Atmel 82585 chips. For now, it supports the AT32AP7000 AVR32 chip, but it should 82586 be possible to support AT91RM9200 and other ARM-based chips with some 82587 minor modifications. 82588 82589 There's nothing fundamentally AVR32-specific in this driver, but it 82590 does use some features which are currently only defined for the 82591 AT32AP CPU port: 82592 * pm_get_clock_freq: Obtain the clock frequency of a given domain 82593 * gd->console_uart: A "struct device" containing information about 82594 register mappings, gpio resources and clocks associated with the 82595 UART device. 82596 82597 For more information about these features, please see the "AT32AP 82598 CPU" patch. 82599 82600commit 72a087e04705c26cad982879ebd06b5281bf825a 82601Author: Wolfgang Denk <wd@pollux.denx.de> 82602Date: Tue Oct 24 14:27:35 2006 +0200 82603 82604 Add AT32AP CPU and AT32AP7000 SoC support 82605 Patch by Haavard Skinnemoen, 06 Sep 2006 82606 82607 This patch adds support for the AT32AP CPU family and the AT32AP7000 82608 chip, which is the first chip implementing the AVR32 architecture. 82609 82610 The AT32AP CPU core is a high-performance implementation featuring a 82611 7-stage pipeline, separate instruction- and data caches, and a MMU. 82612 For more information, please see the "AVR32 AP Technical Reference": 82613 82614 http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf 82615 82616 In addition to this, the AT32AP7000 chip comes with a large set of 82617 integrated peripherals, many of which are shared with the AT91 series 82618 of ARM-based microcontrollers from Atmel. Full data sheet is 82619 available here: 82620 82621 http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf 82622 82623 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 82624 82625commit 7b64fef33c66be648826c0ff9758298ef13d0604 82626Author: Wolfgang Denk <wd@pollux.denx.de> 82627Date: Tue Oct 24 14:21:16 2006 +0200 82628 82629 Add AVR32 architecture support 82630 Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200 82631 82632 This patch adds common infrastructure code for the Atmel AVR32 82633 architecture. See doc/README.AVR32 for details. 82634 82635 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> 82636 82637commit 2da2d9a4766063b9848f3a35ad6025499cf87265 82638Author: Wolfgang Denk <wd@pollux.denx.de> 82639Date: Tue Oct 24 13:57:33 2006 +0200 82640 82641 Use -g instead of -gstabs in AFLAGS_DEBUG 82642 Patch by Haavard Skinnemoen, 30 Aug 2006 82643 82644 In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no 82645 matter what the target's preferred debugging format is. This patch 82646 simply replaces -gstabs with -g, so that the default debugging format 82647 for the architecture is used. 82648 82649commit 965829872169c2996023840d98e1d85ad148d629 82650Author: Wolfgang Denk <wd@pollux.denx.de> 82651Date: Tue Oct 24 13:55:18 2006 +0200 82652 82653 Fix/workaround broken dependency handling with make 3.81 82654 Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200 82655 82656commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a 82657Author: Marian Balakowicz <m8@semihalf.com> 82658Date: Mon Oct 23 22:17:05 2006 +0200 82659 82660 Fix sequoia separate object direcory building problems. 82661 82662commit 3dfa9cfdcee78b30da3432318b32821ffabe974b 82663Author: Jon Loeliger <jdl@freescale.com> 82664Date: Fri Oct 20 17:16:35 2006 -0500 82665 82666 Use generic I2C register block on 85xx and 86xx. 82667 82668 Replace private IMMAP I2C structures with generic reg block 82669 and allow 86xx to have multiple I2C device busses. 82670 82671 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82672 82673commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c 82674Author: Jon Loeliger <jdl@freescale.com> 82675Date: Fri Oct 20 15:54:34 2006 -0500 82676 82677 Fix compilation warnings on a few 85xx boards. 82678 82679 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82680 82681commit 2047672684cf85cb6f96a1fbc993180aaaf19a99 82682Author: Jon Loeliger <jdl@freescale.com> 82683Date: Fri Oct 20 15:50:15 2006 -0500 82684 82685 Converted all 85xx boards to use a common FSL I2C driver. 82686 Introduced COFIG_FSL_I2C to select the common FSL I2C driver. 82687 And removed hard i2c path from a few u-boot.lds scipts too. 82688 Minor whitespace cleanups along the way. 82689 82690 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82691 82692commit 4d45f69e362b05892c9e92a7907e5820995612aa 82693Author: Jon Loeliger <jdl@freescale.com> 82694Date: Thu Oct 19 12:02:24 2006 -0500 82695 82696 Rewrite a series of goto statements as a sequences of 82697 conditional expressions instead. 82698 82699 Use consistent return code 0/-1 for good/bad indicators. 82700 82701 Include one fewer file if the driver isn't used at all. 82702 82703 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82704 82705commit 7237c033b02fe295880435f1eb80819a0c987532 82706Author: Jon Loeliger <jdl@freescale.com> 82707Date: Thu Oct 19 11:02:16 2006 -0500 82708 82709 Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c 82710 82711 in an effort to begin to unify the umpteen FSL I2C drivers that 82712 are all otherwise very similar. 82713 82714 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82715 82716commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b 82717Author: Jon Loeliger <jdl@freescale.com> 82718Date: Thu Oct 19 11:33:52 2006 -0500 82719 82720 * Fix a bunch of compiler warnings for gcc 4.0 82721 82722 Signed-off-by: Matthew McClintock <msm@freescale.com> 82723 82724commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2 82725Author: Stefan Roese <sr@denx.de> 82726Date: Tue Oct 17 06:14:31 2006 +0200 82727 82728 Add monitor functions for indirect access to PPC440 DCR's 82729 Patch by Leonid Baryudin, 12 Oct 2006 82730 82731commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09 82732Author: Jon Loeliger <jdl@freescale.com> 82733Date: Fri Oct 13 16:47:53 2006 -0500 82734 82735 Fixed leading whitespace issues. 82736 Removed spurious LAWAR thing. 82737 82738 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82739 82740commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391 82741Author: Jon Loeliger <jdl@freescale.com> 82742Date: Thu Oct 12 10:42:36 2006 -0500 82743 82744 Remove unneeded include files and local variable. 82745 82746 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82747 82748commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5 82749Author: Grant Likely <grant.likely@secretlab.ca> 82750Date: Tue Oct 10 00:23:32 2006 -0600 82751 82752 Fix possible uninitialized variable compiler warning. 82753 82754 When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in 82755 do_bootm_linux() may be uninitialized. There is no possibility in the 82756 current code that len will get used uninitialized, but this fix follows 82757 the existing convention of setting both len and data to zero at the same 82758 time. 82759 82760 Signed-off-by: Grant Likely <grant.likely@secretlab.ca> 82761 82762commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e 82763Author: Matthew McClintock <msm@freescale.com> 82764Date: Wed Oct 11 15:13:01 2006 -0500 82765 82766 * Fix a bunch of compiler warnings for gcc 4.0 82767 82768 Signed-off-by: Matthew McClintock <msm@freescale.com> 82769 82770commit bf651baa365e5447246aad6a633ccd667cf24a39 82771Author: Jon Loeliger <jdl@freescale.com> 82772Date: Wed Oct 11 10:10:43 2006 -0500 82773 82774 Move "ar" flags to config.mk to allow for silent "make -s" 82775 82776commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e 82777Author: Jon Loeliger <jdl@freescale.com> 82778Date: Tue Oct 10 17:19:03 2006 -0500 82779 82780 Coding style changes to remove local varible blocks 82781 and reformat a bit nicer. 82782 82783commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a 82784Author: Jon Loeliger <jdl@freescale.com> 82785Date: Tue Oct 10 17:16:04 2006 -0500 82786 82787 Fix whitespace issues. 82788 82789commit 7b382b7125f2397cce63253df62f183e3dfa2770 82790Author: Jon Loeliger <jdl@freescale.com> 82791Date: Tue Oct 10 17:14:45 2006 -0500 82792 82793 Fix whitespace issues. 82794 82795commit e10390ddd736b0dad1528eec4b0fe35c0827139a 82796Author: Jon Loeliger <jdl@freescale.com> 82797Date: Tue Oct 10 17:06:53 2006 -0500 82798 82799 Fix whitespace issues. 82800 82801commit 89875e96ba3f023157bf50d5f8e33bf254964a76 82802Author: Jon Loeliger <jdl@freescale.com> 82803Date: Tue Oct 10 17:03:43 2006 -0500 82804 82805 Ran lindent and cleaned up whitespace issues. 82806 Format for 80-columns too. 82807 82808commit 333961ae7095fc66d8a041fce1ac9ee873b09d86 82809Author: Jon Loeliger <jdl@freescale.com> 82810Date: Tue Oct 10 17:02:22 2006 -0500 82811 82812 Fix whitespace and 80-col issues. 82813 82814commit 5c912cb1c31266c66ca59b36f9b6f87296421d75 82815Author: Stefan Roese <sr@denx.de> 82816Date: Sat Oct 7 11:36:51 2006 +0200 82817 82818 CFG_NAND_QUIET_TEST added to not warn upon missing NAND device 82819 Patch by Stefan Roese, 07 Oct 2006 82820 82821commit 5bc528fa4da751d472397b308137238a6465afd2 82822Author: Stefan Roese <sr@denx.de> 82823Date: Sat Oct 7 11:35:25 2006 +0200 82824 82825 Update ALPR code (NAND support working now) 82826 Patch by Stefan Roese, 07 Oct 2006 82827 82828commit 77d5034847d328753b80c46b83f960a14a26f40e 82829Author: Stefan Roese <sr@denx.de> 82830Date: Sat Oct 7 11:33:03 2006 +0200 82831 82832 Remove compile warnings in fpga code 82833 Patch by Stefan Roese, 07 Oct 2006 82834 82835commit f3443867e90d2979a7dd1c65b0d537777e1f9850 82836Author: Stefan Roese <sr@denx.de> 82837Date: Sat Oct 7 11:30:52 2006 +0200 82838 82839 Add CONFIG_BOARD_RESET to configure board specific reset function 82840 Patch by Stefan Roese, 07 Oct 2006 82841 82842commit f55df18187e7a45cb73fec4370d12135e6691ae1 82843Author: John Traill <john.traill@freescale.com> 82844Date: Fri Sep 29 08:23:12 2006 +0100 82845 82846 Fix missing tCycle/modfreq calculation. 82847 82848 Signed-off-by: John Traill <john.traill@freescale.com> 82849 82850commit 8272dc2f58f2473d8995fcc9b916440cfba080f0 82851Author: Andy Fleming <afleming@freescale.com> 82852Date: Wed Sep 13 10:33:35 2006 -0500 82853 82854 Updated config headers to add default FDT-based booting 82855 82856commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3 82857Author: Andy Fleming <afleming@freescale.com> 82858Date: Wed Sep 13 10:34:18 2006 -0500 82859 82860 Add support for eTSEC 3 & 4 on 8548 CDS 82861 82862 * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS. 82863 This will only work on rev 1.3 boards (but doesn't break older boards) 82864 * Cleaned up some comments to reflect the expanded role of tsec 82865 in other systems 82866 82867commit 084d648b109c8984f83674043c1a7fa3885ef801 82868Author: Andy Fleming <afleming@freescale.com> 82869Date: Wed Sep 13 10:33:56 2006 -0500 82870 82871 Added code to support 2.6.18 PCI changes in u-boot 82872 82873 * Added code to swizzle the IRQ map for the PCI 82874 82875commit afbdc649f8751e4f4f1a6f527edfe139773f2c15 82876Author: Jon Loeliger <jdl@freescale.com> 82877Date: Tue Sep 19 09:34:10 2006 -0500 82878 82879 Modified makefile for new build mechanism. 82880 82881 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82882 82883commit d14ba6a798beb753e7a864500414fcc2d198b8bc 82884Author: Jon Loeliger <jdl@freescale.com> 82885Date: Thu Sep 14 08:40:36 2006 -0500 82886 82887 Handle 86xx SVR values according to the new Reference Manual. 82888 Both 8641 and 8641D have SVR == 0x8090, and are distinguished 82889 by the byte in bits 16-23 instead. 82890 Thanks to Jason Jin for noticing. 82891 82892 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82893 82894commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7 82895Author: Zhang Wei <wei.zhang@freescale.com> 82896Date: Mon Aug 28 14:25:31 2006 +0800 82897 82898 Fixed an OF-tree off-by-one bug when adding a new property name. 82899 This bug will cause the kernel booting to pause a long time. 82900 82901 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 82902 (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit) 82903 82904commit 9bff7a69a885adebbd2bd45990494ec4cf998a30 82905Author: Jon Loeliger <jdl@freescale.com> 82906Date: Tue Aug 29 11:05:09 2006 -0500 82907 82908 Remove trailing empty lines. 82909 82910commit cd6d73d5b895a5935ac4fde0a356288142a584e0 82911Author: Jon Loeliger <jdl@freescale.com> 82912Date: Tue Aug 29 09:48:49 2006 -0500 82913 82914 Remove bogus msync and use volatile asm. 82915 82916commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e 82917Author: Jon Loeliger <jdl@freescale.com> 82918Date: Tue Aug 29 08:17:14 2006 -0500 82919 82920 Add myself as maintainer for MPC8641HPCN. 82921 82922commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d 82923Author: Zhang Wei <wei.zhang@freescale.com> 82924Date: Mon Aug 28 14:25:31 2006 +0800 82925 82926 Fixed an OF-tree off-by-one bug when adding a new property name. 82927 This bug will cause the kernel booting to pause a long time. 82928 82929 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 82930 82931commit 5567806b67d0ae83493aa8823ad3b6c914f581d7 82932Author: Haiying Wang <haiying.wang@freescale.com> 82933Date: Fri Aug 25 14:38:34 2006 -0400 82934 82935 Change ramdiskaddr and dtbaddr 82936 Remove PEX fluff commands. 82937 82938 Signed-off-by: Haiying Wang <haiying.wang@freescale.com> 82939 Signed-off-by: Jon Loeliger <jdl@freescale.com> 82940 82941commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e 82942Author: Matthew McClintock <msm@freescale.com> 82943Date: Wed Aug 23 13:32:45 2006 -0500 82944 82945 * Another small fix for booting with disable_of 82946 82947 Signed-off-by: Matthew McClintock <msm@freescale.com> 82948 82949commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c 82950Author: Jon Loeliger <jdl@freescale.com> 82951Date: Wed Aug 23 11:04:43 2006 -0500 82952 82953 Cleanup and lindent new AHCI driver. 82954 82955commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de 82956Author: Jin Zhengxiong <jason@bus.ap.freescale.net> 82957Date: Wed Aug 23 19:15:12 2006 +0800 82958 82959 Add AHCI define and sata support for MPC8641HPCN board. 82960 82961 Signed-off-by:Jason Jin<jason.jin@freescale.com> 82962 82963commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4 82964Author: Jin Zhengxiong <jason@bus.ap.freescale.net> 82965Date: Wed Aug 23 19:10:44 2006 +0800 82966 82967 Add AHCI support to u-boot 82968 82969 Add AHCI support in u-boot, enable the sata disk controllers which 82970 following the AHCI protocol. 82971 82972 Signed-off-by:Jason Jin<jason.jin@freescale.com> 82973 82974commit d8ea2acf5f137cae99417df4f573d036ee384668 82975Author: Zhang Wei <wei.zhang@freescale.com> 82976Date: Wed Aug 23 17:54:32 2006 +0800 82977 82978 Add dtb boot-up parameter to default boot commands. 82979 82980 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 82981 82982commit b93775c2036b99baa390ea425c4771895bbc63c4 82983Author: Jon Loeliger <jdl@freescale.com> 82984Date: Tue Aug 22 18:26:08 2006 -0500 82985 82986 Cleanup even more poorly introduced whitespace. 82987 82988commit ae6241685cbcf0c79a3636530d2ceab1fb291a94 82989Author: Jon Loeliger <jdl@freescale.com> 82990Date: Tue Aug 22 18:07:00 2006 -0500 82991 82992 Cleanup more poorly introduced whitespace. 82993 82994commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57 82995Author: Jon Loeliger <jdl@freescale.com> 82996Date: Tue Aug 22 17:54:05 2006 -0500 82997 82998 Cleanup poorly introduced whitespace. 82999 83000commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
83001Author: Jon Loeliger <jdl@freescale.com> 83002Date: Tue Aug 22 12:25:27 2006 -0500 83003 83004 General indent and whitespace cleanups. 83005 83006commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f 83007Author: Jon Loeliger <jdl@freescale.com> 83008Date: Tue Aug 22 12:06:18 2006 -0500 83009 83010 General indent and whitespace cleanups. 83011 83012commit 41a0e8b304d3ff55fe27a230507aac79684016ac 83013Author: Jon Loeliger <jdl@freescale.com> 83014Date: Tue Aug 22 10:42:21 2006 -0500 83015 83016 Cleanup compiler warnings. 83017 83018commit 5de62c47a8628b3da4d73f7c07027f32a3342d40 83019Author: Matthew McClintock <msm@freescale.com> 83020Date: Tue Aug 22 09:31:59 2006 -0500 83021 83022 Fix disable_of booting 83023 83024 Signed-off-by: Matthew McClintock <msm@freescale.com> 83025 83026commit 87a449c8ac396420cb24260f717ea9e6faa82047 83027Author: Matthew McClintock <msm@freescale.com> 83028Date: Tue Aug 22 09:23:55 2006 -0500 83029 83030 Support for FDT in uImage format, error when using FDT from flash 83031 83032 Signed-off-by: Matthew McClintock <msm@freescale.com> 83033 83034commit 75c299c38369d01addd5e054b8a16217b70f4a86 83035Author: Haiying Wang <haiying.wang@freescale.com> 83036Date: Tue Aug 15 15:12:55 2006 -0400 83037 83038 Unlock cache before kernel starts up for MPC86xx 83039 83040commit 67256678f00c09b0a7f19e862e5c1847553d31bc 83041Author: Haiying Wang <haiying.wang@freescale.com> 83042Date: Tue Aug 15 15:13:15 2006 -0400 83043 83044 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR 83045 83046commit 1c8f6d8fb028f156094d05f2d14298e6479364ac 83047Author: Haiying Wang <haiying.wang@freescale.com> 83048Date: Tue Aug 15 15:12:55 2006 -0400 83049 83050 Unlock cache before kernel starts up for MPC86xx 83051 83052commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04 83053Author: Haiying Wang <haiying.wang@freescale.com> 83054Date: Tue Aug 15 15:13:15 2006 -0400 83055 83056 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR 83057 83058commit 86c8e17f25e972a7e272950a0735fad84e082b88 83059Author: Matthew McClintock <msm@freescale.com> 83060Date: Wed Aug 16 13:59:47 2006 -0500 83061 83062 * Fix disable_of booting 83063 83064 Signed-off-by: Matthew McClintock <msm@freescale.com> 83065 83066commit 25c751e9adc86e22fe3b5b47cf2806379b575db7 83067Author: Matthew McClintock <msm@freescale.com> 83068Date: Wed Aug 16 10:54:09 2006 -0500 83069 83070 * Support for FDT in uImage format, error when using FDT from flash 83071 83072 Signed-off-by: Matthew McClintock <msm@freescale.com> 83073 83074commit 899620c2d66d4eef3b2a0034d062e71d45d886c9 83075Author: Stefan Roese <sr@denx.de> 83076Date: Tue Aug 15 14:22:35 2006 +0200 83077 83078 Add initial support for the ALPR board from Prodrive 83079 NAND needs some additional testing 83080 Patch by Heiko Schocher, 15 Aug 2006 83081 83082commit f0ff4692ff3372dec55074a8eb444943ab095abb 83083Author: Stefan Roese <sr@denx.de> 83084Date: Tue Aug 15 14:15:51 2006 +0200 83085 83086 Add FPGA Altera Cyclone 2 support 83087 Patch by Heiko Schocher, 15 Aug 2006 83088 83089commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b 83090Author: Jon Loeliger <jdl@freescale.com> 83091Date: Mon Aug 14 15:33:38 2006 -0500 83092 83093 Fix BAT0 to actually be cacheable, non-guarded as documented. 83094 83095 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83096 83097commit 40bc83559db5745681909fd7382ae509567e116d 83098Author: Jon Loeliger <jdl@freescale.com> 83099Date: Wed Aug 9 15:32:16 2006 -0500 83100 83101 Removed MPC8641HPCN DTS source file from build. 83102 It is no longer linked into U-Boot; its sources are 83103 now located in the kernel tree. 83104 83105 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83106 83107commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb 83108Author: Matthew McClintock <msm@freescale.com> 83109Date: Wed Jun 28 10:47:03 2006 -0500 83110 83111 * Switched default PCI speed for 8540 ADS back to 33MHz 83112 83113 * Added comments and a printf to warn that PCI-X won't 83114 work at 33MHz 83115 Patch by Andy Fleming 17-Mar-2006 83116 83117 Signed-off-by: Andy Fleming <afleming@freescale.com> 83118 83119commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39 83120Author: Matthew McClintock <msm@freescale.com> 83121Date: Wed Jun 28 10:46:35 2006 -0500 83122 83123 * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006 83124 83125 Signed-off-by: Andy Fleming <afleming@freescale.com> 83126 83127commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452 83128Author: Matthew McClintock <msm@freescale.com> 83129Date: Wed Jun 28 10:46:13 2006 -0500 83130 83131 * Added VIA configuration table 83132 83133 * Added support for PCI2 on CDS 83134 Patch by Andy Fleming 17-Mar-2006 83135 83136 Signed-off-by: Andy Fleming <afleming@freescale.com> 83137 83138commit c88f9fe66b64247e5b6a38410ba315ca25596d16 83139Author: Matthew McClintock <msm@freescale.com> 83140Date: Wed Jun 28 10:45:41 2006 -0500 83141 83142 * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006 83143 83144 Signed-off-by: Andy Fleming <afleming@freescale.com> 83145 83146commit 97074ed9655309b64231bc2cee69fe85399f8055 83147Author: Matthew McClintock <msm@freescale.com> 83148Date: Wed Jun 28 10:45:17 2006 -0500 83149 83150 * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006 83151 83152 Signed-off-by: Andy Fleming <afleming@freescale.com> 83153 83154commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2 83155Author: Matthew McClintock <msm@freescale.com> 83156Date: Wed Jun 28 10:44:49 2006 -0500 83157 83158 * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006 83159 83160 Signed-off-by: Andy Fleming <afleming@freescale.com> 83161 83162commit a4e11558b810ef2cddffdf7b9d86bc1130441960 83163Author: Matthew McClintock <msm@freescale.com> 83164Date: Wed Jun 28 10:44:23 2006 -0500 83165 83166 * 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 83167 83168 Signed-off-by: Andy Fleming <afleming@freescale.com> 83169 83170commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b 83171Author: Matthew McClintock <msm@freescale.com> 83172Date: Wed Jun 28 10:43:36 2006 -0500 83173 83174 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006 83175 83176 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83177 83178commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4 83179Author: Matthew McClintock <msm@freescale.com> 83180Date: Wed Jun 28 10:43:00 2006 -0500 83181 83182 * 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 83183 83184commit 5498d90312aad9f6bdbf047986027c35b03cd163 83185Author: Matthew McClintock <msm@freescale.com> 83186Date: Wed Jun 28 10:42:24 2006 -0500 83187 83188 * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006 83189 83190commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe 83191Author: Matthew McClintock <msm@freescale.com> 83192Date: Wed Jun 28 10:41:37 2006 -0500 83193 83194 * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006 83195 83196commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a 83197Author: John Traill <john.traill@freescale.com> 83198Date: Wed Aug 9 14:33:50 2006 +0100 83199 83200 Add Rapidio support for the MPC8641HPCN 83201 83202 Signed-off-by: John Traill <john.traill@freescale.com> 83203 83204commit 91a414c7d1fb0eac912592cd995b30c9f23045c9 83205Author: John Traill <john.traill@freescale.com> 83206Date: Tue Aug 8 11:32:43 2006 +0100 83207 83208 Fix caslat calculation 83209 83210 Signed-off-by: John Traill <john.traill@freescale.com> 83211 83212commit 709d3073e74153278e7904a70819bbef7df50e1a 83213Author: Jon Loeliger <jdl@freescale.com> 83214Date: Thu Aug 3 16:17:56 2006 -0500 83215 83216 Convert to mac-address in ethernet nodes. 83217 83218commit 71748af833ca1017edf1415be376366ff2937d17 83219Author: Haiying Wang <haiying.wang@freescale.com> 83220Date: Fri Jul 28 12:41:35 2006 -0400 83221 83222 Correct the irq value of DUART2 83223 83224commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c 83225Author: Haiying Wang <haiying.wang@freescale.com> 83226Date: Fri Jul 28 12:41:41 2006 -0400 83227 83228 Change the space size of PEX IO in README 83229 83230commit 239db37c94f7a92941c4465feceb867c609241c5 83231Author: Haiying Wang <haiying.wang@freescale.com> 83232Date: Fri Jul 28 12:41:18 2006 -0400 83233 83234 Move get_board_sys_clk to board directory 83235 83236commit 492900b985439fbce1a118afde1e35def870db03 83237Author: John Traill <john.traill@freescale.com> 83238Date: Fri Jul 28 09:03:54 2006 +0100 83239 83240 Fix 8641HPCN pollution 83241 83242commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2 83243Author: John Traill <john.traill@freescale.com> 83244Date: Fri Jul 28 08:16:06 2006 +0100 83245 83246 Fix 8641HPCN timebase 83247 83248commit c86360b830f1eecd7a72208575dde4f57879faea 83249Author: Zhang Wei <wei.zhang@freescale.com> 83250Date: Fri Jul 28 00:01:34 2006 +0800 83251 83252 Fixed OF device tree of mpc86xxhpcn board. 83253 83254 The changes works in with kernel irq mapping rework. 83255 83256 Signed-off-by: Zhang Wei <wei.zhang@freescale.com> 83257 83258commit bea3f28d285942bf3f7ab339ce85178ded544225 83259Author: Haiying Wang <haiying.wang@freescale.com> 83260Date: Wed Jul 12 10:48:05 2006 -0400 83261 83262 Add support for reading and writing mac addresses to or from ID EEPROM. 83263 83264 Added code for reading and writing Mac addresses to/from ID EEPROM(0x57). 83265 With attached patch, we can use command "mac/mac read/mac save/" 83266 to read and write EEPROM under u-boot prompt. 83267 83268 U-boot will calculate the checksum of EEPROM while bootup, 83269 if it is right, then u-boot will check whether the mac address 83270 of eTSEC0/1/2/3 is availalbe (non-zero). 83271 83272 If there is mac address availabe in EEPROM, u-boot will use it, 83273 otherewise, u-boot will use the mac address defined in 83274 MPC8641HPCN.h. This matches the requirement to set unique mac address 83275 for each TSEC port. 83276 83277 Signed-off-by: Haiying Wang <haiying.wang@freescale.com> 83278 Signed-off-by: York Sun <yorksun@freescale.com> 83279 83280commit fcb28e763415e0e4e66b0f45842d1557ae198e5e 83281Author: Jin Zhengxiong <Jason.Jin@freescale.com> 83282Date: Thu Jul 13 10:35:10 2006 -0500 83283 83284 Fixed initrd issue by define big RAM 83285 83286 Signed-off-by:Jason Jin <Jason.jin@freescale.com> 83287 83288commit e6cd2a1785d74ec3d30a86f1cb360be8de478151 83289Author: Jason Jin <Jason.jin@freescale.com> 83290Date: Fri Jul 7 10:01:45 2006 -0500 83291 83292 We made a u-boot patch to fix the hang up issue 83293 when booting filesystem from ramdisk. 83294 83295 Signed-off-by:Jason Jin <Jason.jin@freescale.com> 83296 83297commit 38433ccc5850ee70549af0b2bc5b920355ef5388 83298Author: Matthew McClintock <msm@freescale.com> 83299Date: Wed Jun 28 10:47:03 2006 -0500 83300 83301 * Switched default PCI speed for 8540 ADS back to 33MHz 83302 * Added comments and a printf to warn that PCI-X won't 83303 work at 33MHz 83304 Patch by Andy Fleming 17-Mar-2006 83305 83306 Signed-off-by: Andy Fleming <afleming@freescale.com> 83307 83308commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19 83309Author: Matthew McClintock <msm@freescale.com> 83310Date: Wed Jun 28 10:46:35 2006 -0500 83311 83312 * Fixed a bug where 8555 PCI code used the old variable and 83313 function names 83314 Patch by Andy Fleming 17-Mar-2006 83315 83316 Signed-off-by: Andy Fleming <afleming@freescale.com> 83317 83318commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac 83319Author: Matthew McClintock <msm@freescale.com> 83320Date: Wed Jun 28 10:46:13 2006 -0500 83321 83322 * Added VIA configuration table 83323 * Added support for PCI2 on CDS 83324 Patch by Andy Fleming 17-Mar-2006 83325 83326 Signed-off-by: Andy Fleming <afleming@freescale.com> 83327 83328commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc 83329Author: Matthew McClintock <msm@freescale.com> 83330Date: Wed Jun 28 10:45:41 2006 -0500 83331 83332 * Fixed PCI memory definitions 83333 Patch by Andy Fleming 17-Mar-2006 83334 83335 Signed-off-by: Andy Fleming <afleming@freescale.com> 83336 83337commit 087454609e47295443af793a282cddcd91a5f49c 83338Author: Matthew McClintock <msm@freescale.com> 83339Date: Wed Jun 28 10:45:17 2006 -0500 83340 83341 * Added support for initializing second PCI bus on 85xx 83342 Patch by Andy Fleming 17-Mar-2006 83343 83344 Signed-off-by: Andy Fleming <afleming@freescale.com> 83345 83346commit b636aaeb6fd516a442fb611bbeeddf3077a687fb 83347Author: Matthew McClintock <msm@freescale.com> 83348Date: Wed Jun 28 10:44:49 2006 -0500 83349 83350 * Added PCI-X #defines for PCI-X initialization 83351 Patch by Andy Fleming on 17-Mar-2006 83352 83353 Signed-off-by: Andy Fleming <afleming@freescale.com> 83354 83355commit 20abbc6fffa115690107cc942c7abf84bdc03a1b 83356Author: Matthew McClintock <msm@freescale.com> 83357Date: Wed Jun 28 10:44:23 2006 -0500 83358 83359 * Made sure the code which disables prefetch for PCI devices 83360 sets the size of the prefetch region to 0 83361 Patch by Andy Fleming on 17-Mar-2006 83362 83363 Signed-off-by: Andy Fleming <afleming@freescale.com> 83364 83365commit 40d5fa35d02df22580593bf0039ab173367e8ef0 83366Author: Matthew McClintock <msm@freescale.com> 83367Date: Wed Jun 28 10:43:36 2006 -0500 83368 83369 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards 83370 Patch by Jon Loeliger 17-Jan-2006 83371 83372 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83373 83374commit be7e8b0cb5a0c49dc180075b96df296a893bf146 83375Author: Matthew McClintock <msm@freescale.com> 83376Date: Wed Jun 28 10:43:00 2006 -0500 83377 83378 * Removed the oftree.dts for stxxtx in light of the changes 83379 to the flat device tree handling code 83380 Patch by Matthew McClintock 26-June-2006 83381 83382commit 1b380ec225665e73959677f3893dc658c5925e05 83383Author: Matthew McClintock <msm@freescale.com> 83384Date: Wed Jun 28 10:42:24 2006 -0500 83385 83386 * Patch to modify ft_build.c to update flat device trees in place 83387 Patch by Matthew McClintock 26-June-2006 83388 83389commit 98a9c4d468a942a09ebe8979bec508017f3e4462 83390Author: Matthew McClintock <msm@freescale.com> 83391Date: Wed Jun 28 10:41:37 2006 -0500 83392 83393 * Modify bootm command to support booting with flat device trees 83394 Patch by Matthew McClintock 26-June-2006 83395 83396commit da012ab661fd4ab169dd7b9b32201a4df62cf34a 83397Author: Jin Zhengxiong <Jason.Jin@freescale.com> 83398Date: Wed Jun 28 08:43:56 2006 -0500 83399 83400 Change Id to symbolic name for RTL8139 83401 83402 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 83403 83404commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0 83405Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com> 83406Date: Tue Jun 27 18:12:10 2006 +0800 83407 83408 Fix RTL8139 in big endian 83409 83410 signed-off-by: Jason Jin <Jason.Jin@freescale.com> 83411 signed-off-by: Wei Zhang <wei.zhang@freescale.com> 83412 83413commit fcfb9a57947fc203b99fe81ab0578f7286261f9f 83414Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com> 83415Date: Tue Jun 27 18:12:23 2006 +0800 83416 83417 Fix Tsec bug when no link 83418 83419 When tftp a non-exist file from the tftp server, u-boot will check 83420 the link of all eth port. The original file will return wrong link 83421 state on the no link ports. 83422 83423 signed-off-by: Jason Jin <Jason.Jin@freescale.com> 83424 83425commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2 83426Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com> 83427Date: Tue Jun 27 18:12:02 2006 +0800 83428 83429 Fix bug for io_bar size during pci scan 83430 83431 During the pci scan process, Some devices return bar_reponse with the 83432 highest bytes 0, such as the pci bridge in uli1575 return bar_response 83433 with 0xffffff, So the bar_size should be manually set under 64K. 83434 83435 Signed-off-by: Jason Jin <jason.jin@freescale.com> 83436 83437commit fa7db9c377bc2353a17bf1d381d65a6c418728f0 83438Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com> 83439Date: Tue Jun 27 18:11:54 2006 +0800 83440 83441 Enable PCIE1 for MPC8641HPCN board 83442 83443 Signed-off-by: Jason Jin <Jason.jin@freescale.com> 83444 83445commit 99d70e3a47affb9bae041a2caece7cd516e213b3 83446Author: Wolfgang Denk <wd@pollux.denx.de> 83447Date: Mon Jun 26 11:06:00 2006 +0200 83448 83449 More code cleanup 83450 83451commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba 83452Author: Jon Loeliger <jdl@freescale.com> 83453Date: Thu Jun 22 08:51:46 2006 -0500 83454 83455 Fix bug in 8641hpcn reset command with no args. 83456 83457 Signed-off-by: Haiying Wang <haiying.wang@freescale.com> 83458 Acked-by: Jon Loeliger <jdl@freescale.com> 83459 83460commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc 83461Author: Zhang Wei <wei.zhang@freescale.com> 83462Date: Tue Jun 20 17:47:15 2006 +0800 83463 83464 Reworked IRQ mapping in OF-tree. 83465 83466commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c 83467Author: Jon Loeliger <jdl@freescale.com> 83468Date: Thu Jun 15 21:33:37 2006 -0500 83469 83470 Do not enable address translation on secondary CPUs. 83471 Do not set up BATs on secondary CPUs. Let Linux do the nasty. 83472 83473 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83474 83475commit 386eda022473394ad8f36b86f2bdc9b4cb816291 83476Author: Wolfgang Denk <wd@pollux.denx.de> 83477Date: Wed Jun 14 18:14:56 2006 +0200 83478 83479 Code cleanup 83480 83481commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70 83482Author: Wolfgang Denk <wd@pollux.denx.de> 83483Date: Wed Jun 14 17:45:53 2006 +0200 83484 83485 Various USB related patches 83486 - Add support for mpc8xx USB device. 83487 - Add support for Common Device Class - Abstract Control Model USB console. 83488 - Add support for flow control in USB slave devices. 83489 - Add support for switching between gserial and cdc_acm using environment. 83490 - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h 83491 - Update usbcore slightly to ease host enumeration. 83492 - Fix non-portable endian problems in usbdcore and usbdcore_ep0. 83493 - Add AdderUSB_config as a defconfig to enable usage of the USB console 83494 by default with the Adder87x U-Boot port. 83495 Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006 83496 83497commit 8ecc971618f56029ad99d3516f8b297a6ed58971 83498Author: Jon Loeliger <jdl@jdl.com> 83499Date: Wed Jun 7 10:53:55 2006 -0500 83500 83501 Fix a get_board_sys_clk() use-before-def warning. 83502 83503 Signed-off-by: Jon Loeliger <jdl@jdl.com> 83504 83505commit d9bf4858fca5aa4d651b283270f77da72ebadfd5 83506Author: Jon Loeliger <jdl@jdl.com> 83507Date: Wed Jun 7 10:52:49 2006 -0500 83508 83509 Allow DTC path to be passed in. 83510 83511 Signed-off-by: Jon Loeliger <jdl@jdl.com> 83512 83513commit c83ae9ea6d93abbe751bf8a3396236a084e56f87 83514Author: Haiying Wang <haiying.wang@freescale.com> 83515Date: Tue Jun 6 16:54:29 2006 -0400 83516 83517 Modify the IRQ of DUART2 83518 83519commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e 83520Author: Jon Loeliger <jdl@jdl.com> 83521Date: Wed May 31 13:55:35 2006 -0500 83522 83523 Review cleanups. 83524 83525 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83526 83527commit cb5965fb95b77a49f4e6af95248e0c849f4af03e 83528Author: Jon Loeliger <jdl@jdl.com> 83529Date: Wed May 31 12:44:44 2006 -0500 83530 83531 White space cleanup. 83532 Some 80-column cleanups. 83533 Convert printf() to puts() where possible. 83534 Use #include "spd_sdram.h" as needed. 83535 Enhanced reset command usage message a bit. 83536 83537 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83538 83539commit 3d5c5be547445dd3bd2eb7368d80df03ea437970 83540Author: Jon Loeliger <jdl@jdl.com> 83541Date: Wed May 31 11:39:34 2006 -0500 83542 83543 Removed unneeded local_bus_init() from 8641HPCN board. 83544 83545 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83546 83547commit 4d3d729c16c392d2982d3266b659d333c927697d 83548Author: Jon Loeliger <jdl@jdl.com> 83549Date: Wed May 31 11:24:28 2006 -0500 83550 83551 Moved mpc8641hpcn_board_reset() out of cpu/ into board/. 83552 83553 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83554 83555commit b2a941de060350ad15878d8219825f4950e9bb8e 83556Author: Jon Loeliger <jdl@jdl.com> 83557Date: Wed May 31 10:07:28 2006 -0500 83558 83559 Remove dead debug code. 83560 83561 Signed-off-by: Jon Loeliger <jdl@jdl.com> 83562 83563commit 126aa70f10ba3d20e0a6f4d32328250513b77770 83564Author: Jon Loeliger <jdl@freescale.com> 83565Date: Tue May 30 17:47:00 2006 -0500 83566 83567 Move mpc86xx PIXIS code to board directory 83568 83569 First cut at moving the PIXIS platform code out of 83570 the 86xx cpu directory and into board/mpc8641hpcn 83571 where it belongs. 83572 83573 Signed-off-by: Jon Loeliger <jdl@freescale.com> 83574 83575commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9 83576Author: Markus Klotzbuecher <mk@denx.de> 83577Date: Tue May 30 16:56:14 2006 +0200 83578 83579 Support generic OHCI support for the s3c24x0 cpu. 83580 83581commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8 83582Author: Haiying Wang <Haiying.Wang@freescale.com> 83583Date: Tue May 30 09:10:32 2006 -0500 83584 83585 Improve "reset" command's interaction with watchdog. 83586 83587 "reset altbank" will reset another bank WITHOUT watch dog timer enabled 83588 "reset altbank wd" will reset another bank WITH watch dog enabled 83589 "diswd" will disable watch dog after u-boot boots up successfully 83590 83591 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 83592 83593commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a 83594Author: Haiying Wang <Haiying.Wang@freescale.com> 83595Date: Tue May 30 08:51:19 2006 -0500 83596 83597 Fix two SDRAM setup bugs. 83598 83599 Fix ECC setup bug. 83600 Enable 1T/2T based on number of DIMMs present. 83601 83602 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 83603 83604commit d11fec5015334deb2010e36ce00bb118cc5429a5 83605Author: Haiying Wang <Haiying.Wang@freescale.com> 83606Date: Fri May 26 10:24:48 2006 -0500 83607 83608 Add first draft of the MPC8641HPCN doc/README. 83609 83610 Signed-off-by: Jon Loeliger <jdl@jdl.com> 83611 83612commit ed45d6c930b5939718a87ee12e25cf9a05978d4a 83613Author: Haiying Wang <Haiying.Wang@freescale.com> 83614Date: Fri May 26 10:13:04 2006 -0500 83615 83616 Added pci@8000 block. 83617 Updated ethernet interrupt mappings (moved up 48). 83618 Cleaned up a few comments. 83619 83620 Signed-off-by: Jon Loeliger <jdl@jdl.com> 83621 83622commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7 83623Author: Haiying Wang <Haiying.Wang@freescale.com> 83624Date: Fri May 26 10:01:16 2006 -0500 83625 83626 Allow args on reset command. 83627 83628 Signed-off-by: Jon Loeliger <jdl@jdl.com> 83629 83630commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc 83631Author: Markus Klotzbuecher <mk@denx.de> 83632Date: Tue May 23 13:38:35 2006 +0200 83633 83634 Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some 83635 fixes to the latter. 83636 83637commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9 83638Author: Markus Klotzbuecher <mk@denx.de> 83639Date: Tue May 23 10:33:11 2006 +0200 83640 83641 More cleanup for the delta board and the generic usb_ohci driver. Added 83642 CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific 83643 initialization and cleanup hooks respectively. 83644 83645commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10 83646Author: Markus Klotzbuecher <mk@denx.de> 83647Date: Mon May 22 16:33:54 2006 +0200 83648 83649 This patch adds USB storage support for the delta board. This is the first 83650 board to make use of a generic OHCI driver, that calls hooks for board 83651 dependant initialization. 83652 83653commit 14e37081ff3cac7ebe6e93836523429853b6b292 83654Author: Jon Loeliger <jdl@jdl.com> 83655Date: Fri May 19 13:28:39 2006 -0500 83656 83657 Change arbitration to round-robin for SMP linux. 83658 83659commit 9a655876e5995be80f49054e2509500e871e4d3a 83660Author: Jon Loeliger <jdl@jdl.com> 83661Date: Fri May 19 13:26:34 2006 -0500 83662 83663 Enable dual DDR controllers and interleaving. 83664 83665commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c 83666Author: Jon Loeliger <jdl@jdl.com> 83667Date: Fri May 19 13:22:44 2006 -0500 83668 83669 Update 86xx address map and LAWBARs. 83670 83671commit cccce5d0581bb0ba4602799a4b5112e58d1579cb 83672Author: Jon Loeliger <jdl@jdl.com> 83673Date: Fri May 19 13:14:15 2006 -0500 83674 83675 Remove L2 Cache invalidate polling. 83676 83677commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8 83678Author: Jon Loeliger <jdl@jdl.com> 83679Date: Fri May 19 12:33:09 2006 -0500 83680 83681 Enable 2nd CPU and I2C. 83682 83683commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54 83684Author: Jon Loeliger <jdl@freescale.com> 83685Date: Mon May 15 07:26:56 2006 -0500 83686 83687 Update interrupt mapping. 83688 83689commit 6cfea33477b04b63ed47386ed1629529484c33ba 83690Author: Haiying Wang <Haiying.Wang@freescale.com> 83691Date: Wed May 10 09:38:06 2006 -0500 83692 83693 Remove unneeded INIT_RAM_LOCK cache twiddling. 83694 Correctly tracks r29 as global data pointer now. 83695 83696 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com> 83697 83698commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c 83699Author: Jon Loeliger <jdl@freescale.com> 83700Date: Wed May 10 09:33:07 2006 -0500 83701 83702 Remove unnecessary flash.c file. 83703 83704commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8 83705Author: Jon Loeliger <jdl@freescale.com> 83706Date: Tue May 9 08:23:49 2006 -0500 83707 83708 Get MPC8641HPCN flash images working. 83709 83710 Enable the CFI driver. 83711 Remove bogus LAWBAR7 cruft. 83712 Use correct TEXT_BASE, Fixup load script. 83713 Enable SPD EEPROM during DDR setup. 83714 Use generic RFC 1918 IP addresses by default. 83715 83716commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca 83717Author: Jon Loeliger <jdl@freescale.com> 83718Date: Thu Apr 27 10:15:16 2006 -0500 83719 83720 Cleanup whitespaces and style issues. 83721 Removed //-style comments. 83722 Use 80-column lines. 83723 Remove trailing whitespace. 83724 Remove dead code and debug cruft. 83725 83726commit a2320a6bf8113a09544c42d160d10ac69d049a03 83727Author: Jon Loeliger <jdl@freescale.com> 83728Date: Thu Apr 27 08:22:39 2006 -0500 83729 83730 Revert bad PCI prefetch limit change. 83731 83732commit debb7354d1ea4f694154818df5e5b523f5c1cc1d 83733Author: Jon Loeliger <jdl@freescale.com> 83734Date: Wed Apr 26 17:58:56 2006 -0500 83735 83736 Initial support for MPC8641 HPCN board. 83737