* [PATCH v2 0/4] arm64: exynos: gs101: add ACPM related nodes
@ 2024-12-12 16:00 Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 1/4] arm64: dts: exynos: gs101: add SRAM node Tudor Ambarus
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Tudor Ambarus @ 2024-12-12 16:00 UTC (permalink / raw)
To: Peter Griffin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Alim Akhtar, Catalin Marinas, Will Deacon
Cc: linux-arm-kernel, linux-samsung-soc, devicetree, linux-kernel,
andre.draszik, kernel-team, willmcvicker, peter.griffin,
daniel.lezcano, vincent.guittot, ulf.hansson, arnd, Tudor Ambarus
Define SRAM, mailbox and ACPM protocol in device tree.
Enable the mailbox and ACPM protocol in defconfig.
Use a constant for the channel type until the bindings header file gets
queued. Bindings and driver changes at:
Link: https://lore.kernel.org/all/20241212-acpm-v4-upstream-mbox-v4-0-02f8de92cfaf@linaro.org/
Link: https://lore.kernel.org/all/20241212-b4-acpm-v4-upstream-firmware-v4-0-3f18ca64f1b9@linaro.org/
Changes in v2:
- update nodes based on the bindings updates
- update mailbox and power-management (mailbox client) nodes to specify
channel type (doorbell or data) and channel ID.
v1:
Link: https://lore.kernel.org/linux-arm-kernel/20241205180200.203146-1-tudor.ambarus@linaro.org/
Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
---
Tudor Ambarus (4):
arm64: dts: exynos: gs101: add SRAM node
arm64: dts: exynos: gs101: add AP to APM mailbox node
arm64: dts: exynos: gs101: add ACPM protocol node
arm64: defconfig: enable ACPM protocol and Exynos mailbox
arch/arm64/boot/dts/exynos/google/gs101.dtsi | 39 ++++++++++++++++++++++++++++
arch/arm64/configs/defconfig | 2 ++
2 files changed, 41 insertions(+)
---
base-commit: fac04efc5c793dccbd07e2d59af9f90b7fc0dca4
change-id: 20241212-b4-acpm-v4-upstream-dts-2fc0b6a3bbda
Best regards,
--
Tudor Ambarus <tudor.ambarus@linaro.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/4] arm64: dts: exynos: gs101: add SRAM node
2024-12-12 16:00 [PATCH v2 0/4] arm64: exynos: gs101: add ACPM related nodes Tudor Ambarus
@ 2024-12-12 16:00 ` Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 2/4] arm64: dts: exynos: gs101: add AP to APM mailbox node Tudor Ambarus
` (2 subsequent siblings)
3 siblings, 0 replies; 8+ messages in thread
From: Tudor Ambarus @ 2024-12-12 16:00 UTC (permalink / raw)
To: Peter Griffin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Alim Akhtar, Catalin Marinas, Will Deacon
Cc: linux-arm-kernel, linux-samsung-soc, devicetree, linux-kernel,
andre.draszik, kernel-team, willmcvicker, peter.griffin,
daniel.lezcano, vincent.guittot, ulf.hansson, arnd, Tudor Ambarus
SRAM is used by the ACPM protocol to retrieve the ACPM channels
information, which includes the TX/RX rings among other channel
configuration data. Add the SRAM node.
Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
---
arch/arm64/boot/dts/exynos/google/gs101.dtsi | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/arch/arm64/boot/dts/exynos/google/gs101.dtsi b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
index 302c5beb224a..1441e9a252c2 100644
--- a/arch/arm64/boot/dts/exynos/google/gs101.dtsi
+++ b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
@@ -269,6 +269,14 @@ bldr_log_hist_reserved: bldr-log-hist-reserved@fd900000 {
};
};
+ apm_sram: sram@2039000 {
+ compatible = "mmio-sram";
+ reg = <0x0 0x2039000 0x40000>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+ ranges = <0x0 0x0 0x2039000 0x40000>;
+ };
+
soc: soc@0 {
compatible = "simple-bus";
#address-cells = <1>;
--
2.47.0.338.g60cca15819-goog
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 2/4] arm64: dts: exynos: gs101: add AP to APM mailbox node
2024-12-12 16:00 [PATCH v2 0/4] arm64: exynos: gs101: add ACPM related nodes Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 1/4] arm64: dts: exynos: gs101: add SRAM node Tudor Ambarus
@ 2024-12-12 16:00 ` Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 3/4] arm64: dts: exynos: gs101: add ACPM protocol node Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 4/4] arm64: defconfig: enable ACPM protocol and Exynos mailbox Tudor Ambarus
3 siblings, 0 replies; 8+ messages in thread
From: Tudor Ambarus @ 2024-12-12 16:00 UTC (permalink / raw)
To: Peter Griffin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Alim Akhtar, Catalin Marinas, Will Deacon
Cc: linux-arm-kernel, linux-samsung-soc, devicetree, linux-kernel,
andre.draszik, kernel-team, willmcvicker, peter.griffin,
daniel.lezcano, vincent.guittot, ulf.hansson, arnd, Tudor Ambarus
GS101 has 14 mailbox controllers. Add the AP to APM mailbox node.
Mailbox controllers have a shared register that can be used for passing
the mailbox messages. The AP to APM mailbox controller is used just as a
doorbell mechanism. It raises interrupt to the firmware after the mailbox
message has been written to SRAM where the TX/RX rings are defined.
Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
---
arch/arm64/boot/dts/exynos/google/gs101.dtsi | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/arch/arm64/boot/dts/exynos/google/gs101.dtsi b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
index 1441e9a252c2..04561e15b96c 100644
--- a/arch/arm64/boot/dts/exynos/google/gs101.dtsi
+++ b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
@@ -1445,6 +1445,15 @@ wakeup-interrupt-controller {
};
};
+ ap2apm_mailbox: mailbox@17610000 {
+ compatible = "google,gs101-mbox";
+ reg = <0x17610000 0x1000>;
+ clocks = <&cmu_apm CLK_GOUT_APM_MAILBOX_APM_AP_PCLK>;
+ clock-names = "pclk";
+ interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH 0>;
+ #mbox-cells = <2>;
+ };
+
pinctrl_gsactrl: pinctrl@17940000 {
compatible = "google,gs101-pinctrl";
reg = <0x17940000 0x00001000>;
--
2.47.0.338.g60cca15819-goog
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 3/4] arm64: dts: exynos: gs101: add ACPM protocol node
2024-12-12 16:00 [PATCH v2 0/4] arm64: exynos: gs101: add ACPM related nodes Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 1/4] arm64: dts: exynos: gs101: add SRAM node Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 2/4] arm64: dts: exynos: gs101: add AP to APM mailbox node Tudor Ambarus
@ 2024-12-12 16:00 ` Tudor Ambarus
2024-12-16 18:54 ` William McVicker
2024-12-12 16:00 ` [PATCH v2 4/4] arm64: defconfig: enable ACPM protocol and Exynos mailbox Tudor Ambarus
3 siblings, 1 reply; 8+ messages in thread
From: Tudor Ambarus @ 2024-12-12 16:00 UTC (permalink / raw)
To: Peter Griffin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Alim Akhtar, Catalin Marinas, Will Deacon
Cc: linux-arm-kernel, linux-samsung-soc, devicetree, linux-kernel,
andre.draszik, kernel-team, willmcvicker, peter.griffin,
daniel.lezcano, vincent.guittot, ulf.hansson, arnd, Tudor Ambarus
Add the ACPM protocol node. ACPM protocol provides interface for all
the client drivers making use of the features offered by the
Active Power Management (APM) module.
Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
---
arch/arm64/boot/dts/exynos/google/gs101.dtsi | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/arch/arm64/boot/dts/exynos/google/gs101.dtsi b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
index 04561e15b96c..8c3f07371912 100644
--- a/arch/arm64/boot/dts/exynos/google/gs101.dtsi
+++ b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
@@ -277,6 +277,28 @@ apm_sram: sram@2039000 {
ranges = <0x0 0x0 0x2039000 0x40000>;
};
+ firmware {
+ acpm_ipc: power-management {
+ compatible = "google,gs101-acpm-ipc";
+ mboxes = <&ap2apm_mailbox 0 0
+ &ap2apm_mailbox 0 1
+ &ap2apm_mailbox 0 2
+ &ap2apm_mailbox 0 3
+ &ap2apm_mailbox 0 4
+ &ap2apm_mailbox 0 5
+ &ap2apm_mailbox 0 6
+ &ap2apm_mailbox 0 7
+ &ap2apm_mailbox 0 8
+ &ap2apm_mailbox 0 9
+ &ap2apm_mailbox 0 10
+ &ap2apm_mailbox 0 11
+ &ap2apm_mailbox 0 12
+ &ap2apm_mailbox 0 13
+ &ap2apm_mailbox 0 14>;
+ shmem = <&apm_sram>;
+ };
+ };
+
soc: soc@0 {
compatible = "simple-bus";
#address-cells = <1>;
--
2.47.0.338.g60cca15819-goog
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v2 4/4] arm64: defconfig: enable ACPM protocol and Exynos mailbox
2024-12-12 16:00 [PATCH v2 0/4] arm64: exynos: gs101: add ACPM related nodes Tudor Ambarus
` (2 preceding siblings ...)
2024-12-12 16:00 ` [PATCH v2 3/4] arm64: dts: exynos: gs101: add ACPM protocol node Tudor Ambarus
@ 2024-12-12 16:00 ` Tudor Ambarus
3 siblings, 0 replies; 8+ messages in thread
From: Tudor Ambarus @ 2024-12-12 16:00 UTC (permalink / raw)
To: Peter Griffin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Alim Akhtar, Catalin Marinas, Will Deacon
Cc: linux-arm-kernel, linux-samsung-soc, devicetree, linux-kernel,
andre.draszik, kernel-team, willmcvicker, peter.griffin,
daniel.lezcano, vincent.guittot, ulf.hansson, arnd, Tudor Ambarus
Enable the Samsung Exynos ACPM protocol and its transport layer, the
Exynos mailbox driver. Samsung Exynos platforms implement ACPM to
provide support for PMIC, clock frequency scaling, clock configuration
and temperature sensors.
Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
---
arch/arm64/configs/defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index c62831e61586..91139b1cf813 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -262,6 +262,7 @@ CONFIG_IMX_SCU=y
CONFIG_QCOM_TZMEM_MODE_SHMBRIDGE=y
CONFIG_QCOM_QSEECOM=y
CONFIG_QCOM_QSEECOM_UEFISECAPP=y
+CONFIG_EXYNOS_ACPM_PROTOCOL=m
CONFIG_GNSS=m
CONFIG_GNSS_MTK_SERIAL=m
CONFIG_MTD=y
@@ -1378,6 +1379,7 @@ CONFIG_HWSPINLOCK_QCOM=y
CONFIG_TEGRA186_TIMER=y
CONFIG_RENESAS_OSTM=y
CONFIG_ARM_MHU=y
+CONFIG_EXYNOS_MBOX=m
CONFIG_IMX_MBOX=y
CONFIG_OMAP2PLUS_MBOX=m
CONFIG_PLATFORM_MHU=y
--
2.47.0.338.g60cca15819-goog
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 3/4] arm64: dts: exynos: gs101: add ACPM protocol node
2024-12-12 16:00 ` [PATCH v2 3/4] arm64: dts: exynos: gs101: add ACPM protocol node Tudor Ambarus
@ 2024-12-16 18:54 ` William McVicker
2024-12-17 7:20 ` Tudor Ambarus
0 siblings, 1 reply; 8+ messages in thread
From: William McVicker @ 2024-12-16 18:54 UTC (permalink / raw)
To: Tudor Ambarus
Cc: Peter Griffin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Alim Akhtar, Catalin Marinas, Will Deacon, linux-arm-kernel,
linux-samsung-soc, devicetree, linux-kernel, andre.draszik,
kernel-team, daniel.lezcano, vincent.guittot, ulf.hansson, arnd
Hi Tudor,
On 12/12/2024, Tudor Ambarus wrote:
> Add the ACPM protocol node. ACPM protocol provides interface for all
> the client drivers making use of the features offered by the
> Active Power Management (APM) module.
>
> Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
> ---
> arch/arm64/boot/dts/exynos/google/gs101.dtsi | 22 ++++++++++++++++++++++
> 1 file changed, 22 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/exynos/google/gs101.dtsi b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
> index 04561e15b96c..8c3f07371912 100644
> --- a/arch/arm64/boot/dts/exynos/google/gs101.dtsi
> +++ b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
> @@ -277,6 +277,28 @@ apm_sram: sram@2039000 {
> ranges = <0x0 0x0 0x2039000 0x40000>;
> };
>
> + firmware {
> + acpm_ipc: power-management {
> + compatible = "google,gs101-acpm-ipc";
> + mboxes = <&ap2apm_mailbox 0 0
> + &ap2apm_mailbox 0 1
> + &ap2apm_mailbox 0 2
> + &ap2apm_mailbox 0 3
> + &ap2apm_mailbox 0 4
> + &ap2apm_mailbox 0 5
> + &ap2apm_mailbox 0 6
> + &ap2apm_mailbox 0 7
> + &ap2apm_mailbox 0 8
> + &ap2apm_mailbox 0 9
> + &ap2apm_mailbox 0 10
> + &ap2apm_mailbox 0 11
> + &ap2apm_mailbox 0 12
> + &ap2apm_mailbox 0 13
> + &ap2apm_mailbox 0 14>;
> + shmem = <&apm_sram>;
> + };
> + };
You mentioned in the previous patch that "GS101 has 14 mailbox controllers",
but here you have 15 mailboxes. I looked at the downstream driver and see the
number of mailboxes is defined by the ACPM framework (firmware) which is read
from SRAM initdata. Dumping that, I see there are 15 ACPM channels. Have you
looked into into extracting the data from the initdata SRAM address?
Thanks,
Will
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 3/4] arm64: dts: exynos: gs101: add ACPM protocol node
2024-12-16 18:54 ` William McVicker
@ 2024-12-17 7:20 ` Tudor Ambarus
2024-12-17 8:38 ` Tudor Ambarus
0 siblings, 1 reply; 8+ messages in thread
From: Tudor Ambarus @ 2024-12-17 7:20 UTC (permalink / raw)
To: William McVicker
Cc: Peter Griffin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Alim Akhtar, Catalin Marinas, Will Deacon, linux-arm-kernel,
linux-samsung-soc, devicetree, linux-kernel, andre.draszik,
kernel-team, daniel.lezcano, vincent.guittot, ulf.hansson, arnd
On 12/16/24 6:54 PM, William McVicker wrote:
> Hi Tudor,
Hi, William!
>
> On 12/12/2024, Tudor Ambarus wrote:
>> Add the ACPM protocol node. ACPM protocol provides interface for all
>> the client drivers making use of the features offered by the
>> Active Power Management (APM) module.
>>
>> Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
>> ---
>> arch/arm64/boot/dts/exynos/google/gs101.dtsi | 22 ++++++++++++++++++++++
>> 1 file changed, 22 insertions(+)
>>
>> diff --git a/arch/arm64/boot/dts/exynos/google/gs101.dtsi b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
>> index 04561e15b96c..8c3f07371912 100644
>> --- a/arch/arm64/boot/dts/exynos/google/gs101.dtsi
>> +++ b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
>> @@ -277,6 +277,28 @@ apm_sram: sram@2039000 {
>> ranges = <0x0 0x0 0x2039000 0x40000>;
>> };
>>
>> + firmware {
>> + acpm_ipc: power-management {
>> + compatible = "google,gs101-acpm-ipc";
>> + mboxes = <&ap2apm_mailbox 0 0
>> + &ap2apm_mailbox 0 1
>> + &ap2apm_mailbox 0 2
>> + &ap2apm_mailbox 0 3
>> + &ap2apm_mailbox 0 4
>> + &ap2apm_mailbox 0 5
>> + &ap2apm_mailbox 0 6
>> + &ap2apm_mailbox 0 7
>> + &ap2apm_mailbox 0 8
>> + &ap2apm_mailbox 0 9
>> + &ap2apm_mailbox 0 10
>> + &ap2apm_mailbox 0 11
>> + &ap2apm_mailbox 0 12
>> + &ap2apm_mailbox 0 13
>> + &ap2apm_mailbox 0 14>;
>> + shmem = <&apm_sram>;
>> + };
>> + };
>
> You mentioned in the previous patch that "GS101 has 14 mailbox controllers",
Right, I got the number from the GS101 memory map.
> but here you have 15 mailboxes. I looked at the downstream driver and see the
Here we have a single mailbox controller, ap2apm_mailbox, with 15 channels.
> number of mailboxes is defined by the ACPM framework (firmware) which is read
s/mailboxes/mailbox channels that ACPM uses/
> from SRAM initdata. Dumping that, I see there are 15 ACPM channels. Have you
Correct.
> looked into into extracting the data from the initdata SRAM address?
>
Yes, that's the reason why I defined the 15 channels from above for the
ap2apm_mailbox controller.
Cheers,
ta
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 3/4] arm64: dts: exynos: gs101: add ACPM protocol node
2024-12-17 7:20 ` Tudor Ambarus
@ 2024-12-17 8:38 ` Tudor Ambarus
0 siblings, 0 replies; 8+ messages in thread
From: Tudor Ambarus @ 2024-12-17 8:38 UTC (permalink / raw)
To: William McVicker
Cc: Peter Griffin, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Alim Akhtar, Catalin Marinas, Will Deacon, linux-arm-kernel,
linux-samsung-soc, devicetree, linux-kernel, andre.draszik,
kernel-team, daniel.lezcano, vincent.guittot, ulf.hansson, arnd
On 12/17/24 7:20 AM, Tudor Ambarus wrote:
>
>
> On 12/16/24 6:54 PM, William McVicker wrote:
>> Hi Tudor,
>
> Hi, William!
>
>>
>> On 12/12/2024, Tudor Ambarus wrote:
>>> Add the ACPM protocol node. ACPM protocol provides interface for all
>>> the client drivers making use of the features offered by the
>>> Active Power Management (APM) module.
>>>
>>> Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org>
>>> ---
>>> arch/arm64/boot/dts/exynos/google/gs101.dtsi | 22 ++++++++++++++++++++++
>>> 1 file changed, 22 insertions(+)
>>>
>>> diff --git a/arch/arm64/boot/dts/exynos/google/gs101.dtsi b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
>>> index 04561e15b96c..8c3f07371912 100644
>>> --- a/arch/arm64/boot/dts/exynos/google/gs101.dtsi
>>> +++ b/arch/arm64/boot/dts/exynos/google/gs101.dtsi
>>> @@ -277,6 +277,28 @@ apm_sram: sram@2039000 {
>>> ranges = <0x0 0x0 0x2039000 0x40000>;
>>> };
>>>
>>> + firmware {
>>> + acpm_ipc: power-management {
>>> + compatible = "google,gs101-acpm-ipc";
>>> + mboxes = <&ap2apm_mailbox 0 0
>>> + &ap2apm_mailbox 0 1
>>> + &ap2apm_mailbox 0 2
>>> + &ap2apm_mailbox 0 3
>>> + &ap2apm_mailbox 0 4
>>> + &ap2apm_mailbox 0 5
>>> + &ap2apm_mailbox 0 6
>>> + &ap2apm_mailbox 0 7
>>> + &ap2apm_mailbox 0 8
>>> + &ap2apm_mailbox 0 9
>>> + &ap2apm_mailbox 0 10
>>> + &ap2apm_mailbox 0 11
>>> + &ap2apm_mailbox 0 12
>>> + &ap2apm_mailbox 0 13
>>> + &ap2apm_mailbox 0 14>;
>>> + shmem = <&apm_sram>;
>>> + };
>>> + };
>>
>> You mentioned in the previous patch that "GS101 has 14 mailbox controllers",
>
> Right, I got the number from the GS101 memory map.
>
>> but here you have 15 mailboxes. I looked at the downstream driver and see the
>
> Here we have a single mailbox controller, ap2apm_mailbox, with 15 channels.
>
>> number of mailboxes is defined by the ACPM framework (firmware) which is read
>
> s/mailboxes/mailbox channels that ACPM uses/
>
>> from SRAM initdata. Dumping that, I see there are 15 ACPM channels. Have you
>
> Correct.
>
>> looked into into extracting the data from the initdata SRAM address?
>>
>
> Yes, that's the reason why I defined the 15 channels from above for the
> ap2apm_mailbox controller.
>
Haven't explicitly mentioned in the commit message: the ACPM protocol is
a mailbox client for the ap2apm_mailbox controller. The ACPM protocol
uses 15 mailbox channels of a total of 16 channels that ap2apm_mailbox
controller provides.
Let me know if you think I shall update the commit message.
Thanks,
ta
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-12-17 8:39 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-12 16:00 [PATCH v2 0/4] arm64: exynos: gs101: add ACPM related nodes Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 1/4] arm64: dts: exynos: gs101: add SRAM node Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 2/4] arm64: dts: exynos: gs101: add AP to APM mailbox node Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 3/4] arm64: dts: exynos: gs101: add ACPM protocol node Tudor Ambarus
2024-12-16 18:54 ` William McVicker
2024-12-17 7:20 ` Tudor Ambarus
2024-12-17 8:38 ` Tudor Ambarus
2024-12-12 16:00 ` [PATCH v2 4/4] arm64: defconfig: enable ACPM protocol and Exynos mailbox Tudor Ambarus
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).