public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Steve Rae <srae@broadcom.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 0/5] Introducing the Broadcom Cygnus and NSP boards.
Date: Thu, 28 Aug 2014 11:05:17 -0700	[thread overview]
Message-ID: <53FF6F5D.7010803@broadcom.com> (raw)
In-Reply-To: <1407790706-31842-1-git-send-email-srae@broadcom.com>



On 14-08-11 01:58 PM, Steve Rae wrote:
> This series adds the bcm958300k and the bcm958622hr boards which
> share the iproc architecture code.
>
> Changes in v3:
> - remove boards.cfg
> - improve error checking of configs
> - add required files for Kconfig
>
> Changes in v2:
> - remove unused include file
> - reformat multi-line comment(s)
> - remove deprecated "SZ_" definitions
> - remove misc_init_r()
> - update CONFIG_ENV_SIZE
>
> Scott Branden (4):
>    arm: iproc: Initial commit of iproc architecture code
>    arm: bcmcygnus: Add bcmcygnus u-architecture
>    arm: bcmnsp: Add bcmnsp u-architecture
>    arm: add Cygnus and NSP boards
>
> Steve Rae (1):
>    arm: convert Cygnus and NSP boards to Kconfig
>
>   arch/arm/Kconfig                                |   8 ++
>   arch/arm/cpu/armv7/Makefile                     |   1 +
>   arch/arm/cpu/armv7/bcmcygnus/Makefile           |   7 +
>   arch/arm/cpu/armv7/bcmcygnus/reset.c            |  20 +++
>   arch/arm/cpu/armv7/bcmnsp/Makefile              |   7 +
>   arch/arm/cpu/armv7/bcmnsp/reset.c               |  19 +++
>   arch/arm/cpu/armv7/iproc-common/Makefile        |   9 ++
>   arch/arm/cpu/armv7/iproc-common/armpll.c        | 170 ++++++++++++++++++++++++
>   arch/arm/cpu/armv7/iproc-common/hwinit-common.c |  15 +++
>   arch/arm/cpu/armv7/iproc-common/timer.c         | 130 ++++++++++++++++++
>   arch/arm/include/asm/arch-bcmcygnus/configs.h   |  25 ++++
>   arch/arm/include/asm/arch-bcmnsp/configs.h      |  22 +++
>   arch/arm/include/asm/iproc-common/armpll.h      |  14 ++
>   arch/arm/include/asm/iproc-common/configs.h     |  20 +++
>   arch/arm/include/asm/iproc-common/sysmap.h      |  47 +++++++
>   arch/arm/include/asm/iproc-common/timer.h       |  37 ++++++
>   board/broadcom/bcm958300k/Kconfig               |  23 ++++
>   board/broadcom/bcm958300k/MAINTAINERS           |   6 +
>   board/broadcom/bcm958622hr/Kconfig              |  23 ++++
>   board/broadcom/bcm958622hr/MAINTAINERS          |   6 +
>   board/broadcom/bcm_ep/Makefile                  |   7 +
>   board/broadcom/bcm_ep/board.c                   |  55 ++++++++
>   configs/bcm958300k_defconfig                    |   3 +
>   configs/bcm958622hr_defconfig                   |   3 +
>   include/configs/bcm_ep_board.h                  | 115 ++++++++++++++++
>   25 files changed, 792 insertions(+)
>   create mode 100644 arch/arm/cpu/armv7/bcmcygnus/Makefile
>   create mode 100644 arch/arm/cpu/armv7/bcmcygnus/reset.c
>   create mode 100644 arch/arm/cpu/armv7/bcmnsp/Makefile
>   create mode 100644 arch/arm/cpu/armv7/bcmnsp/reset.c
>   create mode 100644 arch/arm/cpu/armv7/iproc-common/Makefile
>   create mode 100644 arch/arm/cpu/armv7/iproc-common/armpll.c
>   create mode 100644 arch/arm/cpu/armv7/iproc-common/hwinit-common.c
>   create mode 100644 arch/arm/cpu/armv7/iproc-common/timer.c
>   create mode 100644 arch/arm/include/asm/arch-bcmcygnus/configs.h
>   create mode 100644 arch/arm/include/asm/arch-bcmnsp/configs.h
>   create mode 100644 arch/arm/include/asm/iproc-common/armpll.h
>   create mode 100644 arch/arm/include/asm/iproc-common/configs.h
>   create mode 100644 arch/arm/include/asm/iproc-common/sysmap.h
>   create mode 100644 arch/arm/include/asm/iproc-common/timer.h
>   create mode 100644 board/broadcom/bcm958300k/Kconfig
>   create mode 100644 board/broadcom/bcm958300k/MAINTAINERS
>   create mode 100644 board/broadcom/bcm958622hr/Kconfig
>   create mode 100644 board/broadcom/bcm958622hr/MAINTAINERS
>   create mode 100644 board/broadcom/bcm_ep/Makefile
>   create mode 100644 board/broadcom/bcm_ep/board.c
>   create mode 100644 configs/bcm958300k_defconfig
>   create mode 100644 configs/bcm958622hr_defconfig
>   create mode 100644 include/configs/bcm_ep_board.h
>

Any chance of getting this in soon?
( we have an upcoming release.... )
Thanks, Steve

      parent reply	other threads:[~2014-08-28 18:05 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-11 20:58 [U-Boot] [PATCH v3 0/5] Introducing the Broadcom Cygnus and NSP boards Steve Rae
2014-08-11 20:58 ` [U-Boot] [PATCH v3 1/5] arm: iproc: Initial commit of iproc architecture code Steve Rae
2014-08-30 15:14   ` [U-Boot] [U-Boot, v3, " Tom Rini
2014-08-11 20:58 ` [U-Boot] [PATCH v3 2/5] arm: bcmcygnus: Add bcmcygnus u-architecture Steve Rae
2014-08-30 15:14   ` [U-Boot] [U-Boot, v3, " Tom Rini
2014-08-11 20:58 ` [U-Boot] [PATCH v3 3/5] arm: bcmnsp: Add bcmnsp u-architecture Steve Rae
2014-08-30 15:15   ` [U-Boot] [U-Boot, v3, " Tom Rini
2014-08-11 20:58 ` [U-Boot] [PATCH v3 4/5] arm: add Cygnus and NSP boards Steve Rae
2014-08-30 15:15   ` [U-Boot] [U-Boot,v3,4/5] " Tom Rini
2014-08-11 20:58 ` [U-Boot] [PATCH v3 5/5] arm: convert Cygnus and NSP boards to Kconfig Steve Rae
2014-08-30 15:15   ` [U-Boot] [U-Boot, v3, " Tom Rini
2014-08-28 18:05 ` Steve Rae [this message]

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=53FF6F5D.7010803@broadcom.com \
    --to=srae@broadcom.com \
    --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