diff options
| author | Jayesh Choudhary <[email protected]> | 2024-06-12 14:41:16 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-06-19 12:07:44 -0600 |
| commit | 6b1193bb7a724042d5d8b7bee70aaf49080b5c4f (patch) | |
| tree | 500e12c807c5fb6984bf4a004d0c4c046e57e8de /drivers | |
| parent | d6942d72c4f5146a2d9e352e5223702e54b02c00 (diff) | |
arm: mach-k3: j722s: introduce clock and device files for wkup spl
Include the clock and lpsc tree files needed for the wkup spl to
initialize the proper PLLs and power domains to boot the SoC.
Reviewed-by: Bryan Brattlof <[email protected]>
Signed-off-by: Vaishnav Achath <[email protected]>
Signed-off-by: Jayesh Choudhary <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/clk/ti/clk-k3.c | 6 | ||||
| -rw-r--r-- | drivers/power/domain/ti-power-domain.c | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/drivers/clk/ti/clk-k3.c b/drivers/clk/ti/clk-k3.c index 9e17755c246..bf65f573cb8 100644 --- a/drivers/clk/ti/clk-k3.c +++ b/drivers/clk/ti/clk-k3.c @@ -93,6 +93,12 @@ static const struct soc_attr ti_k3_soc_clk_data[] = { .data = &j721s2_clk_platdata, }, #endif +#if IS_ENABLED(CONFIG_SOC_K3_J722S) + { + .family = "J722S", + .data = &j722s_clk_platdata, + }, +#endif #if IS_ENABLED(CONFIG_SOC_K3_J784S4) { .family = "J784S4", diff --git a/drivers/power/domain/ti-power-domain.c b/drivers/power/domain/ti-power-domain.c index 362fae86a2e..5e7a4c5648d 100644 --- a/drivers/power/domain/ti-power-domain.c +++ b/drivers/power/domain/ti-power-domain.c @@ -105,6 +105,12 @@ static const struct soc_attr ti_k3_soc_pd_data[] = { .data = &j721s2_pd_platdata, }, #endif +#if IS_ENABLED(CONFIG_SOC_K3_J722S) + { + .family = "J722S", + .data = &j722s_pd_platdata, + }, +#endif #if IS_ENABLED(CONFIG_SOC_K3_J784S4) { .family = "J784S4", |
