From: Krzysztof Kozlowski <krzk@kernel.org>
To: "Rob Herring (Arm)" <robh@kernel.org>,
Arturs Artamonovs <arturs.artamonovs@analog.com>
Cc: Olof Johansson <olof@lixom.net>,
devicetree@vger.kernel.org, Jiri Slaby <jirislaby@kernel.org>,
Catalin Marinas <catalin.marinas@arm.com>,
Michael Turquette <mturquette@baylibre.com>,
Thomas Gleixner <tglx@linutronix.de>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
soc@kernel.org, linux-clk@vger.kernel.org,
linux-serial@vger.kernel.org, Andi Shyti <andi.shyti@kernel.org>,
linux-arm-kernel@lists.infradead.org, linux-i2c@vger.kernel.org,
Greg Malysa <greg.malysa@timesys.com>,
Will Deacon <will@kernel.org>,
Philipp Zabel <p.zabel@pengutronix.de>,
Nathan Barrett-Morrison <nathan.morrison@timesys.com>,
Linus Walleij <linus.walleij@linaro.org>,
Arnd Bergmann <arnd@arndb.de>,
Utsav Agarwal <Utsav.Agarwal@analog.com>,
Bartosz Golaszewski <brgl@bgdev.pl>,
linux-kernel@vger.kernel.org,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
adsp-linux@analog.com, Conor Dooley <conor+dt@kernel.org>,
linux-gpio@vger.kernel.org, Stephen Boyd <sboyd@kernel.org>
Subject: Re: [PATCH 00/21] Adding support of ADI ARMv8 ADSP-SC598 SoC.
Date: Mon, 16 Sep 2024 08:57:47 +0200 [thread overview]
Message-ID: <f2fb3b68-4037-4f27-81c6-a1343b5d4f49@kernel.org> (raw)
In-Reply-To: <172617500940.774816.11284671975335527090.robh@kernel.org>
On 12/09/2024 23:04, Rob Herring (Arm) wrote:
>
> On Thu, 12 Sep 2024 19:24:45 +0100, Arturs Artamonovs wrote:
>> This set of patches based on ADI fork of Linux Kerenl that support family of ADSP-SC5xx
>> SoC's and used by customers for some time . Patch series contains minimal set
>> of changes to add ADSP-SC598 support to upstream kernel. This series include
>> UART,I2C,IRQCHIP,RCU drivers and device-tree to be able boot on EV-SC598-SOM
>> board into serial shell and able to reset the board. Current SOM board
>> requires I2C expander to enable UART output.
>>
>> UART,I2C and PINCTRL drivers are based on old Blackfin drivers with
>> ADSP-SC5xx related bug fixes and improvments.
>>
>> Signed-off-by: Arturs Artamonovs <arturs.artamonovs@analog.com>
>> ---
>> Arturs Artamonovs (21):
>> arm64: Add ADI ADSP-SC598 SoC
>> reset: Add driver for ADI ADSP-SC5xx reset controller
>> dt-bindigs: arm64: adi,sc598 bindings
>> dt-bindings: arm64: adi,sc598: Add ADSP-SC598 SoC bindings
>> clock:Add driver for ADI ADSP-SC5xx PLL
>> include: dt-binding: clock: add adi clock header file
>> clock: Add driver for ADI ADSP-SC5xx clock
>> dt-bindings: clock: adi,sc5xx-clocks: add bindings
>> gpio: add driver for ADI ADSP-SC5xx platform
>> dt-bindings: gpio: adi,adsp-port-gpio: add bindings
>> irqchip: Add irqchip for ADI ADSP-SC5xx platform
>> dt-bindings: irqchip: adi,adsp-pint: add binding
>> pinctrl: Add drivers for ADI ADSP-SC5xx platform
>> dt-bindings: pinctrl: adi,adsp-pinctrl: add bindings
>> i2c: Add driver for ADI ADSP-SC5xx platforms
>> dt-bindings: i2c: add i2c/twi driver documentation
>> serial: adi,uart: Add driver for ADI ADSP-SC5xx
>> dt-bindings: serial: adi,uart4: add adi,uart4 driver documentation
>> arm64: dts: adi: sc598: add device tree
>> arm64: defconfig: sc598 add minimal changes
>> MAINTAINERS: add adi sc5xx maintainers
>>
>> .../devicetree/bindings/arm/analog/adi,sc5xx.yaml | 24 +
>> .../bindings/clock/adi,sc5xx-clocks.yaml | 65 ++
>> .../bindings/gpio/adi,adsp-port-gpio.yaml | 69 ++
>> Documentation/devicetree/bindings/i2c/adi,twi.yaml | 71 ++
>> .../interrupt-controller/adi,adsp-pint.yaml | 51 +
>> .../bindings/pinctrl/adi,adsp-pinctrl.yaml | 83 ++
>> .../devicetree/bindings/serial/adi,uart.yaml | 85 ++
>> .../bindings/soc/adi/adi,reset-controller.yaml | 38 +
>> MAINTAINERS | 22 +
>> arch/arm64/Kconfig.platforms | 13 +
>> arch/arm64/boot/dts/Makefile | 1 +
>> arch/arm64/boot/dts/adi/Makefile | 2 +
>> arch/arm64/boot/dts/adi/sc598-som-ezkit.dts | 14 +
>> arch/arm64/boot/dts/adi/sc598-som.dtsi | 58 ++
>> arch/arm64/boot/dts/adi/sc59x-64.dtsi | 367 +++++++
>> arch/arm64/configs/defconfig | 6 +
>> drivers/clk/Kconfig | 9 +
>> drivers/clk/Makefile | 1 +
>> drivers/clk/adi/Makefile | 4 +
>> drivers/clk/adi/clk-adi-pll.c | 151 +++
>> drivers/clk/adi/clk-adi-sc598.c | 329 ++++++
>> drivers/clk/adi/clk.h | 99 ++
>> drivers/gpio/Kconfig | 8 +
>> drivers/gpio/Makefile | 1 +
>> drivers/gpio/gpio-adi-adsp-port.c | 145 +++
>> drivers/i2c/busses/Kconfig | 17 +
>> drivers/i2c/busses/Makefile | 1 +
>> drivers/i2c/busses/i2c-adi-twi.c | 940 ++++++++++++++++++
>> drivers/irqchip/Kconfig | 9 +
>> drivers/irqchip/Makefile | 2 +
>> drivers/irqchip/irq-adi-adsp.c | 310 ++++++
>> drivers/pinctrl/Kconfig | 12 +
>> drivers/pinctrl/Makefile | 1 +
>> drivers/pinctrl/pinctrl-adsp.c | 919 +++++++++++++++++
>> drivers/reset/Makefile | 1 +
>> drivers/soc/Makefile | 1 +
>> drivers/soc/adi/Makefile | 5 +
>> drivers/soc/adi/system.c | 257 +++++
>> drivers/tty/serial/Kconfig | 19 +-
>> drivers/tty/serial/Makefile | 1 +
>> drivers/tty/serial/adi_uart.c | 1045 ++++++++++++++++++++
>> include/dt-bindings/clock/adi-sc5xx-clock.h | 93 ++
>> include/dt-bindings/pinctrl/adi-adsp.h | 19 +
>> include/linux/soc/adi/adsp-gpio-port.h | 85 ++
>> include/linux/soc/adi/cpu.h | 107 ++
>> include/linux/soc/adi/rcu.h | 55 ++
>> include/linux/soc/adi/sc59x.h | 147 +++
>> include/linux/soc/adi/system_config.h | 65 ++
>> include/uapi/linux/serial_core.h | 3 +
>> 49 files changed, 5829 insertions(+), 1 deletion(-)
>> ---
>> base-commit: da3ea35007d0af457a0afc87e84fddaebc4e0b63
>> change-id: 20240909-test-8ec5f76fe6d2
>>
>> Best regards,
>> --
>> Arturs Artamonovs <arturs.artamonovs@analog.com>
>>
>>
>>
>
>
> My bot found new DTB warnings on the .dts files added or changed in this
> series.
>
> Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
> are fixed by another series. Ultimately, it is up to the platform
> maintainer whether these warnings are acceptable or not. No need to reply
> unless the platform maintainer has comments.
>
> If you already ran DT checks and didn't see these error(s), then
> make sure dt-schema is up to date:
>
> pip3 install dtschema --upgrade
>
>
> New warnings running 'make CHECK_DTBS=y adi/sc598-som-ezkit.dtb' for 20240912-test-v1-0-458fa57c8ccf@analog.com:
>
> arch/arm64/boot/dts/adi/sc598-som-ezkit.dtb: /scb-bus/sec@31089000: failed to match any schema with compatible: ['adi,system-event-controller']
This must be addressed and fixed.
Best regards,
Krzysztof
next prev parent reply other threads:[~2024-09-16 6:58 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-12 18:24 [PATCH 00/21] Adding support of ADI ARMv8 ADSP-SC598 SoC Arturs Artamonovs via B4 Relay
2024-09-12 18:24 ` [PATCH 01/21] arm64: Add ADI " Arturs Artamonovs via B4 Relay
2024-09-13 8:16 ` Arnd Bergmann
2024-09-13 9:54 ` Artamonovs, Arturs
2024-09-14 17:15 ` Markus Elfring
2024-09-14 17:56 ` Greg Kroah-Hartman
2024-09-16 6:42 ` Krzysztof Kozlowski
2024-09-12 18:24 ` [PATCH 02/21] reset: Add driver for ADI ADSP-SC5xx reset controller Arturs Artamonovs via B4 Relay
2024-09-13 7:22 ` Arnd Bergmann
2024-09-12 18:24 ` [PATCH 03/21] dt-bindigs: arm64: adi,sc598 bindings Arturs Artamonovs via B4 Relay
2024-09-13 22:05 ` Rob Herring
2024-09-16 6:44 ` Krzysztof Kozlowski
2024-09-12 18:24 ` [PATCH 04/21] dt-bindings: arm64: adi,sc598: Add ADSP-SC598 SoC bindings Arturs Artamonovs via B4 Relay
2024-09-16 6:45 ` Krzysztof Kozlowski
2024-09-12 18:24 ` [PATCH 05/21] clock:Add driver for ADI ADSP-SC5xx PLL Arturs Artamonovs via B4 Relay
2024-09-13 7:27 ` Arnd Bergmann
2024-09-16 6:46 ` Krzysztof Kozlowski
2024-09-12 18:24 ` [PATCH 06/21] include: dt-binding: clock: add adi clock header file Arturs Artamonovs via B4 Relay
2024-09-13 7:35 ` Arnd Bergmann
2024-09-16 6:47 ` Krzysztof Kozlowski
2024-09-16 6:48 ` Krzysztof Kozlowski
2024-09-12 18:24 ` [PATCH 07/21] clock: Add driver for ADI ADSP-SC5xx clock Arturs Artamonovs via B4 Relay
2024-09-14 14:18 ` kernel test robot
2024-09-12 18:24 ` [PATCH 08/21] dt-bindings: clock: adi,sc5xx-clocks: add bindings Arturs Artamonovs via B4 Relay
2024-09-13 22:06 ` Rob Herring
2024-09-12 18:24 ` [PATCH 09/21] gpio: add driver for ADI ADSP-SC5xx platform Arturs Artamonovs via B4 Relay
2024-09-13 7:38 ` Arnd Bergmann
2024-09-14 14:29 ` kernel test robot
2024-09-16 6:50 ` Krzysztof Kozlowski
2024-10-01 12:44 ` Linus Walleij
2024-10-01 14:29 ` Artamonovs, Arturs
2024-10-01 21:57 ` Greg Malysa
2024-10-02 13:53 ` Linus Walleij
2024-09-12 18:24 ` [PATCH 10/21] dt-bindings: gpio: adi,adsp-port-gpio: add bindings Arturs Artamonovs via B4 Relay
2024-09-16 6:53 ` Krzysztof Kozlowski
2024-09-12 18:24 ` [PATCH 11/21] irqchip: Add irqchip for ADI ADSP-SC5xx platform Arturs Artamonovs via B4 Relay
2024-09-13 20:40 ` kernel test robot
2024-09-16 6:56 ` Krzysztof Kozlowski
2024-10-02 10:29 ` Thomas Gleixner
2024-09-12 18:24 ` [PATCH 12/21] dt-bindings: irqchip: adi,adsp-pint: add binding Arturs Artamonovs via B4 Relay
2024-09-16 6:57 ` Krzysztof Kozlowski
2024-09-12 18:24 ` [PATCH 13/21] pinctrl: Add drivers for ADI ADSP-SC5xx platform Arturs Artamonovs via B4 Relay
2024-09-14 2:55 ` kernel test robot
2024-09-12 18:24 ` [PATCH 14/21] dt-bindings: pinctrl: adi,adsp-pinctrl: add bindings Arturs Artamonovs via B4 Relay
2024-09-13 22:09 ` Rob Herring
2024-09-12 18:25 ` [PATCH 15/21] i2c: Add driver for ADI ADSP-SC5xx platforms Arturs Artamonovs via B4 Relay
2024-09-13 7:59 ` Arnd Bergmann
2024-09-16 7:13 ` Krzysztof Kozlowski
2024-09-12 18:25 ` [PATCH 16/21] dt-bindings: i2c: add i2c/twi driver documentation Arturs Artamonovs via B4 Relay
2024-09-13 7:24 ` Arnd Bergmann
2024-09-12 18:25 ` [PATCH 17/21] serial: adi,uart: Add driver for ADI ADSP-SC5xx Arturs Artamonovs via B4 Relay
2024-09-12 18:25 ` [PATCH 18/21] dt-bindings: serial: adi,uart4: add adi,uart4 driver documentation Arturs Artamonovs via B4 Relay
2024-09-12 20:02 ` Rob Herring (Arm)
2024-09-13 14:06 ` Rob Herring
2024-09-12 18:25 ` [PATCH 19/21] arm64: dts: adi: sc598: add device tree Arturs Artamonovs via B4 Relay
2024-09-13 8:05 ` Arnd Bergmann
2024-09-16 7:04 ` Krzysztof Kozlowski
2024-09-12 18:25 ` [PATCH 20/21] arm64: defconfig: sc598 add minimal changes Arturs Artamonovs via B4 Relay
2024-09-13 7:44 ` Arnd Bergmann
2024-09-16 6:58 ` Krzysztof Kozlowski
2024-09-12 18:25 ` [PATCH 21/21] MAINTAINERS: add adi sc5xx maintainers Arturs Artamonovs via B4 Relay
2024-09-12 21:04 ` [PATCH 00/21] Adding support of ADI ARMv8 ADSP-SC598 SoC Rob Herring (Arm)
2024-09-16 6:57 ` Krzysztof Kozlowski [this message]
2024-09-13 8:20 ` Arnd Bergmann
2024-09-16 9:05 ` Krzysztof Kozlowski
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=f2fb3b68-4037-4f27-81c6-a1343b5d4f49@kernel.org \
--to=krzk@kernel.org \
--cc=Utsav.Agarwal@analog.com \
--cc=adsp-linux@analog.com \
--cc=andi.shyti@kernel.org \
--cc=arnd@arndb.de \
--cc=arturs.artamonovs@analog.com \
--cc=brgl@bgdev.pl \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=greg.malysa@timesys.com \
--cc=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=nathan.morrison@timesys.com \
--cc=olof@lixom.net \
--cc=p.zabel@pengutronix.de \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=soc@kernel.org \
--cc=tglx@linutronix.de \
--cc=will@kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).