xlp_gvp.dts 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * XLP9XX Device Tree Source for GVP boards
  3. */
  4. /dts-v1/;
  5. / {
  6. model = "netlogic,XLP-GVP";
  7. compatible = "netlogic,xlp";
  8. #address-cells = <2>;
  9. #size-cells = <2>;
  10. soc {
  11. #address-cells = <2>;
  12. #size-cells = <1>;
  13. compatible = "simple-bus";
  14. ranges = <0 0 0 0x18000000 0x04000000 // PCIe CFG
  15. 1 0 0 0x16000000 0x02000000>; // GBU chipselects
  16. serial0: serial@30000 {
  17. device_type = "serial";
  18. compatible = "ns16550";
  19. reg = <0 0x112100 0xa00>;
  20. reg-shift = <2>;
  21. reg-io-width = <4>;
  22. clock-frequency = <125000000>;
  23. interrupt-parent = <&pic>;
  24. interrupts = <17>;
  25. };
  26. pic: pic@4000 {
  27. interrupt-controller;
  28. #address-cells = <0>;
  29. #interrupt-cells = <1>;
  30. reg = <0 0x110000 0x200>;
  31. };
  32. nor_flash@1,0 {
  33. compatible = "cfi-flash";
  34. #address-cells = <1>;
  35. #size-cells = <1>;
  36. bank-width = <2>;
  37. reg = <1 0 0x1000000>;
  38. partition@0 {
  39. label = "x-loader";
  40. reg = <0x0 0x100000>; /* 1M */
  41. read-only;
  42. };
  43. partition@100000 {
  44. label = "u-boot";
  45. reg = <0x100000 0x100000>; /* 1M */
  46. };
  47. partition@200000 {
  48. label = "kernel";
  49. reg = <0x200000 0x500000>; /* 5M */
  50. };
  51. partition@700000 {
  52. label = "rootfs";
  53. reg = <0x700000 0x800000>; /* 8M */
  54. };
  55. partition@f00000 {
  56. label = "env";
  57. reg = <0xf00000 0x100000>; /* 1M */
  58. read-only;
  59. };
  60. };
  61. };
  62. chosen {
  63. bootargs = "console=ttyS0,115200 rdinit=/sbin/init";
  64. };
  65. };