public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 00/10] arm, davinci: add support for dm368 based cam_enc_4xx board
@ 2011-10-21  6:32 Heiko Schocher
  2011-10-21  6:32 ` [U-Boot] [PATCH v3 01/10] arm, usb, davinci: make USBPHY_CTL register configurable Heiko Schocher
                   ` (9 more replies)
  0 siblings, 10 replies; 16+ messages in thread
From: Heiko Schocher @ 2011-10-21  6:32 UTC (permalink / raw)
  To: u-boot

This is a repost of the cam_enc_4xx board support patches from
http://lists.denx.de/pipermail/u-boot/2011-October/104026.html

changes for v3:
- rebase to TOT
- rename CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST to
  CONFIG_SYS_NAND_HW_ECC_OOBFIRST

Patches are checkpatch clean

"./MAKEALL -a arm --soc davinci" compiles clean

Also needed patches:

arm, arm926: fix missing symbols in NAND_SPL mode
http://patchwork.ozlabs.org/patch/104942/

arm, davinci: replace CONFIG_PRELOADER with CONFIG_SPL_BUILD
http://patchwork.ozlabs.org/patch/106983/

already in u-boot-arm.git:
arm, logbuffer: make it compileclean
http://lists.denx.de/pipermail/u-boot/2011-October/104962.html

cosmetic, post: Codingstyle cleanup
http://lists.denx.de/pipermail/u-boot/2011-October/104963.html

arm, post: add missing post_time_ms for arm
http://lists.denx.de/pipermail/u-boot/2011-September/101415.html

Cc: Sandeep Paulraj <s-paulraj@ti.com>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>

Heiko Schocher (10):
  arm, usb, davinci: make USBPHY_CTL register configurable
  net, davinci_emac: make clock divider in MDIO control register
    configurable
  spl: add option for adding post memory test to the SPL framework
  arm, davinci: add support for new spl framework
  spl, nand: add 4bit HW ecc oob first nand_read_page function
  arm, davinci: add header files for dm365
  arm, davinci: add lowlevel function for dm365 soc
  arm926ejs, davinci: add cpuinfo for dm365
  arm926ejs, davinci: add missing spi defines for dm365
  arm, davinci: add cam_enc_4xx support

 MAINTAINERS                                        |    1 +
 Makefile                                           |    8 +-
 README                                             |    5 +
 arch/arm/cpu/arm926ejs/davinci/Makefile            |    8 +
 arch/arm/cpu/arm926ejs/davinci/cpu.c               |   27 +-
 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c    |  466 ++++++++++++++++++++
 arch/arm/cpu/arm926ejs/davinci/spl.c               |   63 +++
 arch/arm/cpu/arm926ejs/davinci/spl_nand.c          |   57 +++
 arch/arm/cpu/arm926ejs/start.S                     |   25 +-
 arch/arm/include/asm/arch-davinci/aintc_defs.h     |   50 +++
 arch/arm/include/asm/arch-davinci/dm365_lowlevel.h |   43 ++
 arch/arm/include/asm/arch-davinci/hardware.h       |   15 +
 arch/arm/include/asm/arch-davinci/pll_defs.h       |   84 ++++
 arch/arm/include/asm/arch-davinci/psc_defs.h       |  129 ++++++
 arch/arm/include/asm/arch-davinci/syscfg_defs.h    |   66 +++
 board/ait/cam_enc_4xx/Makefile                     |   52 +++
 board/ait/cam_enc_4xx/cam_enc_4xx.c                |  455 +++++++++++++++++++
 board/ait/cam_enc_4xx/config.mk                    |   13 +
 board/ait/cam_enc_4xx/u-boot-spl.lds               |   73 +++
 board/ait/cam_enc_4xx/ublimage.cfg                 |   48 ++
 boards.cfg                                         |    1 +
 doc/README.SPL                                     |    1 +
 doc/README.davinci.nand_spl                        |  141 ++++++
 drivers/mtd/nand/nand_spl_simple.c                 |   43 ++-
 drivers/net/davinci_emac.c                         |    9 +-
 drivers/usb/musb/davinci.c                         |    6 +-
 include/configs/cam_enc_4xx.h                      |  450 +++++++++++++++++++
 spl/Makefile                                       |    1 +
 28 files changed, 2331 insertions(+), 9 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/spl.c
 create mode 100644 arch/arm/cpu/arm926ejs/davinci/spl_nand.c
 create mode 100644 arch/arm/include/asm/arch-davinci/aintc_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/dm365_lowlevel.h
 create mode 100644 arch/arm/include/asm/arch-davinci/pll_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/psc_defs.h
 create mode 100644 arch/arm/include/asm/arch-davinci/syscfg_defs.h
 create mode 100644 board/ait/cam_enc_4xx/Makefile
 create mode 100644 board/ait/cam_enc_4xx/cam_enc_4xx.c
 create mode 100644 board/ait/cam_enc_4xx/config.mk
 create mode 100644 board/ait/cam_enc_4xx/u-boot-spl.lds
 create mode 100644 board/ait/cam_enc_4xx/ublimage.cfg
 create mode 100644 doc/README.davinci.nand_spl
 create mode 100644 include/configs/cam_enc_4xx.h

-- 
1.7.6.4

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

end of thread, other threads:[~2011-10-24  7:17 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-21  6:32 [U-Boot] [PATCH v3 00/10] arm, davinci: add support for dm368 based cam_enc_4xx board Heiko Schocher
2011-10-21  6:32 ` [U-Boot] [PATCH v3 01/10] arm, usb, davinci: make USBPHY_CTL register configurable Heiko Schocher
2011-10-21  6:32 ` [U-Boot] [PATCH v3 02/10] net, davinci_emac: make clock divider in MDIO control " Heiko Schocher
2011-10-21  6:32 ` [U-Boot] [PATCH v3 03/10] spl: add option for adding post memory test to the SPL framework Heiko Schocher
2011-10-21 12:11   ` Sergei Shtylyov
2011-10-24  5:23     ` Heiko Schocher
2011-10-21  6:32 ` [U-Boot] [PATCH v3 04/10] arm, davinci: add support for new spl framework Heiko Schocher
2011-10-21  6:32 ` [U-Boot] [PATCH v3 05/10] spl, nand: add 4bit HW ecc oob first nand_read_page function Heiko Schocher
2011-10-21 15:01   ` Tom Rini
2011-10-21  6:32 ` [U-Boot] [PATCH v3 06/10] arm, davinci: add header files for dm365 Heiko Schocher
2011-10-21  6:32 ` [U-Boot] [PATCH v3 07/10] arm, davinci: add lowlevel function for dm365 soc Heiko Schocher
2011-10-21  6:32 ` [U-Boot] [PATCH v3 08/10] arm926ejs, davinci: add cpuinfo for dm365 Heiko Schocher
2011-10-21  6:32 ` [U-Boot] [PATCH v3 09/10] arm926ejs, davinci: add missing spi defines " Heiko Schocher
2011-10-21  6:32 ` [U-Boot] [PATCH v3 10/10] arm, davinci: add cam_enc_4xx support Heiko Schocher
2011-10-23 21:11   ` Igor Grinberg
2011-10-24  7:17     ` Heiko Schocher

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