mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
power: domain: ti: Add support for J721S2 SoC
Add support for J721S2 SoC. Signed-off-by: David Huang <d-huang@ti.com> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
This commit is contained in:
parent
55bdc200ad
commit
98551f8791
2 changed files with 6 additions and 0 deletions
|
@ -79,6 +79,11 @@ static const struct soc_attr ti_k3_soc_pd_data[] = {
|
|||
.family = "J7200",
|
||||
.data = &j7200_pd_platdata,
|
||||
},
|
||||
#elif CONFIG_SOC_K3_J721S2
|
||||
{
|
||||
.family = "J721S2",
|
||||
.data = &j721s2_pd_platdata,
|
||||
},
|
||||
#endif
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
|
|
|
@ -77,6 +77,7 @@ struct ti_k3_pd_platdata {
|
|||
|
||||
extern const struct ti_k3_pd_platdata j721e_pd_platdata;
|
||||
extern const struct ti_k3_pd_platdata j7200_pd_platdata;
|
||||
extern const struct ti_k3_pd_platdata j721s2_pd_platdata;
|
||||
|
||||
u8 ti_pd_state(struct ti_pd *pd);
|
||||
u8 lpsc_get_state(struct ti_lpsc *lpsc);
|
||||
|
|
Loading…
Reference in a new issue