From patchwork Thu May 18 15:22:40 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jisheng Zhang X-Patchwork-Id: 684256 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C3FA8C7EE23 for ; Thu, 18 May 2023 15:35:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231649AbjERPfA (ORCPT ); Thu, 18 May 2023 11:35:00 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56332 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231926AbjERPeb (ORCPT ); Thu, 18 May 2023 11:34:31 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2F710199; Thu, 18 May 2023 08:34:21 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 9027065032; Thu, 18 May 2023 15:34:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 87A11C433A4; Thu, 18 May 2023 15:34:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1684424060; bh=tjHJaA4aRTqHjDCA/IBwb6cvsxUrvZf4t9KhrAVlN68=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=N+2e8i1lfdMXruROpTVyKaDJ/BPI9Ea/5vVZZEyGCrfBBlPT6gtw4l29LlhUgmTui kGstJMnnRklkzGtWGj/2rNoX2HiP7Q1t1wnyUtVPuFdaCwmL6a19JJp6itSOYx23JS Z49MrEa1cQloXMVH9moLwlowYTZdGI06hWjxWgBhEt4pdYu8HtXCXWjY6g7gwvNje5 neofy3LGe2CH6NNOCrAJjxnXvT+1cdXJvzRXT5WekdeIR0Yxm1FsCCIVQ1+tFlxyy/ bMTiVJ88uwM3d6lLYSwT4iLWR/K56JAC8XWcYyDvWiNzgvj8zMaD6vbhcRUiZE0+LT yI0Zl3R6xxZ7Q== From: Jisheng Zhang To: Thomas Gleixner , Marc Zyngier , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Palmer Dabbelt , Paul Walmsley , Albert Ou , Greg Kroah-Hartman , Jiri Slaby Cc: linux-kernel@vger.kernel.org, linux-riscv@lists.infradead.org, devicetree@vger.kernel.org, linux-serial@vger.kernel.org, Palmer Dabbelt , Conor Dooley Subject: [PATCH v4 06/10] dt-bindings: riscv: Add bouffalolab bl808 board compatibles Date: Thu, 18 May 2023 23:22:40 +0800 Message-Id: <20230518152244.2178-7-jszhang@kernel.org> X-Mailer: git-send-email 2.40.0 In-Reply-To: <20230518152244.2178-1-jszhang@kernel.org> References: <20230518152244.2178-1-jszhang@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-serial@vger.kernel.org Several SoMs and boards are available that feature the Bouffalolab bl808 SoC. Document the compatible strings. Signed-off-by: Jisheng Zhang Acked-by: Palmer Dabbelt Reviewed-by: Conor Dooley --- .../bindings/riscv/bouffalolab.yaml | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Documentation/devicetree/bindings/riscv/bouffalolab.yaml diff --git a/Documentation/devicetree/bindings/riscv/bouffalolab.yaml b/Documentation/devicetree/bindings/riscv/bouffalolab.yaml new file mode 100644 index 000000000000..3b25d1a5d04a --- /dev/null +++ b/Documentation/devicetree/bindings/riscv/bouffalolab.yaml @@ -0,0 +1,29 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/riscv/bouffalolab.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Bouffalo Lab Technology SoC-based boards + +maintainers: + - Jisheng Zhang + +description: + Bouffalo Lab Technology SoC-based boards + +properties: + $nodename: + const: '/' + compatible: + oneOf: + - description: Carrier boards for the Sipeed M1s SoM + items: + - enum: + - sipeed,m1s-dock + - const: sipeed,m1s + - const: bouffalolab,bl808 + +additionalProperties: true + +...