dove-cubox.dts 841 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /dts-v1/;
  2. /include/ "dove.dtsi"
  3. / {
  4. model = "SolidRun CuBox";
  5. compatible = "solidrun,cubox", "marvell,dove";
  6. memory {
  7. device_type = "memory";
  8. reg = <0x00000000 0x40000000>;
  9. };
  10. chosen {
  11. bootargs = "console=ttyS0,115200n8 earlyprintk";
  12. };
  13. leds {
  14. compatible = "gpio-leds";
  15. power {
  16. label = "Power";
  17. gpios = <&gpio0 18 1>;
  18. linux,default-trigger = "default-on";
  19. };
  20. };
  21. };
  22. &uart0 { status = "okay"; };
  23. &sdio0 { status = "okay"; };
  24. &sata0 { status = "okay"; };
  25. &i2c0 { status = "okay"; };
  26. &spi0 {
  27. status = "okay";
  28. /* spi0.0: 4M Flash Winbond W25Q32BV */
  29. spi-flash@0 {
  30. compatible = "st,w25q32";
  31. spi-max-frequency = <20000000>;
  32. reg = <0>;
  33. };
  34. };
  35. &pinctrl {
  36. pinctrl-0 = <&pmx_gpio_18>;
  37. pinctrl-names = "default";
  38. pmx_gpio_18: pmx-gpio-18 {
  39. marvell,pins = "mpp18";
  40. marvell,function = "gpio";
  41. };
  42. };