From patchwork Fri Dec 13 09:05:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas Ferre X-Patchwork-Id: 300941 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from casper.infradead.org (unknown [IPv6:2001:770:15f::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 8A1352C0091 for ; Fri, 13 Dec 2013 20:06:29 +1100 (EST) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VrOhK-0005D6-3T; Fri, 13 Dec 2013 09:06:14 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1VrOhH-0000YO-Mx; Fri, 13 Dec 2013 09:06:11 +0000 Received: from eusmtp01.atmel.com ([212.144.249.242]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1VrOhF-0000XB-03 for linux-arm-kernel@lists.infradead.org; Fri, 13 Dec 2013 09:06:10 +0000 Received: from tenerife.corp.atmel.com (10.161.101.13) by eusmtp01.atmel.com (10.161.101.30) with Microsoft SMTP Server id 14.2.347.0; Fri, 13 Dec 2013 10:05:40 +0100 From: Nicolas Ferre To: Arnd Bergmann , Olof Johansson , Subject: [GIT PULL] at91: drivers for 3.14 #1 Date: Fri, 13 Dec 2013 10:05:45 +0100 Message-ID: <1386925545-10495-1-git-send-email-nicolas.ferre@atmel.com> X-Mailer: git-send-email 1.8.2.2 Organization: atmel MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20131213_040609_152893_1B253B11 X-CRM114-Status: UNSURE ( 7.71 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_PASS SPF: sender matches SPF record -0.0 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Herbert Xu , Nicolas Ferre , Linux Kernel list , Ludovic Desroches , Jean-Christophe PLAGNIOL-VILLARD , linux-arm-kernel X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org Arnd, Olof, Kevin, This is a "drivers" series that adds Device Tree support to Atmel crypto drivers (AES/[T]DES/SHA). As the DT part of this addition is in at91-3.14-dt I thought it would be simpler to take this series through arm-soc. I asked and got Herbert's blessing. The Device Tree entries documented in these patches are very simple and only declare the reg/irq values and the link to DMA. Thanks, best regards, The following changes since commit b46e837d8ef1f3c777bbf9513e2cdb5d87d6c374: ARM: at91/dt: remove old clk material (2013-12-02 15:31:29 +0100) are available in the git repository at: git://github.com/at91linux/linux-at91.git tags/at91-drivers for you to fetch changes up to 1ca5b7d95315c42cf0b78d33cd316e404a9f137c: crypto: atmel-sha - add sha information to the log (2013-12-12 18:39:36 +0100) ---------------------------------------------------------------- AT91 crypto drivers DT support: - add DT to sha/des/aes existing drivers - add DMA DT - all documentation added to crypto/atmel-crypto.txt file ---------------------------------------------------------------- Nicolas Ferre (4): crypto: atmel-aes - add support for Device Tree crypto: atmel-tdes - add support for Device Tree crypto: atmel-sha - add support for Device Tree crypto: atmel-sha - add sha information to the log .../devicetree/bindings/crypto/atmel-crypto.txt | 68 ++++++++++ drivers/crypto/atmel-aes.c | 143 ++++++++++++++------- drivers/crypto/atmel-sha.c | 103 +++++++++++---- drivers/crypto/atmel-tdes.c | 143 ++++++++++++++------- 4 files changed, 334 insertions(+), 123 deletions(-) create mode 100644 Documentation/devicetree/bindings/crypto/atmel-crypto.txt