Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. /dts-v1/;
  2. /plugin/;
  3.  
  4. / {
  5. compatible = "brcm,bcm2835";
  6. fragment@0 {
  7. target = <&spi0>;
  8. __overlay__ {
  9. #address-cells = <1>;
  10. #size-cells = <0>;
  11.  
  12. status = "okay";
  13.  
  14. spidev@0 {
  15. status = "disabled";
  16. };
  17. spidev@1 {
  18. status = "disabled";
  19. };
  20. };
  21. };
  22.  
  23. fragment@1 {
  24. target = <&spi0>;
  25. __overlay__ {
  26. #address-cells = <1>;
  27. #size-cells = <0>;
  28.  
  29. status = "okay";
  30.  
  31. w5500@1 {
  32. compatible = "wiznet,w5500";
  33. reg = <0>;
  34. spi-max-frequency = <10000000>;
  35. mac-address = [00 08 DC 01 02 03];
  36. interrupts = <22 0x8>;
  37. interrupt-parent = <&gpio>;
  38. status = "okay";
  39. };
  40. };
  41. };
  42. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement