diff options
author | Bryan Brattlof <bb@ti.com> | 2022-11-03 19:13:56 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-09 14:10:28 -0500 |
commit | b6cbcd61556e0d9de4c389071e3a826e577b9f43 (patch) | |
tree | 54e8fc4ed99daddcee894a0467a9196986c780bd /drivers/power/domain | |
parent | b511b371ad76c592fac49f8f780bd42310479d1e (diff) | |
download | u-boot-b6cbcd61556e0d9de4c389071e3a826e577b9f43.tar.gz u-boot-b6cbcd61556e0d9de4c389071e3a826e577b9f43.tar.bz2 u-boot-b6cbcd61556e0d9de4c389071e3a826e577b9f43.zip |
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/power/domain')
-rw-r--r-- | drivers/power/domain/ti-power-domain.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/power/domain/ti-power-domain.c b/drivers/power/domain/ti-power-domain.c index a7f64d04f5..9e7151307c 100644 --- a/drivers/power/domain/ti-power-domain.c +++ b/drivers/power/domain/ti-power-domain.c @@ -93,6 +93,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 */ } }; |