mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
clk: clk-k3: 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>
This commit is contained in:
parent
e00b1ac8c6
commit
55bdc200ad
2 changed files with 6 additions and 0 deletions
|
@ -68,6 +68,11 @@ static const struct soc_attr ti_k3_soc_clk_data[] = {
|
|||
.family = "J7200",
|
||||
.data = &j7200_clk_platdata,
|
||||
},
|
||||
#elif CONFIG_SOC_K3_J721S2
|
||||
{
|
||||
.family = "J721S2",
|
||||
.data = &j721s2_clk_platdata,
|
||||
},
|
||||
#endif
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
|
|
|
@ -173,6 +173,7 @@ struct ti_k3_clk_platdata {
|
|||
|
||||
extern const struct ti_k3_clk_platdata j721e_clk_platdata;
|
||||
extern const struct ti_k3_clk_platdata j7200_clk_platdata;
|
||||
extern const struct ti_k3_clk_platdata j721s2_clk_platdata;
|
||||
|
||||
struct clk *clk_register_ti_pll(const char *name, const char *parent_name,
|
||||
void __iomem *reg);
|
||||
|
|
Loading…
Reference in a new issue