u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
From: Minkyu Kang <mk7.kang@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/11 V13] EXYNOS5420: Add SMDK5420 board support
Date: Tue, 31 Dec 2013 16:34:11 +0900	[thread overview]
Message-ID: <52C27373.3070007@samsung.com> (raw)
In-Reply-To: <1388031267-3893-1-git-send-email-rajeshwari.s@samsung.com>

On 26/12/13 13:14, Rajeshwari S Shinde wrote:
> This patch adds basic board support for SMDK5420 board.
> These patches are tested for booting fine on EVT1 SMDK5420.
> 
> Rajeshwari S Shinde (11):
>   EXYNOS5: Create a common board file
>   Exynos5420: Add base addresses for 5420
>   EXYNOS5420: Add power register structure.
>   EXYNOS5420: Add dmc and phy_control register structure
>   Exynos5420: Add clock initialization for 5420
>   Exynos5420: Add DDR3 initialization for 5420
>   Exynos5420: Add support for 5420 in pinmux and gpio
>   Exynos5420: Add base patch for SMDK5420
>   DTS: Add dts support for SMDK5420
>   Config: Add initial config for SMDK5420
>   SPL: EXYNOS: Prepare for variable size SPL support
> 
>  arch/arm/cpu/armv7/exynos/clock.c              | 279 ++++++++-
>  arch/arm/cpu/armv7/exynos/clock_init.h         |  17 +
>  arch/arm/cpu/armv7/exynos/clock_init_exynos5.c | 352 ++++++++++-
>  arch/arm/cpu/armv7/exynos/dmc_common.c         |  60 +-
>  arch/arm/cpu/armv7/exynos/dmc_init_ddr3.c      | 439 ++++++++++++-
>  arch/arm/cpu/armv7/exynos/exynos5_setup.h      | 764 ++++++++++++++++------
>  arch/arm/cpu/armv7/exynos/pinmux.c             | 260 +++++++-
>  arch/arm/dts/exynos5.dtsi                      | 198 ++++++
>  arch/arm/dts/exynos5250.dtsi                   | 194 +-----
>  arch/arm/dts/exynos5420.dtsi                   |  70 +++
>  arch/arm/include/asm/arch-exynos/board.h       |  17 +
>  arch/arm/include/asm/arch-exynos/clk.h         |   1 +
>  arch/arm/include/asm/arch-exynos/clock.h       | 494 +++++++++++++++
>  arch/arm/include/asm/arch-exynos/cpu.h         |  52 +-
>  arch/arm/include/asm/arch-exynos/dmc.h         | 177 ++++++
>  arch/arm/include/asm/arch-exynos/gpio.h        | 143 ++++-
>  arch/arm/include/asm/arch-exynos/periph.h      |   3 +
>  arch/arm/include/asm/arch-exynos/power.h       | 837 +++++++++++++++++++++++++
>  board/samsung/common/Makefile                  |   4 +
>  board/samsung/common/board.c                   | 408 ++++++++++++
>  board/samsung/dts/exynos5420-smdk5420.dts      | 169 +++++
>  board/samsung/smdk5250/exynos5-dt.c            | 350 +----------
>  board/samsung/smdk5250/smdk5250.c              | 182 +-----
>  board/samsung/smdk5420/Makefile                |  11 +
>  board/samsung/smdk5420/smdk5420.c              | 159 +++++
>  board/samsung/smdk5420/smdk5420_spl.c          |  52 ++
>  boards.cfg                                     |   1 +
>  include/configs/arndale.h                      |   1 +
>  include/configs/exynos5-dt.h                   | 290 +++++++++
>  include/configs/exynos5250-dt.h                | 284 +--------
>  include/configs/smdk5420.h                     |  56 ++
>  spl/Makefile                                   |   7 +-
>  tools/Makefile                                 |   3 +-
>  tools/mkexynosspl.c                            | 167 +++--
>  34 files changed, 5187 insertions(+), 1314 deletions(-)
>  create mode 100644 arch/arm/dts/exynos5.dtsi
>  create mode 100644 arch/arm/dts/exynos5420.dtsi
>  create mode 100644 arch/arm/include/asm/arch-exynos/board.h
>  create mode 100644 board/samsung/common/board.c
>  create mode 100644 board/samsung/dts/exynos5420-smdk5420.dts
>  create mode 100644 board/samsung/smdk5420/Makefile
>  create mode 100644 board/samsung/smdk5420/smdk5420.c
>  create mode 100644 board/samsung/smdk5420/smdk5420_spl.c
>  create mode 100644 include/configs/exynos5-dt.h
>  create mode 100644 include/configs/smdk5420.h
> 

applied to u-boot-samsung.

Thanks,
Minkyu Kang.

  parent reply	other threads:[~2013-12-31  7:34 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-26  4:14 [U-Boot] [PATCH 00/11 V13] EXYNOS5420: Add SMDK5420 board support Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 01/11 V13] EXYNOS5: Create a common board file Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 02/11 V13] Exynos5420: Add base addresses for 5420 Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 03/11 V13] EXYNOS5420: Add power register structure Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 04/11] EXYNOS5420: Add dmc and phy_control " Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 05/11 V13] Exynos5420: Add clock initialization for 5420 Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 06/11 V13] Exynos5420: Add DDR3 " Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 07/11 V13] Exynos5420: Add support for 5420 in pinmux and gpio Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 08/11 V13] Exynos5420: Add base patch for SMDK5420 Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 09/11 V13] DTS: Add dts support " Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 10/11 V13] Config: Add initial config " Rajeshwari S Shinde
2013-12-26  4:14 ` [U-Boot] [PATCH 11/11 V13] SPL: EXYNOS: Prepare for variable size SPL support Rajeshwari S Shinde
2013-12-31  7:34 ` Minkyu Kang [this message]
2014-01-08 17:37   ` [U-Boot] [PATCH 00/11 V13] EXYNOS5420: Add SMDK5420 board support Simon Glass

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=52C27373.3070007@samsung.com \
    --to=mk7.kang@samsung.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;
as well as URLs for NNTP newsgroup(s).