Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions kernel/configs/vamos.config
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ CONFIG_SENSORS_INA2XX=y

# Touchscreen
CONFIG_TOUCHSCREEN_EDT_FT5X06=y
CONFIG_TOUCHSCREEN_S6SY761=y

# GPIO
# TODO: migrate gpio.sh, lte.sh, and power_drop_monitor.py to chardev (libgpiod)
Expand Down
22 changes: 22 additions & 0 deletions kernel/dts/sdm845-comma-tizi.dts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@
compatible = "comma,tizi", "qcom,sdm845";
qcom,msm-id = <341 0x20001>, <321 0x20001>, <321 0x20000>, <348 0x20001>;
qcom,board-id = <0x21 0>;

tp3v3: tp3v3 {
compatible = "regulator-fixed";
regulator-name = "tp3v3";
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
gpio = <&pm8998_gpios 10 0>;
enable-active-high;
};
};

&i2c5 {
status = "okay";
clock-frequency = <100000>;

touchscreen@17 {
compatible = "samsung,s6sy761";
reg = <0x17>;
interrupt-parent = <&tlmm>;
interrupts = <125 IRQ_TYPE_EDGE_FALLING>;
vdd-supply = <&tp3v3>;
};
};

&i2c10 {
Expand Down
Loading