diff options
| author | Claudiu Beznea <[email protected]> | 2020-06-02 15:22:21 +0300 |
|---|---|---|
| committer | Eugen Hristev <[email protected]> | 2021-01-07 09:44:15 +0200 |
| commit | 5e19ade9e50e1277587a5ba74ecfd92395c5e1df (patch) | |
| tree | 82916aaa2f28311f79be1a584c3e0f1f3962820e | |
| parent | 3b86096a59c8b21165d15b4f6bdbe0663c81794e (diff) | |
ARM: dts: sama7g5: add slow rc and main rc oscillators
Add slow rc and main rc oscillators to dtsi.
Signed-off-by: Claudiu Beznea <[email protected]>
| -rw-r--r-- | arch/arm/dts/sama7g5.dtsi | 12 | ||||
| -rw-r--r-- | arch/arm/dts/sama7g5ek-u-boot.dtsi | 8 |
2 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/dts/sama7g5.dtsi b/arch/arm/dts/sama7g5.dtsi index 618f3a37d5e..0fc7a5e1973 100644 --- a/arch/arm/dts/sama7g5.dtsi +++ b/arch/arm/dts/sama7g5.dtsi @@ -16,6 +16,18 @@ compatible = "microchip,sama7g5"; clocks { + slow_rc_osc: slow_rc_osc { + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <32000>; + }; + + main_rc: main_rc { + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <12000000>; + }; + slow_xtal: slow_xtal { compatible = "fixed-clock"; #clock-cells = <0>; diff --git a/arch/arm/dts/sama7g5ek-u-boot.dtsi b/arch/arm/dts/sama7g5ek-u-boot.dtsi index c0f8f94027a..06af2f74eea 100644 --- a/arch/arm/dts/sama7g5ek-u-boot.dtsi +++ b/arch/arm/dts/sama7g5ek-u-boot.dtsi @@ -23,6 +23,14 @@ }; }; +&main_rc { + u-boot,dm-pre-reloc; +}; + +&slow_rc_osc { + u-boot,dm-pre-reloc; +}; + &uart0 { u-boot,dm-pre-reloc; }; |
