zynq-zybo.dts 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (C) 2011 - 2014 Xilinx
  3. * Copyright (C) 2012 National Instruments Corp.
  4. *
  5. * This software is licensed under the terms of the GNU General Public
  6. * License version 2, as published by the Free Software Foundation, and
  7. * may be copied, distributed, and modified under those terms.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. /dts-v1/;
  15. /include/ "zynq-7000.dtsi"
  16. / {
  17. model = "Zynq ZYBO Development Board";
  18. compatible = "digilent,zynq-zybo", "xlnx,zynq-7000";
  19. aliases {
  20. ethernet0 = &gem0;
  21. serial0 = &uart1;
  22. };
  23. memory {
  24. device_type = "memory";
  25. reg = <0x0 0x20000000>;
  26. };
  27. chosen {
  28. bootargs = "earlycon";
  29. stdout-path = "serial0:115200n8";
  30. };
  31. usb_phy0: phy0 {
  32. #phy-cells = <0>;
  33. compatible = "usb-nop-xceiv";
  34. reset-gpios = <&gpio0 46 1>;
  35. };
  36. };
  37. &clkc {
  38. ps-clk-frequency = <50000000>;
  39. };
  40. &gem0 {
  41. status = "okay";
  42. phy-mode = "rgmii-id";
  43. phy-handle = <&ethernet_phy>;
  44. ethernet_phy: ethernet-phy@0 {
  45. reg = <0>;
  46. };
  47. };
  48. &sdhci0 {
  49. status = "okay";
  50. };
  51. &uart1 {
  52. status = "okay";
  53. };
  54. &usb0 {
  55. status = "okay";
  56. dr_mode = "host";
  57. usb-phy = <&usb_phy0>;
  58. };