From: Heiko Schocher <hs@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v6 00/11] arm, davinci: add support for dm368 based cam_enc_4xx board
Date: Wed, 2 Nov 2011 07:00:24 +0100 [thread overview]
Message-ID: <1320213635-8056-1-git-send-email-hs@denx.de> (raw)
This is a repost of the cam_enc_4xx board support patches from
http://lists.denx.de/pipermail/u-boot/2011-October/107651.html
changes for v6:
- moved arch/arm/cpu/arm926ejs/davinci/spl_nand.c to
drivers/mtd/nand/nand_spl_load.c as Scoot Wood suggested.
compiled through CONFIG_SPL_NAND_LOAD define
- make enable_vbus() weak with alias, as Igor Grinberg
suggested.
Patches are checkpatch clean
"./MAKEALL -a arm --soc davinci" compiles clean
with patch: http://patchwork.ozlabs.org/patch/122348/
Also needed patches:
[U-Boot] net, davinci_emac: fix compiler error
http://patchwork.ozlabs.org/patch/122348/
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/
[U-Boot,v2,2/3] arm, davinci: Add function lpsc_syncreset()
http://patchwork.ozlabs.org/patch/119375/
Albert? Maybe this patchset has a chance to go now in mainline?
It is pending now since Sat Jul 16 12:06:41 CEST 2011, see:
http://lists.denx.de/pipermail/u-boot/2011-July/096302.html
Cc: Sandeep Paulraj <s-paulraj@ti.com>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Heiko Schocher (11):
usb, davinci: add enable_vbus() weak function
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 | 5 +
arch/arm/cpu/arm926ejs/davinci/cpu.c | 27 ++-
arch/arm/cpu/arm926ejs/davinci/dm365_lowlevel.c | 439 +++++++++++++++++++
arch/arm/cpu/arm926ejs/davinci/spl.c | 63 +++
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 | 41 ++
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 | 86 ++++
arch/arm/include/asm/arch-davinci/syscfg_defs.h | 66 +++
board/ait/cam_enc_4xx/Makefile | 46 ++
board/ait/cam_enc_4xx/cam_enc_4xx.c | 446 +++++++++++++++++++
board/ait/cam_enc_4xx/config.mk | 15 +
board/ait/cam_enc_4xx/u-boot-spl.lds | 73 ++++
board/ait/cam_enc_4xx/ublimage.cfg | 48 ++
boards.cfg | 1 +
doc/README.SPL | 2 +
doc/README.davinci.nand_spl | 141 ++++++
drivers/mtd/nand/Makefile | 3 +
drivers/mtd/nand/nand_spl_load.c | 56 +++
drivers/mtd/nand/nand_spl_simple.c | 43 ++-
drivers/net/davinci_emac.c | 9 +-
drivers/usb/musb/davinci.c | 20 +-
include/configs/cam_enc_4xx.h | 453 ++++++++++++++++++++
spl/Makefile | 1 +
tools/ublimage.h | 2 +-
30 files changed, 2262 insertions(+), 12 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/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 drivers/mtd/nand/nand_spl_load.c
create mode 100644 include/configs/cam_enc_4xx.h
--
1.7.6.4
next reply other threads:[~2011-11-02 6:00 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-02 6:00 Heiko Schocher [this message]
2011-11-02 6:00 ` [U-Boot] [PATCH v6 01/11] usb, davinci: add enable_vbus() weak function Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 02/11] arm, usb, davinci: make USBPHY_CTL register configurable Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 03/11] net, davinci_emac: make clock divider in MDIO control " Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 04/11] spl: add option for adding post memory test to the SPL framework Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 05/11] arm, davinci: add support for new spl framework Heiko Schocher
2011-11-02 22:53 ` Scott Wood
2011-11-03 5:31 ` [U-Boot] [PATCH v7 " Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 06/11] spl, nand: add 4bit HW ecc oob first nand_read_page function Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 07/11] arm, davinci: add header files for dm365 Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 08/11] arm, davinci: add lowlevel function for dm365 soc Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 09/11] arm926ejs, davinci: add cpuinfo for dm365 Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 10/11] arm926ejs, davinci: add missing spi defines " Heiko Schocher
2011-11-02 6:00 ` [U-Boot] [PATCH v6 11/11] arm, davinci: add cam_enc_4xx support Heiko Schocher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1320213635-8056-1-git-send-email-hs@denx.de \
--to=hs@denx.de \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox