imx6qdl-pico-hobbit.dtsi 536 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // SPDX-License-Identifier: GPL-2.0+ OR MIT
  2. //
  3. // Copyright 2017 NXP
  4. #include "imx6qdl-pico.dtsi"
  5. / {
  6. leds {
  7. compatible = "gpio-leds";
  8. pinctrl-names = "default";
  9. pinctrl-0 = <&pinctrl_gpio_leds>;
  10. led {
  11. label = "gpio-led";
  12. gpios = <&gpio5 31 GPIO_ACTIVE_HIGH>;
  13. };
  14. };
  15. };
  16. &i2c2 {
  17. status = "okay";
  18. adc081c: adc@50 {
  19. compatible = "ti,adc081c";
  20. reg = <0x50>;
  21. vref-supply = <&reg_3p3v>;
  22. };
  23. };
  24. &iomuxc {
  25. pinctrl_gpio_leds: gpioledsgrp {
  26. fsl,pins = <
  27. MX6QDL_PAD_CSI0_DAT13__GPIO5_IO31 0x1b0b0
  28. >;
  29. };
  30. };