* [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt
@ 2020-12-22 14:56 Jim Quinlan
2020-12-22 14:56 ` [PATCH v4 1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport Jim Quinlan
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Jim Quinlan @ 2020-12-22 14:56 UTC (permalink / raw)
To: Sudeep Holla, bcm-kernel-feedback-list, jim2101024, james.quinlan
Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list:SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE Mes...,
open list
v4 -- s/message-serviced/a2p/ in the bindings commit message.
-- Changed author/s-o-b/committer email address as my company is now
appending boilerplate text to all outgoing emails.
v3 -- Changed interrupt name from "message-serviced" to "a2p" (RobH)
v2 -- Correct commit message, s/msg/message/, and remove extra WS on
"dt-bindings" commit (Sudeep)
-- Change interrupt name to "message-serviced", move irq assignent to end
of function. (Sudeep)
v1 -- original.
Jim Quinlan (2):
dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport
firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt
.../devicetree/bindings/arm/arm,scmi.txt | 8 ++++
drivers/firmware/arm_scmi/smc.c | 38 ++++++++++++++++++-
2 files changed, 45 insertions(+), 1 deletion(-)
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v4 1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport
2020-12-22 14:56 [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt Jim Quinlan
@ 2020-12-22 14:56 ` Jim Quinlan
2020-12-23 2:48 ` Florian Fainelli
2021-01-03 16:40 ` Rob Herring
2021-01-04 14:57 ` [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt Jim Quinlan
2021-01-11 18:30 ` Sudeep Holla
2 siblings, 2 replies; 7+ messages in thread
From: Jim Quinlan @ 2020-12-22 14:56 UTC (permalink / raw)
To: Sudeep Holla, bcm-kernel-feedback-list, jim2101024, james.quinlan
Cc: Rob Herring,
open list:SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE Mes...,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list
In normal use of smc/hvc transport in SCMI the message completion is
indicated by the return of the SMC call. This commit provides for an
optional interrupt named "a2p" which is used instead to
indicate the completion of a message.
Signed-off-by: Jim Quinlan <jim2101024@gmail.com>
---
Documentation/devicetree/bindings/arm/arm,scmi.txt | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/Documentation/devicetree/bindings/arm/arm,scmi.txt b/Documentation/devicetree/bindings/arm/arm,scmi.txt
index b5ce5b39bb9c..667d58e0a659 100644
--- a/Documentation/devicetree/bindings/arm/arm,scmi.txt
+++ b/Documentation/devicetree/bindings/arm/arm,scmi.txt
@@ -31,6 +31,14 @@ Optional properties:
- mbox-names: shall be "tx" or "rx" depending on mboxes entries.
+- interrupts : when using smc or hvc transports, this optional
+ property indicates that msg completion by the platform is indicated
+ by an interrupt rather than by the return of the smc call. This
+ should not be used except when the platform requires such behavior.
+
+- interrupt-names : if "interrupts" is present, interrupt-names must also
+ be present and have the value "a2p".
+
See Documentation/devicetree/bindings/mailbox/mailbox.txt for more details
about the generic mailbox controller and client driver bindings.
--
2.17.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v4 1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport
2020-12-22 14:56 ` [PATCH v4 1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport Jim Quinlan
@ 2020-12-23 2:48 ` Florian Fainelli
2021-01-03 16:40 ` Rob Herring
1 sibling, 0 replies; 7+ messages in thread
From: Florian Fainelli @ 2020-12-23 2:48 UTC (permalink / raw)
To: Jim Quinlan, Sudeep Holla, bcm-kernel-feedback-list,
james.quinlan
Cc: Rob Herring,
open list:SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE Mes...,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list
On 12/22/2020 6:56 AM, Jim Quinlan wrote:
> In normal use of smc/hvc transport in SCMI the message completion is
> indicated by the return of the SMC call. This commit provides for an
> optional interrupt named "a2p" which is used instead to
> indicate the completion of a message.
>
> Signed-off-by: Jim Quinlan <jim2101024@gmail.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
--
Florian
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport
2020-12-22 14:56 ` [PATCH v4 1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport Jim Quinlan
2020-12-23 2:48 ` Florian Fainelli
@ 2021-01-03 16:40 ` Rob Herring
1 sibling, 0 replies; 7+ messages in thread
From: Rob Herring @ 2021-01-03 16:40 UTC (permalink / raw)
To: Jim Quinlan
Cc: bcm-kernel-feedback-list, Sudeep Holla,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list, james.quinlan,
open list:SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE Mes...,
Rob Herring
On Tue, 22 Dec 2020 09:56:02 -0500, Jim Quinlan wrote:
> In normal use of smc/hvc transport in SCMI the message completion is
> indicated by the return of the SMC call. This commit provides for an
> optional interrupt named "a2p" which is used instead to
> indicate the completion of a message.
>
> Signed-off-by: Jim Quinlan <jim2101024@gmail.com>
> ---
> Documentation/devicetree/bindings/arm/arm,scmi.txt | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
Reviewed-by: Rob Herring <robh@kernel.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt
2020-12-22 14:56 [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt Jim Quinlan
2020-12-22 14:56 ` [PATCH v4 1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport Jim Quinlan
@ 2021-01-04 14:57 ` Jim Quinlan
2021-01-04 16:02 ` Sudeep Holla
2021-01-11 18:30 ` Sudeep Holla
2 siblings, 1 reply; 7+ messages in thread
From: Jim Quinlan @ 2021-01-04 14:57 UTC (permalink / raw)
To: Sudeep Holla, bcm-kernel-feedback-list, Jim Quinlan, Jim Quinlan
Cc: open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list:SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE Mes...,
open list
Hi Sudeep,
Since RobH has reviewed patch 1/.2 and Florian has acked it, can you
please accept patches 1 & 2?
Thanks,
Jim Quinlan
Broadcom STB
On Tue, Dec 22, 2020 at 9:56 AM Jim Quinlan <jim2101024@gmail.com> wrote:
>
> v4 -- s/message-serviced/a2p/ in the bindings commit message.
> -- Changed author/s-o-b/committer email address as my company is now
> appending boilerplate text to all outgoing emails.
>
> v3 -- Changed interrupt name from "message-serviced" to "a2p" (RobH)
>
> v2 -- Correct commit message, s/msg/message/, and remove extra WS on
> "dt-bindings" commit (Sudeep)
> -- Change interrupt name to "message-serviced", move irq assignent to end
> of function. (Sudeep)
>
> v1 -- original.
>
> Jim Quinlan (2):
> dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport
> firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt
>
> .../devicetree/bindings/arm/arm,scmi.txt | 8 ++++
> drivers/firmware/arm_scmi/smc.c | 38 ++++++++++++++++++-
> 2 files changed, 45 insertions(+), 1 deletion(-)
>
> --
> 2.17.1
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt
2021-01-04 14:57 ` [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt Jim Quinlan
@ 2021-01-04 16:02 ` Sudeep Holla
0 siblings, 0 replies; 7+ messages in thread
From: Sudeep Holla @ 2021-01-04 16:02 UTC (permalink / raw)
To: Jim Quinlan
Cc: bcm-kernel-feedback-list, Jim Quinlan, Sudeep Holla,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list:SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE Mes...,
open list
On Mon, Jan 04, 2021 at 09:57:31AM -0500, Jim Quinlan wrote:
> Hi Sudeep,
>
> Since RobH has reviewed patch 1/.2 and Florian has acked it, can you
> please accept patches 1 & 2?
>
Sure, will start queuing patches later this week, will let you know when
I apply. Thanks.
--
Regards,
Sudeep
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt
2020-12-22 14:56 [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt Jim Quinlan
2020-12-22 14:56 ` [PATCH v4 1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport Jim Quinlan
2021-01-04 14:57 ` [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt Jim Quinlan
@ 2021-01-11 18:30 ` Sudeep Holla
2 siblings, 0 replies; 7+ messages in thread
From: Sudeep Holla @ 2021-01-11 18:30 UTC (permalink / raw)
To: james.quinlan, Jim Quinlan, bcm-kernel-feedback-list,
Florian Fainelli
Cc: Sudeep Holla,
open list:SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE Mes...,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list
On Tue, 22 Dec 2020 09:56:01 -0500, Jim Quinlan wrote:
> v4 -- s/message-serviced/a2p/ in the bindings commit message.
> -- Changed author/s-o-b/committer email address as my company is now
> appending boilerplate text to all outgoing emails.
>
> v3 -- Changed interrupt name from "message-serviced" to "a2p" (RobH)
>
> v2 -- Correct commit message, s/msg/message/, and remove extra WS on
> "dt-bindings" commit (Sudeep)
> -- Change interrupt name to "message-serviced", move irq assignent to end
> of function. (Sudeep)
>
> [...]
Applied to sudeep.holla/linux (for-next/scmi), thanks!
[1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport
https://git.kernel.org/sudeep.holla/c/99a064fb3a
[2/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt
https://git.kernel.org/sudeep.holla/c/dd820ee21d
--
Regards,
Sudeep
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-01-11 18:31 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-22 14:56 [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt Jim Quinlan
2020-12-22 14:56 ` [PATCH v4 1/2] dt-bindings: arm: Add optional interrupt to smc/hvc SCMI transport Jim Quinlan
2020-12-23 2:48 ` Florian Fainelli
2021-01-03 16:40 ` Rob Herring
2021-01-04 14:57 ` [PATCH v4 0/2] firmware: arm_scmi: Augment SMC/HVC to allow optional interrupt Jim Quinlan
2021-01-04 16:02 ` Sudeep Holla
2021-01-11 18:30 ` Sudeep Holla
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).