From patchwork Wed Apr 5 22:30:27 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Daniel Walker (danielwa)" X-Patchwork-Id: 1765786 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=2620:137:e000::1:20; helo=out1.vger.email; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Authentication-Results: legolas.ozlabs.org; dkim=temperror header.d=cisco.com header.i=@cisco.com header.a=rsa-sha256 header.s=iport header.b=YgP5ATYs; dkim-atps=neutral Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by legolas.ozlabs.org (Postfix) with ESMTP id 4PsK9l45lcz1yZF for ; Thu, 6 Apr 2023 08:31:39 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231655AbjDEWbh (ORCPT ); Wed, 5 Apr 2023 18:31:37 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58414 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230317AbjDEWbg (ORCPT ); Wed, 5 Apr 2023 18:31:36 -0400 Received: from alln-iport-1.cisco.com (alln-iport-1.cisco.com [173.37.142.88]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A2BBE192 for ; Wed, 5 Apr 2023 15:31:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cisco.com; i=@cisco.com; l=1370; q=dns/txt; s=iport; t=1680733895; x=1681943495; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=nODPX+s+Q/kJw5P5tL3y79XtWx5aevSrDkBNT3QoGeM=; b=YgP5ATYsHoEKnBWyzVBNrTQbloTLISf+f0D9J3BGd+vDgsqydTfgAoLq PyaA2YudkqbRnzSP8f0Whp6ojL1uAUWxhOVGTlkt2bf2QUkdas+Jl5p5V htvBDlDz/tVO/1ZeW3P3ICMuZaOLMsh1lkgqY3Gt+WCkkIn2w8Y+NtZ0s w=; X-IronPort-AV: E=Sophos;i="5.98,322,1673913600"; d="scan'208";a="96032875" Received: from rcdn-core-11.cisco.com ([173.37.93.147]) by alln-iport-1.cisco.com with ESMTP/TLS/DHE-RSA-SEED-SHA; 05 Apr 2023 22:30:31 +0000 Received: from localhost.localdomain ([10.160.65.27]) by rcdn-core-11.cisco.com (8.15.2/8.15.2) with ESMTP id 335MUSxJ031603; Wed, 5 Apr 2023 22:30:30 GMT From: Daniel Walker To: - Cc: Marcin Wierzbicki , Krzysztof Kozlowski , Rob Herring , Daniel Walker , Krzysztof Kozlowski , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 2/2] dt-bindings: cisco: document the CrayAR compatibles Date: Wed, 5 Apr 2023 15:30:27 -0700 Message-Id: <20230405223028.1268141-2-danielwa@cisco.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-Auto-Response-Suppress: DR, OOF, AutoReply X-Outbound-SMTP-Client: 10.160.65.27, [10.160.65.27] X-Outbound-Node: rcdn-core-11.cisco.com X-Spam-Status: No, score=-10.0 required=5.0 tests=DKIMWL_WL_HIGH,DKIMWL_WL_MED, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H2,SPF_HELO_PASS,SPF_NONE,USER_IN_DEF_DKIM_WL autolearn=unavailable autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Describe the compatible properties for the Cisco CrayAR SoC. Cc: xe-linux-external@cisco.com Cc: Marcin Wierzbicki Cc: Krzysztof Kozlowski Cc: Rob Herring Signed-off-by: Daniel Walker --- .../devicetree/bindings/arm/cisco/crayar.yaml | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/cisco/crayar.yaml diff --git a/Documentation/devicetree/bindings/arm/cisco/crayar.yaml b/Documentation/devicetree/bindings/arm/cisco/crayar.yaml new file mode 100644 index 000000000000..0ee4e6313ab0 --- /dev/null +++ b/Documentation/devicetree/bindings/arm/cisco/crayar.yaml @@ -0,0 +1,27 @@ +# SPDX-License-Identifier: GPL-2.0-only +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/arm/cisco/crayar.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Cisco CrayAR based Platforms + +maintainers: + - xe-linux-external@cisco.com + +description: + Cisco CrayAR boards with CrayAR SOC + +properties: + $nodename: + const: '/' + compatible: + oneOf: + - description: Cisco CrayAR Argos evaluation board + items: + - const: cisco,crayar-argos + - const: cisco,crayar + +additionalProperties: true + +...