From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alim Akhtar Date: Wed, 20 Apr 2016 14:47:45 +0530 Subject: [U-Boot] [PATCH 0/9] Add support for Espresso7420 board In-Reply-To: <1460544222-5342-1-git-send-email-ta.omasab@gmail.com> References: <1460544222-5342-1-git-send-email-ta.omasab@gmail.com> Message-ID: <57174939.5040003@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 > 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 > > > >