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 X-Spam-Level: X-Spam-Status: No, score=-9.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,T_DKIMWL_WL_HIGH,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4FEF5C28CC0 for ; Thu, 30 May 2019 10:16:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2352A25706 for ; Thu, 30 May 2019 10:16:06 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=amazon.com header.i=@amazon.com header.b="o0yzqznu" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728068AbfE3KQF (ORCPT ); Thu, 30 May 2019 06:16:05 -0400 Received: from smtp-fw-6002.amazon.com ([52.95.49.90]:30793 "EHLO smtp-fw-6002.amazon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728040AbfE3KQF (ORCPT ); Thu, 30 May 2019 06:16:05 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.com; i=@amazon.com; q=dns/txt; s=amazon201209; t=1559211364; x=1590747364; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=DL/rcsCbqNcAByuzqgScaFGxl1h2gE50EKedW9vARvQ=; b=o0yzqznumIYjv3w2i9cRCw2zyzOFW5hZXxNUqyLHP+tnxn1EW/yaFefo iE6gm1MuoCCrHPszUy7uSH60GbEUL1M4GdFfFf5F1H8WTzTSTDI/UZeg5 Qg+CaQB6AuqxuETuLJSqVapGDaDPV0mQhRQ2CU7U3BtAole7+zim2CjIO k=; X-IronPort-AV: E=Sophos;i="5.60,530,1549929600"; d="scan'208";a="404315198" Received: from iad6-co-svc-p1-lb1-vlan3.amazon.com (HELO email-inbound-relay-1e-a70de69e.us-east-1.amazon.com) ([10.124.125.6]) by smtp-border-fw-out-6002.iad6.amazon.com with ESMTP; 30 May 2019 10:16:03 +0000 Received: from EX13MTAUEA001.ant.amazon.com (iad55-ws-svc-p15-lb9-vlan2.iad.amazon.com [10.40.159.162]) by email-inbound-relay-1e-a70de69e.us-east-1.amazon.com (Postfix) with ESMTPS id DBCBDA20F3; Thu, 30 May 2019 10:15:59 +0000 (UTC) Received: from EX13D19EUB003.ant.amazon.com (10.43.166.69) by EX13MTAUEA001.ant.amazon.com (10.43.61.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 30 May 2019 10:15:58 +0000 Received: from ub6d44c9ce3e25c.ant.amazon.com (10.43.160.237) by EX13D19EUB003.ant.amazon.com (10.43.166.69) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 30 May 2019 10:15:50 +0000 From: Hanna Hawa To: , , , , , , , , , , CC: , , , , , , , Subject: [PATCH 1/2] dt-bindings: EDAC: add Amazon Annapurna Labs EDAC binding Date: Thu, 30 May 2019 13:15:28 +0300 Message-ID: <1559211329-13098-2-git-send-email-hhhawa@amazon.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1559211329-13098-1-git-send-email-hhhawa@amazon.com> References: <1559211329-13098-1-git-send-email-hhhawa@amazon.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.43.160.237] X-ClientProxiedBy: EX13D23UWC001.ant.amazon.com (10.43.162.196) To EX13D19EUB003.ant.amazon.com (10.43.166.69) Sender: linux-edac-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-edac@vger.kernel.org Signed-off-by: Hanna Hawa --- .../devicetree/bindings/edac/amazon-al-edac.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Documentation/devicetree/bindings/edac/amazon-al-edac.txt diff --git a/Documentation/devicetree/bindings/edac/amazon-al-edac.txt b/Documentation/devicetree/bindings/edac/amazon-al-edac.txt new file mode 100644 index 0000000..76165a4 --- /dev/null +++ b/Documentation/devicetree/bindings/edac/amazon-al-edac.txt @@ -0,0 +1,16 @@ +* Amazon Annapurna Labs EDAC + +Amazon Annapurna Labs Alpine V2 SoC is based on ARM Cortex-A57, and Alpine V3 SoC is +based on ARM Cortex-A72. +Alpine SoCs support L1 and L2 error correction check based on ARM implementation. + +Required properties: +- compatible: + should be "amazon,al-cortex-a57-edac" for Alpine V2. + should be "amazon,al-cortex-a72-edac" for Alpine V3. + +Example: + + edac_l1_l2 { + compatible = "amazon,al-cortex-a57-edac"; + }; -- 2.7.4