From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5E02BC433EF for ; Thu, 21 Oct 2021 01:33:50 +0000 (UTC) Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A3D54610A4 for ; Thu, 21 Oct 2021 01:33:49 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org A3D54610A4 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.microsoft.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.denx.de Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 9366E833E3; Thu, 21 Oct 2021 03:33:47 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; unprotected) header.d=linux.microsoft.com header.i=@linux.microsoft.com header.b="R78OLoKi"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id D3E31833F2; Thu, 21 Oct 2021 03:33:44 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by phobos.denx.de (Postfix) with ESMTP id 2931B8029E for ; Thu, 21 Oct 2021 03:33:41 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=dphadke@linux.microsoft.com Received: by linux.microsoft.com (Postfix, from userid 1046) id E22DA20B7179; Wed, 20 Oct 2021 18:33:39 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com E22DA20B7179 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1634780019; bh=U/6yTMty8vs9fuT7BZ2/xBOkxoSZMoQYzk/f72ZJNCo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References:From; b=R78OLoKiRiaot3nFXwCJq/K1ZnxD/JcnPemDw3MboKT2BVfB3puoLiyMJwhwcf9Pj LXMi68a9E1JzVjOGF0HJb1pABE7imqj9ph1uM7Vm/l69CVTKUntqkKo2s4uBamS1Yd HOIGRuQdNqmUISIswZaAUYcrCbMNjxP53u9EmFWw= From: Dhananjay Phadke To: chiawei_wang@aspeedtech.com Cc: joel@jms.id.au, johnny_huang@aspeedtech.com, lukma@denx.de, mr.nuke.me@gmail.com, ryan_chen@aspeedtech.com, sjg@chromium.org, trini@konsulko.com, u-boot@lists.denx.de, Dhananjay Phadke Subject: Re: [PATCH next v7 04/12] crypto: aspeed: Add AST2600 HACE support Date: Wed, 20 Oct 2021 18:33:29 -0700 Message-Id: <307cf26f-92d0-a07c-78d7-6d1bf4dd2320@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <20211020024933.16964-5-chiawei_wang@aspeedtech.com> References: <20211020024933.16964-5-chiawei_wang@aspeedtech.com> In-Reply-To: <20211020024933.16964-5-chiawei_wang@aspeedtech.com> References: <20211020024933.16964-1-chiawei_wang@aspeedtech.com> <20211020024933.16964-5-chiawei_wang@aspeedtech.com> X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean On Wed, 20 Oct 2021, Chia-Wei Wang wrote: > +static const struct hash_ops aspeed_hace_ops = { > + .hash_init = aspeed_hace_init, > + .hash_update = aspeed_hace_update, > + .hash_finish = aspeed_hace_finish, > + .hash_digest_wd = aspeed_hace_digest_wd, > + .hash_digest = aspeed_hace_digest, > +}; > + > +static const struct udevice_id aspeed_hace_ids[] = { > + { .compatible = "aspeed,ast2600-hace" }, > + { } > +}; > + Why only ast2600? Is ast2500 engine different or this driver can also support it? Dhananjay