From patchwork Tue Sep 10 19:05:08 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Talel Shenhar X-Patchwork-Id: 1160527 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=pass (p=quarantine dis=none) header.from=amazon.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=amazon.com header.i=@amazon.com header.b="Oez2clrR"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 46SZHS336mz9sNF for ; Wed, 11 Sep 2019 05:05:40 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727254AbfIJTFk (ORCPT ); Tue, 10 Sep 2019 15:05:40 -0400 Received: from smtp-fw-6002.amazon.com ([52.95.49.90]:28971 "EHLO smtp-fw-6002.amazon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725770AbfIJTFj (ORCPT ); Tue, 10 Sep 2019 15:05:39 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.com; i=@amazon.com; q=dns/txt; s=amazon201209; t=1568142339; x=1599678339; h=from:to:subject:date:message-id:in-reply-to:references: mime-version; bh=Pwyi2LvRvU2P6PihSn1GXJczaDqXg7KVNUJ3MtlBRvI=; b=Oez2clrRHSJnHK4lsXySGpuF0pLrd9BsTjDl060bwxIfrULMlmBhQsBf PTXusiQBJcMpAfYwgb5RmdJuuKRROS9kfH/UFe/2qHM0LfHk7+aPzQm8J Sxb5mZR/W5/CqPSF92/1mOZzbF2yJRTDQewR0LLrfGeL8TYUyZHJ2GAyq 4=; X-IronPort-AV: E=Sophos;i="5.64,490,1559520000"; d="scan'208";a="420463916" Received: from iad6-co-svc-p1-lb1-vlan3.amazon.com (HELO email-inbound-relay-2b-a7fdc47a.us-west-2.amazon.com) ([10.124.125.6]) by smtp-border-fw-out-6002.iad6.amazon.com with ESMTP; 10 Sep 2019 19:05:36 +0000 Received: from EX13MTAUEA001.ant.amazon.com (pdx4-ws-svc-p6-lb7-vlan2.pdx.amazon.com [10.170.41.162]) by email-inbound-relay-2b-a7fdc47a.us-west-2.amazon.com (Postfix) with ESMTPS id D241DC5AB7; Tue, 10 Sep 2019 19:05:35 +0000 (UTC) Received: from EX13D01EUB001.ant.amazon.com (10.43.166.194) by EX13MTAUEA001.ant.amazon.com (10.43.61.243) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Tue, 10 Sep 2019 19:05:35 +0000 Received: from udc4a3e82dbc15a031435.hfa15.amazon.com (10.43.160.5) by EX13D01EUB001.ant.amazon.com (10.43.166.194) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Tue, 10 Sep 2019 19:05:28 +0000 From: Talel Shenhar To: , , , , , , , , , , , , , Subject: [PATCH v2 1/3] dt-bindings: soc: al-pos: Amazon's Annapurna Labs POS Date: Tue, 10 Sep 2019 22:05:08 +0300 Message-ID: <1568142310-17622-2-git-send-email-talel@amazon.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1568142310-17622-1-git-send-email-talel@amazon.com> References: <1568142310-17622-1-git-send-email-talel@amazon.com> MIME-Version: 1.0 X-Originating-IP: [10.43.160.5] X-ClientProxiedBy: EX13D03UWC002.ant.amazon.com (10.43.162.160) To EX13D01EUB001.ant.amazon.com (10.43.166.194) Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Document Amazon's Annapurna Labs POS SoC binding. Signed-off-by: Talel Shenhar --- .../devicetree/bindings/soc/amazon/amazon,al-pos.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Documentation/devicetree/bindings/soc/amazon/amazon,al-pos.txt diff --git a/Documentation/devicetree/bindings/soc/amazon/amazon,al-pos.txt b/Documentation/devicetree/bindings/soc/amazon/amazon,al-pos.txt new file mode 100644 index 00000000..035cc571 --- /dev/null +++ b/Documentation/devicetree/bindings/soc/amazon/amazon,al-pos.txt @@ -0,0 +1,18 @@ +Amazon's Annapurna Labs POS + +POS node is defined to describe the Point Of Serialization (POS) logger +unit. + +Required properties: +- compatible: Shall be "amazon,al-pos". +- reg: POS logger resources. +- interrupts: should contain the interrupt for pos error event. + +Example: + +al_pos { + compatible = "amazon,al-pos"; + reg = <0x0 0xf0070084 0x0 0x00000008>; + interrupt-parent = <&amazon_system_fabric>; + interrupts = <24 IRQ_TYPE_LEVEL_HIGH>; +};