summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorJayesh Choudhary <j-choudhary@ti.com>2023-12-18 21:26:27 +0530
committerFrancesco Dolcini <francesco.dolcini@toradex.com>2024-03-21 14:26:33 +0000
commit78cb8ea8ad1e9505a58d8d9227e91e16b67871d3 (patch)
tree5b68b9e1ed6e724a315d3b9dfd76c46e0aed26d8 /drivers
parentb73c159252d628f1fa0376224b16b7672c59898c (diff)
arm: mach-k3: j722s: introduce clock and device files for J722S SoC
Introduce support for J722S SoC. Signed-off-by: Vaishnav Achath <vaishnav.a@ti.com> Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/ti/clk-k3.c6
-rw-r--r--drivers/power/domain/ti-power-domain.c6
2 files changed, 12 insertions, 0 deletions
diff --git a/drivers/clk/ti/clk-k3.c b/drivers/clk/ti/clk-k3.c
index 81a112e518..a27e840303 100644
--- a/drivers/clk/ti/clk-k3.c
+++ b/drivers/clk/ti/clk-k3.c
@@ -98,6 +98,12 @@ static const struct soc_attr ti_k3_soc_clk_data[] = {
.data = &am62px_clk_platdata,
},
#endif
+#ifdef CONFIG_SOC_K3_J722S
+ {
+ .family = "J722S",
+ .data = &j722s_clk_platdata,
+ },
+#endif
{ /* sentinel */ }
};
diff --git a/drivers/power/domain/ti-power-domain.c b/drivers/power/domain/ti-power-domain.c
index de6e2b70c8..76a063714c 100644
--- a/drivers/power/domain/ti-power-domain.c
+++ b/drivers/power/domain/ti-power-domain.c
@@ -111,6 +111,12 @@ static const struct soc_attr ti_k3_soc_pd_data[] = {
.data = &am62px_pd_platdata,
},
#endif
+#ifdef CONFIG_SOC_K3_J722S
+ {
+ .family = "J722S",
+ .data = &j722s_pd_platdata,
+ },
+#endif
{ /* sentinel */ }
};