bcm2835.dtsi 450 B

12345678910111213141516171819202122232425
  1. /include/ "skeleton.dtsi"
  2. / {
  3. compatible = "brcm,bcm2835";
  4. model = "BCM2835";
  5. interrupt-parent = <&intc>;
  6. chosen {
  7. bootargs = "earlyprintk";
  8. };
  9. soc {
  10. compatible = "simple-bus";
  11. #address-cells = <1>;
  12. #size-cells = <1>;
  13. ranges = <0x7e000000 0x20000000 0x02000000>;
  14. intc: interrupt-controller {
  15. compatible = "brcm,bcm2835-armctrl-ic";
  16. reg = <0x7e00b200 0x200>;
  17. interrupt-controller;
  18. #interrupt-cells = <2>;
  19. };
  20. };
  21. };