imx7d-sdb-sht11.dts 699 B

123456789101112131415161718192021222324252627282930313233343536
  1. // SPDX-License-Identifier: GPL-2.0+ OR MIT
  2. //
  3. // Copyright (C) 2015 Freescale Semiconductor, Inc.
  4. #include "imx7d-sdb.dts"
  5. / {
  6. sensor {
  7. pinctrl-names = "default";
  8. pinctrl-0 = <&pinctrl_sensor>;
  9. compatible = "sensirion,sht15";
  10. clk-gpios = <&gpio4 12 0>;
  11. data-gpios = <&gpio4 13 0>;
  12. vcc-supply = <&reg_sht15>;
  13. };
  14. reg_sht15: regulator-sht15 {
  15. compatible = "regulator-fixed";
  16. regulator-name = "reg_sht15";
  17. regulator-min-microvolt = <3300000>;
  18. regulator-max-microvolt = <3300000>;
  19. };
  20. };
  21. &i2c3 {
  22. status = "disabled";
  23. };
  24. &iomuxc {
  25. pinctrl_sensor: sensorgrp {
  26. fsl,pins = <
  27. MX7D_PAD_I2C3_SDA__GPIO4_IO13 0x4000007f
  28. MX7D_PAD_I2C3_SCL__GPIO4_IO12 0x4000007f
  29. >;
  30. };
  31. };