All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/9] Add support for Espresso7420 board
@ 2016-04-13 10:43 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
                   ` (9 more replies)
  0 siblings, 10 replies; 28+ messages in thread
From: Thomas Abraham @ 2016-04-13 10:43 UTC (permalink / raw)
  To: u-boot

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

 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

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

end of thread, other threads:[~2016-04-23 16:06 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 ` [U-Boot] [PATCH 0/9] Add support for Espresso7420 board Alim Akhtar
2016-04-23 16:06   ` Thomas Abraham

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.