diff options
author | Bryan Brattlof | 2022-11-03 19:13:56 -0500 |
---|---|---|
committer | Tom Rini | 2022-12-09 14:10:28 -0500 |
commit | b6cbcd61556e0d9de4c389071e3a826e577b9f43 (patch) | |
tree | 54e8fc4ed99daddcee894a0467a9196986c780bd /drivers/clk | |
parent | b511b371ad76c592fac49f8f780bd42310479d1e (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/clk')
-rw-r--r-- | drivers/clk/ti/clk-k3.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/clk/ti/clk-k3.c b/drivers/clk/ti/clk-k3.c index 0dd65934b36..ba925fa3c48 100644 --- a/drivers/clk/ti/clk-k3.c +++ b/drivers/clk/ti/clk-k3.c @@ -80,6 +80,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 */ } }; |