From: Corey Minyard <minyard@acm.org>
To: linux-aspeed@lists.ozlabs.org
Subject: [PATCH -next v2 0/6] Add LCLK control into Aspeed LPC sub drivers
Date: Tue, 2 Nov 2021 19:59:22 -0500 [thread overview]
Message-ID: <20211103005922.GN4667@minyard.net> (raw)
In-Reply-To: <20211102203717.96794-1-jae.hyun.yoo@intel.com>
On Tue, Nov 02, 2021 at 01:37:11PM -0700, jae.hyun.yoo at intel.com wrote:
> From: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>
>
> Hello all,
>
> This series is for appliying below fix to all Aspped LPC sub drivers.
> https://lore.kernel.org/all/20201208091748.1920-1-wangzhiqiang.bj at bytedance.com/
Ok, I've added this to my next tree.
There was some duplicated code between the aspeed and bt files, but I'm
not sure it's enough to matter.
-corey
>
> An LPC sub driver can be enabled without using the lpc-ctrl driver or it
> can be registered ahead of lpc-ctrl depends on each system configuration and
> this difference introduces that LPC can be enabled without heart beating of
> LCLK so it 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 clock control logic into the remaining Aspeed LPC sub
> drivers.
>
> Please review this series.
>
> Thanks,
> Jae
>
> Changes sinve v1:
> - Added 'clocks' property into ibt and kcs-bmc bindings using
> 'aspeed,ast2400-ibt-bmc.txt' and 'aspeed,ast2400-kcs-bmc.yaml'
> respectively because these are not merged into 'aspeed-lpc.yaml' yet.
> The bindings merging could be done using a separate patch later.
>
> Jae Hyun Yoo (6):
> ARM: dts: aspeed: add LCLK setting into LPC IBT node
> dt-bindings: ipmi: bt-bmc: add 'clocks' as a required property
> ipmi: bt: add clock control logic
> ARM: dts: aspeed: add LCLK setting into LPC KCS nodes
> dt-bindings: ipmi: aspeed,kcs-bmc: add 'clocks' as a required property
> ipmi: kcs_bmc_aspeed: add clock control logic
>
> .../bindings/ipmi/aspeed,ast2400-ibt-bmc.txt | 2 ++
> .../bindings/ipmi/aspeed,ast2400-kcs-bmc.yaml | 7 +++++
> arch/arm/boot/dts/aspeed-g4.dtsi | 1 +
> arch/arm/boot/dts/aspeed-g5.dtsi | 5 +++
> arch/arm/boot/dts/aspeed-g6.dtsi | 5 +++
> drivers/char/ipmi/bt-bmc.c | 24 +++++++++++++-
> drivers/char/ipmi/kcs_bmc_aspeed.c | 31 ++++++++++++++++---
> 7 files changed, 70 insertions(+), 5 deletions(-)
>
> --
> 2.25.1
>
WARNING: multiple messages have this Message-ID (diff)
From: Corey Minyard <minyard@acm.org>
To: jae.hyun.yoo@intel.com
Cc: Rob Herring <robh+dt@kernel.org>, Joel Stanley <joel@jms.id.au>,
Andrew Jeffery <andrew@aj.id.au>, Cedric Le Goater <clg@kaod.org>,
Haiyue Wang <haiyue.wang@linux.intel.com>,
ChiaWei Wang <chiawei_wang@aspeedtech.com>,
Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-aspeed@lists.ozlabs.org,
openipmi-developer@lists.sourceforge.net
Subject: Re: [PATCH -next v2 0/6] Add LCLK control into Aspeed LPC sub drivers
Date: Tue, 2 Nov 2021 19:59:22 -0500 [thread overview]
Message-ID: <20211103005922.GN4667@minyard.net> (raw)
In-Reply-To: <20211102203717.96794-1-jae.hyun.yoo@intel.com>
On Tue, Nov 02, 2021 at 01:37:11PM -0700, jae.hyun.yoo@intel.com wrote:
> From: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>
>
> Hello all,
>
> This series is for appliying below fix to all Aspped LPC sub drivers.
> https://lore.kernel.org/all/20201208091748.1920-1-wangzhiqiang.bj@bytedance.com/
Ok, I've added this to my next tree.
There was some duplicated code between the aspeed and bt files, but I'm
not sure it's enough to matter.
-corey
>
> An LPC sub driver can be enabled without using the lpc-ctrl driver or it
> can be registered ahead of lpc-ctrl depends on each system configuration and
> this difference introduces that LPC can be enabled without heart beating of
> LCLK so it 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 clock control logic into the remaining Aspeed LPC sub
> drivers.
>
> Please review this series.
>
> Thanks,
> Jae
>
> Changes sinve v1:
> - Added 'clocks' property into ibt and kcs-bmc bindings using
> 'aspeed,ast2400-ibt-bmc.txt' and 'aspeed,ast2400-kcs-bmc.yaml'
> respectively because these are not merged into 'aspeed-lpc.yaml' yet.
> The bindings merging could be done using a separate patch later.
>
> Jae Hyun Yoo (6):
> ARM: dts: aspeed: add LCLK setting into LPC IBT node
> dt-bindings: ipmi: bt-bmc: add 'clocks' as a required property
> ipmi: bt: add clock control logic
> ARM: dts: aspeed: add LCLK setting into LPC KCS nodes
> dt-bindings: ipmi: aspeed,kcs-bmc: add 'clocks' as a required property
> ipmi: kcs_bmc_aspeed: add clock control logic
>
> .../bindings/ipmi/aspeed,ast2400-ibt-bmc.txt | 2 ++
> .../bindings/ipmi/aspeed,ast2400-kcs-bmc.yaml | 7 +++++
> arch/arm/boot/dts/aspeed-g4.dtsi | 1 +
> arch/arm/boot/dts/aspeed-g5.dtsi | 5 +++
> arch/arm/boot/dts/aspeed-g6.dtsi | 5 +++
> drivers/char/ipmi/bt-bmc.c | 24 +++++++++++++-
> drivers/char/ipmi/kcs_bmc_aspeed.c | 31 ++++++++++++++++---
> 7 files changed, 70 insertions(+), 5 deletions(-)
>
> --
> 2.25.1
>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Corey Minyard <minyard@acm.org>
To: jae.hyun.yoo@intel.com
Cc: Rob Herring <robh+dt@kernel.org>, Joel Stanley <joel@jms.id.au>,
Andrew Jeffery <andrew@aj.id.au>, Cedric Le Goater <clg@kaod.org>,
Haiyue Wang <haiyue.wang@linux.intel.com>,
ChiaWei Wang <chiawei_wang@aspeedtech.com>,
Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-aspeed@lists.ozlabs.org,
openipmi-developer@lists.sourceforge.net
Subject: Re: [PATCH -next v2 0/6] Add LCLK control into Aspeed LPC sub drivers
Date: Tue, 2 Nov 2021 19:59:22 -0500 [thread overview]
Message-ID: <20211103005922.GN4667@minyard.net> (raw)
In-Reply-To: <20211102203717.96794-1-jae.hyun.yoo@intel.com>
On Tue, Nov 02, 2021 at 01:37:11PM -0700, jae.hyun.yoo@intel.com wrote:
> From: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>
>
> Hello all,
>
> This series is for appliying below fix to all Aspped LPC sub drivers.
> https://lore.kernel.org/all/20201208091748.1920-1-wangzhiqiang.bj@bytedance.com/
Ok, I've added this to my next tree.
There was some duplicated code between the aspeed and bt files, but I'm
not sure it's enough to matter.
-corey
>
> An LPC sub driver can be enabled without using the lpc-ctrl driver or it
> can be registered ahead of lpc-ctrl depends on each system configuration and
> this difference introduces that LPC can be enabled without heart beating of
> LCLK so it 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 clock control logic into the remaining Aspeed LPC sub
> drivers.
>
> Please review this series.
>
> Thanks,
> Jae
>
> Changes sinve v1:
> - Added 'clocks' property into ibt and kcs-bmc bindings using
> 'aspeed,ast2400-ibt-bmc.txt' and 'aspeed,ast2400-kcs-bmc.yaml'
> respectively because these are not merged into 'aspeed-lpc.yaml' yet.
> The bindings merging could be done using a separate patch later.
>
> Jae Hyun Yoo (6):
> ARM: dts: aspeed: add LCLK setting into LPC IBT node
> dt-bindings: ipmi: bt-bmc: add 'clocks' as a required property
> ipmi: bt: add clock control logic
> ARM: dts: aspeed: add LCLK setting into LPC KCS nodes
> dt-bindings: ipmi: aspeed,kcs-bmc: add 'clocks' as a required property
> ipmi: kcs_bmc_aspeed: add clock control logic
>
> .../bindings/ipmi/aspeed,ast2400-ibt-bmc.txt | 2 ++
> .../bindings/ipmi/aspeed,ast2400-kcs-bmc.yaml | 7 +++++
> arch/arm/boot/dts/aspeed-g4.dtsi | 1 +
> arch/arm/boot/dts/aspeed-g5.dtsi | 5 +++
> arch/arm/boot/dts/aspeed-g6.dtsi | 5 +++
> drivers/char/ipmi/bt-bmc.c | 24 +++++++++++++-
> drivers/char/ipmi/kcs_bmc_aspeed.c | 31 ++++++++++++++++---
> 7 files changed, 70 insertions(+), 5 deletions(-)
>
> --
> 2.25.1
>
next prev parent reply other threads:[~2021-11-03 0:59 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-02 20:37 [PATCH -next v2 0/6] Add LCLK control into Aspeed LPC sub drivers jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` [PATCH -next v2 1/6] ARM: dts: aspeed: add LCLK setting into LPC IBT node jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` [PATCH -next v2 2/6] dt-bindings: ipmi: bt-bmc: add 'clocks' as a required property jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` [PATCH -next v2 3/6] ipmi: bt: add clock control logic jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` [PATCH -next v2 4/6] ARM: dts: aspeed: add LCLK setting into LPC KCS nodes jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` [PATCH -next v2 5/6] dt-bindings: ipmi: aspeed, kcs-bmc: add 'clocks' as a required property jae.hyun.yoo
2021-11-02 20:37 ` [PATCH -next v2 5/6] dt-bindings: ipmi: aspeed,kcs-bmc: " jae.hyun.yoo
2021-11-02 20:37 ` [PATCH -next v2 5/6] dt-bindings: ipmi: aspeed, kcs-bmc: " jae.hyun.yoo
2021-11-03 1:20 ` Rob Herring
2021-11-03 1:20 ` [PATCH -next v2 5/6] dt-bindings: ipmi: aspeed,kcs-bmc: " Rob Herring
2021-11-03 1:20 ` [PATCH -next v2 5/6] dt-bindings: ipmi: aspeed, kcs-bmc: " Rob Herring
2021-11-03 1:52 ` [PATCH -next v2 5/6] dt-bindings: ipmi: aspeed,kcs-bmc: " Corey Minyard
2021-11-03 1:52 ` Corey Minyard
2021-11-03 1:52 ` Corey Minyard
2021-11-03 16:13 ` Jae Hyun Yoo
2021-11-03 16:13 ` Jae Hyun Yoo
2021-11-03 16:13 ` Jae Hyun Yoo
2021-11-03 16:08 ` Jae Hyun Yoo
2021-11-03 16:08 ` Jae Hyun Yoo
2021-11-03 16:08 ` Jae Hyun Yoo
2021-11-03 16:29 ` Rob Herring
2021-11-03 16:29 ` Rob Herring
2021-11-03 16:29 ` Rob Herring
2021-11-03 17:26 ` Jae Hyun Yoo
2021-11-03 17:26 ` Jae Hyun Yoo
2021-11-03 17:26 ` Jae Hyun Yoo
2021-11-03 22:45 ` Joel Stanley
2021-11-03 22:45 ` Joel Stanley
2021-11-03 22:45 ` Joel Stanley
2021-11-04 16:16 ` Jae Hyun Yoo
2021-11-04 16:16 ` Jae Hyun Yoo
2021-11-04 16:16 ` Jae Hyun Yoo
2021-11-02 20:37 ` [PATCH -next v2 6/6] ipmi: kcs_bmc_aspeed: add clock control logic jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-02 20:37 ` jae.hyun.yoo
2021-11-03 0:59 ` Corey Minyard [this message]
2021-11-03 0:59 ` [PATCH -next v2 0/6] Add LCLK control into Aspeed LPC sub drivers Corey Minyard
2021-11-03 0:59 ` Corey Minyard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211103005922.GN4667@minyard.net \
--to=minyard@acm.org \
--cc=linux-aspeed@lists.ozlabs.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.