All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/7] arm64: dts: exynos: Add E850-96 board support
@ 2021-12-17 16:15 ` Sam Protsenko
  0 siblings, 0 replies; 40+ messages in thread
From: Sam Protsenko @ 2021-12-17 16:15 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Rob Herring, Sylwester Nawrocki
  Cc: Jaewon Kim, Chanho Park, David Virag, Youngmin Nam, Tomasz Figa,
	Chanwoo Choi, Michael Turquette, Stephen Boyd, Linus Walleij,
	Daniel Palmer, Hao Fang, linux-arm-kernel, linux-samsung-soc,
	devicetree, linux-kernel, linux-clk

WinLink's E850-96 is a dev board based on Exynos850 SoC [1]. The board's
design follows 96boards specifications, hence it's compatible with
96boards mezzanines [2].

This patch series adds the initial support for E850-96 board and
Exynos850 SoC, along with corresponding bindings. Only basic platform
components are enabled at the moment (like serial, I2C, eMMC, RTC, WDT,
clock driver, etc). Right now with this patch series it's possible to
run the kernel with BusyBox rootfs as a RAM disk. More features are
coming soon.

[1] https://www.samsung.com/semiconductor/minisite/exynos/products/mobileprocessor/exynos-850/
[2] https://www.96boards.org/products/mezzanine/

Changes in v4:
  - Removed slew_rate pin nodes
  - Moved rtcclk clock to board dts file

Changes in v3:
  - Ordered the pinctrl_alive phandle alphabetically (patch 7/7)
  - No other changes in v3

Changes in v2:
  - Rebased on krzk/linux.git (for-next), to account for Exynos7885
    changes
  - Added missing and new tags (R-b and Ack)
  - Addressed all comments for v1

Sam Protsenko (7):
  dt-bindings: clock: exynos850: Add bindings for Exynos850 sysreg
    clocks
  clk: samsung: exynos850: Add missing sysreg clocks
  dt-bindings: Add vendor prefix for WinLink
  dt-bindings: arm: samsung: Document E850-96 board binding
  dt-bindings: pinctrl: samsung: Add pin drive definitions for Exynos850
  arm64: dts: exynos: Add initial Exynos850 SoC support
  arm64: dts: exynos: Add initial E850-96 board support

 .../bindings/arm/samsung/samsung-boards.yaml  |   6 +
 .../devicetree/bindings/vendor-prefixes.yaml  |   2 +
 arch/arm64/boot/dts/exynos/Makefile           |   1 +
 .../boot/dts/exynos/exynos850-e850-96.dts     | 195 +++++
 .../boot/dts/exynos/exynos850-pinctrl.dtsi    | 643 +++++++++++++++
 arch/arm64/boot/dts/exynos/exynos850.dtsi     | 741 ++++++++++++++++++
 drivers/clk/samsung/clk-exynos850.c           |  29 +
 include/dt-bindings/clock/exynos850.h         |  12 +-
 include/dt-bindings/pinctrl/samsung.h         |  13 +-
 9 files changed, 1638 insertions(+), 4 deletions(-)
 create mode 100644 arch/arm64/boot/dts/exynos/exynos850-e850-96.dts
 create mode 100644 arch/arm64/boot/dts/exynos/exynos850-pinctrl.dtsi
 create mode 100644 arch/arm64/boot/dts/exynos/exynos850.dtsi

-- 
2.30.2


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

end of thread, other threads:[~2021-12-21 12:11 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-17 16:15 [PATCH v4 0/7] arm64: dts: exynos: Add E850-96 board support Sam Protsenko
2021-12-17 16:15 ` Sam Protsenko
2021-12-17 16:15 ` [PATCH v4 1/7] dt-bindings: clock: exynos850: Add bindings for Exynos850 sysreg clocks Sam Protsenko
2021-12-17 16:15   ` Sam Protsenko
2021-12-19 22:29   ` Sylwester Nawrocki
2021-12-19 22:29     ` Sylwester Nawrocki
2021-12-20  9:31     ` Krzysztof Kozlowski
2021-12-20  9:31       ` Krzysztof Kozlowski
2021-12-20 14:55       ` Sam Protsenko
2021-12-20 14:55         ` Sam Protsenko
2021-12-21  8:19         ` Krzysztof Kozlowski
2021-12-21  8:19           ` Krzysztof Kozlowski
2021-12-21  8:20           ` Krzysztof Kozlowski
2021-12-21  8:20             ` Krzysztof Kozlowski
2021-12-21 12:09           ` Sam Protsenko
2021-12-21 12:09             ` Sam Protsenko
2021-12-17 16:15 ` [PATCH v4 2/7] clk: samsung: exynos850: Add missing " Sam Protsenko
2021-12-17 16:15   ` Sam Protsenko
2021-12-19 22:31   ` Sylwester Nawrocki
2021-12-19 22:31     ` Sylwester Nawrocki
2021-12-17 16:15 ` [PATCH v4 3/7] dt-bindings: Add vendor prefix for WinLink Sam Protsenko
2021-12-17 16:15   ` Sam Protsenko
2021-12-20  9:36   ` Krzysztof Kozlowski
2021-12-20  9:36     ` Krzysztof Kozlowski
2021-12-20 15:05     ` Sam Protsenko
2021-12-20 15:05       ` Sam Protsenko
2021-12-20  9:37   ` (subset) " Krzysztof Kozlowski
2021-12-20  9:37     ` Krzysztof Kozlowski
2021-12-17 16:15 ` [PATCH v4 4/7] dt-bindings: arm: samsung: Document E850-96 board binding Sam Protsenko
2021-12-17 16:15   ` Sam Protsenko
2021-12-20  9:37   ` (subset) " Krzysztof Kozlowski
2021-12-20  9:37     ` Krzysztof Kozlowski
2021-12-17 16:15 ` [PATCH v4 5/7] dt-bindings: pinctrl: samsung: Add pin drive definitions for Exynos850 Sam Protsenko
2021-12-17 16:15   ` Sam Protsenko
2021-12-20  9:37   ` (subset) " Krzysztof Kozlowski
2021-12-20  9:37     ` Krzysztof Kozlowski
2021-12-17 16:15 ` [PATCH v4 6/7] arm64: dts: exynos: Add initial Exynos850 SoC support Sam Protsenko
2021-12-17 16:15   ` Sam Protsenko
2021-12-17 16:15 ` [PATCH v4 7/7] arm64: dts: exynos: Add initial E850-96 board support Sam Protsenko
2021-12-17 16:15   ` Sam Protsenko

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.