diff options
| author | Tom Rini <[email protected]> | 2025-09-20 10:02:00 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-09-20 10:02:00 -0600 |
| commit | 464800d91b036cfd2df26598d8df2ac72d4569dd (patch) | |
| tree | ee4fb80d4b33c9e75039a2f72fc055eb18a9400c /drivers/clk | |
| parent | 31eee7d42b44ad7d0bad320461ba0c14750a61d9 (diff) | |
| parent | 10fdc2735da3a4825a5172056090eaf41e061627 (diff) | |
Merge branch 'next' of https://source.denx.de/u-boot/custodians/u-boot-riscv into next
CI: https://source.denx.de/u-boot/custodians/u-boot-riscv/-/pipelines/27673
- Switch to upstream devicetree for TH1520 platform
- Remove fdt_high env variable
- Support SMP on RISC-V cores with Zalrsc only
- Make MPFS Generic
- riscv: dts: starfive: prune redundant jh7110-common
Diffstat (limited to 'drivers/clk')
| -rw-r--r-- | drivers/clk/thead/clk-th1520-ap.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/clk/thead/clk-th1520-ap.c b/drivers/clk/thead/clk-th1520-ap.c index 822cf0809d5..6899e1b595a 100644 --- a/drivers/clk/thead/clk-th1520-ap.c +++ b/drivers/clk/thead/clk-th1520-ap.c @@ -235,6 +235,7 @@ U_BOOT_DRIVER(th1520_clk_div) = { .name = "th1520_clk_div", .id = UCLASS_CLK, .ops = &ccu_div_ops, + .flags = DM_FLAG_PRE_RELOC, }; static unsigned long th1520_pll_vco_recalc_rate(struct clk *clk, @@ -302,6 +303,7 @@ U_BOOT_DRIVER(th1520_clk_pll) = { .name = "th1520_clk_pll", .id = UCLASS_CLK, .ops = &clk_pll_ops, + .flags = DM_FLAG_PRE_RELOC, }; static struct ccu_pll cpu_pll0_clk = { @@ -1030,4 +1032,5 @@ U_BOOT_DRIVER(th1520_clk) = { .of_match = th1520_clk_match, .probe = th1520_clk_probe, .ops = &th1520_clk_ops, + .flags = DM_FLAG_PRE_RELOC, }; |
