n1sdp-single-chip.dts 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. // SPDX-License-Identifier: (GPL-2.0 or BSD-3-Clause)
  2. /*
  3. * Copyright (c) 2019-2020, Arm Limited.
  4. */
  5. /dts-v1/;
  6. #include "n1sdp.dtsi"
  7. / {
  8. model = "Arm Neoverse N1 System Development Platform";
  9. compatible = "arm,neoverse-n1-sdp", "arm,neoverse-n1-soc";
  10. aliases {
  11. serial0 = &soc_uart0;
  12. };
  13. chosen {
  14. stdout-path = "serial0:115200n8";
  15. };
  16. /* This configuration assumes that standard setup with two DIMM modules.
  17. * In the first 2GB of DRAM bank the top 16MB are reserved by firmware as secure memory.
  18. * This configuration assumes 16GB of total DRAM being populated.
  19. */
  20. memory@80000000 {
  21. device_type = "memory";
  22. reg = <0x00000000 0x80000000 0x0 0x7f000000>,
  23. <0x00000080 0x80000000 0x3 0x80000000>;
  24. numa-node-id = <0>;
  25. };
  26. soc_refclk60mhz: refclk60mhz {
  27. compatible = "fixed-clock";
  28. #clock-cells = <0>;
  29. clock-frequency = <60000000>;
  30. clock-output-names = "iofpga_clk";
  31. };
  32. soc_hdlcdclk: hdlcdclk {
  33. compatible = "fixed-clock";
  34. #clock-cells = <0>;
  35. clock-frequency = <23750000>;
  36. clock-output-names = "hdlcdclk";
  37. };
  38. hdlcd: hdlcd@1c050000 {
  39. compatible = "arm,hdlcd";
  40. reg = <0 0x1c050000 0 0x1000>;
  41. interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
  42. clocks = <&soc_hdlcdclk>;
  43. clock-names = "pxlclk";
  44. port {
  45. hdlcd0_output: endpoint {
  46. remote-endpoint = <&tda998x_0_input>;
  47. };
  48. };
  49. };
  50. i2c@1c0f0000 {
  51. compatible = "arm,versatile-i2c";
  52. reg = <0x0 0x1c0f0000 0x0 0x1000>;
  53. #address-cells = <1>;
  54. #size-cells = <0>;
  55. clock-frequency = <400000>;
  56. i2c-sda-hold-time-ns = <500>;
  57. clocks = <&soc_refclk60mhz>;
  58. hdmi-transmitter@70 {
  59. compatible = "nxp,tda998x";
  60. reg = <0x70>;
  61. port {
  62. tda998x_0_input: endpoint {
  63. remote-endpoint = <&hdlcd0_output>;
  64. };
  65. };
  66. };
  67. };
  68. };
  69. &pcie_ctlr {
  70. status = "okay";
  71. };
  72. &ccix_pcie_ctlr {
  73. status = "okay";
  74. };
  75. &soc_uart0 {
  76. status = "okay";
  77. };