summaryrefslogtreecommitdiffstats
path: root/include/linux
Commit message (Collapse)AuthorAgeFilesLines
* documentation updatesJuergen Beisert2009-12-153-0/+12
| | | | | Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-154-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | This has been done with the following script: find -path ./.git -prune -o -type f -print0 | xargs -0 -r sed -i \ -e 's/u2boot/barebox/g' \ -e 's/U2Boot/barebox/g' \ -e 's/U-boot V2/barebox/g' \ -e 's/u-boot v2/barebox/g' \ -e 's/U-Boot V2/barebox/g' \ -e 's/U-Boot-v2/barebox/g' \ -e 's/U_BOOT/BAREBOX/g' \ -e 's/UBOOT/BAREBOX/g' \ -e 's/uboot/barebox/g' \ -e 's/u-boot/barebox/g' \ -e 's/u_boot/barebox/g' \ -e 's/U-Boot/barebox/g' \ -e 's/U-boot/barebox/g' \ -e 's/U-BOOT/barebox/g' find -path ./.git -prune -o \( -name "*u-boot*" -o -name "*uboot*" -o -name "*u_boot*" \) -print0 | \ xargs -0 -r rename 's/u[-_]?boot/barebox/' It needs some manual fixup following in the next patch Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* NAND: Allow to read oob dataSascha Hauer2009-12-031-0/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* list: remove duplicated list.hSascha Hauer2009-11-032-41/+388
| | | | | | | | We accidently have two list implementations in the tree: include/list.h and include/linux/list.h. This patch moves the latter (newer one) to include/linux/list.h. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add bool types supportJean-Christophe PLAGNIOL-VILLARD2009-11-021-0/+1
| | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* nand: Add size parameterSascha Hauer2009-07-211-0/+3
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* introduce cdevSascha Hauer2009-07-211-0/+3
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* mtd: Replace DEBUG by MTD_DEBUGSascha Hauer2009-06-101-2/+2
| | | | | | DEBUG is already used for another purpose by U-Boot Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add __[lb]e typesSascha Hauer2009-04-061-0/+22
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Introduce dev_* and pr_* functionsSascha Hauer2008-10-311-3/+0
| | | | | | | | Proven to be useful in linux kernel, U-Boot should have such a thing aswell. We do not distinguish between the various print levels others than debug and not debug. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* [at91sam9] Nand driverMarc Kleine-Budde2008-10-271-3/+2
| | | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* import io-{read,write}s{b,w} functions from linuxMarc Kleine-Budde2008-10-271-0/+96
| | | | | | | | | | | This patch imports: - io-readsb, - io-readsw, - io-writesb, - io-writesw, from linux Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* string: add typechecking for strchr, strrchr, strstrSascha Hauer2008-08-201-3/+15
| | | | | | | These functions offered an excellent possibility to bypass compiler type checking. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Bitops:Remove generic_funcsNishanth Menon2008-08-151-64/+7
| | | | | | | Use asm-generic/bitops/xyz.h instead of using generic_xyz functions. Signed-off-by: Nishanth Menon <x0nishan@ti.com>
* remove unused include fileSascha Hauer2008-08-131-60/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* NAND: Add updated NAND support from KernelSascha Hauer2008-08-134-258/+578
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add include/linux/kernel.hSascha Hauer2008-08-131-0/+94
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Add include/linux/err.h from KernelSascha Hauer2008-08-131-0/+52
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add wrapper macros for easier inclusion of kernel codeSascha Hauer2008-08-131-0/+33
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add compiler header files from kernelSascha Hauer2008-08-135-0/+350
| | | | | | | Add include/linux/compiler*.h from Linux Kernel and remove old include/compiler.h Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* NAND support work in progresssascha2007-10-203-118/+94
|
* add ffssascha2007-10-151-1/+1
|
* add nand_ecc.hSascha Hauer2007-10-151-0/+30
|
* NAND WIPSascha Hauer2007-10-151-2/+2
|
* remove unported includes and driversSascha Hauer2007-09-214-547/+0
|
* make printf position independentSascha Hauer2007-07-121-1/+4
|
* svn_rev_530Sascha Hauer2007-07-051-4/+0
| | | | remove linux/config.h
* svn_rev_527Sascha Hauer2007-07-051-6/+0
|
* svn_rev_502Sascha Hauer2007-07-051-1/+1
| | | | complete multiple console support
* svn_rev_354Sascha Hauer2007-07-051-1/+1
|
* svn_rev_322Sascha Hauer2007-07-051-3/+1
| | | | simplify ifdef
* svn_rev_003Sascha Hauer2007-07-053-58/+0
| | | | remove all #if 0 and #if 1
* Add support for AMCC Sequoia PPC440EPx eval boardStefan Roese2006-09-072-0/+69
| | | | | | | | | | | - Add support for PPC440EPx & PPC440GRx - Add support for PPC440EP(x)/GR(x) NAND controller in cpu/ppc4xx directory - Add NAND boot functionality for Sequoia board, please see doc/README.nand-boot-ppc440 for details - This Sequoia NAND image doesn't support environment in NAND for now. This will be added in a short while. Patch by Stefan Roese, 07 Sep 2006
* Code cleanupWolfgang Denk2006-07-211-37/+37
|
* Scheduled for removal: strnicmp() which is unusedWolfgang Denk2006-05-031-1/+1
|
* Remove dependencies between DoC code and old legacy NAND driver.Marian Balakowicz2006-04-051-0/+65
| | | | | | Necessary defines and data structures were copied to DoC specific files so that legacy NAND code could be entirely removed from u-boot tree in the near future.
* Add ADI Blackfin supportWolfgang Denk2006-03-121-1/+1
| | | | | | | - 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:
* Minor code cleanupWolfgang Denk2006-03-061-1/+0
|
* Re-factoring the legacy NAND code (legacy NAND now only in board-specificBartlomiej Sieka2006-03-054-588/+592
| | | | | | | 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.
* Merge with /home/wd/git/u-boot/testing-NAND/ to add new NAND handling.Bartlomiej Sieka2006-02-247-1/+861
|\
| * Update of new NAND codeWolfgang Denk2005-09-143-63/+63
| | | | | | | | Patch by Ladislav Michl, 13 Sep 2005
| * Merge with testing-NAND (Rewrite of NAND code)Wolfgang Denk2005-08-176-116/+775
| |\
| | * Rewrite of NAND code based on what is in 2.6.12 Linux kernelWolfgang Denk2005-08-176-116/+775
| | | | | | | | | | | | Patch by Ladislav Michl, 29 Jun 2005
* | | Cleanup for GCC-4.xWolfgang Denk2005-10-131-3/+3
| | |
* | | Add cramfs support for m68kWolfgang Denk2005-09-251-1/+1
|/ / | | | | | | Patch by Zachary Landau, 21 Feb 2005
* | Add configuration for IFM AEV FIFO board.Wolfgang Denk2005-08-101-17/+17
| | | | | | | | Minor coding style cleanup.
* | Add common (with Linux) MTD partition scheme and "mtdparts" commandWolfgang Denk2005-08-081-0/+258
|/ | | | | | | | Old, obsolete and duplicated code was cleaned up and replace by the new partitioning method. There are two possible approaches now: * define a single, static partition * use mtdparts command line option and dynamic partitioning Default is static partitioning.
* Patches by Josef Wagner, 29 Oct 2004:wdenk2005-04-032-18/+22
| | | | | - Add support for MicroSys CPU87 board - Add support for MicroSys PM854 board
* * Patch by Shlomo Kut, 29 Mar 2004:wdenk2004-09-292-0/+2
| | | | | | | Add support for MKS Instruments "Quantum" board * Fix build problem with Cogent boards; avoid using <asm/byteorder.h> when using the host compiler
* * Patch by Carl Riechers, 17 Mar 2004:wdenk2004-03-231-1/+1
| | | | | | | | Ignore '\0' characters in console input for use with telnet and telco pads. * Patch by Leon Kukovec, 17 Mar 2004: typo fix for strswab prototype #ifdef