summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge with /home/wd/git/u-boot/custodian/u-boot-testingWolfgang Denk2007-08-06809-15915/+11142
|\
| * Coding style cleanup. Update CHANGELOG.Wolfgang Denk2007-08-0611-116/+931
| | | | | | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
| * Merge with /home/wd/git/u-boot/custodian/u-boot-mpc85xxWolfgang Denk2007-08-0669-519/+3795
| |\
| | * Add Marvell 1149 PHY support to the TSECAndy Fleming2007-08-031-0/+34
| | |
| | * Merge branch 'testing' into workingAndy Fleming2007-08-03790-15299/+11113
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: CHANGELOG fs/fat/fat.c include/configs/MPC8560ADS.h include/configs/pcs440ep.h net/eth.c
| | * | Remove erroneous errata code from Marvel 88E1111S driverAndy Fleming2007-07-111-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Marvel 88E1111S driver for the TSEC was copied from the 88E1101 driver, and included a fix for an erratum which does not exist on that part. Now it is removed Signed-off-by: Andy Fleming <afleming@freescale.com>
| | * | From: eran liberty <eran.liberty@gmail.com>Andy Fleming2007-07-111-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | adds the reset register to 85xx immap Signed-off-by: Eran Liberty <eran.liberty@gmail.com> Signed-off-by: Andy Fleming <afleming@freescale.com>
| | * | Polished the 85xx ADS config filesAndy Fleming2007-07-112-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Made the boot commands use device trees by default. Also moved the ramdisk to 1000000 (I think the previous address was getting overridden during boot). Signed-off-by: Andy Fleming <afleming@freescale.com>
| | * | 8544ds: Fix Makefile after moving pixis to board/freescale.Ed Swarthout2007-07-111-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The OBJTREE != SRCTREE build scenario was broken. This fixes it. Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> Signed-off-by: Jon Loeliger <jdl@freescale.com>
| | * | tsec: Fix PHY code to match first driverAndy Fleming2007-07-111-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Jarrold Wen noticed that the generic PHY code always matches under the current implementation. Change it so the first match wins, and *only* unknown PHYs trigger the generic driver Signed-off-by: Andy Fleming <afleming@freescale.com>
| | * | Add support for CPM device tree configuration to 8560 ADSAndy Fleming2007-07-112-11/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Adds code to modify CPM frequencies * Cleans up the config file to #define TSEC and (for now) #undef FCC * Adds the MII command for all 8560 ADS configurations * Updates config file to provide convenience commands for booting with a device tree Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com> Signed-off-by: Andy Fleming <afleming@freescale.com>
| | * | Fix Marvell 88e1145 PHY init codeAndy Fleming2007-07-111-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver where the reset was being done after the errata code instead of before. Signed-off-by: Haiying Wang <haiying.wang@freescale.com> Signed-off-by: Andy Fleming <afleming@freescale.com>
| * | | Add functions to list of exported functionsMartin Krause2007-08-064-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Additionally export the following fuctions (to make trab_config build again): - simple_strtol() - strcmp() Also bump the ABI version to reflect this change Signed-off-by: Martin Krause <martin.krause@tqs.de>
| * | | Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.Ed Swarthout2007-08-0611-406/+493
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All of the PCI/PCI-Express driver and initialization code that was in the MPC8641HPCN port has now been moved into the common drivers/fsl_pci_init.c. In a subsequent patch, this will be utilized by the 85xx ports as well. Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added. Also enable the second PCI-Express controller on 8641 by getting its BATS and CFG_ setup right. Fixed a u16 vendor compiler warning in AHCI driver too. Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> Signed-off-by: Zhang Wei <wei.zhang@freescale.com> Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | | Minor cleanup of <board>_nand build rules.Wolfgang Denk2007-08-021-9/+6
| | | |
| * | | Fix build errors and warnings / code cleanup.Wolfgang Denk2007-08-0220-179/+202
| | |/ | |/| | | | | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
| * | Add simple agent/end-point configuration in PCI AutoConfig for ↵Ed Swarthout2007-07-111-0/+6
| | | | | | | | | | | | | | | | | | PCI_CLASS_PROCESSOR_POWERPC. Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
| * | pciauto setup bridgeEd Swarthout2007-07-111-3/+6
| | | | | | | | | | | | | | | | | | | | | The P2P bridge bus numbers programmed into the device are relative to hose->first_busno. Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
| * | Support PCIe extended config registersEd Swarthout2007-07-111-2/+2
| | | | | | | | | | | | | | | | | | | | | FSL PCIe block has extended cfg registers in the 100 and 400 range. For example, to read the LTSSM register: pci display <busn>.0 404 1 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
| * | Minor improvements to drivers/pci_auto.cEd Swarthout2007-07-111-9/+20
| | | | | | | | | | | | | | | | | | | | | - Make pciauto_{pre,post}scan_setup_bridge non-static - Added physical address display in debug messages. Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
| * | Start pci hose scan from hose->current_busno.Ed Swarthout2007-07-111-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | Ensure hose->current_busno is not less than first_busno. This fixes broken board code which leaves current_busno=0 when first_busno is greater than 0 for the cases with multiple controllers. Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
| * | Fix some compile problems introduced by the latest CFG_CMD_xxx cleanupStefan Roese2007-07-115-9/+6
| | | | | | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
| * | Fix malloc problem introduced with the relocation fixup for the PPC platformStefan Roese2007-07-111-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | The relocation fixup didn't handle the malloc pointer initialization correctly. This patch fixes this problem. Tested successfully on 4xx. The relocation fixup patches for 4xx will follow soon. Signed-off-by: Stefan Roese <sr@denx.de>
| * | disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger2007-07-1012-24/+22
| | | | | | | | | | | | | | | | | | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | drivers/: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger2007-07-107-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | fs/: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger2007-07-1011-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | net/: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger2007-07-104-15/+15
| | | | | | | | | | | | | | | | | | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | common/: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger2007-07-1035-67/+69
| | | | | | | | | | | | | | | | | | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger2007-07-1027-42/+42
| | | | | | | | | | | | | | | | | | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger2007-07-1026-36/+34
| | | | | | | | | | | | | | | | | | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger2007-07-1034-39/+35
| | | | | | | | | | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.Jon Loeliger2007-07-1059-20/+542
| | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h used to be included but CONFIG_BOOTP_MASK was not defined. Remove lingering references to CFG_CMD_* symbols. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.Jon Loeliger2007-07-1026-9/+242
| | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h used to be included but CONFIG_BOOTP_MASK was not defined. Remove lingering references to CFG_CMD_* symbols. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.Jon Loeliger2007-07-1029-7/+259
| | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h used to be included but CONFIG_BOOTP_MASK was not defined. Remove lingering references to CFG_CMD_* symbols. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.Jon Loeliger2007-07-1038-13/+336
| | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h used to be included but CONFIG_BOOTP_MASK was not defined. Remove lingering references to CFG_CMD_* symbols. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.Jon Loeliger2007-07-1026-1/+235
| | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h used to be included but CONFIG_BOOTP_MASK was not defined. Remove lingering references to CFG_CMD_* symbols. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.Jon Loeliger2007-07-1039-19/+354
| | | | | | | | | | | | | | | | | | | | | | | | | | | Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h used to be included but CONFIG_BOOTP_MASK was not defined. Remove lingering references to CFG_CMD_* symbols. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!Jon Loeliger2007-07-097-115/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All of the choices for CONFIG_BOOTP_ are now documented in the README file. You must now individually select exactly the set that you want using a series of #define CONFIG_BOOTP_<x> statements in the board port config files now. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than ↵Jon Loeliger2007-07-0924-49/+212
| | | | | | | | | | | | | | | | | | CONFIG_BOOTP_MASK. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than ↵Jon Loeliger2007-07-0920-40/+147
| | | | | | | | | | | | | | | | | | CONFIG_BOOTP_MASK. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than ↵Jon Loeliger2007-07-0917-24/+148
| | | | | | | | | | | | | | | | | | CONFIG_BOOTP_MASK. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than ↵Jon Loeliger2007-07-0918-21/+155
| | | | | | | | | | | | | | | | | | CONFIG_BOOTP_MASK. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than ↵Jon Loeliger2007-07-0922-29/+203
| | | | | | | | | | | | | | | | | | CONFIG_BOOTP_MASK. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than ↵Jon Loeliger2007-07-0928-61/+288
| | | | | | | | | | | | | | | | | | CONFIG_BOOTP_MASK. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | Retire CONFIG_COMMANDS finally.Jon Loeliger2007-07-091-130/+0
| | | | | | | | | | | | | | | | | | Strip old CFG_CMD_* symbols out. Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | Update README.* to reference new CONFIG_CMD_* names now.Jon Loeliger2007-07-093-11/+4
| | | | | | | | | | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | cpu/m*: Remove obsolete references to CONFIG_COMMANDSJon Loeliger2007-07-0931-109/+109
| | | | | | | | | | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDSJon Loeliger2007-07-0920-45/+45
| | | | | | | | | | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | board/[q-z]*: Remove obsolete references to CONFIG_COMMANDSJon Loeliger2007-07-0922-39/+39
| | | | | | | | | | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
| * | board/[m-p]*: Remove obsolete references to CONFIG_COMMANDSJon Loeliger2007-07-0926-39/+39
| | | | | | | | | | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>