184a25769c
Use setting from devicetree to drive the default setting for CORTEX_M_SYSTICK. We update the dts files to default systick to be enabled since the major of cortex-m platforms utilize it by default (except on Nordic SoCs, TI CC13x2/CC26x2 and MEC1501 in which we default to disabled). Fixes #25299 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
27 lines
462 B
Plaintext
27 lines
462 B
Plaintext
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#include "skeleton.dtsi"
|
|
|
|
/ {
|
|
soc {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "simple-bus";
|
|
interrupt-parent = <&nvic>;
|
|
ranges;
|
|
|
|
nvic: interrupt-controller@e000e100 {
|
|
compatible = "arm,v8m-nvic";
|
|
reg = <0xe000e100 0xc00>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
};
|
|
|
|
systick: timer@e000e010 {
|
|
compatible = "arm,armv8m-systick";
|
|
reg = <0xe000e010 0x10>;
|
|
};
|
|
};
|
|
};
|
|
|