From: Rob Herring <robh@kernel.org>
To: Alexey Romanov <avromanov@salutedevices.com>
Cc: neil.armstrong@linaro.org, clabbe@baylibre.com,
herbert@gondor.apana.org.au, davem@davemloft.net,
krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org,
khilman@baylibre.com, jbrunet@baylibre.com,
martin.blumenstingl@googlemail.com, vadim.fedorenko@linux.dev,
linux-crypto@vger.kernel.org, linux-amlogic@lists.infradead.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org, kernel@salutedevices.com
Subject: Re: [PATCH v9 18/23] dt-bindings: crypto: meson: support new SoC's
Date: Mon, 26 Aug 2024 08:52:28 -0500 [thread overview]
Message-ID: <20240826135228.GA61588-robh@kernel.org> (raw)
In-Reply-To: <20240820145623.3500864-19-avromanov@salutedevices.com>
On Tue, Aug 20, 2024 at 05:56:18PM +0300, Alexey Romanov wrote:
> Now crypto module available at G12A/G12B/S4/A1/SM1/AXG.
>
> 1. Add new compatibles:
> - amlogic,g12a-crypto
> - amlogic,axg-crypto
> - amlogic,a1-crypto
> - amlogic,s4-crypto (uses a1-crypto as fallback)
>
> Difference between this compatibles:
> * Different registers offset and the number of setup descriptors.
> * GXL doesn't support hashing like the others.
> * G12A/B and A1/S4 crypto HW don't support 192 AES key.
> * GXL, G12A/B and AXG require a reverse IV key before processing.
>
> 2. Add power-domains in schema, which is required only for A1.
> This is specific vendor design: in old SoC's power domain for
> crypto HW was not configurable, but in A1-series it is configurable.
You added this in the previous patch. So I withdraw my Reviewed-by.
>
> Signed-off-by: Alexey Romanov <avromanov@salutedevices.com>
> ---
> .../bindings/crypto/amlogic,gxl-crypto.yaml | 21 +++++++++++++++++--
> 1 file changed, 19 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/crypto/amlogic,gxl-crypto.yaml b/Documentation/devicetree/bindings/crypto/amlogic,gxl-crypto.yaml
> index 7300328de1d5..106a9d1fed69 100644
> --- a/Documentation/devicetree/bindings/crypto/amlogic,gxl-crypto.yaml
> +++ b/Documentation/devicetree/bindings/crypto/amlogic,gxl-crypto.yaml
> @@ -11,8 +11,16 @@ maintainers:
>
> properties:
> compatible:
> - items:
> - - const: amlogic,gxl-crypto
> + oneOf:
> + - items:
> + - enum:
> + - amlogic,s4-crypto
> + - const: amlogic,a1-crypto
> + - enum:
> + - amlogic,gxl-crypto
> + - amlogic,axg-crypto
> + - amlogic,g12a-crypto
> + - amlogic,a1-crypto
>
> reg:
> maxItems: 1
> @@ -33,6 +41,15 @@ required:
> - interrupts
> - clocks
>
> +allOf:
> + - if:
> + properties:
> + compatible:
> + const: amlogic,a1-crypto
> + then:
> + required:
> + - power-domains
> +
> additionalProperties: false
>
> examples:
> --
> 2.34.1
>
next prev parent reply other threads:[~2024-08-26 13:52 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-20 14:56 [PATCH v9 00/23] Support more Amlogic SoC families in crypto driver Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 01/23] drivers: crypto: meson: don't hardcode IRQ count Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 02/23] drviers: crypto: meson: add platform data Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 03/23] drivers: crypto: meson: remove clock input Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 04/23] drivers: crypto: meson: add MMIO helpers Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 05/23] drivers: crypto: meson: move get_engine_number() Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 06/23] drivers: crypto: meson: drop status field from meson_flow Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 07/23] drivers: crypto: meson: move algs definition and cipher API to cipher.c Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 08/23] drivers: crypto: meson: cleanup defines Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 09/23] drivers: crypto: meson: process more than MAXDESCS descriptors Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 10/23] drivers: crypto: meson: avoid kzalloc in engine thread Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 11/23] drivers: crypto: meson: introduce hasher Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 12/23] drivers: crypto: meson: add support for AES-CTR Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 13/23] drivers: crypto: meson: use fallback for 192-bit keys Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 14/23] drivers: crypto: meson: add support for G12-series Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 15/23] drivers: crypto: meson: add support for AXG-series Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 16/23] drivers: crypto: meson: add support for A1-series Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 17/23] dt-bindings: crypto: meson: correct clk and remove second interrupt line Alexey Romanov
2024-08-26 13:50 ` Rob Herring (Arm)
2024-08-20 14:56 ` [PATCH v9 18/23] dt-bindings: crypto: meson: support new SoC's Alexey Romanov
2024-08-26 13:52 ` Rob Herring [this message]
2024-08-20 14:56 ` [PATCH v9 19/23] arch: arm64: dts: meson: gxl: correct crypto node definition Alexey Romanov
2024-08-26 13:50 ` Rob Herring
2024-08-20 14:56 ` [PATCH v9 20/23] arch: arm64: dts: meson: a1: add crypto node Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 21/23] arch: arm64: dts: meson: s4: " Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 22/23] arch: arm64: dts: meson: g12: " Alexey Romanov
2024-08-20 14:56 ` [PATCH v9 23/23] arch: arm64: dts: meson: axg: " Alexey Romanov
2024-08-21 8:28 ` Krzysztof Kozlowski
2024-08-20 15:19 ` [PATCH v9 00/23] Support more Amlogic SoC families in crypto driver neil.armstrong
2024-08-21 10:02 ` Alexey Romanov
2024-08-23 18:09 ` Anand Moon
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=20240826135228.GA61588-robh@kernel.org \
--to=robh@kernel.org \
--cc=avromanov@salutedevices.com \
--cc=clabbe@baylibre.com \
--cc=conor+dt@kernel.org \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=herbert@gondor.apana.org.au \
--cc=jbrunet@baylibre.com \
--cc=kernel@salutedevices.com \
--cc=khilman@baylibre.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.blumenstingl@googlemail.com \
--cc=neil.armstrong@linaro.org \
--cc=vadim.fedorenko@linux.dev \
/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).