kirkwood-dockstar.dts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /dts-v1/;
  2. /include/ "kirkwood.dtsi"
  3. /include/ "kirkwood-6281.dtsi"
  4. / {
  5. model = "Seagate FreeAgent Dockstar";
  6. compatible = "seagate,dockstar", "marvell,kirkwood-88f6281", "marvell,kirkwood";
  7. memory {
  8. device_type = "memory";
  9. reg = <0x00000000 0x8000000>;
  10. };
  11. chosen {
  12. bootargs = "console=ttyS0,115200n8 earlyprintk root=/dev/sda1 rootdelay=10";
  13. };
  14. ocp@f1000000 {
  15. pinctrl: pinctrl@10000 {
  16. pinctrl-0 = < &pmx_usb_power_enable
  17. &pmx_led_green &pmx_led_orange >;
  18. pinctrl-names = "default";
  19. pmx_usb_power_enable: pmx-usb-power-enable {
  20. marvell,pins = "mpp29";
  21. marvell,function = "gpio";
  22. };
  23. pmx_led_green: pmx-led-green {
  24. marvell,pins = "mpp46";
  25. marvell,function = "gpio";
  26. };
  27. pmx_led_orange: pmx-led-orange {
  28. marvell,pins = "mpp47";
  29. marvell,function = "gpio";
  30. };
  31. };
  32. serial@12000 {
  33. clock-frequency = <200000000>;
  34. status = "ok";
  35. };
  36. nand@3000000 {
  37. status = "okay";
  38. partition@0 {
  39. label = "u-boot";
  40. reg = <0x0000000 0x100000>;
  41. read-only;
  42. };
  43. partition@100000 {
  44. label = "uImage";
  45. reg = <0x0100000 0x400000>;
  46. };
  47. partition@500000 {
  48. label = "data";
  49. reg = <0x0500000 0xfb00000>;
  50. };
  51. };
  52. };
  53. gpio-leds {
  54. compatible = "gpio-leds";
  55. health {
  56. label = "status:green:health";
  57. gpios = <&gpio1 14 1>;
  58. linux,default-trigger = "default-on";
  59. };
  60. fault {
  61. label = "status:orange:fault";
  62. gpios = <&gpio1 15 1>;
  63. };
  64. };
  65. regulators {
  66. compatible = "simple-bus";
  67. #address-cells = <1>;
  68. #size-cells = <0>;
  69. usb_power: regulator@1 {
  70. compatible = "regulator-fixed";
  71. reg = <1>;
  72. regulator-name = "USB Power";
  73. regulator-min-microvolt = <5000000>;
  74. regulator-max-microvolt = <5000000>;
  75. enable-active-high;
  76. regulator-always-on;
  77. regulator-boot-on;
  78. gpio = <&gpio0 29 0>;
  79. };
  80. };
  81. };