forked from Qortal/Brooklyn
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
37 lines
699 B
Plaintext
37 lines
699 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+ OR MIT
|
|
//
|
|
// Copyright (C) 2015 Freescale Semiconductor, Inc.
|
|
|
|
#include "imx7d-sdb.dts"
|
|
|
|
/ {
|
|
sensor {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&pinctrl_sensor>;
|
|
compatible = "sensirion,sht15";
|
|
clk-gpios = <&gpio4 12 0>;
|
|
data-gpios = <&gpio4 13 0>;
|
|
vcc-supply = <®_sht15>;
|
|
};
|
|
|
|
reg_sht15: regulator-sht15 {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "reg_sht15";
|
|
regulator-min-microvolt = <3300000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
};
|
|
};
|
|
|
|
&i2c3 {
|
|
status = "disabled";
|
|
};
|
|
|
|
&iomuxc {
|
|
pinctrl_sensor: sensorgrp {
|
|
fsl,pins = <
|
|
MX7D_PAD_I2C3_SDA__GPIO4_IO13 0x4000007f
|
|
MX7D_PAD_I2C3_SCL__GPIO4_IO12 0x4000007f
|
|
>;
|
|
};
|
|
};
|