All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: linux-crypto@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org, linus.walleij@linaro.org,
	joakim.bech@linaro.org,
	Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	Rob Herring <robh+dt@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>
Subject: [PATCH 5/5] dt-bindings: add Atmel SHA204A I2C crypto processor
Date: Tue, 30 Apr 2019 18:29:09 +0200	[thread overview]
Message-ID: <20190430162910.16771-6-ard.biesheuvel@linaro.org> (raw)
In-Reply-To: <20190430162910.16771-1-ard.biesheuvel@linaro.org>

Add a compatible string for the Atmel SHA204A I2C crypto processor.

Cc: Rob Herring <robh+dt@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
---
 Documentation/devicetree/bindings/crypto/atmel-crypto.txt | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/Documentation/devicetree/bindings/crypto/atmel-crypto.txt b/Documentation/devicetree/bindings/crypto/atmel-crypto.txt
index 6b458bb2440d..a93d4b024d0e 100644
--- a/Documentation/devicetree/bindings/crypto/atmel-crypto.txt
+++ b/Documentation/devicetree/bindings/crypto/atmel-crypto.txt
@@ -79,3 +79,16 @@ atecc508a@c0 {
 	compatible = "atmel,atecc508a";
 	reg = <0xC0>;
 };
+
+* Symmetric Cryptography (I2C)
+
+Required properties:
+- compatible : must be "atmel,atsha204a".
+- reg: I2C bus address of the device.
+- clock-frequency: must be present in the i2c controller node.
+
+Example:
+atsha204a@c0 {
+	compatible = "atmel,atsha204a";
+	reg = <0xC0>;
+};
-- 
2.20.1


WARNING: multiple messages have this Message-ID (diff)
From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: linux-crypto@vger.kernel.org
Cc: Mark Rutland <mark.rutland@arm.com>,
	Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	linus.walleij@linaro.org, Rob Herring <robh+dt@kernel.org>,
	joakim.bech@linaro.org, linux-arm-kernel@lists.infradead.org
Subject: [PATCH 5/5] dt-bindings: add Atmel SHA204A I2C crypto processor
Date: Tue, 30 Apr 2019 18:29:09 +0200	[thread overview]
Message-ID: <20190430162910.16771-6-ard.biesheuvel@linaro.org> (raw)
In-Reply-To: <20190430162910.16771-1-ard.biesheuvel@linaro.org>

Add a compatible string for the Atmel SHA204A I2C crypto processor.

Cc: Rob Herring <robh+dt@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
---
 Documentation/devicetree/bindings/crypto/atmel-crypto.txt | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/Documentation/devicetree/bindings/crypto/atmel-crypto.txt b/Documentation/devicetree/bindings/crypto/atmel-crypto.txt
index 6b458bb2440d..a93d4b024d0e 100644
--- a/Documentation/devicetree/bindings/crypto/atmel-crypto.txt
+++ b/Documentation/devicetree/bindings/crypto/atmel-crypto.txt
@@ -79,3 +79,16 @@ atecc508a@c0 {
 	compatible = "atmel,atecc508a";
 	reg = <0xC0>;
 };
+
+* Symmetric Cryptography (I2C)
+
+Required properties:
+- compatible : must be "atmel,atsha204a".
+- reg: I2C bus address of the device.
+- clock-frequency: must be present in the i2c controller node.
+
+Example:
+atsha204a@c0 {
+	compatible = "atmel,atsha204a";
+	reg = <0xC0>;
+};
-- 
2.20.1


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

  parent reply	other threads:[~2019-04-30 16:29 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-30 16:29 [PATCH 0/5] synquacer - wire up Atmel SHA204A as RNG in DT and ACPI mode Ard Biesheuvel
2019-04-30 16:29 ` Ard Biesheuvel
2019-04-30 16:29 ` [PATCH 1/5] i2c: acpi: permit bus speed to be discovered after enumeration Ard Biesheuvel
2019-04-30 16:29   ` Ard Biesheuvel
2019-05-02  8:08   ` Mika Westerberg
2019-05-02  8:08     ` Mika Westerberg
2019-04-30 16:29 ` [PATCH 2/5] crypto: atmel-ecc: add support for ACPI probing on non-AT91 platforms Ard Biesheuvel
2019-04-30 16:29   ` Ard Biesheuvel
2019-04-30 16:29 ` [PATCH 3/5] crypto: atmel-ecc: factor out code that can be shared Ard Biesheuvel
2019-04-30 16:29   ` Ard Biesheuvel
2019-05-09 20:42   ` Linus Walleij
2019-05-09 20:42     ` Linus Walleij
2019-04-30 16:29 ` [PATCH 4/5] crypto: atmel-i2c: add support for SHA204A random number generator Ard Biesheuvel
2019-04-30 16:29   ` Ard Biesheuvel
2019-05-09 20:44   ` Linus Walleij
2019-05-09 20:44     ` Linus Walleij
2019-04-30 16:29 ` Ard Biesheuvel [this message]
2019-04-30 16:29   ` [PATCH 5/5] dt-bindings: add Atmel SHA204A I2C crypto processor Ard Biesheuvel
2019-05-09 20:44   ` Linus Walleij
2019-05-09 20:44     ` Linus Walleij
2019-05-16 16:06   ` Ard Biesheuvel
2019-05-16 16:06     ` Ard Biesheuvel
2019-05-16 16:06     ` Ard Biesheuvel
2019-05-24 13:12   ` Rob Herring
2019-05-24 13:12     ` Rob Herring
2019-05-24 13:15     ` Ard Biesheuvel
2019-05-24 13:15       ` Ard Biesheuvel
2019-05-24 13:36       ` Rob Herring
2019-05-24 13:36         ` Rob Herring

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=20190430162910.16771-6-ard.biesheuvel@linaro.org \
    --to=ard.biesheuvel@linaro.org \
    --cc=joakim.bech@linaro.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-crypto@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=robh+dt@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 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.