linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/13] GS101 Oriole: CMU_PERIC0 support and USI updates
@ 2023-12-14 10:52 Tudor Ambarus
  2023-12-14 10:52 ` [PATCH 01/13] dt-bindings: clock: google,gs101: fix CMU_TOP gate clock names Tudor Ambarus
                   ` (12 more replies)
  0 siblings, 13 replies; 61+ messages in thread
From: Tudor Ambarus @ 2023-12-14 10:52 UTC (permalink / raw)
  To: peter.griffin, robh+dt, krzysztof.kozlowski+dt, mturquette, sboyd,
	conor+dt, andi.shyti, alim.akhtar, gregkh, jirislaby,
	catalin.marinas, will, s.nawrocki, tomasz.figa, cw00.choi, arnd,
	semen.protsenko
  Cc: andre.draszik, saravanak, willmcvicker, linux-arm-kernel,
	linux-samsung-soc, linux-clk, devicetree, linux-kernel, linux-i2c,
	linux-serial, Tudor Ambarus

Add support for PERIC0 clocks. Use them for USI in serial and I2C
configurations. Tested the serial at different baudrates (115200,
1M, 3M) and the I2C with an at24 eeprom, all went fine.

Apart of the DT and defconfig changes, the patch set spans through the tty
and clk subsystems. The expectation is that Krzysztof will apply the whole
series through the Samsung SoC tree. If the tty and clk subsystem
maintainers can give an acked-by or reviewed-by on the relevant patches
that would be most appreciated!

Thanks!
ta

Tudor Ambarus (13):
  dt-bindings: clock: google,gs101: fix CMU_TOP gate clock names
  dt-bindings: clock: google,gs101-clock: add PERIC0 clock management
    unit
  dt-bindings: i2c: exynos5: add google,gs101-hsi2c compatible
  dt-bindings: serial: samsung: gs101: make reg-io-width required
    property
  tty: serial: samsung: add gs101 earlycon support
  clk: samsung: gs101: add support for cmu_peric0
  clk: samsung: gs101: mark PERIC0 IP TOP gate clock as critical
  arm64: dts: exynos: gs101: enable cmu-peric0 clock controller
  arm64: dts: exynos: gs101: update USI UART to use peric0 clocks
  arm64: dts: exynos: gs101: define USI8 with I2C configuration
  arm64: dts: exynos: gs101: enable eeprom on gs101-oriole
  arm64: defconfig: sync with savedefconfig
  arm64: defconfig: make at24 eeprom builtin

 .../bindings/clock/google,gs101-clock.yaml    |  25 +-
 .../devicetree/bindings/i2c/i2c-exynos5.yaml  |   1 +
 .../bindings/serial/samsung_uart.yaml         |   4 +
 .../boot/dts/exynos/google/gs101-oriole.dts   |  18 +
 arch/arm64/boot/dts/exynos/google/gs101.dtsi  |  52 +-
 arch/arm64/configs/defconfig                  | 146 ++--
 drivers/clk/samsung/clk-gs101.c               | 748 ++++++++++++++++--
 drivers/tty/serial/samsung_tty.c              |  11 +
 include/dt-bindings/clock/google,gs101.h      | 230 ++++--
 9 files changed, 980 insertions(+), 255 deletions(-)

-- 
2.43.0.472.g3155946c3a-goog


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2023-12-28  7:50 UTC | newest]

Thread overview: 61+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-14 10:52 [PATCH 00/13] GS101 Oriole: CMU_PERIC0 support and USI updates Tudor Ambarus
2023-12-14 10:52 ` [PATCH 01/13] dt-bindings: clock: google,gs101: fix CMU_TOP gate clock names Tudor Ambarus
2023-12-14 15:07   ` Sam Protsenko
2023-12-14 15:16     ` Tudor Ambarus
2023-12-14 15:22       ` Sam Protsenko
2023-12-14 16:04   ` Peter Griffin
2023-12-15  8:13   ` Krzysztof Kozlowski
2023-12-15 10:23     ` Tudor Ambarus
2023-12-15 19:24       ` Krzysztof Kozlowski
2023-12-15 19:25         ` Krzysztof Kozlowski
2023-12-18  6:50           ` Tudor Ambarus
2023-12-14 10:52 ` [PATCH 02/13] dt-bindings: clock: google,gs101-clock: add PERIC0 clock management unit Tudor Ambarus
2023-12-14 15:12   ` Sam Protsenko
2023-12-20 15:07   ` Rob Herring
2023-12-21  7:20     ` Tudor Ambarus
2023-12-22 17:56       ` Peter Griffin
2023-12-27 12:38       ` Tudor Ambarus
2023-12-28  7:30         ` Krzysztof Kozlowski
2023-12-28  7:49           ` Tudor Ambarus
2023-12-14 10:52 ` [PATCH 03/13] dt-bindings: i2c: exynos5: add google,gs101-hsi2c compatible Tudor Ambarus
2023-12-14 13:06   ` Wolfram Sang
2023-12-14 15:12   ` Sam Protsenko
2023-12-15 19:42   ` Rob Herring
2023-12-14 10:52 ` [PATCH 04/13] dt-bindings: serial: samsung: gs101: make reg-io-width required property Tudor Ambarus
2023-12-14 15:14   ` Sam Protsenko
2023-12-15  7:58   ` Krzysztof Kozlowski
2023-12-14 10:52 ` [PATCH 05/13] tty: serial: samsung: add gs101 earlycon support Tudor Ambarus
2023-12-14 12:01   ` Arnd Bergmann
2023-12-14 13:52     ` Tudor Ambarus
2023-12-14 14:19       ` Arnd Bergmann
2023-12-14 14:31         ` Tudor Ambarus
2023-12-15  8:01           ` Krzysztof Kozlowski
2023-12-21  7:41             ` Tudor Ambarus
2023-12-14 10:52 ` [PATCH 06/13] clk: samsung: gs101: add support for cmu_peric0 Tudor Ambarus
2023-12-14 10:52 ` [PATCH 07/13] clk: samsung: gs101: mark PERIC0 IP TOP gate clock as critical Tudor Ambarus
2023-12-14 15:37   ` Sam Protsenko
2023-12-14 16:01     ` Tudor Ambarus
2023-12-14 16:09       ` Sam Protsenko
2023-12-14 16:15         ` Tudor Ambarus
2023-12-14 16:43           ` Sam Protsenko
2023-12-19 16:47             ` Tudor Ambarus
2023-12-19 17:31               ` Sam Protsenko
2023-12-20 14:22                 ` Tudor Ambarus
2023-12-20 15:12                   ` Sam Protsenko
2023-12-14 10:52 ` [PATCH 08/13] arm64: dts: exynos: gs101: enable cmu-peric0 clock controller Tudor Ambarus
2023-12-14 15:39   ` Sam Protsenko
2023-12-15  8:02     ` Krzysztof Kozlowski
2023-12-14 10:52 ` [PATCH 09/13] arm64: dts: exynos: gs101: update USI UART to use peric0 clocks Tudor Ambarus
2023-12-14 15:42   ` Sam Protsenko
2023-12-14 10:52 ` [PATCH 10/13] arm64: dts: exynos: gs101: define USI8 with I2C configuration Tudor Ambarus
2023-12-14 15:51   ` Sam Protsenko
2023-12-15  8:04   ` Krzysztof Kozlowski
2023-12-14 10:52 ` [PATCH 11/13] arm64: dts: exynos: gs101: enable eeprom on gs101-oriole Tudor Ambarus
2023-12-14 15:55   ` Sam Protsenko
2023-12-15  8:07     ` Krzysztof Kozlowski
2023-12-14 10:52 ` [PATCH 12/13] arm64: defconfig: sync with savedefconfig Tudor Ambarus
2023-12-14 12:08   ` Arnd Bergmann
2023-12-14 13:19     ` Krzysztof Kozlowski
2023-12-14 14:09       ` Tudor Ambarus
2023-12-14 10:52 ` [PATCH 13/13] arm64: defconfig: make at24 eeprom builtin Tudor Ambarus
2023-12-14 13:20   ` Krzysztof Kozlowski

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).