diff options
author | Suman Anna | 2022-05-25 13:38:43 +0530 |
---|---|---|
committer | Tom Rini | 2022-06-10 13:37:32 -0400 |
commit | 4b8903a99902c22f4f60f0f873a89974d95710e7 (patch) | |
tree | e445cb24a8e0d1531169f90aab67bcf7b5cc08fd /drivers/clk | |
parent | d98e860051553fa4d395a7e7da8e40d1c8e21f71 (diff) |
arm: mach-k3: am62: Introduce autogenerated SoC data
Introduce autogenerated SoC data support clk and device data for the
AM62. Hook it upto to power-domain and clk frameworks of U-Boot.
Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Vignesh Raghavendra <vigneshr@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 74beb4d8ebd..0dd65934b36 100644 --- a/drivers/clk/ti/clk-k3.c +++ b/drivers/clk/ti/clk-k3.c @@ -74,6 +74,12 @@ static const struct soc_attr ti_k3_soc_clk_data[] = { .data = &j721s2_clk_platdata, }, #endif +#ifdef CONFIG_SOC_K3_AM625 + { + .family = "AM62X", + .data = &am62x_clk_platdata, + }, +#endif { /* sentinel */ } }; |