
From: Sylvain Lemieux slemieux@tycoint.com
This series of patches bring the legacy NXP LPC32xx BSP drivers (SLC NAND, DMA & USB) into the latest u-boot.
Refer to each individual patches for details on the change done to integrate the driver into the latest u-boot.
The legacy BSP patch (u-boot-2009.03_lpc32x0-v1.07.patch.tar.bz2) was downloaded from the LPCLinux Web site.
The patch adding the LPC32xx MAC and SMSC RMII phy support should be applied first: - http://patchwork.ozlabs.org/patch/489100/ - http://patchwork.ozlabs.org/patch/489190/ - http://patchwork.ozlabs.org/patch/491419/ - http://patchwork.ozlabs.org/patch/491420/
The SLC NAND patch is conflicting with the following patch sent on the mailing list: - https://patchwork.ozlabs.org/patch/496017/
The ported implementation of the SLC NAND driver from the legacy NXP BSP support the hardware ECC.
Note: I am sending the patches using slemieux.tyco@gmail.com, until I can submit patch using my regular e-mail slemieux@tycoint.com.
Sylvain Lemieux (3): nand: lpc32xx: add SLC NAND driver dma: lpc32xx: add DMA driver usb: lpc32xx: add host USB driver
arch/arm/cpu/arm926ejs/lpc32xx/devices.c | 12 + arch/arm/include/asm/arch-lpc32xx/clk.h | 17 + arch/arm/include/asm/arch-lpc32xx/dma.h | 33 ++ arch/arm/include/asm/arch-lpc32xx/sys_proto.h | 2 + drivers/dma/Makefile | 1 + drivers/dma/lpc32xx_dma.c | 153 ++++++++ drivers/mtd/nand/Makefile | 1 + drivers/mtd/nand/lpc32xx_nand_slc.c | 501 ++++++++++++++++++++++++++ drivers/usb/host/Makefile | 1 + drivers/usb/host/ohci-lpc32xx.c | 304 ++++++++++++++++ 10 files changed, 1025 insertions(+) create mode 100644 arch/arm/include/asm/arch-lpc32xx/dma.h create mode 100644 drivers/dma/lpc32xx_dma.c create mode 100644 drivers/mtd/nand/lpc32xx_nand_slc.c create mode 100644 drivers/usb/host/ohci-lpc32xx.c