* [PATCH 0/2] pmdomain: amlogic: meson-ee-pwrc: add ISP power domain
@ 2023-11-14 10:19 Neil Armstrong
2023-11-14 10:19 ` [PATCH 1/2] dt-bindings: power: meson-g12a-power: document " Neil Armstrong
2023-11-14 10:19 ` [PATCH 2/2] pmdomain: amlogic: meson-ee-pwrc: add support for G12A " Neil Armstrong
0 siblings, 2 replies; 7+ messages in thread
From: Neil Armstrong @ 2023-11-14 10:19 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Kevin Hilman,
Jerome Brunet, Martin Blumenstingl, Ulf Hansson
Cc: Daniel Scally, devicetree, linux-arm-kernel, linux-amlogic,
linux-kernel, linux-pm, Neil Armstrong
Add MIPI ISP power domain bindings and entries for the ISP power domain
found in the Amlogic G12B SoC.
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
Neil Armstrong (2):
dt-bindings: power: meson-g12a-power: document ISP power domain
pmdomain: amlogic: meson-ee-pwrc: add support for G12A ISP power domain
drivers/pmdomain/amlogic/meson-ee-pwrc.c | 16 ++++++++++++++++
include/dt-bindings/power/meson-g12a-power.h | 1 +
2 files changed, 17 insertions(+)
---
base-commit: 5cd631a52568a18b12fd2563418985c8cb63e4b0
change-id: 20231114-topic-amlogic-upstream-isp-pmdomain-f7502561f911
Best regards,
--
Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/2] dt-bindings: power: meson-g12a-power: document ISP power domain
2023-11-14 10:19 [PATCH 0/2] pmdomain: amlogic: meson-ee-pwrc: add ISP power domain Neil Armstrong
@ 2023-11-14 10:19 ` Neil Armstrong
2023-11-14 11:44 ` Dan Scally
2023-11-14 17:46 ` Conor Dooley
2023-11-14 10:19 ` [PATCH 2/2] pmdomain: amlogic: meson-ee-pwrc: add support for G12A " Neil Armstrong
1 sibling, 2 replies; 7+ messages in thread
From: Neil Armstrong @ 2023-11-14 10:19 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Kevin Hilman,
Jerome Brunet, Martin Blumenstingl, Ulf Hansson
Cc: Daniel Scally, devicetree, linux-arm-kernel, linux-amlogic,
linux-kernel, linux-pm, Neil Armstrong
Add MIPI ISP power domain ID to the G12A Power domains bindings header
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
include/dt-bindings/power/meson-g12a-power.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/dt-bindings/power/meson-g12a-power.h b/include/dt-bindings/power/meson-g12a-power.h
index 44ec0c50e340..01fd0ac4dd08 100644
--- a/include/dt-bindings/power/meson-g12a-power.h
+++ b/include/dt-bindings/power/meson-g12a-power.h
@@ -10,5 +10,6 @@
#define PWRC_G12A_VPU_ID 0
#define PWRC_G12A_ETH_ID 1
#define PWRC_G12A_NNA_ID 2
+#define PWRC_G12A_ISP_ID 3
#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] pmdomain: amlogic: meson-ee-pwrc: add support for G12A ISP power domain
2023-11-14 10:19 [PATCH 0/2] pmdomain: amlogic: meson-ee-pwrc: add ISP power domain Neil Armstrong
2023-11-14 10:19 ` [PATCH 1/2] dt-bindings: power: meson-g12a-power: document " Neil Armstrong
@ 2023-11-14 10:19 ` Neil Armstrong
2023-11-20 20:15 ` Martin Blumenstingl
1 sibling, 1 reply; 7+ messages in thread
From: Neil Armstrong @ 2023-11-14 10:19 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Kevin Hilman,
Jerome Brunet, Martin Blumenstingl, Ulf Hansson
Cc: Daniel Scally, devicetree, linux-arm-kernel, linux-amlogic,
linux-kernel, linux-pm, Neil Armstrong
Add entries for the ISP power domain found in the Amlogic G12B SoC
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
drivers/pmdomain/amlogic/meson-ee-pwrc.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/pmdomain/amlogic/meson-ee-pwrc.c b/drivers/pmdomain/amlogic/meson-ee-pwrc.c
index 0dd71cd814c5..cba216a2175e 100644
--- a/drivers/pmdomain/amlogic/meson-ee-pwrc.c
+++ b/drivers/pmdomain/amlogic/meson-ee-pwrc.c
@@ -47,6 +47,8 @@
#define G12A_HHI_NANOQ_MEM_PD_REG0 (0x43 << 2)
#define G12A_HHI_NANOQ_MEM_PD_REG1 (0x44 << 2)
+#define G12A_HHI_ISP_MEM_PD_REG0 (0x45 << 2)
+#define G12A_HHI_ISP_MEM_PD_REG1 (0x46 << 2)
struct meson_ee_pwrc;
struct meson_ee_pwrc_domain;
@@ -115,6 +117,13 @@ static struct meson_ee_pwrc_top_domain g12a_pwrc_nna = {
.iso_mask = BIT(16) | BIT(17),
};
+static struct meson_ee_pwrc_top_domain g12a_pwrc_isp = {
+ .sleep_reg = GX_AO_RTI_GEN_PWR_SLEEP0,
+ .sleep_mask = BIT(18) | BIT(19),
+ .iso_reg = GX_AO_RTI_GEN_PWR_ISO0,
+ .iso_mask = BIT(18) | BIT(19),
+};
+
/* Memory PD Domains */
#define VPU_MEMPD(__reg) \
@@ -231,6 +240,11 @@ static struct meson_ee_pwrc_mem_domain g12a_pwrc_mem_nna[] = {
{ G12A_HHI_NANOQ_MEM_PD_REG1, GENMASK(31, 0) },
};
+static struct meson_ee_pwrc_mem_domain g12a_pwrc_mem_isp[] = {
+ { G12A_HHI_ISP_MEM_PD_REG0, GENMASK(31, 0) },
+ { G12A_HHI_ISP_MEM_PD_REG0, GENMASK(31, 0) },
+};
+
#define VPU_PD(__name, __top_pd, __mem, __is_pwr_off, __resets, __clks) \
{ \
.name = __name, \
@@ -269,6 +283,8 @@ static struct meson_ee_pwrc_domain_desc g12a_pwrc_domains[] = {
[PWRC_G12A_ETH_ID] = MEM_PD("ETH", meson_pwrc_mem_eth),
[PWRC_G12A_NNA_ID] = TOP_PD("NNA", &g12a_pwrc_nna, g12a_pwrc_mem_nna,
pwrc_ee_is_powered_off),
+ [PWRC_G12A_ISP_ID] = TOP_PD("ISP", &g12a_pwrc_isp, g12a_pwrc_mem_isp,
+ pwrc_ee_is_powered_off),
};
static struct meson_ee_pwrc_domain_desc gxbb_pwrc_domains[] = {
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] dt-bindings: power: meson-g12a-power: document ISP power domain
2023-11-14 10:19 ` [PATCH 1/2] dt-bindings: power: meson-g12a-power: document " Neil Armstrong
@ 2023-11-14 11:44 ` Dan Scally
2023-11-14 17:46 ` Conor Dooley
1 sibling, 0 replies; 7+ messages in thread
From: Dan Scally @ 2023-11-14 11:44 UTC (permalink / raw)
To: Neil Armstrong, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kevin Hilman, Jerome Brunet, Martin Blumenstingl, Ulf Hansson
Cc: devicetree, linux-arm-kernel, linux-amlogic, linux-kernel,
linux-pm
Hi Neil
On 14/11/2023 10:19, Neil Armstrong wrote:
> Add MIPI ISP power domain ID to the G12A Power domains bindings header
>
> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
> ---
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Tested-by: Daniel Scally <dan.scally@ideasonboard.com>
> include/dt-bindings/power/meson-g12a-power.h | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/include/dt-bindings/power/meson-g12a-power.h b/include/dt-bindings/power/meson-g12a-power.h
> index 44ec0c50e340..01fd0ac4dd08 100644
> --- a/include/dt-bindings/power/meson-g12a-power.h
> +++ b/include/dt-bindings/power/meson-g12a-power.h
> @@ -10,5 +10,6 @@
> #define PWRC_G12A_VPU_ID 0
> #define PWRC_G12A_ETH_ID 1
> #define PWRC_G12A_NNA_ID 2
> +#define PWRC_G12A_ISP_ID 3
>
> #endif
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] dt-bindings: power: meson-g12a-power: document ISP power domain
2023-11-14 10:19 ` [PATCH 1/2] dt-bindings: power: meson-g12a-power: document " Neil Armstrong
2023-11-14 11:44 ` Dan Scally
@ 2023-11-14 17:46 ` Conor Dooley
1 sibling, 0 replies; 7+ messages in thread
From: Conor Dooley @ 2023-11-14 17:46 UTC (permalink / raw)
To: Neil Armstrong
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Kevin Hilman,
Jerome Brunet, Martin Blumenstingl, Ulf Hansson, Daniel Scally,
devicetree, linux-arm-kernel, linux-amlogic, linux-kernel,
linux-pm
[-- Attachment #1: Type: text/plain, Size: 830 bytes --]
On Tue, Nov 14, 2023 at 11:19:50AM +0100, Neil Armstrong wrote:
> Add MIPI ISP power domain ID to the G12A Power domains bindings header
>
> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Thanks,
Conor,
> ---
> include/dt-bindings/power/meson-g12a-power.h | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/include/dt-bindings/power/meson-g12a-power.h b/include/dt-bindings/power/meson-g12a-power.h
> index 44ec0c50e340..01fd0ac4dd08 100644
> --- a/include/dt-bindings/power/meson-g12a-power.h
> +++ b/include/dt-bindings/power/meson-g12a-power.h
> @@ -10,5 +10,6 @@
> #define PWRC_G12A_VPU_ID 0
> #define PWRC_G12A_ETH_ID 1
> #define PWRC_G12A_NNA_ID 2
> +#define PWRC_G12A_ISP_ID 3
>
> #endif
>
> --
> 2.34.1
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] pmdomain: amlogic: meson-ee-pwrc: add support for G12A ISP power domain
2023-11-14 10:19 ` [PATCH 2/2] pmdomain: amlogic: meson-ee-pwrc: add support for G12A " Neil Armstrong
@ 2023-11-20 20:15 ` Martin Blumenstingl
2023-11-21 11:04 ` Neil Armstrong
0 siblings, 1 reply; 7+ messages in thread
From: Martin Blumenstingl @ 2023-11-20 20:15 UTC (permalink / raw)
To: Neil Armstrong
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Kevin Hilman,
Jerome Brunet, Ulf Hansson, Daniel Scally, devicetree,
linux-arm-kernel, linux-amlogic, linux-kernel, linux-pm
Hi Neil,
On Tue, Nov 14, 2023 at 11:19 AM Neil Armstrong
<neil.armstrong@linaro.org> wrote:
[...]
> +static struct meson_ee_pwrc_mem_domain g12a_pwrc_mem_isp[] = {
> + { G12A_HHI_ISP_MEM_PD_REG0, GENMASK(31, 0) },
> + { G12A_HHI_ISP_MEM_PD_REG0, GENMASK(31, 0) },
I expected this second line to use G12A_HHI_ISP_MEM_PD_REG1 (note the
number at the end: 0 vs 1)
Is this correct?
Best regards,
Martin
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] pmdomain: amlogic: meson-ee-pwrc: add support for G12A ISP power domain
2023-11-20 20:15 ` Martin Blumenstingl
@ 2023-11-21 11:04 ` Neil Armstrong
0 siblings, 0 replies; 7+ messages in thread
From: Neil Armstrong @ 2023-11-21 11:04 UTC (permalink / raw)
To: Martin Blumenstingl
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Kevin Hilman,
Jerome Brunet, Ulf Hansson, Daniel Scally, devicetree,
linux-arm-kernel, linux-amlogic, linux-kernel, linux-pm
On 20/11/2023 21:15, Martin Blumenstingl wrote:
> Hi Neil,
>
> On Tue, Nov 14, 2023 at 11:19 AM Neil Armstrong
> <neil.armstrong@linaro.org> wrote:
> [...]
>> +static struct meson_ee_pwrc_mem_domain g12a_pwrc_mem_isp[] = {
>> + { G12A_HHI_ISP_MEM_PD_REG0, GENMASK(31, 0) },
>> + { G12A_HHI_ISP_MEM_PD_REG0, GENMASK(31, 0) },
> I expected this second line to use G12A_HHI_ISP_MEM_PD_REG1 (note the
> number at the end: 0 vs 1)
> Is this correct?
Indeed you're right, let me fix it in a v2,
Thanks,
Neil
>
>
> Best regards,
> Martin
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-11-21 11:04 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-14 10:19 [PATCH 0/2] pmdomain: amlogic: meson-ee-pwrc: add ISP power domain Neil Armstrong
2023-11-14 10:19 ` [PATCH 1/2] dt-bindings: power: meson-g12a-power: document " Neil Armstrong
2023-11-14 11:44 ` Dan Scally
2023-11-14 17:46 ` Conor Dooley
2023-11-14 10:19 ` [PATCH 2/2] pmdomain: amlogic: meson-ee-pwrc: add support for G12A " Neil Armstrong
2023-11-20 20:15 ` Martin Blumenstingl
2023-11-21 11:04 ` Neil Armstrong
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).