intel-ixp42x-welltech-epbx100.dts 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (C) 2021 Corentin Labbe <[email protected]>
  4. */
  5. /dts-v1/;
  6. #include "intel-ixp42x.dtsi"
  7. / {
  8. model = "Welltech EPBX100";
  9. compatible = "welltech,epbx100", "intel,ixp42x";
  10. #address-cells = <1>;
  11. #size-cells = <1>;
  12. memory@0 {
  13. /* 64 MB SDRAM */
  14. device_type = "memory";
  15. reg = <0x00000000 0x4000000>;
  16. };
  17. chosen {
  18. bootargs = "console=ttyS0,115200n8 root=/dev/ram0 initrd=0x00800000,9M";
  19. stdout-path = "uart0:115200n8";
  20. };
  21. aliases {
  22. serial0 = &uart0;
  23. };
  24. soc {
  25. bus@c4000000 {
  26. flash@0,0 {
  27. compatible = "intel,ixp4xx-flash", "cfi-flash";
  28. bank-width = <2>;
  29. /*
  30. * 16 MB of Flash
  31. */
  32. reg = <0 0x00000000 0x1000000>;
  33. partitions {
  34. compatible = "fixed-partitions";
  35. #address-cells = <1>;
  36. #size-cells = <1>;
  37. partition@0 {
  38. label = "RedBoot";
  39. reg = <0x00000000 0x00080000>;
  40. read-only;
  41. };
  42. partition@80000 {
  43. label = "zImage";
  44. reg = <0x00080000 0x00100000>;
  45. read-only;
  46. };
  47. partition@180000 {
  48. label = "ramdisk";
  49. reg = <0x00180000 0x00300000>;
  50. read-only;
  51. };
  52. partition@480000 {
  53. label = "User";
  54. reg = <0x00480000 0x00b60000>;
  55. read-only;
  56. };
  57. partition@fe0000 {
  58. label = "FIS directory";
  59. reg = <0x00fe0000 0x001f000>;
  60. read-only;
  61. };
  62. partition@fff000 {
  63. label = "RedBoot config";
  64. reg = <0x00fff000 0x0001000>;
  65. read-only;
  66. };
  67. };
  68. };
  69. };
  70. };
  71. };