summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorBryan Brattlof <bb@ti.com>2022-12-01 18:53:57 -0600
committerPraneeth Bajjuri <praneeth@ti.com>2022-12-01 18:56:14 -0600
commit834cc3d20a775e939a445125c695e3fefa8059c7 (patch)
tree854324f581ae6fab9cdba56417c203b1a0c601a6 /drivers
parentd6ff451d97eaacd79f67d4b6250549b090574a89 (diff)
arm: mach-k3: am62a: introduce auto-generated SoC data
Introduce the auto-generated clock tree and power domain data needed to attach the am62a into the power-domain and clock frameworks of uboot Signed-off-by: Bryan Brattlof <bb@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/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/clk-k3.c b/drivers/clk/clk-k3.c
index ea6fe762d3..844accb796 100644
--- a/drivers/clk/clk-k3.c
+++ b/drivers/clk/clk-k3.c
@@ -85,6 +85,12 @@ static const struct soc_attr ti_k3_soc_clk_data[] = {
.data = &am62x_clk_platdata,
},
#endif
+#ifdef CONFIG_SOC_K3_AM62A7
+ {
+ .family = "AM62AX",
+ .data = &am62ax_clk_platdata,
+ },
+#endif
{ /* sentinel */ }
};
diff --git a/drivers/power/domain/ti-power-domain.c b/drivers/power/domain/ti-power-domain.c
index 6113a5e21f..4d76a6469e 100644
--- a/drivers/power/domain/ti-power-domain.c
+++ b/drivers/power/domain/ti-power-domain.c
@@ -97,6 +97,12 @@ static const struct soc_attr ti_k3_soc_pd_data[] = {
.data = &am62x_pd_platdata,
},
#endif
+#ifdef CONFIG_SOC_K3_AM62A7
+ {
+ .family = "AM62AX",
+ .data = &am62ax_pd_platdata,
+ },
+#endif
{ /* sentinel */ }
};