public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v4 0/5] arm, davinci: add am1808 based enbw_cmc board
@ 2011-11-29 12:33 Heiko Schocher
  2011-11-29 12:33 ` [U-Boot] [PATCH v4 1/5] arm, davinci: move davinci_rtc struct to hardware.h Heiko Schocher
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Heiko Schocher @ 2011-11-29 12:33 UTC (permalink / raw)
  To: u-boot

repost from:
[U-Boot] [PATCH v3 0/3] arm, davinci: add am1808 based enbw_cmc board
http://lists.denx.de/pipermail/u-boot/2011-November/111427.html

changes for v4:
  - change gp0[15] output state to high
  - change gp6[10] output state to high
  add comments from Igor Grinberg:
  - removed clean, distclean targets from Makefile
  - sorted includes
  - aligned table
  - use misc functions from board/davinci/common moved for this
    board/davinci/common/misc.c to arch/arm/cpu/arm926ejs/davinci/misc.c
    in a seperate patch
  - use da8xx_configure_lpsc_items()
  add comments from Wolfgang Denk:
  - return instead continue, if gpio_request fails.

Following patches are needed for this patchset
- patchset from Christian Riesch:
[U-Boot] [PATCH v3 00/15] Add an SPL to boot the da850evm from SPI
http://lists.denx.de/pipermail/u-boot/2011-November/111182.html

- [U-Boot,1/2] arm, arm926ejs: always do cpu critical inits
patchwork.ozlabs.org/patch/124787/

- [U-Boot] arm, fdt: update ethernet mac address before booting Linux
http://patchwork.ozlabs.org/patch/114736/

checkpatch:
total: 0 errors, 0 warnings, 75 lines checked

NOTE: Ignored message types: COMPLEX_MACRO CONSIDER_KSTRTO MINMAX MULTISTATEMENT_MACRO_USE_DO_WHILE

20111129/0001-arm-davinci-move-davinci_rtc-struct-to-hardware.h.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 18 lines checked

NOTE: Ignored message types: COMPLEX_MACRO CONSIDER_KSTRTO MINMAX MULTISTATEMENT_MACRO_USE_DO_WHILE

20111129/0002-arm-davinci-da850-add-uart1-tx-rx-pinmux-config.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 55 lines checked

NOTE: Ignored message types: COMPLEX_MACRO CONSIDER_KSTRTO MINMAX MULTISTATEMENT_MACRO_USE_DO_WHILE

20111129/0003-arm-board-davinci-common-misc.c-Codingstyle-cleanup.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 48 lines checked

NOTE: Ignored message types: COMPLEX_MACRO CONSIDER_KSTRTO MINMAX MULTISTATEMENT_MACRO_USE_DO_WHILE

20111129/0004-arm-davinci-move-misc-function-in-arch-tree.patch has no obvious style problems and is ready for submission.
total: 0 errors, 0 warnings, 1117 lines checked

NOTE: Ignored message types: COMPLEX_MACRO CONSIDER_KSTRTO MINMAX MULTISTATEMENT_MACRO_USE_DO_WHILE

20111129/0005-arm-davinci-add-support-for-am1808-based-enbw_cmc-bo.patch has no obvious style problems and is ready for submission.

Cc: Paulraj Sandeep <s-paulraj@ti.com>
Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
Cc: Igor Grinberg <grinberg@compulab.co.il>
Cc: Christian Riesch <christian.riesch@omicron.at>

Heiko Schocher (5):
  arm, davinci: move davinci_rtc struct to hardware.h
  arm, davinci, da850: add uart1 tx rx pinmux config
  arm, board/davinci/common/misc.c: Codingstyle cleanup
  arm, davinci: move misc function in arch tree
  arm, davinci: add support for am1808 based enbw_cmc board

 MAINTAINERS                                        |    1 +
 arch/arm/cpu/arm926ejs/davinci/Makefile            |    2 +-
 arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c      |    5 +
 .../arm/cpu/arm926ejs/davinci}/misc.c              |   19 +-
 arch/arm/include/asm/arch-davinci/hardware.h       |   39 ++
 arch/arm/include/asm/arch-davinci/pinmux_defs.h    |    1 +
 board/ait/cam_enc_4xx/cam_enc_4xx.c                |   15 -
 board/{davinci/common => enbw/enbw_cmc}/Makefile   |   12 +-
 board/enbw/enbw_cmc/enbw_cmc.c                     |  607 ++++++++++++++++++++
 boards.cfg                                         |    1 +
 drivers/rtc/davinci.c                              |   26 -
 include/configs/enbw_cmc.h                         |  451 +++++++++++++++
 nand_spl/board/davinci/da8xxevm/Makefile           |    9 +-
 13 files changed, 1125 insertions(+), 63 deletions(-)
 rename {board/davinci/common => arch/arm/cpu/arm926ejs/davinci}/misc.c (90%)
 rename board/{davinci/common => enbw/enbw_cmc}/Makefile (89%)
 create mode 100644 board/enbw/enbw_cmc/enbw_cmc.c
 create mode 100644 include/configs/enbw_cmc.h

-- 
1.7.6.4

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

end of thread, other threads:[~2011-12-21 13:54 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-29 12:33 [U-Boot] [PATCH v4 0/5] arm, davinci: add am1808 based enbw_cmc board Heiko Schocher
2011-11-29 12:33 ` [U-Boot] [PATCH v4 1/5] arm, davinci: move davinci_rtc struct to hardware.h Heiko Schocher
2011-12-21 13:54   ` Christian Riesch
2011-11-29 12:33 ` [U-Boot] [PATCH v4 2/5] arm, davinci, da850: add uart1 tx rx pinmux config Heiko Schocher
2011-11-29 12:33 ` [U-Boot] [PATCH v4 3/5] arm, board/davinci/common/misc.c: Codingstyle cleanup Heiko Schocher
2011-11-29 12:33 ` [U-Boot] [PATCH v4 4/5] arm, davinci: move misc function in arch tree Heiko Schocher
2011-11-29 12:33 ` [U-Boot] [PATCH v4 5/5] arm, davinci: add support for am1808 based enbw_cmc board Heiko Schocher
2011-11-29 15:20 ` [U-Boot] [PATCH v4 0/5] arm, davinci: add " Christian Riesch
2011-11-29 19:32 ` Tom Rini
2011-11-30  7:35   ` Heiko Schocher

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