Advertisement
Guest User

NBG6817 working dts gmac part

a guest
Dec 27th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. &gmac1 {
  2. status = "okay";
  3. compatible = "qcom,nss-gmac";
  4. reg = <0x37200000 0x200000>;
  5. interrupts = <GIC_SPI 223 IRQ_TYPE_LEVEL_HIGH>;
  6. phy-mode = "rgmii";
  7. qcom,id = <1>;
  8. qcom,pcs-chanid = <0>;
  9. qcom,phy-mdio-addr = <4>;
  10. qcom,poll-required = <0>;
  11. qcom,rgmii-delay = <1>;
  12. qcom,phy_mii_type = <0>;
  13. qcom,emulation = <0>;
  14. qcom,forced-speed = <1000>;
  15. qcom,forced-duplex = <1>;
  16. qcom,socver = <0>;
  17. qcom,irq = <255>;
  18. mdiobus = <&mdio0>;
  19.  
  20. pinctrl-0 = <&rgmii2_pins>;
  21. pinctrl-names = "default";
  22.  
  23. fixed-link {
  24. speed = <1000>;
  25. full-duplex;
  26. };
  27. };
  28.  
  29. &gmac2 {
  30. status = "okay";
  31. compatible = "qcom,nss-gmac";
  32. reg = <0x37400000 0x200000>;
  33. interrupts = <GIC_SPI 226 IRQ_TYPE_LEVEL_HIGH>;
  34. phy-mode = "sgmii";
  35. qcom,id = <2>;
  36. qcom,pcs-chanid = <1>;
  37. qcom,phy-mdio-addr = <0>; /* none */
  38. qcom,poll-required = <0>; /* no polling */
  39. qcom,rgmii-delay = <0>;
  40. qcom,phy_mii_type = <1>;
  41. qcom,emulation = <0>;
  42. qcom,forced-speed = <1000>;
  43. qcom,forced-duplex = <1>;
  44. qcom,socver = <0>;
  45. qcom,irq = <258>;
  46. mdiobus = <&mdio0>;
  47.  
  48. fixed-link {
  49. speed = <1000>;
  50. full-duplex;
  51. };
  52. };
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement