-
Notifications
You must be signed in to change notification settings - Fork 404
dts: msm8952: add support for Mobvoi TicWatch Pro 3 LTE (rover) #558
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// SPDX-License-Identifier: BSD-3-Clause | ||
#include <skeleton64.dtsi> | ||
#include <lk2nd.dtsi> | ||
|
||
/* | ||
* This device is quirky. | ||
* To run lk2nd on this device you need to flash custom dtbo. | ||
* Read more https://wiki.postmarketos.org/wiki/Mobvoi_Ticwatch_Pro_3_LTE_(mobvoi-rover)#lk2nd | ||
*/ | ||
/ { | ||
qcom,msm-id = <QCOM_ID_SDM429W 0x00>; | ||
qcom,board-id = <0x10b 0x08>; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thinking of it, perhaps also qrd v0.1 here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Could be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should i rename to wtp and add bootloader match to it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if the thing uses caf msm/board id then yeah, it's better to use caf naming for the file and have matching, so it's easier to disambiguate later if another device needs same ID |
||
/* Bootloader appears to really want to access symbols */ | ||
__symbols__ {}; | ||
}; | ||
|
||
&lk2nd { | ||
model = "Mobvoi TicWatch Pro 3 LTE (rover)"; | ||
compatible = "mobvoi,rover"; | ||
|
||
lk2nd,dtb-files = "sdm429w-mobvoi-rover"; | ||
|
||
gpio-keys { | ||
compatible = "gpio-keys"; | ||
|
||
down { | ||
lk2nd,code = <KEY_VOLUMEDOWN>; | ||
gpios = <&tlmm 48 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; | ||
}; | ||
|
||
power { | ||
lk2nd,code = <KEY_POWER>; | ||
gpios = <&pmic_pon GPIO_PMIC_PWRKEY 0>; | ||
}; | ||
}; | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think it is quirky that is how this SoC are working, other dtbo devices documented on the postmarketos wiki maybe we should do the same here.