hsdk.dts 829 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright (C) 2017 Synopsys, Inc. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. /dts-v1/;
  7. #include "skeleton.dtsi"
  8. / {
  9. #address-cells = <1>;
  10. #size-cells = <1>;
  11. aliases {
  12. console = &uart0;
  13. };
  14. cpu_card {
  15. core_clk: core_clk {
  16. #clock-cells = <0>;
  17. compatible = "fixed-clock";
  18. clock-frequency = <1000000000>;
  19. u-boot,dm-pre-reloc;
  20. };
  21. };
  22. uart0: serial0@f0005000 {
  23. compatible = "snps,dw-apb-uart";
  24. reg = <0xf0005000 0x1000>;
  25. reg-shift = <2>;
  26. reg-io-width = <4>;
  27. };
  28. ethernet@f0008000 {
  29. #interrupt-cells = <1>;
  30. compatible = "altr,socfpga-stmmac";
  31. reg = <0xf0008000 0x2000>;
  32. phy-mode = "gmii";
  33. };
  34. ehci@0xf0040000 {
  35. compatible = "generic-ehci";
  36. reg = <0xf0040000 0x100>;
  37. };
  38. ohci@0xf0060000 {
  39. compatible = "generic-ohci";
  40. reg = <0xf0060000 0x100>;
  41. };
  42. };