public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Alim Akhtar <alim.akhtar@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/9] Add support for Espresso7420 board
Date: Wed, 20 Apr 2016 14:47:45 +0530	[thread overview]
Message-ID: <57174939.5040003@samsung.com> (raw)
In-Reply-To: <1460544222-5342-1-git-send-email-ta.omasab@gmail.com>

Hi Thomas,

On 04/13/2016 04:13 PM, Thomas Abraham wrote:
> This patch series add support for Espresso7420 board. This board is
> the development/evaluation platform for Exynos7420 SoC. The SoC is
> composed of quad Cortex-A57 block, a quad Cortex-A53 block and
> various other peripherals. The board includes multiple components
> such as the EMMC/Codec and support multiple interconnect interfaces
> including HDMI and USB.
>
> The first two patches add Exynos7420 pinctrl driver support which
> was initially posted seperatly but now included in this series.
> Thanks to Simon Glass and Minkyu Kang for their review. The rest
> of the patches add Exynos7420 clock driver support, minor changes
> in the S5P serial driver, Exynos7420 SoC support and Espresso7420
> board support.
>
> Thomas Abraham (9):
>    pinctrl: add the DM_UC_FLAG_SEQ_ALIAS flag for numbering the devices
>    pinctrl: Add pinctrl driver support for Exynos7420 SoC
>    clk: fixed_rate: allow driver usage prior to relocation
>    clk: exynos: add clock driver for Exynos7420 Soc
>    serial: s5p: get the port id number from the alias of the device node
>    serial: s5p: use clock api to get clock rate
>    arm: exynos: realign the code to allow support for newer 64-bit platforms
>    arm: exynos: add support for Exynos7420 SoC
>    board: samsung: add initial Espresso7420 board support
>
Thanks for posting this series.
Have tested this series on espresso7420 board.
Feel free to add
Tested-by: Alim Akhtar <alim.akhtar@samsung.com>

>   arch/arm/Kconfig                            |    1 -
>   arch/arm/dts/Makefile                       |    1 +
>   arch/arm/dts/exynos7420-espresso7420.dts    |   24 +++
>   arch/arm/dts/exynos7420.dtsi                |   82 ++++++++++
>   arch/arm/mach-exynos/Kconfig                |   25 +++
>   arch/arm/mach-exynos/Makefile               |    8 +-
>   arch/arm/mach-exynos/include/mach/cpu.h     |    2 +-
>   arch/arm/mach-exynos/include/mach/gpio.h    |    2 +-
>   arch/arm/mach-exynos/mmu-arm64.c            |   35 ++++
>   arch/arm/mach-exynos/soc.c                  |   10 ++
>   board/samsung/common/board.c                |   18 ++-
>   board/samsung/espresso7420/Kconfig          |   12 ++
>   board/samsung/espresso7420/MAINTAINERS      |    5 +
>   board/samsung/espresso7420/Makefile         |   16 ++
>   board/samsung/espresso7420/espresso7420.c   |   16 ++
>   configs/espresso7420_defconfig              |    8 +
>   drivers/clk/Kconfig                         |    1 +
>   drivers/clk/Makefile                        |    1 +
>   drivers/clk/clk_fixed_rate.c                |    1 +
>   drivers/clk/exynos/Kconfig                  |   18 ++
>   drivers/clk/exynos/Makefile                 |    9 +
>   drivers/clk/exynos/clk-exynos7420.c         |  227 +++++++++++++++++++++++++++
>   drivers/clk/exynos/clk-pll.c                |   35 ++++
>   drivers/clk/exynos/clk-pll.h                |    9 +
>   drivers/pinctrl/Kconfig                     |    1 +
>   drivers/pinctrl/Makefile                    |    1 +
>   drivers/pinctrl/exynos/Kconfig              |   10 ++
>   drivers/pinctrl/exynos/Makefile             |    9 +
>   drivers/pinctrl/exynos/pinctrl-exynos.c     |  141 +++++++++++++++++
>   drivers/pinctrl/exynos/pinctrl-exynos.h     |   77 +++++++++
>   drivers/pinctrl/exynos/pinctrl-exynos7420.c |  121 ++++++++++++++
>   drivers/pinctrl/pinctrl-uclass.c            |    1 +
>   drivers/serial/serial_s5p.c                 |   17 ++-
>   include/configs/espresso7420.h              |   35 ++++
>   include/configs/exynos7420-common.h         |  117 ++++++++++++++
>   include/dt-bindings/clock/exynos7420-clk.h  |  207 ++++++++++++++++++++++++
>   36 files changed, 1295 insertions(+), 8 deletions(-)
>   create mode 100644 arch/arm/dts/exynos7420-espresso7420.dts
>   create mode 100644 arch/arm/dts/exynos7420.dtsi
>   create mode 100644 arch/arm/mach-exynos/mmu-arm64.c
>   create mode 100644 board/samsung/espresso7420/Kconfig
>   create mode 100644 board/samsung/espresso7420/MAINTAINERS
>   create mode 100644 board/samsung/espresso7420/Makefile
>   create mode 100644 board/samsung/espresso7420/espresso7420.c
>   create mode 100644 configs/espresso7420_defconfig
>   create mode 100644 drivers/clk/exynos/Kconfig
>   create mode 100644 drivers/clk/exynos/Makefile
>   create mode 100644 drivers/clk/exynos/clk-exynos7420.c
>   create mode 100644 drivers/clk/exynos/clk-pll.c
>   create mode 100644 drivers/clk/exynos/clk-pll.h
>   create mode 100644 drivers/pinctrl/exynos/Kconfig
>   create mode 100644 drivers/pinctrl/exynos/Makefile
>   create mode 100644 drivers/pinctrl/exynos/pinctrl-exynos.c
>   create mode 100644 drivers/pinctrl/exynos/pinctrl-exynos.h
>   create mode 100644 drivers/pinctrl/exynos/pinctrl-exynos7420.c
>   create mode 100644 include/configs/espresso7420.h
>   create mode 100644 include/configs/exynos7420-common.h
>   create mode 100644 include/dt-bindings/clock/exynos7420-clk.h
>
>
>
>

  parent reply	other threads:[~2016-04-20  9:17 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-13 10:43 [U-Boot] [PATCH 0/9] Add support for Espresso7420 board Thomas Abraham
2016-04-13 10:43 ` [U-Boot] [PATCH 1/9] pinctrl: add the DM_UC_FLAG_SEQ_ALIAS flag for numbering the devices Thomas Abraham
2016-04-13 10:43 ` [U-Boot] [PATCH 2/9] pinctrl: Add pinctrl driver support for Exynos7420 SoC Thomas Abraham
2016-04-13 10:43 ` [U-Boot] [PATCH 3/9] clk: fixed_rate: allow driver usage prior to relocation Thomas Abraham
2016-04-20 14:40   ` Simon Glass
2016-04-13 10:43 ` [U-Boot] [PATCH 4/9] clk: exynos: add clock driver for Exynos7420 Soc Thomas Abraham
2016-04-20 14:41   ` Simon Glass
2016-04-23 15:24     ` Thomas Abraham
2016-04-13 10:43 ` [U-Boot] [PATCH 5/9] serial: s5p: get the port id number from the alias of the device node Thomas Abraham
2016-04-20 14:41   ` Simon Glass
2016-04-13 10:43 ` [U-Boot] [PATCH 6/9] serial: s5p: use clock api to get clock rate Thomas Abraham
2016-04-20 14:41   ` Simon Glass
2016-04-13 10:43 ` [U-Boot] [PATCH 7/9] arm: exynos: realign the code to allow support for newer 64-bit platforms Thomas Abraham
2016-04-18 11:09   ` Minkyu Kang
2016-04-18 14:11     ` Thomas Abraham
2016-04-21 13:51       ` Minkyu Kang
2016-04-23 15:28         ` Thomas Abraham
2016-04-18 16:58   ` [U-Boot] [PATCH v2 " Thomas Abraham
2016-04-20 14:41     ` Simon Glass
2016-04-13 10:43 ` [U-Boot] [PATCH 8/9] arm: exynos: add support for Exynos7420 SoC Thomas Abraham
2016-04-18 17:01   ` [U-Boot] [PATCH v2 " Thomas Abraham
2016-04-20 14:41   ` [U-Boot] [PATCH " Simon Glass
2016-04-23 15:31     ` Thomas Abraham
2016-04-13 10:43 ` [U-Boot] [PATCH 9/9] board: samsung: add initial Espresso7420 board support Thomas Abraham
2016-04-20 14:41   ` Simon Glass
2016-04-23 15:35     ` Thomas Abraham
2016-04-20  9:17 ` Alim Akhtar [this message]
2016-04-23 16:06   ` [U-Boot] [PATCH 0/9] Add support for Espresso7420 board Thomas Abraham

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=57174939.5040003@samsung.com \
    --to=alim.akhtar@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