The following patch-set adds the support for the following 1. SPEAr13xx boards (SPEAr1300 and SPEAr1310) 2. Addition of High speed support for USB device for usbtty framework 3. Miscellneous fixes in Network and FSMC (NAND controller) drivers
Please consider the patch-set for inclusion in the mainline Please make sure that the following patches can be applied only after the following Network driver patch which Ben has already accepted in his tree 5b1b1883ffcb75de71a0b4e66b279c88ae1e15fc : SPEAr : Network driver support added Regards Vipin Armando Visconti (1): SPEAr1300: Workaround the UHC problem (issue #101435) Vipin KUMAR (26): change_bit routine defined SPEAr : SMI erase and write timeouts increased SPEAr : Placing ethaddr write and read within CONFIG_CMD_NET SPEAr : Reducing the max RAM size to 128MB SPEAr : Basic arch related support added for SPEAr SoCs SPEAr : Network support configured for spear SoCs SPEAr : macb driver support added for spear310 and spear320 SPEAr : FSMC driver support added SPEAr : Configuring FSMC driver for NAND interface SPEAr : i2c driver moved completely into drivers/i2c SPEAr : smi driver moved completely into drivers/mtd SPEAr : USB Device Controller driver support added SPEAr : Supporting various configurations for spear3xx and spear6xx boards SPEAr : Basic spear1300 architecture support added SPEAr : spear1300 SoC support added SPEAr : Removing extraneous code SPEAr : USB device controller bugfixes SPEAr : Network driver fixes. SPEAr : Changing the default environment variable bootargs Enable high speed support for usb device framework and usbtty SPEAr : High speed support for designware peripheral SPEAr : Enable usb device high speed support SPEAr : Network support configuration SPEAr : Enabling GPT clock explicitly SPEAr : smi_init moved to board_init SPEAr : Ethernet issue workaround is not needed when uboot is acting as flashing Vipin Kumar (1): SPEAr1310 : spear1310 support added MAINTAINERS | 2 + MAKEALL | 2 + Makefile | 41 ++- arch/arm/cpu/arm926ejs/spear/Makefile | 3 +- arch/arm/cpu/arm926ejs/spear/cpu.c | 84 ++++ arch/arm/cpu/arm_cortexa8/spear13xx/Makefile | 52 +++ arch/arm/cpu/arm_cortexa8/spear13xx/ca9_ltimer.c | 136 +++++++ arch/arm/cpu/arm_cortexa8/spear13xx/cache.S | 114 ++++++ arch/arm/cpu/arm_cortexa8/spear13xx/cpu.c | 133 +++++++ .../arm/cpu/arm_cortexa8/spear13xx/reset.c | 40 +- .../arm/include/asm/arch-spear/clk.h | 26 +- arch/arm/include/asm/arch-spear/hardware.h | 16 +- arch/arm/include/asm/arch-spear/spr_misc.h | 7 + .../arm/include/asm/arch-spear13xx/ca9_ltimer.h | 36 +- .../arm/include/asm/arch-spear13xx/hardware.h | 35 +- arch/arm/include/asm/arch-spear13xx/spr_misc.h | 317 ++++++++++++++++ .../arm/include/asm/arch-spear13xx/sys_proto.h | 29 +- arch/arm/include/asm/bitops.h | 11 +- board/spear/common/Makefile | 12 +- .../spear/common/spr13xx_lowlevel_init.S | 35 +- .../spear/common/spr13xx_misc.c | 48 +-- board/spear/common/spr_misc.c | 32 ++- board/spear/spear1300/Makefile | 51 +++ board/spear/spear1300/config.mk | 28 ++ board/spear/spear1300/spear1300.c | 70 ++++ board/spear/spear1310/Makefile | 51 +++ board/spear/spear1310/config.mk | 28 ++ board/spear/spear1310/spear1310.c | 70 ++++ board/spear/spear300/config.mk | 11 - board/spear/spear300/spear300.c | 18 +- board/spear/spear310/config.mk | 11 - board/spear/spear310/spear310.c | 35 ++- board/spear/spear320/config.mk | 11 - board/spear/spear320/spear320.c | 23 +- board/spear/spear600/config.mk | 11 - board/spear/spear600/spear600.c | 18 +- doc/README.spear | 51 ++- drivers/i2c/Makefile | 2 +- drivers/i2c/{spr_i2c.c => designware_i2c.c} | 4 +- .../spr_i2c.h => drivers/i2c/designware_i2c.h | 6 +- drivers/mtd/Makefile | 2 +- drivers/mtd/nand/Makefile | 2 +- drivers/mtd/nand/fsmc_nand.c | 401 ++++++++++++++++++++ drivers/mtd/nand/spr_nand.c | 124 ------ drivers/mtd/{spr_smi.c => st_smi.c} | 61 ++-- drivers/net/designware.c | 8 +- drivers/net/designware.h | 2 +- drivers/serial/usbtty.h | 4 +- drivers/usb/gadget/Makefile | 2 +- drivers/usb/gadget/{spr_udc.c => designware_udc.c} | 123 ++++--- include/configs/spear-common.h | 50 ++- include/configs/spear13xx_evb.h | 225 +++++++++++ include/configs/{spear3xx.h => spear3xx_evb.h} | 31 ++ include/configs/{spear6xx.h => spear6xx_evb.h} | 12 + include/linux/mtd/fsmc_nand.h | 108 ++++++ .../spr_smi.h => include/linux/mtd/st_smi.h | 10 +- include/usb/{spr_udc.h => designware_udc.h} | 9 +- 57 files changed, 2424 insertions(+), 460 deletions(-) create mode 100644 arch/arm/cpu/arm926ejs/spear/cpu.c create mode 100644 arch/arm/cpu/arm_cortexa8/spear13xx/Makefile create mode 100644 arch/arm/cpu/arm_cortexa8/spear13xx/ca9_ltimer.c create mode 100644 arch/arm/cpu/arm_cortexa8/spear13xx/cache.S create mode 100644 arch/arm/cpu/arm_cortexa8/spear13xx/cpu.c copy include/configs/spear6xx.h => arch/arm/cpu/arm_cortexa8/spear13xx/reset.c (55%) mode change 100644 => 100755 copy include/configs/spear6xx.h => arch/arm/include/asm/arch-spear/clk.h (64%) copy include/configs/spear6xx.h => arch/arm/include/asm/arch-spear13xx/ca9_ltimer.h (55%) copy include/configs/spear6xx.h => arch/arm/include/asm/arch-spear13xx/hardware.h (54%) create mode 100644 arch/arm/include/asm/arch-spear13xx/spr_misc.h copy include/configs/spear6xx.h => arch/arm/include/asm/arch-spear13xx/sys_proto.h (64%) copy include/configs/spear6xx.h => board/spear/common/spr13xx_lowlevel_init.S (56%) rename arch/arm/include/asm/arch-spear/spr_nand.h => board/spear/common/spr13xx_misc.c (52%) create mode 100644 board/spear/spear1300/Makefile create mode 100644 board/spear/spear1300/config.mk create mode 100644 board/spear/spear1300/spear1300.c create mode 100644 board/spear/spear1310/Makefile create mode 100644 board/spear/spear1310/config.mk create mode 100644 board/spear/spear1310/spear1310.c rename drivers/i2c/{spr_i2c.c => designware_i2c.c} (98%) rename arch/arm/include/asm/arch-spear/spr_i2c.h => drivers/i2c/designware_i2c.h (98%) create mode 100644 drivers/mtd/nand/fsmc_nand.c delete mode 100644 drivers/mtd/nand/spr_nand.c rename drivers/mtd/{spr_smi.c => st_smi.c} (94%) rename drivers/usb/gadget/{spr_udc.c => designware_udc.c} (90%) create mode 100644 include/configs/spear13xx_evb.h rename include/configs/{spear3xx.h => spear3xx_evb.h} (85%) rename include/configs/{spear6xx.h => spear6xx_evb.h} (84%) create mode 100644 include/linux/mtd/fsmc_nand.h rename arch/arm/include/asm/arch-spear/spr_smi.h => include/linux/mtd/st_smi.h (95%) rename include/usb/{spr_udc.h => designware_udc.h} (97%) _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot