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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 77321C433F5 for ; Fri, 19 Nov 2021 01:07:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 58010610E9 for ; Fri, 19 Nov 2021 01:07:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233892AbhKSBKw (ORCPT ); Thu, 18 Nov 2021 20:10:52 -0500 Received: from mail-oo1-f43.google.com ([209.85.161.43]:43745 "EHLO mail-oo1-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231895AbhKSBKw (ORCPT ); Thu, 18 Nov 2021 20:10:52 -0500 Received: by mail-oo1-f43.google.com with SMTP id w5-20020a4a2745000000b002c2649b8d5fso2625551oow.10 for ; Thu, 18 Nov 2021 17:07:51 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=J7xF1Ruy1Zsr5uKClLiAhJlFdT48GSxSjpTzyXQZLA0=; b=X/v7aqt9+zIXntLhJVeC9p6Y9Y9rBsW050xNGdFPTgxg9HQKTjDos9XkjFm5MRHeHb 1Pcvc1SwQHSyb6KvH7sJ4rTZySIlsnKP0QLDNAIMf4ZBDewzGwW6kKM2/1Rnlpy3riVU 9BpHgUEwbbupyGijRKOhRs0wC5b7oBRfc08PVLP8EoofF60VxTJz3sPH3s/l1ZjnWg2I jz52+drsTceCS2t39TBb46XlK39rbgqo5oacKWYZAf36DMEJZ0O1JyYTnL/rlf+RuO4f H+VAg7pKtBC9vhuxjtH0c+L1KRVgGTciLfU6yTnlmx70VoMsw9aXfy9ir7wZJ0ct8ySB dVaw== X-Gm-Message-State: AOAM530F6cgS8Y10OCdFmpEBb6usomL0yQWYf9krvjSE0TBJHhdyij4F mE4AAyK6g/gJlbzmbQX45A== X-Google-Smtp-Source: ABdhPJzKo6/FJsF2qo0j7tAC6njlrJY9RLRXANHnK2WNurzqGE9JuI5HAEV1whTDVB7SAhWJkWjctQ== X-Received: by 2002:a4a:d284:: with SMTP id h4mr15642824oos.31.1637284070896; Thu, 18 Nov 2021 17:07:50 -0800 (PST) Received: from robh.at.kernel.org (66-90-148-213.dyn.grandenetworks.net. [66.90.148.213]) by smtp.gmail.com with ESMTPSA id x16sm287467otq.47.2021.11.18.17.07.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 18 Nov 2021 17:07:50 -0800 (PST) Received: (nullmailer pid 2149582 invoked by uid 1000); Fri, 19 Nov 2021 01:07:49 -0000 Date: Thu, 18 Nov 2021 19:07:49 -0600 From: Rob Herring To: jae.hyun.yoo@intel.com Cc: Rob Herring , Andrew Jeffery , Corey Minyard , devicetree@vger.kernel.org, Haiyue Wang , linux-arm-kernel@lists.infradead.org, openipmi-developer@lists.sourceforge.net, Jae Hyun Yoo , ChiaWei Wang , linux-aspeed@lists.ozlabs.org, Joel Stanley , Cedric Le Goater Subject: Re: [PATCH v3 2/6] dt-bindings: ipmi: bt-bmc: add 'clocks' as a required property Message-ID: References: <20211108190200.290957-1-jae.hyun.yoo@intel.com> <20211108190200.290957-3-jae.hyun.yoo@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211108190200.290957-3-jae.hyun.yoo@intel.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Mon, 08 Nov 2021 11:01:56 -0800, jae.hyun.yoo@intel.com wrote: > From: Jae Hyun Yoo > > If LPC BT driver is registered ahead of lpc-ctrl module, LPC BT > hardware block will be enabled without heart beating of LCLK until > lpc-ctrl enables the LCLK. This issue causes improper handling on > host interrupts when the host sends interrupts in that time frame. > Then kernel eventually forcibly disables the interrupt with > dumping stack and printing a 'nobody cared this irq' message out. > > To prevent this issue, all LPC sub drivers should enable LCLK > individually so this patch adds 'clocks' property as one of > required properties to enable the LCLK by the LPC IBT driver. > > Note: dtsi change in this patch series should be applied along with, > and dtbs should be re-compiled after applying this series since > it's adding a new required property otherwise the driver will not > be probed correctly. > > Signed-off-by: Jae Hyun Yoo > --- > v2 -> v3: > * Made commit message more descriptive. > > v1 -> v2: > * Added 'clocks' property into ibt bindings using > 'aspeed,ast2400-ibt-bmc.txt' because it's not merged into > 'aspeed-lpc.yaml' yet. The bindings merging could be done using a > separate patch later. > > .../devicetree/bindings/ipmi/aspeed,ast2400-ibt-bmc.txt | 2 ++ > 1 file changed, 2 insertions(+) > Reviewed-by: Rob Herring 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 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EFCA8C433F5 for ; Fri, 19 Nov 2021 01:09:30 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 AFF1E61A8C for ; Fri, 19 Nov 2021 01:09:30 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org AFF1E61A8C Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc: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=Z9wwY3LpAwVBrcTm6a6d54mljuJtdalS/nwHC6AKM60=; b=NYrEJPdJWeGn5x hhn6bXf/lewHZFm9mDKPCTn69FW0oT5Pyw2TZbvUir78QS+OX9dl7ZLdS5ZiPRewQYIV7T0YMur2i t1hqdqAa56tNTsN4Xoorr9xLyMRTYDhZjZh76XKMb0YnKaEFrvUFfgvJbWnmk4g5gJxdbrbKPf30g bbK3vCkFSBD+qVcQyisUuqDJpQTcVTlHFxDiuLQ/QTHJOUN8RBMx1+sATQFQyHbFGX0clJMeVLXzd JicjRUFqTHaEJGj4gmLfT+++IU3vql866Zj3pD8iaAe7iUpnVqE3FxDSIms1D3JST6pPqhioUZY1S E/D4HaGkbpYFGTlwm1PA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mnsNl-0098O1-7q; Fri, 19 Nov 2021 01:08:01 +0000 Received: from mail-oo1-f44.google.com ([209.85.161.44]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mnsNg-0098Mj-A7 for linux-arm-kernel@lists.infradead.org; Fri, 19 Nov 2021 01:07:57 +0000 Received: by mail-oo1-f44.google.com with SMTP id v19-20020a4a2453000000b002bb88bfb594so3147790oov.4 for ; Thu, 18 Nov 2021 17:07:51 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=J7xF1Ruy1Zsr5uKClLiAhJlFdT48GSxSjpTzyXQZLA0=; b=Yx1LTgvH1IA5AFzYliMY9TWjET/c7i1kcWi/sCc5nnuXKDSac+atB8qC9OMXvCXjfP MjgVNWmNpsWEYq4PpEoeaAyUWpHyFQKNoZkHiIqMsqv6b/x5Szc+5wR5cldIMhDbKLOM fTlz/cO/AChM5Lcm9XkpuU1iWjLfcyvs67DRnL4kNzmKZRKG8pLRGqGTxpG/twxvzsmW 2vz3HRD8MspZNeTiRwmypUjyL9UviEJsihFDOBKb8dGsTZ+Ut2lTDGVTwSoU4vZRpw8B OntQOVpxWdrFcMzP3rw+NmHykMqc3Pyjp7uK/cdFIpVl4G3N8Jzea8wONnh1sArbjP7v ZdpA== X-Gm-Message-State: AOAM5316MyM/lcQOeJ3x9YPe8mpJnMffx07wlAyYx5TiFysoQ/NSKqw4 YRRJKRB80StzmMF81pi7uQ== X-Google-Smtp-Source: ABdhPJzKo6/FJsF2qo0j7tAC6njlrJY9RLRXANHnK2WNurzqGE9JuI5HAEV1whTDVB7SAhWJkWjctQ== X-Received: by 2002:a4a:d284:: with SMTP id h4mr15642824oos.31.1637284070896; Thu, 18 Nov 2021 17:07:50 -0800 (PST) Received: from robh.at.kernel.org (66-90-148-213.dyn.grandenetworks.net. [66.90.148.213]) by smtp.gmail.com with ESMTPSA id x16sm287467otq.47.2021.11.18.17.07.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 18 Nov 2021 17:07:50 -0800 (PST) Received: (nullmailer pid 2149582 invoked by uid 1000); Fri, 19 Nov 2021 01:07:49 -0000 Date: Thu, 18 Nov 2021 19:07:49 -0600 From: Rob Herring To: jae.hyun.yoo@intel.com Cc: Rob Herring , Andrew Jeffery , Corey Minyard , devicetree@vger.kernel.org, Haiyue Wang , linux-arm-kernel@lists.infradead.org, openipmi-developer@lists.sourceforge.net, Jae Hyun Yoo , ChiaWei Wang , linux-aspeed@lists.ozlabs.org, Joel Stanley , Cedric Le Goater Subject: Re: [PATCH v3 2/6] dt-bindings: ipmi: bt-bmc: add 'clocks' as a required property Message-ID: References: <20211108190200.290957-1-jae.hyun.yoo@intel.com> <20211108190200.290957-3-jae.hyun.yoo@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20211108190200.290957-3-jae.hyun.yoo@intel.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211118_170756_375104_EEE45A11 X-CRM114-Status: GOOD ( 18.44 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , 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 Mon, 08 Nov 2021 11:01:56 -0800, jae.hyun.yoo@intel.com wrote: > From: Jae Hyun Yoo > > If LPC BT driver is registered ahead of lpc-ctrl module, LPC BT > hardware block will be enabled without heart beating of LCLK until > lpc-ctrl enables the LCLK. This issue causes improper handling on > host interrupts when the host sends interrupts in that time frame. > Then kernel eventually forcibly disables the interrupt with > dumping stack and printing a 'nobody cared this irq' message out. > > To prevent this issue, all LPC sub drivers should enable LCLK > individually so this patch adds 'clocks' property as one of > required properties to enable the LCLK by the LPC IBT driver. > > Note: dtsi change in this patch series should be applied along with, > and dtbs should be re-compiled after applying this series since > it's adding a new required property otherwise the driver will not > be probed correctly. > > Signed-off-by: Jae Hyun Yoo > --- > v2 -> v3: > * Made commit message more descriptive. > > v1 -> v2: > * Added 'clocks' property into ibt bindings using > 'aspeed,ast2400-ibt-bmc.txt' because it's not merged into > 'aspeed-lpc.yaml' yet. The bindings merging could be done using a > separate patch later. > > .../devicetree/bindings/ipmi/aspeed,ast2400-ibt-bmc.txt | 2 ++ > 1 file changed, 2 insertions(+) > Reviewed-by: Rob Herring _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel