mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
00fde6b873
Copy all device tree files required for omap4 panda support from mainline Linux. Signed-off-by: Tero Kristo <t-kristo@ti.com>
24 lines
520 B
Text
24 lines
520 B
Text
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Device Tree Source for OMAP4 clock data
|
|
*
|
|
* Copyright (C) 2013 Texas Instruments, Inc.
|
|
*/
|
|
&prm_clocks {
|
|
div_ts_ck: div_ts_ck@1888 {
|
|
#clock-cells = <0>;
|
|
compatible = "ti,divider-clock";
|
|
clocks = <&l4_wkup_clk_mux_ck>;
|
|
ti,bit-shift = <24>;
|
|
reg = <0x1888>;
|
|
ti,dividers = <8>, <16>, <32>;
|
|
};
|
|
|
|
bandgap_ts_fclk: bandgap_ts_fclk@1888 {
|
|
#clock-cells = <0>;
|
|
compatible = "ti,gate-clock";
|
|
clocks = <&div_ts_ck>;
|
|
ti,bit-shift = <8>;
|
|
reg = <0x1888>;
|
|
};
|
|
};
|