From patchwork Fri Jul 24 13:26:52 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Hawa, Hanna" X-Patchwork-Id: 11683259 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 52307618 for ; Fri, 24 Jul 2020 13:28:16 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 4B4F220767; Fri, 24 Jul 2020 13:28:16 +0000 (UTC) Delivered-To: soc@kernel.org Received: from smtp-fw-9102.amazon.com (smtp-fw-9102.amazon.com [207.171.184.29]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 1C973206D7; Fri, 24 Jul 2020 13:28:16 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=amazon.com header.i=@amazon.com header.b="MVFQKw/0" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1C973206D7 Authentication-Results: mail.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=amazon.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=prvs=467992d33=hhhawa@amazon.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.com; i=@amazon.com; q=dns/txt; s=amazon201209; t=1595597296; x=1627133296; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=ms8p39JBXOq6mRmiwkd4Xc5rcVrEYJFbOJoI9iWOR6k=; b=MVFQKw/0PpKjHZus5fXm36nNwSv+ja4v/A0RSXHKqIKTuopqVVGUxpwo ofBdcrdOrC1wYvbctgAckCC2lG3eJJYoY1th/UDLnXRVP/RppcOQ9GMCU mzAX41BP9/VDWi2kEL6Z9ZeeO6JiB5PrsZv8l8JVEpI4Dn7LOGpjth4n1 s=; IronPort-SDR: UbpMe/cmMJix2OuRZ7DMQ8k52mMqUDgP6N2QlOdXZjw5KV+8RMYV3yh/B4BVVvSO4G67jtWfZ0 SA1C4KeL6MiQ== X-IronPort-AV: E=Sophos;i="5.75,390,1589241600"; d="scan'208";a="62556593" Received: from sea32-co-svc-lb4-vlan3.sea.corp.amazon.com (HELO email-inbound-relay-2a-60ce1996.us-west-2.amazon.com) ([10.47.23.38]) by smtp-border-fw-out-9102.sea19.amazon.com with ESMTP; 24 Jul 2020 13:28:12 +0000 Received: from EX13MTAUEA002.ant.amazon.com (pdx4-ws-svc-p6-lb7-vlan3.pdx.amazon.com [10.170.41.166]) by email-inbound-relay-2a-60ce1996.us-west-2.amazon.com (Postfix) with ESMTPS id 677ACA1941; Fri, 24 Jul 2020 13:28:11 +0000 (UTC) Received: from EX13D19EUB001.ant.amazon.com (10.43.166.229) by EX13MTAUEA002.ant.amazon.com (10.43.61.77) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Fri, 24 Jul 2020 13:28:10 +0000 Received: from u8a88181e7b2355.ant.amazon.com (10.43.160.65) by EX13D19EUB001.ant.amazon.com (10.43.166.229) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Fri, 24 Jul 2020 13:28:02 +0000 From: Hanna Hawa To: , , , , , List-Id: CC: , , , , , , , , , , , , Subject: [PATCH v6 4/6] dt-bindings: arm: amazon: add missing alpine-v2 DT binding Date: Fri, 24 Jul 2020 16:26:52 +0300 Message-ID: <20200724132654.16549-5-hhhawa@amazon.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200724132654.16549-1-hhhawa@amazon.com> References: <20200724132654.16549-1-hhhawa@amazon.com> MIME-Version: 1.0 X-Originating-IP: [10.43.160.65] X-ClientProxiedBy: EX13D32UWA004.ant.amazon.com (10.43.160.193) To EX13D19EUB001.ant.amazon.com (10.43.166.229) Amazon Annapurna Labs Alpine family includes: Alpine-v1, Alpine-v2. This patch adds the missing DT binding of Alpine-v2 in amazon,al.yaml. Signed-off-by: Hanna Hawa Reviewed-by: Rob Herring Acked-by: Antoine Tenart --- .../devicetree/bindings/arm/amazon,al.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Documentation/devicetree/bindings/arm/amazon,al.yaml b/Documentation/devicetree/bindings/arm/amazon,al.yaml index 19ee489396f9..7de3a8c6e740 100644 --- a/Documentation/devicetree/bindings/arm/amazon,al.yaml +++ b/Documentation/devicetree/bindings/arm/amazon,al.yaml @@ -13,10 +13,15 @@ maintainers: properties: compatible: - items: - - const: al,alpine - model: - items: - - const: "Annapurna Labs Alpine Dev Board" + oneOf: + - description: Boards with Alpine V1 SoC + items: + - const: al,alpine + + - description: Boards with Alpine V2 SoC + items: + - enum: + - al,alpine-v2-evp + - const: al,alpine-v2 ...