bcm2835-rpi-cm1.dtsi 643 B

12345678910111213141516171819202122232425262728293031323334
  1. // SPDX-License-Identifier: GPL-2.0
  2. /dts-v1/;
  3. #include "bcm2835.dtsi"
  4. #include "bcm2835-rpi.dtsi"
  5. / {
  6. leds {
  7. act {
  8. gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
  9. };
  10. };
  11. reg_3v3: fixed-regulator {
  12. compatible = "regulator-fixed";
  13. regulator-name = "3V3";
  14. regulator-min-microvolt = <3300000>;
  15. regulator-max-microvolt = <3300000>;
  16. regulator-always-on;
  17. };
  18. reg_1v8: fixed-regulator {
  19. compatible = "regulator-fixed";
  20. regulator-name = "1V8";
  21. regulator-min-microvolt = <1800000>;
  22. regulator-max-microvolt = <1800000>;
  23. regulator-always-on;
  24. };
  25. };
  26. &sdhost {
  27. non-removable;
  28. vmmc-supply = <&reg_3v3>;
  29. vqmmc-supply = <&reg_1v8>;
  30. };