[PATCH 2/8] dt-bindings: tegra: Add ICC IDs for dummy memory clients for Tegra194

Aaron Kling via B4 Relay posted 8 patches 1 month ago
There is a newer version of this series
[PATCH 2/8] dt-bindings: tegra: Add ICC IDs for dummy memory clients for Tegra194
Posted by Aaron Kling via B4 Relay 1 month ago
From: Aaron Kling <webgeek1234@gmail.com>

Add ICC IDs for dummy software clients representing CCPLEX clusters.

Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
---
 include/dt-bindings/memory/tegra194-mc.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/dt-bindings/memory/tegra194-mc.h b/include/dt-bindings/memory/tegra194-mc.h
index eed48b746bc94072a6bd0af7f344dbb6f6618859..a7d97a1a470cd3cfb18c7ef45c421426ea3c7abf 100644
--- a/include/dt-bindings/memory/tegra194-mc.h
+++ b/include/dt-bindings/memory/tegra194-mc.h
@@ -407,4 +407,10 @@
 /* MSS internal memqual MIU6 write clients */
 #define TEGRA194_MEMORY_CLIENT_MIU6W 0xff
 
+/* ICC ID's for dummy MC clients used to represent CPU Clusters */
+#define TEGRA_ICC_MC_CPU_CLUSTER0       1003
+#define TEGRA_ICC_MC_CPU_CLUSTER1       1004
+#define TEGRA_ICC_MC_CPU_CLUSTER2       1005
+#define TEGRA_ICC_MC_CPU_CLUSTER3       1006
+
 #endif

-- 
2.50.1
Re: [PATCH 2/8] dt-bindings: tegra: Add ICC IDs for dummy memory clients for Tegra194
Posted by Krzysztof Kozlowski 1 month ago
On Sun, Aug 31, 2025 at 10:33:50PM -0500, Aaron Kling wrote:
> Add ICC IDs for dummy software clients representing CCPLEX clusters.
> 
> Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
> ---
>  include/dt-bindings/memory/tegra194-mc.h | 6 ++++++
>  1 file changed, 6 insertions(+)
>

Please use subject prefixes matching the subsystem. You can get them for
example with 'git log --oneline -- DIRECTORY_OR_FILE' on the directory
your patch is touching. For bindings, the preferred subjects are
explained here:
https://www.kernel.org/doc/html/latest/devicetree/bindings/submitting-patches.html#i-for-patch-submitters

dt-bindings: memory: tegra194-mc: (or nvidia,tegra194-mc)

Best regards,
Krzysztof
Re: [PATCH 2/8] dt-bindings: tegra: Add ICC IDs for dummy memory clients for Tegra194
Posted by Aaron Kling 1 month ago
On Tue, Sep 2, 2025 at 3:25 AM Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> On Sun, Aug 31, 2025 at 10:33:50PM -0500, Aaron Kling wrote:
> > Add ICC IDs for dummy software clients representing CCPLEX clusters.
> >
> > Signed-off-by: Aaron Kling <webgeek1234@gmail.com>
> > ---
> >  include/dt-bindings/memory/tegra194-mc.h | 6 ++++++
> >  1 file changed, 6 insertions(+)
> >
>
> Please use subject prefixes matching the subsystem. You can get them for
> example with 'git log --oneline -- DIRECTORY_OR_FILE' on the directory
> your patch is touching. For bindings, the preferred subjects are
> explained here:
> https://www.kernel.org/doc/html/latest/devicetree/bindings/submitting-patches.html#i-for-patch-submitters
>
> dt-bindings: memory: tegra194-mc: (or nvidia,tegra194-mc)

For reference, I did base the commit subject on existing commits,
namely b0dae3d which these patches are based on. Apparently that was a
bad reference. I will update as requested for v2.

Aaron