armv7-m.dtsi 444 B

1234567891011121314151617181920212223
  1. // SPDX-License-Identifier: GPL-2.0
  2. / {
  3. nvic: interrupt-controller@e000e100 {
  4. compatible = "arm,armv7m-nvic";
  5. interrupt-controller;
  6. #interrupt-cells = <1>;
  7. reg = <0xe000e100 0xc00>;
  8. };
  9. systick: timer@e000e010 {
  10. compatible = "arm,armv7m-systick";
  11. reg = <0xe000e010 0x10>;
  12. status = "disabled";
  13. };
  14. soc {
  15. #address-cells = <1>;
  16. #size-cells = <1>;
  17. compatible = "simple-bus";
  18. interrupt-parent = <&nvic>;
  19. ranges;
  20. };
  21. };