From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C2911C433E7 for ; Fri, 9 Oct 2020 11:33:10 +0000 (UTC) Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) (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 6613322256 for ; Fri, 9 Oct 2020 11:33:10 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="djV8SNlV" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6613322256 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=merlin.20170209; h=Sender:Content-Transfer-Encoding: Content-Type:Cc:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References:Message-ID: Subject:To:From:Date:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=/zR+gjHlb+V0lrEgCRH/VXo2l9zk9Fwgq+5aTJ2EWxU=; b=djV8SNlVB4628epngKAEPegT2 1Qf5bo/4FxmQXBYrrdd/yXtKUUr/AX6OYCooMWMLSdY6NpmLSVRwNyUeN+2SAOX6c/HNCsK6jIToy KHducd+JDbTizUVIsnDZI89nBOJo/i6QkARzr6WvL19x6v9pwZHBPrPxp9fRCBEZniUo7/KVNY6Tx pbaRK3+VEG0h4lbZigs15VItmk2Fj+rj1IxPQjtmSoKx0fFttHmdVONvD8ZGSZ0/BV4eGXZdR07KN wS/i4FP+e93f62jU/qXsz2o9WSP+FDymW3GpiqANaTn9rV/r6VpDqzsk1R/d/hQmlWWDTFEJkrtX8 i7QkA5jfQ==; Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kQqcj-0001yD-Ok; Fri, 09 Oct 2020 11:31:45 +0000 Received: from foss.arm.com ([217.140.110.172]) by merlin.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1kQqch-0001xb-2L for linux-arm-kernel@lists.infradead.org; Fri, 09 Oct 2020 11:31:44 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 22299D6E; Fri, 9 Oct 2020 04:31:34 -0700 (PDT) Received: from bogus (unknown [10.57.53.233]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 55B1A3F66B; Fri, 9 Oct 2020 04:31:32 -0700 (PDT) Date: Fri, 9 Oct 2020 12:31:29 +0100 From: Sudeep Holla To: Viresh Kumar Subject: Re: [PATCH v2 0/4] mailbox: arm_mhu: Add ARM MHU doorbell controller driver Message-ID: <20201009113129.uqw5zrqztjgw6vga@bogus> References: <20201008191452.38672-1-sudeep.holla@arm.com> <20201009042237.yuumlyoiougygoqs@vireshk-i7> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20201009042237.yuumlyoiougygoqs@vireshk-i7> User-Agent: NeoMutt/20171215 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20201009_073143_179695_4970D724 X-CRM114-Status: GOOD ( 16.89 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: DTML , Vincent Guittot , Rob Herring , Jassi Brar , LKML , Bjorn Andersson , Jassi Brar , Rob Herring , Sudeep Holla , Frank Rowand , ALKML Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Fri, Oct 09, 2020 at 09:52:37AM +0530, Viresh Kumar wrote: > On 08-10-20, 20:14, Sudeep Holla wrote: > > Hi, > > > > These series adds ARM MHU doorbell controller driver based on the > > discussion[1]. The DT patches are just repost from Viresh's last posting[2] > > > > Regards, > > Sudeep > > > > v1[3]->v2: > > - No updates to binding patches(1-2) > > - Fixed memory leak and improved logic to find free channel reusing > > mhu_db_mbox_to_channel as suggested by Jassi > > > > [1] https://lore.kernel.org/r/20200909044618.deyx37pzocxiga7u@vireshk-i7 > > [2] https://lore.kernel.org/r/3874de094d193a08624a00a35067a3237e0b42b1.1600249102.git.viresh.kumar@linaro.org > > [3] https://lore.kernel.org/r/20200928114445.19689-1-sudeep.holla@arm.com > > > > Sudeep Holla (3): > > dt-bindings: mailbox: add doorbell support to ARM MHU > > mailbox: arm_mhu: Match only if compatible is "arm,mhu" > > mailbox: arm_mhu: Add ARM MHU doorbell driver > > > > Viresh Kumar (1): > > dt-bindings: mailbox : arm,mhu: Convert to Json-schema > > > > .../devicetree/bindings/mailbox/arm,mhu.yaml | 135 +++++++ > > .../devicetree/bindings/mailbox/arm-mhu.txt | 43 --- > > drivers/mailbox/Makefile | 2 +- > > drivers/mailbox/arm_mhu.c | 3 + > > drivers/mailbox/arm_mhu_db.c | 354 ++++++++++++++++++ > > 5 files changed, 493 insertions(+), 44 deletions(-) > > create mode 100644 Documentation/devicetree/bindings/mailbox/arm,mhu.yaml > > delete mode 100644 Documentation/devicetree/bindings/mailbox/arm-mhu.txt > > create mode 100644 drivers/mailbox/arm_mhu_db.c > > MAINTAINERS ? Duh ! Generated patches before I added and totally forgot to regenerate. Will wait for Jassi's response and then will post as addon if no comments or will respin the series. Sorry for that. -- Regards, Sudeep _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel