2013-06-03 18:49:54 +05:30
/*
* Device Tree Source for AM4372 SoC
*
2020-07-08 11:34:51 +02:00
* Copyright (C) 2013 Texas Instruments Incorporated - https://www.ti.com/
2013-06-03 18:49:54 +05:30
*
* This file is licensed under the terms of the GNU General Public License
* version 2. This program is licensed "as is" without any warranty of any
* kind, whether express or implied.
*/
2018-09-24 16:22:37 -07:00
#include <dt-bindings/bus/ti-sysc.h>
2014-03-03 20:20:20 +05:30
#include <dt-bindings/gpio/gpio.h>
2013-06-03 18:49:54 +05:30
#include <dt-bindings/interrupt-controller/arm-gic.h>
2017-12-08 17:17:31 +02:00
#include <dt-bindings/clock/am4.h>
2013-06-03 18:49:54 +05:30
/ {
compatible = "ti,am4372", "ti,am43";
2015-03-11 15:43:49 +00:00
interrupt-parent = <&wakeupgen>;
2016-08-31 12:35:25 +02:00
#address-cells = <1>;
#size-cells = <1>;
2016-12-19 11:44:38 -03:00
chosen { };
2013-06-03 18:49:54 +05:30
2016-08-31 12:35:32 +02:00
memory@0 {
2016-08-31 12:35:25 +02:00
device_type = "memory";
reg = <0 0>;
};
2013-06-03 18:49:54 +05:30
aliases {
2013-10-16 15:21:04 -05:00
i2c0 = &i2c0;
i2c1 = &i2c1;
i2c2 = &i2c2;
2013-06-03 18:49:54 +05:30
serial0 = &uart0;
2015-07-20 16:42:20 +05:30
serial1 = &uart1;
serial2 = &uart2;
serial3 = &uart3;
serial4 = &uart4;
serial5 = &uart5;
2020-09-11 01:25:17 +03:00
ethernet0 = &cpsw_port1;
ethernet1 = &cpsw_port2;
2015-11-19 12:31:02 +05:30
spi0 = &qspi;
2013-06-03 18:49:54 +05:30
};
cpus {
2013-08-02 19:16:13 +05:30
#address-cells = <1>;
#size-cells = <0>;
2014-06-23 13:20:58 -05:00
cpu: cpu@0 {
2013-06-03 18:49:54 +05:30
compatible = "arm,cortex-a9";
2019-12-12 22:17:25 -06:00
enable-method = "ti,am4372";
2013-08-02 19:16:13 +05:30
device_type = "cpu";
reg = <0>;
2014-01-29 12:19:17 -06:00
clocks = <&dpll_mpu_ck>;
clock-names = "cpu";
2016-05-18 18:36:29 -05:00
operating-points-v2 = <&cpu0_opp_table>;
2014-01-29 12:19:17 -06:00
clock-latency = <300000>; /* From omap-cpufreq driver */
2019-12-12 22:17:25 -06:00
cpu-idle-states = <&mpu_gate>;
};
idle-states {
mpu_gate: mpu_gate {
compatible = "arm,idle-state";
entry-latency-us = <40>;
exit-latency-us = <100>;
min-residency-us = <300>;
local-timer-stop;
};
2013-06-03 18:49:54 +05:30
};
};
2017-03-06 09:23:40 -06:00
cpu0_opp_table: opp-table {
compatible = "operating-points-v2-ti-cpu";
syscon = <&scm_conf>;
2016-05-18 18:36:29 -05:00
2017-04-20 16:25:06 +05:30
opp50-300000000 {
2016-05-18 18:36:29 -05:00
opp-hz = /bits/ 64 <300000000>;
opp-microvolt = <950000 931000 969000>;
opp-supported-hw = <0xFF 0x01>;
opp-suspend;
};
2017-04-20 16:25:06 +05:30
opp100-600000000 {
2016-05-18 18:36:29 -05:00
opp-hz = /bits/ 64 <600000000>;
opp-microvolt = <1100000 1078000 1122000>;
opp-supported-hw = <0xFF 0x04>;
};
2017-04-20 16:25:06 +05:30
opp120-720000000 {
2016-05-18 18:36:29 -05:00
opp-hz = /bits/ 64 <720000000>;
opp-microvolt = <1200000 1176000 1224000>;
opp-supported-hw = <0xFF 0x08>;
};
2017-04-20 16:25:06 +05:30
oppturbo-800000000 {
2016-05-18 18:36:29 -05:00
opp-hz = /bits/ 64 <800000000>;
opp-microvolt = <1260000 1234800 1285200>;
opp-supported-hw = <0xFF 0x10>;
};
2017-04-20 16:25:06 +05:30
oppnitro-1000000000 {
2016-05-18 18:36:29 -05:00
opp-hz = /bits/ 64 <1000000000>;
opp-microvolt = <1325000 1298500 1351500>;
opp-supported-hw = <0xFF 0x20>;
};
};
2018-02-18 21:35:02 -06:00
soc {
compatible = "ti,omap-infra";
mpu {
compatible = "ti,omap4-mpu";
ti,hwmods = "mpu";
pm-sram = <&pm_sram_code
&pm_sram_data>;
};
};
2013-06-03 18:49:54 +05:30
gic: interrupt-controller@48241000 {
compatible = "arm,cortex-a9-gic";
interrupt-controller;
#interrupt-cells = <3>;
reg = <0x48241000 0x1000>,
<0x48240100 0x0100>;
2015-03-11 15:43:49 +00:00
interrupt-parent = <&gic>;
};
wakeupgen: interrupt-controller@48281000 {
compatible = "ti,omap4-wugen-mpu";
interrupt-controller;
#interrupt-cells = <3>;
reg = <0x48281000 0x1000>;
interrupt-parent = <&gic>;
2013-06-03 18:49:54 +05:30
};
2015-08-12 14:56:54 -05:00
scu: scu@48240000 {
compatible = "arm,cortex-a9-scu";
reg = <0x48240000 0x100>;
};
global_timer: timer@48240200 {
compatible = "arm,cortex-a9-global-timer";
reg = <0x48240200 0x100>;
2015-12-28 15:52:04 +02:00
interrupts = <GIC_PPI 11 IRQ_TYPE_EDGE_RISING>;
2015-08-12 14:56:54 -05:00
interrupt-parent = <&gic>;
2015-11-30 17:56:38 +02:00
clocks = <&mpu_periphclk>;
2015-08-12 14:56:54 -05:00
};
local_timer: timer@48240600 {
compatible = "arm,cortex-a9-twd-timer";
reg = <0x48240600 0x100>;
2015-12-28 15:52:04 +02:00
interrupts = <GIC_PPI 13 IRQ_TYPE_EDGE_RISING>;
2015-08-12 14:56:54 -05:00
interrupt-parent = <&gic>;
2015-11-30 17:56:38 +02:00
clocks = <&mpu_periphclk>;
2015-08-12 14:56:54 -05:00
};
2020-06-26 10:06:51 +02:00
cache-controller@48242000 {
2013-10-11 00:44:53 +05:30
compatible = "arm,pl310-cache";
reg = <0x48242000 0x1000>;
cache-unified;
cache-level = <2>;
};
2016-08-01 12:46:55 -04:00
ocp@44000000 {
2013-12-02 17:48:57 +05:30
compatible = "ti,am4372-l3-noc", "simple-bus";
2013-06-03 18:49:54 +05:30
#address-cells = <1>;
#size-cells = <1>;
ranges;
2013-10-11 00:44:53 +05:30
ti,hwmods = "l3_main";
2018-02-18 21:35:05 -06:00
ti,no-idle;
2013-12-02 17:48:57 +05:30
reg = <0x44000000 0x400000
0x44800000 0x400000>;
interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
<GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
2013-10-11 00:44:53 +05:30
2018-09-24 16:22:37 -07:00
l4_wkup: interconnect@44c00000 {
2015-07-13 12:34:55 -05:00
wkup_m3: wkup_m3@100000 {
compatible = "ti,am4372-wkup-m3";
reg = <0x100000 0x4000>,
<0x180000 0x2000>;
reg-names = "umem", "dmem";
ti,hwmods = "wkup_m3";
ti,pm-firmware = "am335x-pm-firmware.elf";
};
2018-09-24 16:22:37 -07:00
};
l4_per: interconnect@48000000 {
};
l4_fast: interconnect@4a000000 {
2013-08-02 19:12:04 +03:00
};
2015-05-06 12:25:33 -05:00
emif: emif@4c000000 {
compatible = "ti,emif-am4372";
reg = <0x4c000000 0x1000000>;
ti,hwmods = "emif";
2018-02-26 17:05:00 +02:00
interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
2018-02-18 21:35:04 -06:00
ti,no-idle;
2018-02-18 21:35:00 -06:00
sram = <&pm_sram_code
&pm_sram_data>;
2015-05-06 12:25:33 -05:00
};
2020-03-04 07:25:30 -08:00
target-module@49000000 {
compatible = "ti,sysc-omap4", "ti,sysc";
reg = <0x49000000 0x4>;
reg-names = "rev";
clocks = <&l3_clkctrl AM4_L3_TPCC_CLKCTRL 0>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x49000000 0x10000>;
edma: dma@0 {
compatible = "ti,edma3-tpcc";
reg = <0 0x10000>;
reg-names = "edma3_cc";
interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>,
<GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>,
<GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;
interrupt-names = "edma3_ccint", "edma3_mperr",
"edma3_ccerrint";
dma-requests = <64>;
#dma-cells = <2>;
ti,tptcs = <&edma_tptc0 7>, <&edma_tptc1 5>,
<&edma_tptc2 0>;
ti,edma-memcpy-channels = <58 59>;
};
2015-12-17 15:33:37 +02:00
};
2020-03-04 07:25:30 -08:00
target-module@49800000 {
compatible = "ti,sysc-omap4", "ti,sysc";
reg = <0x49800000 0x4>,
<0x49800010 0x4>;
reg-names = "rev", "sysc";
ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
ti,sysc-midle = <SYSC_IDLE_FORCE>;
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_SMART>;
clocks = <&l3_clkctrl AM4_L3_TPTC0_CLKCTRL 0>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x49800000 0x100000>;
edma_tptc0: dma@0 {
compatible = "ti,edma3-tptc";
reg = <0 0x100000>;
interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>;
interrupt-names = "edma3_tcerrint";
};
2015-12-17 15:33:37 +02:00
};
2020-03-04 07:25:31 -08:00
target-module@49900000 {
compatible = "ti,sysc-omap4", "ti,sysc";
reg = <0x49900000 0x4>,
<0x49900010 0x4>;
reg-names = "rev", "sysc";
ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
ti,sysc-midle = <SYSC_IDLE_FORCE>;
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_SMART>;
clocks = <&l3_clkctrl AM4_L3_TPTC1_CLKCTRL 0>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x49900000 0x100000>;
edma_tptc1: dma@0 {
compatible = "ti,edma3-tptc";
reg = <0 0x100000>;
interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
interrupt-names = "edma3_tcerrint";
};
2015-12-17 15:33:37 +02:00
};
2020-03-04 07:25:31 -08:00
target-module@49a00000 {
compatible = "ti,sysc-omap4", "ti,sysc";
reg = <0x49a00000 0x4>,
<0x49a00010 0x4>;
reg-names = "rev", "sysc";
ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
ti,sysc-midle = <SYSC_IDLE_FORCE>;
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_SMART>;
clocks = <&l3_clkctrl AM4_L3_TPTC2_CLKCTRL 0>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x49a00000 0x100000>;
edma_tptc2: dma@0 {
compatible = "ti,edma3-tptc";
reg = <0 0x100000>;
interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
interrupt-names = "edma3_tcerrint";
};
2013-10-11 00:44:53 +05:30
};
2013-06-03 18:49:54 +05:30
2019-07-23 00:29:23 -07:00
target-module@47810000 {
compatible = "ti,sysc-omap2", "ti,sysc";
reg = <0x478102fc 0x4>,
<0x47810110 0x4>,
<0x47810114 0x4>;
reg-names = "rev", "sysc", "syss";
ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
SYSC_OMAP2_ENAWAKEUP |
SYSC_OMAP2_SOFTRESET |
SYSC_OMAP2_AUTOIDLE)>;
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_NO>,
<SYSC_IDLE_SMART>;
ti,syss-mask = <1>;
clocks = <&l3s_clkctrl AM4_L3S_MMC3_CLKCTRL 0>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x47810000 0x1000>;
mmc3: mmc@0 {
2020-05-13 02:08:04 +05:30
compatible = "ti,am437-sdhci";
2019-07-23 00:29:23 -07:00
ti,needs-special-reset;
interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
reg = <0x0 0x1000>;
2020-05-13 02:08:04 +05:30
status = "disabled";
2019-07-23 00:29:23 -07:00
};
2013-10-11 00:44:53 +05:30
};
2019-12-12 09:46:14 -08:00
sham_target: target-module@53100000 {
compatible = "ti,sysc-omap3-sham", "ti,sysc";
reg = <0x53100100 0x4>,
<0x53100110 0x4>,
<0x53100114 0x4>;
reg-names = "rev", "sysc", "syss";
ti,sysc-mask = <(SYSC_OMAP2_SOFTRESET |
SYSC_OMAP2_AUTOIDLE)>;
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_NO>,
<SYSC_IDLE_SMART>;
ti,syss-mask = <1>;
/* Domains (P, C): per_pwrdm, l3_clkdm */
clocks = <&l3_clkctrl AM4_L3_SHAM_CLKCTRL 0>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x53100000 0x1000>;
sham: sham@0 {
compatible = "ti,omap5-sham";
reg = <0 0x300>;
dmas = <&edma 36 0>;
dma-names = "rx";
interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>;
};
2013-06-03 18:49:54 +05:30
};
2013-09-24 14:35:09 -05:00
2019-12-12 09:46:16 -08:00
aes_target: target-module@53501000 {
compatible = "ti,sysc-omap2", "ti,sysc";
reg = <0x53501080 0x4>,
<0x53501084 0x4>,
<0x53501088 0x4>;
reg-names = "rev", "sysc", "syss";
ti,sysc-mask = <(SYSC_OMAP2_SOFTRESET |
SYSC_OMAP2_AUTOIDLE)>;
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_NO>,
<SYSC_IDLE_SMART>,
<SYSC_IDLE_SMART_WKUP>;
ti,syss-mask = <1>;
/* Domains (P, C): per_pwrdm, l3_clkdm */
clocks = <&l3_clkctrl AM4_L3_AES_CLKCTRL 0>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x53501000 0x1000>;
aes: aes@0 {
compatible = "ti,omap4-aes";
reg = <0 0xa0>;
interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
dmas = <&edma 6 0>,
<&edma 5 0>;
dma-names = "tx", "rx";
};
2013-09-24 14:35:09 -05:00
};
2013-09-24 14:37:33 -05:00
2019-12-12 09:46:17 -08:00
des_target: target-module@53701000 {
compatible = "ti,sysc-omap2", "ti,sysc";
reg = <0x53701030 0x4>,
<0x53701034 0x4>,
<0x53701038 0x4>;
reg-names = "rev", "sysc", "syss";
ti,sysc-mask = <(SYSC_OMAP2_SOFTRESET |
SYSC_OMAP2_AUTOIDLE)>;
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_NO>,
<SYSC_IDLE_SMART>,
<SYSC_IDLE_SMART_WKUP>;
ti,syss-mask = <1>;
/* Domains (P, C): per_pwrdm, l3_clkdm */
clocks = <&l3_clkctrl AM4_L3_DES_CLKCTRL 0>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0 0x53701000 0x1000>;
des: des@0 {
compatible = "ti,omap4-des";
reg = <0 0xa0>;
interrupts = <GIC_SPI 130 IRQ_TYPE_LEVEL_HIGH>;
dmas = <&edma 34 0>,
<&edma 33 0>;
dma-names = "tx", "rx";
};
2013-09-24 14:37:33 -05:00
};
2013-10-11 00:44:53 +05:30
2020-02-27 16:28:36 -06:00
pruss_tm: target-module@54400000 {
compatible = "ti,sysc-pruss", "ti,sysc";
reg = <0x54426000 0x4>,
<0x54426004 0x4>;
reg-names = "rev", "sysc";
ti,sysc-mask = <(SYSC_PRUSS_STANDBY_INIT |
SYSC_PRUSS_SUB_MWAIT)>;
ti,sysc-midle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_NO>,
<SYSC_IDLE_SMART>;
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_NO>,
<SYSC_IDLE_SMART>;
clocks = <&pruss_ocp_clkctrl AM4_PRUSS_OCP_PRUSS_CLKCTRL 0>;
clock-names = "fck";
resets = <&prm_per 1>;
reset-names = "rstctrl";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x54400000 0x80000>;
};
2014-02-05 18:58:34 +05:30
gpmc: gpmc@50000000 {
compatible = "ti,am3352-gpmc";
ti,hwmods = "gpmc";
2016-03-10 17:56:39 -06:00
dmas = <&edma 52 0>;
2015-10-15 12:37:27 -05:00
dma-names = "rxtx";
2014-02-05 18:58:34 +05:30
clocks = <&l3s_gclk>;
clock-names = "fck";
reg = <0x50000000 0x2000>;
interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
gpmc,num-cs = <7>;
gpmc,num-waitpins = <2>;
#address-cells = <2>;
#size-cells = <1>;
2016-02-23 18:37:19 +02:00
interrupt-controller;
#interrupt-cells = <2>;
2016-04-07 13:25:33 +03:00
gpio-controller;
#gpio-cells = <2>;
2014-02-05 18:58:34 +05:30
status = "disabled";
};
2014-03-19 15:40:01 +05:30
2019-12-12 09:46:09 -08:00
target-module@47900000 {
compatible = "ti,sysc-omap4", "ti,sysc";
reg = <0x47900000 0x4>,
<0x47900010 0x4>;
reg-names = "rev", "sysc";
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_NO>,
<SYSC_IDLE_SMART>,
<SYSC_IDLE_SMART_WKUP>;
clocks = <&l3s_clkctrl AM4_L3S_QSPI_CLKCTRL 0>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x47900000 0x1000>,
<0x30000000 0x30000000 0x4000000>;
qspi: spi@0 {
compatible = "ti,am4372-qspi";
reg = <0 0x100>,
<0x30000000 0x4000000>;
reg-names = "qspi_base", "qspi_mmap";
clocks = <&dpll_per_m2_div4_ck>;
clock-names = "fck";
#address-cells = <1>;
#size-cells = <0>;
interrupts = <0 138 0x4>;
num-cs = <4>;
};
2014-04-28 19:12:30 +05:30
};
2014-05-08 11:30:07 +05:30
2019-10-21 18:17:52 +02:00
ocmcram: sram@40300000 {
2014-09-10 11:04:03 -05:00
compatible = "mmio-sram";
reg = <0x40300000 0x40000>; /* 256k */
2018-02-18 21:34:58 -06:00
ranges = <0x0 0x40300000 0x40000>;
#address-cells = <1>;
#size-cells = <1>;
2019-10-21 18:17:52 +02:00
pm_sram_code: pm-code-sram@0 {
2018-02-18 21:34:58 -06:00
compatible = "ti,sram";
reg = <0x0 0x1000>;
protect-exec;
};
2019-10-21 18:17:52 +02:00
pm_sram_data: pm-data-sram@1000 {
2018-02-18 21:34:58 -06:00
compatible = "ti,sram";
reg = <0x1000 0x1000>;
pool;
};
2014-09-10 11:04:03 -05:00
};
2019-11-08 13:31:25 -08:00
target-module@56000000 {
compatible = "ti,sysc-omap4", "ti,sysc";
reg = <0x5600fe00 0x4>,
<0x5600fe10 0x4>;
reg-names = "rev", "sysc";
ti,sysc-midle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_NO>,
<SYSC_IDLE_SMART>;
ti,sysc-sidle = <SYSC_IDLE_FORCE>,
<SYSC_IDLE_NO>,
<SYSC_IDLE_SMART>;
clocks = <&gfx_l3_clkctrl AM4_GFX_L3_GFX_CLKCTRL 0>;
clock-names = "fck";
2020-07-02 08:45:12 -07:00
power-domains = <&prm_gfx>;
2019-11-08 13:31:25 -08:00
resets = <&prm_gfx 0>;
reset-names = "rstctrl";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0 0x56000000 0x1000000>;
};
2013-06-03 18:49:54 +05:30
};
};
2013-08-02 19:12:04 +03:00
2018-09-24 16:22:37 -07:00
#include "am437x-l4.dtsi"
2017-12-08 17:17:31 +02:00
#include "am43xx-clocks.dtsi"
2019-10-10 11:21:07 +03:00
&prcm {
prm_gfx: prm@400 {
compatible = "ti,am4-prm-inst", "ti,omap-prm-inst";
reg = <0x400 0x100>;
2020-07-02 08:45:12 -07:00
#power-domain-cells = <0>;
2019-10-10 11:21:07 +03:00
#reset-cells = <1>;
};
prm_per: prm@800 {
compatible = "ti,am4-prm-inst", "ti,omap-prm-inst";
reg = <0x800 0x100>;
#reset-cells = <1>;
};
prm_wkup: prm@2000 {
compatible = "ti,am4-prm-inst", "ti,omap-prm-inst";
reg = <0x2000 0x100>;
#reset-cells = <1>;
};
prm_device: prm@4000 {
compatible = "ti,am4-prm-inst", "ti,omap-prm-inst";
reg = <0x4000 0x100>;
#reset-cells = <1>;
};
};
2020-05-07 09:59:31 -07:00
/* Preferred always-on timer for clocksource */
&timer1_target {
ti,no-reset-on-init;
ti,no-idle;
timer@0 {
assigned-clocks = <&timer1_fck>;
assigned-clock-parents = <&sys_clkin_ck>;
};
};
/* Preferred timer for clockevent */
&timer2_target {
ti,no-reset-on-init;
ti,no-idle;
timer@0 {
assigned-clocks = <&timer2_fck>;
assigned-clock-parents = <&sys_clkin_ck>;
};
};