Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for 10or G (G) #67

Merged
merged 3 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and then loaded by lk2nd.
- SDM632

### Supported devices
- 10or G (G)
- Motorola Moto G4 Play (harpia)
- Motorola Moto G5 Plus (potter)
- Samsung Galaxy A3 (2015) - SM-A300FU
Expand Down
18 changes: 10 additions & 8 deletions dts/msm8953-tenor-holland.dts → dts/msm8953-10or-G.dts
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,26 @@
qcom,board-id= <0x2000b 0x0>;
qcom,pmic-id = <0x10016 0x10011 0x00 0x00>;

model = "10Or G";
compatible = "tenor,g", "qcom,msm8953", "lk2nd,device";
lk2nd,pstore = <0x9ff00000 0x100000>;
model = "10or G";
compatible = "10or,G", "qcom,msm8953", "lk2nd,device";
lk2nd,pstore = <0x9ff00000 0x300000>;

panel {

compatible = "tenor,g-panel";
compatible = "10or,G-panel";

qcom,mdss_dsi_hx8399c_auo_53_1080p_video {
compatible = "tenor,hx8399c_auo";
compatible = "10or,hx8399c_auo";
MarvelMathesh marked this conversation as resolved.
Show resolved Hide resolved
touchscreen-compatible = "edt,edt-ft5406";
};

qcom,mdss_dsi_ili7807d_djn_53_1080p_video {
compatible = "tenor,ili7807d_djn";
compatible = "10or,ili7807d_djn";
MarvelMathesh marked this conversation as resolved.
Show resolved Hide resolved
touchscreen-compatible = "goodix,gt917d";
};

qcom,mdss_dsi_ili7807d_djn_auo_53_1080p_video {
compatible = "tenor,ili7807d_djn_auo";
compatible = "10or,ili7807d_djn_auo";
MarvelMathesh marked this conversation as resolved.
Show resolved Hide resolved
touchscreen-compatible = "goodix,gt917d";
};

};
Expand Down
2 changes: 1 addition & 1 deletion dts/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ DTBS += \
endif
ifeq ($(PROJECT), msm8953-secondary)
DTBS += \
$(LOCAL_DIR)/msm8953-10or-G.dtb \
MarvelMathesh marked this conversation as resolved.
Show resolved Hide resolved
$(LOCAL_DIR)/msm8953-huawei-milan.dtb \
$(LOCAL_DIR)/msm8953-lenovo-kuntao.dtb \
$(LOCAL_DIR)/msm8953-meizu-m1721.dtb \
$(LOCAL_DIR)/msm8953-motorola-potter.dtb \
$(LOCAL_DIR)/msm8953-tenor-holland.dtb \
$(LOCAL_DIR)/msm8953-xiaomi-common.dtb \
$(LOCAL_DIR)/msm8953-xiaomi-daisy.dtb \
$(LOCAL_DIR)/msm8953-xiaomi-markw.dtb \
Expand Down
Loading