public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 00/11] SPEAr : Adding support for SPEAr SoCs
@ 2010-01-08 13:48 Vipin KUMAR
  2010-01-08 13:48 ` [U-Boot] [PATCH v3 01/11] SPEAr : Adding README.spear in doc Vipin KUMAR
  0 siblings, 1 reply; 13+ messages in thread
From: Vipin KUMAR @ 2010-01-08 13:48 UTC (permalink / raw)
  To: u-boot

The patch set contains the review feedbacks recieved on PATCH v2
The patch set has been recreated to make sure that the dependencies
do not exist. i.e all subpatches depend only on preceeding subpatches

Also removed build error which came with BUILD_DIR option

Chekckpatch error removed

Vipin (11):
  SPEAr : Adding README.spear in doc
  SPEAr : Adding basic support for SPEAr600
  SPEAr : Adding basic support for SPEAr300
  SPEAr : Adding basic support for SPEAr310
  SPEAr : Adding basic support for SPEAr320
  SPEAr : i2c driver support addded
  SPEAr : Support for HW macid read/write from i2c memory
  SPEAr : Support for serial memory interface driver and serial NOR
    flash
  SPEAr : Support for nand driver
  SPEAr : Support for usbd driver and usbtty support
  SPEAr : Support for cfi driver and parallel NOR flash

 MAKEALL                                        |    4 +
 Makefile                                       |    6 +
 board/spear/common/Makefile                    |   54 ++
 board/spear/common/spr_lowlevel_init.S         |  197 +++++
 board/spear/common/spr_misc.c                  |  297 +++++++
 board/spear/spear300/Makefile                  |   51 ++
 board/spear/spear300/config.mk                 |   39 +
 board/spear/spear300/spear300.c                |   57 ++
 board/spear/spear310/Makefile                  |   51 ++
 board/spear/spear310/config.mk                 |   44 +
 board/spear/spear310/spear310.c                |   58 ++
 board/spear/spear320/Makefile                  |   51 ++
 board/spear/spear320/config.mk                 |   44 +
 board/spear/spear320/spear320.c                |   58 ++
 board/spear/spear600/Makefile                  |   51 ++
 board/spear/spear600/config.mk                 |   39 +
 board/spear/spear600/spear600.c                |   53 ++
 cpu/arm926ejs/spear/Makefile                   |   52 ++
 cpu/arm926ejs/spear/reset.c                    |   53 ++
 cpu/arm926ejs/spear/timer.c                    |  150 ++++
 doc/README.spear                               |   53 ++
 drivers/i2c/Makefile                           |    1 +
 drivers/i2c/spr_i2c.c                          |  340 ++++++++
 drivers/mtd/Makefile                           |    1 +
 drivers/mtd/nand/Makefile                      |    1 +
 drivers/mtd/nand/spr_nand.c                    |  123 +++
 drivers/mtd/spr_smi.c                          |  530 +++++++++++++
 drivers/serial/usbtty.h                        |    2 +
 drivers/usb/gadget/Makefile                    |    1 +
 drivers/usb/gadget/spr_udc.c                   | 1004 ++++++++++++++++++++++++
 include/asm-arm/arch-spear/spr_defs.h          |   38 +
 include/asm-arm/arch-spear/spr_emi.h           |   54 ++
 include/asm-arm/arch-spear/spr_gpt.h           |   83 ++
 include/asm-arm/arch-spear/spr_i2c.h           |  146 ++++
 include/asm-arm/arch-spear/spr_misc.h          |  130 +++
 include/asm-arm/arch-spear/spr_nand.h          |   57 ++
 include/asm-arm/arch-spear/spr_smi.h           |  117 +++
 include/asm-arm/arch-spear/spr_syscntl.h       |   38 +
 include/asm-arm/arch-spear/spr_xloader_table.h |   67 ++
 include/configs/spear.h                        |  363 +++++++++
 include/usb/spr_udc.h                          |  227 ++++++
 41 files changed, 4785 insertions(+), 0 deletions(-)
 create mode 100644 board/spear/common/Makefile
 create mode 100755 board/spear/common/spr_lowlevel_init.S
 create mode 100755 board/spear/common/spr_misc.c
 create mode 100755 board/spear/spear300/Makefile
 create mode 100755 board/spear/spear300/config.mk
 create mode 100755 board/spear/spear300/spear300.c
 create mode 100755 board/spear/spear310/Makefile
 create mode 100755 board/spear/spear310/config.mk
 create mode 100755 board/spear/spear310/spear310.c
 create mode 100755 board/spear/spear320/Makefile
 create mode 100755 board/spear/spear320/config.mk
 create mode 100755 board/spear/spear320/spear320.c
 create mode 100755 board/spear/spear600/Makefile
 create mode 100755 board/spear/spear600/config.mk
 create mode 100755 board/spear/spear600/spear600.c
 create mode 100755 cpu/arm926ejs/spear/Makefile
 create mode 100755 cpu/arm926ejs/spear/reset.c
 create mode 100755 cpu/arm926ejs/spear/timer.c
 create mode 100644 doc/README.spear
 mode change 100644 => 100755 drivers/i2c/Makefile
 create mode 100755 drivers/i2c/spr_i2c.c
 mode change 100644 => 100755 drivers/mtd/Makefile
 create mode 100755 drivers/mtd/nand/spr_nand.c
 create mode 100755 drivers/mtd/spr_smi.c
 mode change 100644 => 100755 drivers/serial/usbtty.h
 mode change 100644 => 100755 drivers/usb/gadget/Makefile
 create mode 100755 drivers/usb/gadget/spr_udc.c
 create mode 100644 include/asm-arm/arch-spear/spr_defs.h
 create mode 100644 include/asm-arm/arch-spear/spr_emi.h
 create mode 100755 include/asm-arm/arch-spear/spr_gpt.h
 create mode 100755 include/asm-arm/arch-spear/spr_i2c.h
 create mode 100644 include/asm-arm/arch-spear/spr_misc.h
 create mode 100644 include/asm-arm/arch-spear/spr_nand.h
 create mode 100755 include/asm-arm/arch-spear/spr_smi.h
 create mode 100644 include/asm-arm/arch-spear/spr_syscntl.h
 create mode 100755 include/asm-arm/arch-spear/spr_xloader_table.h
 create mode 100755 include/configs/spear.h
 create mode 100755 include/usb/spr_udc.h

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2010-01-11  9:44 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-08 13:48 [U-Boot] [PATCH v3 00/11] SPEAr : Adding support for SPEAr SoCs Vipin KUMAR
2010-01-08 13:48 ` [U-Boot] [PATCH v3 01/11] SPEAr : Adding README.spear in doc Vipin KUMAR
2010-01-08 13:48   ` [U-Boot] [PATCH v3 02/11] SPEAr : Adding basic support for SPEAr600 Vipin KUMAR
2010-01-08 13:48     ` [U-Boot] [PATCH v3 03/11] SPEAr : Adding basic support for SPEAr300 Vipin KUMAR
2010-01-08 13:49       ` [U-Boot] [PATCH v3 04/11] SPEAr : Adding basic support for SPEAr310 Vipin KUMAR
2010-01-08 13:49         ` [U-Boot] [PATCH v3 05/11] SPEAr : Adding basic support for SPEAr320 Vipin KUMAR
2010-01-08 13:49           ` [U-Boot] [PATCH v3 06/11] SPEAr : i2c driver support addded Vipin KUMAR
2010-01-08 13:49             ` [U-Boot] [PATCH v3 07/11] SPEAr : Support for HW macid read/write from i2c memory Vipin KUMAR
2010-01-08 13:49               ` [U-Boot] [PATCH v3 08/11] SPEAr : Support for serial memory interface driver and serial NOR flash Vipin KUMAR
2010-01-08 13:49                 ` [U-Boot] [PATCH v3 09/11] SPEAr : Support for nand driver Vipin KUMAR
2010-01-08 13:49                   ` [U-Boot] [PATCH v3 10/11] SPEAr : Support for usbd driver and usbtty support Vipin KUMAR
2010-01-08 13:49                     ` [U-Boot] [PATCH v3 11/11] SPEAr : Support for cfi driver and parallel NOR flash Vipin KUMAR
2010-01-11  9:44             ` [U-Boot] [PATCH v3 06/11] SPEAr : i2c driver support addded Heiko Schocher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox