armv7-m.dtsi 408 B

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