stih41x.dtsi 689 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. / {
  2. #address-cells = <1>;
  3. #size-cells = <1>;
  4. cpus {
  5. #address-cells = <1>;
  6. #size-cells = <0>;
  7. cpu@0 {
  8. compatible = "arm,cortex-a9";
  9. reg = <0>;
  10. };
  11. cpu@1 {
  12. compatible = "arm,cortex-a9";
  13. reg = <1>;
  14. };
  15. };
  16. intc: interrupt-controller@fffe1000 {
  17. compatible = "arm,cortex-a9-gic";
  18. #interrupt-cells = <3>;
  19. interrupt-controller;
  20. reg = <0xfffe1000 0x1000>,
  21. <0xfffe0100 0x100>;
  22. };
  23. scu@fffe0000 {
  24. compatible = "arm,cortex-a9-scu";
  25. reg = <0xfffe0000 0x1000>;
  26. };
  27. timer@fffe0200 {
  28. interrupt-parent = <&intc>;
  29. compatible = "arm,cortex-a9-global-timer";
  30. reg = <0xfffe0200 0x100>;
  31. interrupts = <1 11 0x04>;
  32. clocks = <&arm_periph_clk>;
  33. };
  34. };