aboutsummaryrefslogtreecommitdiff
path: root/drivers
AgeCommit message (Collapse)Author
2006-04-27Revert bad PCI prefetch limit change.Jon Loeliger
2006-04-26Initial support for MPC8641 HPCN board.Jon Loeliger
2006-04-12Merge with /home/m8/git/u-bootWolfgang Denk
2006-04-08Fix JFFS2 support for legacy NAND driver.Marian Balakowicz
Some more NAND cleanup and small fixes.
2006-04-06Merge with /home/sr/git/u-boot/cfi-flashWolfgang Denk
2006-04-01* Changes/fixes for drivers/cfi_flash.c:Stefan Roese
- Add Intel legacy lock/unlock support to common CFI driver On some Intel flash's (e.g. Intel J3) legacy unlocking is supported, meaning that unlocking of one sector will unlock all sectors of this bank. Using this feature, unlocking of all sectors upon startup (via env var "unlock=yes") will get much faster. - Fixed problem with multiple reads of envronment variable "unlock" as pointed out by Reinhard Arlt & Anders Larsen. - Removed unwanted linefeeds from "protect" command when CFG_FLASH_PROTECTION is enabled. - Changed p3p400 board to use CFG_FLASH_PROTECTION Patch by Stefan Roese, 01 Apr 2006 * Changes/fixes for drivers/cfi_flash.c: - Correctly handle the cases where CFG_HZ != 1000 (several XScale-based boards) - Fix the timeout calculation of buffered writes (off by a factor of 1000) Patch by Anders Larsen, 31 Mar 2006
2006-03-31GCC-4.x fixes: clean up global data pointer initialization for all boards.Wolfgang Denk
2006-03-12Add Nat Semi DP83865 PHY support to MPC85xx TSEC driverWolfgang Denk
Patch by Murray Jensen, 08 Jul 2005
2006-03-12Fix compile problemWolfgang Denk
2006-03-12Merge with git://git.kernel.org/pub/scm/boot/u-boot/u-boot.git#pciWolfgang Denk
2006-03-12Fix a HW timing issue on 8548 CDS for eTSEC 3 in RGMII modeWolfgang Denk
Patch by Andy Fleming, 14 Jun 2005
2006-03-12Fix bad register definitions for LTX971 PHY on MPC85xx boards.Wolfgang Denk
Patch by Gerhard Jaeger, 21 Jun 2005
2006-03-12Add ADI Blackfin supportWolfgang Denk
- add support for Analog Devices Blackfin BF533 CPU - add support for the ADI BF533 Stamp uClinux board - add support for the ADI BF533 EZKit board Patches by Richard Klingler, June 11th 2005:
2006-03-12Fix conditional for including ks8695eth driverWolfgang Denk
Patch by Greg Ungerer, 04 Jun 2005
2006-03-12Cleanup compiler warnings.Wolfgang Denk
Patch by Greg Ungerer, 21 May 2005
2006-03-11Some code cleanup for GCC 4.xWolfgang Denk
2006-03-07Cleanup (get rid of debug code that sneaked in)Wolfgang Denk
2006-03-06Merge with /home/wd/git/u-boot/masterWolfgang Denk
Code cleanup.
2006-03-06Cleanup of NAND support of delta board using the Monahans Data FlashMarkus Klotzbücher
Controller.
2006-03-06NAND finally working. Two bugs fixed:Markus Klotzbücher
* For READ_STATUS and READID commands always 8 bytes need to be read from NDDB. Otherwise they stay there and get send to flash as the first data word when writing. * In nand_base.c the oob variable is not reset so this->oob_buf is overwritten what eventually screws up the bad block descriptor table.
2006-03-06Minor code cleanupWolfgang Denk
2006-03-06Merge the new NAND code (testing-NAND brach); see doc/README.nandWolfgang Denk
Rewrite of NAND code based on what is in 2.6.12 Linux kernel Patch by Ladislav Michl, 29 Jun 2005 [Merge with /home/tur/nand/u-boot]
2006-03-05Re-factoring the legacy NAND code (legacy NAND now only in board-specificBartlomiej Sieka
code and in SoC code). Boards using the old way have CFG_NAND_LEGACY and BOARDLIBS = drivers/nand_legacy/libnand_legacy.a added. Build breakage for NETTA.ERR and NETTA_ISDN - will go away when the new NAND support is implemented for these boards.
2006-03-01Fix problem with flash_get_size() from CFI driver updateStefan Roese
Patch by Stefan Roese, 1 Mar 2006
2006-02-28Major CFI-FLASH driver update:Stefan Roese
* Add env-variable "unlock" to handle initial state of sectors (locked/unlocked). Only the U-Boot image and it's environment is protected, all other sectors are unprotected (unlocked) if flash hardware protection is used (CFG_FLASH_PROTECTION) and the environment variable "unlock" is set to "yes". Patch by Stefan Roese, 28 Feb 2006 * Update drivers/cfi_flash.c: - find_sector() called in both versions of flash_write_cfiword() Patch by Peter Pearse, 27th Feb 2006 * CFI support for a x8/x16 AMD/Spansion flash configured in x8 mode Patch by Jose Maria Lopez, 16 Jan 2006 * Add support for AMD/Spansion Flashes in flash_write_cfibuffer Patch by Alex Bastos and Thomas Schaefer, 2005-08-29 * Changes/fixes for drivers/cfi_flash.c: We *should* check if there are any error bits if the previous call returned ERR_OK (Otherwise we will have output an error message in flash_status_check() already.) The original code would only check for error bits if flash_status_check() returns ERR_TIMEOUT. Patch by Marcus Hall, 23 Aug 2005 * Changes/fixes for drivers/cfi_flash.c: - Add CFG_FLASH_PROTECT_CLEAR on drivers/cfi_flash.c - Prohibit buffer write when buffer_size is 1 on drivers/cfi_flash.c Patch by Sangmoon Kim, 19 Aug 2005 * Fixes for drivers/cfi_flash.c: - Fix wrong timeout value usage in flash_status_check() - Round write_tout up when converting to msec in flash_get_size() - Remove clearing flash status at the end of flash_write_cfibuffer() which sets Intel 28F640J3 flash back to command mode on CSB472 Patch by Tolunay Orkun, 02 July 2005
2006-02-24Merge /home/tur/nand/u-boot/Markus Klotzbücher
This is a first version of the testing-NAND branch merged back to main.
2006-02-24Merge with /home/wd/git/u-boot/testing-NAND/ to add new NAND handling.Bartlomiej Sieka
2006-02-20Merged and added more pxa-regs.h stuff, especially the GPIO ControlMarkus Klotzbücher
Register Definitions.
2006-01-18Add VGA support (CT69000) to CPCI750 board.Stefan Roese
Insert missing __le32_to_cpu() for filesize in ext2fs_read_file(). Patch by Reinhard Arlt, 30 Dec 2005
2006-01-12Fixed PCI indirect config ops to handle multiple PCI controllersKumar Gala
We need to adjust the bus number we are trying to access based on which PCI controller its on Patch by Kumar Gala 12 Jan 2006
2006-01-11Report back PCI bus when doing table based device configKumar Gala
Patch by Kumar Gala 11 Jan 2006
2006-01-11Added support for PCI prefetchable region and BARsKumar Gala
If a host controller sets up a region as prefetchable and a device's BAR denotes it as prefetchable, allocate the BAR into the prefetch region. If a BAR is prefetchable and no prefetchable region has been setup by the controller we fall back to allocating the BAR into the normally memory region. Patch by Kumar Gala 11 Jan 2006
2005-11-22Add support for Prodrive P3P440 board:Stefan Roese
- Added onboard PPC440 DDR autodetection in cpu/ppc/sdram.c - CFG_FLASH_QUIET_TEST added to use the common CFI driver for bank autodetection Patch by Stefan Roese, 22 Nov 2005
2005-11-02* Add hook to NAND erase and implement nand_wait function.Wolfgang Denk
Patch by Mike Rapoport, 01 Nov 2005 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2005-10-28Add support for multiple PHYs.Marian Balakowicz
2005-10-17Add PCI support for the TQM834x board.Rafal Jaworowski
2005-10-15Merge with /home/m8/git/u-bootWolfgang Denk
2005-10-13Cleanup for GCC-4.xWolfgang Denk
2005-10-13Merge with /home/sr/git/u-bootWolfgang Denk
2005-10-11Added support for TQM834x boards.Marian Balakowicz
2005-10-09Add support for NetSilicon NS7520 processor.Wolfgang Denk
Patch by Art Shipkowski, 12 May 2005 Cleanup.
2005-10-09Add support for AP1000 board.Wolfgang Denk
Patch by James MacAulay, 07 Oct 2005
2005-10-09Fixed compilation for ARM when using a (standard) hard-FP toolchainWolfgang Denk
Patch by Anders Larsen, 07 Oct 2005
2005-10-08Fix gzip bmp support (test if malloc fails, warning when truncated).Stefan Roese
Increase CFG_VIDEO_LOGO_MAX_SIZE on HH405 board. Patch by Stefan Roese, 08 Oct 2005
2005-10-06Remove unnecessary dependency of netconsole on CONFIG_NET_MULTIWolfgang Denk
Patch by Marcus Hall, 24 Aug 2005
2005-10-05* Move dm9161.c and lxt972.c into cpu/arm920t/at91rm9200Wolfgang Denk
Patch by Anders Larsen, 29 Apr 2005 * Fix problems introduced by Patch by Steven Scholz, 02 Mar 2005 (8e2be51de8dd03c1ce4d06cbb18ad06133d47cd5)
2005-09-26Add board support for armadillo HT1070Wolfgang Denk
Patch by Rowel Atienza, 06 Apr 2005
2005-09-26Add support for MII in eepro100 driver.Wolfgang Denk
Patch by Gleb Natapov, 21 Mar 2005
2005-09-26Fixes to the Lubbock (PXA 25x) support:Wolfgang Denk
- Resolve the FIXME with respect to saving the u-boot environment. - Make the default load address land in real memory. - Fix lan91c96 SMC_{in,out}{b,w,l}() macros Patch by David Brownell, 10 Mar 2005
2005-09-25OMAP242x H4 board updateWolfgang Denk
- fix for ES2 differences. - switch to using the cfi_flash driver. - fix SRAM build address. - fix for GP device operation. - unlock SRAM for GP devices. - display more device information. - fix potential deadlock in omap24xx_i2c driver. - fix DLL load values to match dpllout*1 operation. - fix 2nd chip select init for combo DDR device. - add support for CFI Intel 28F256L18 on H4 board. Patch by Richard Woodruff, 03 Mar 2005