Received: by 2002:a05:6a10:eb17:0:0:0:0 with SMTP id hx23csp3992045pxb; Tue, 7 Sep 2021 12:04:54 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzcvafKJiEi06mZDj2vlGSv4frpgSoRp0Uc/BKvERjMKF0OQP5Z62aOtAzNK6wS/klutZdM X-Received: by 2002:aa7:c251:: with SMTP id y17mr981517edo.400.1631041493780; Tue, 07 Sep 2021 12:04:53 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1631041493; cv=none; d=google.com; s=arc-20160816; b=whK6jjffTSyqtDC73zrF1865RR7eQjRut8/PKD16yYJLkhTDZUUqGF/CrxO8/LXYF0 pFVn7Abt9OxFKLqTsm8g5FjLtUPwK393nRUarPdyXiWYElL/km+ZX0KwfoJiep9WNG+e voqYdZ3qWOT7L6g/S0sXA6Os3Kpk4b5Cr12uj1LHbXUg+5ZEhY9H9ccrZiFuVmRK3qcs 6Ulufmy6j6SW80I2g/oYCorhxtudcshzbuEHdYk7iXscfp7keB4KgMEE7oJIdEtfCOiw dPir78CiMGCgzrHbberXHnFM4IhhihenCUOvzd8by2FkcUUfYSAwzZFZjdGSfhr7/OZO dU0g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=EyvbF4OwSKuXfdtx8BPpe9xq6Nj2lHDeKc2wnkMXzps=; b=PvymNz61505eolFvVgGj1/OPL0kC/bxQFrcB0N1VaqCzwmPohG8ugY2cId5YIFAfaG 5KGeieftNTqg9pFWJKAurID6ZuoxOlcJw1kCC6k+349uWdBM2EH3i6UDWYNpCg04W0Nk 2XFUevxbM+1Mu8lPj3dC/B0TGul7HPuAnX5f3Yr5/yZmcS3JWgOmXoj38rxZCqxSBzcs +tlZesr21+bnLpRXPEr1cmdta29ptSWW9V2m2BeX0eG1aIt0hbgkuD7jHCX3xbEjuthM 3DOamORz/AyaVWyWPUIBmAvTq5JtRR5gSiLZHheDVEse9/ckWHIBkp3nb72ecOKPozwo tsgQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id hd17si9129542ejc.727.2021.09.07.12.04.29; Tue, 07 Sep 2021 12:04:53 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242334AbhIGS6Y (ORCPT + 99 others); Tue, 7 Sep 2021 14:58:24 -0400 Received: from rosenzweig.io ([138.197.143.207]:46204 "EHLO rosenzweig.io" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237636AbhIGS6X (ORCPT ); Tue, 7 Sep 2021 14:58:23 -0400 Date: Tue, 7 Sep 2021 14:56:46 -0400 From: Alyssa Rosenzweig To: Sven Peter Cc: Jassi Brar , Rob Herring , Mark Kettenis , Hector Martin , Mohamed Mediouni , Stan Skowronek , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/3] dt-bindings: mailbox: Add Apple mailbox bindings Message-ID: References: <20210907145501.69161-1-sven@svenpeter.dev> <20210907145501.69161-3-sven@svenpeter.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210907145501.69161-3-sven@svenpeter.dev> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > + - description: > + M3 mailboxes are an older variant with a slightly different MMIO > + interface still found on the M1. > + items: > + - const: apple,t8103-m3-mailbox Would be nice to document an example of where an M3 mailbox is found. > + interrupts: > + minItems: 4 > + items: > + - description: send fifo is empty interrupt > + - description: send fifo is not empty interrupt > + - description: receive fifo is empty interrupt > + - description: receive fifo is not empty interrupt > + > + interrupt-names: > + minItems: 4 > + items: > + - const: send-empty > + - const: send-not-empty > + - const: recv-empty > + - const: recv-not-empty If the names became not-constant the asprintf thing goes away, not sure that's better or worse. > + clocks: > + description: > + Reference to the clock gate phandle(s) if required for this mailbox. > + Optional since not all mailboxes are attached to a clock gate. Do we do anything with the clocks at this point?