* Re: [PATCH v5 2/2] arm64: dts: qcom: Add Xiaomi 12 Lite 5G (taoyao) DTS [not found] ` <pxldv7v6iymoa7oyg5xs5d76atl7fliol4oty3urudvnkoaynj@4xhovegebszz> @ 2026-05-12 7:59 ` Stanislav Zaikin 2026-05-13 14:34 ` Dmitry Baryshkov 0 siblings, 1 reply; 3+ messages in thread From: Stanislav Zaikin @ 2026-05-12 7:59 UTC (permalink / raw) To: Dmitry Baryshkov Cc: devicetree, linux-arm-msm, andersson, konradybcio, robh, krzk+dt, conor+dt, linux-kernel, val On 4/19/26 1:47 AM, Dmitry Baryshkov wrote: > On Fri, Apr 17, 2026 at 10:47:49AM +0200, Stanislav Zaikin wrote: >> Xiaomi 12 Lite 5G is a handset released in 2022 >> >> This commit has the following features working: >> - Display (with simple fb) >> - Touchscreen >> - UFS >> - Power and volume buttons >> - Pinctrl >> - RPM Regulators >> - Remoteprocs - wifi, bluetooth >> - USB (Device Mode) >> >> Signed-off-by: Stanislav Zaikin <zstaseg@gmail.com> >> --- >> arch/arm64/boot/dts/qcom/Makefile | 1 + >> .../boot/dts/qcom/sm7325-xiaomi-taoyao.dts | 907 ++++++++++++++++++ >> 2 files changed, 908 insertions(+) >> create mode 100644 arch/arm64/boot/dts/qcom/sm7325-xiaomi-taoyao.dts >> >> + >> +&ipa { >> + qcom,gsi-loader = "self"; >> + memory-region = <&ipa_fw_mem>; > > Could you please move these properties to SoC dtsi (as a separate > commit). > Sure will do in v6. >> + firmware-name = "qcom/sm7325/xiaomi/taoyao/ipa_fws.mbn"; >> + >> + status = "okay"; >> +}; >> + >> + >> +&tlmm { >> + gpio-reserved-ranges = <48 4>, <56 4>; > > Could you please add a comment why they are reserved? I _assume_ that 48 > is NFC SE and 56 is fingerprint reader I can add a comment like this (or you can suggest different wording): /* * 48-51: presumably NFC SE * 56-59: presumably fingerprint reader */ If that works, I will add in v6. Thanks for the review, Best regards, Stanislav ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v5 2/2] arm64: dts: qcom: Add Xiaomi 12 Lite 5G (taoyao) DTS 2026-05-12 7:59 ` [PATCH v5 2/2] arm64: dts: qcom: Add Xiaomi 12 Lite 5G (taoyao) DTS Stanislav Zaikin @ 2026-05-13 14:34 ` Dmitry Baryshkov 0 siblings, 0 replies; 3+ messages in thread From: Dmitry Baryshkov @ 2026-05-13 14:34 UTC (permalink / raw) To: Stanislav Zaikin Cc: devicetree, linux-arm-msm, andersson, konradybcio, robh, krzk+dt, conor+dt, linux-kernel, val On Tue, May 12, 2026 at 09:59:59AM +0200, Stanislav Zaikin wrote: > > On 4/19/26 1:47 AM, Dmitry Baryshkov wrote: > > On Fri, Apr 17, 2026 at 10:47:49AM +0200, Stanislav Zaikin wrote: > > > Xiaomi 12 Lite 5G is a handset released in 2022 > > > > > > This commit has the following features working: > > > - Display (with simple fb) > > > - Touchscreen > > > - UFS > > > - Power and volume buttons > > > - Pinctrl > > > - RPM Regulators > > > - Remoteprocs - wifi, bluetooth > > > - USB (Device Mode) > > > > > > Signed-off-by: Stanislav Zaikin <zstaseg@gmail.com> > > > --- > > > arch/arm64/boot/dts/qcom/Makefile | 1 + > > > .../boot/dts/qcom/sm7325-xiaomi-taoyao.dts | 907 ++++++++++++++++++ > > > 2 files changed, 908 insertions(+) > > > create mode 100644 arch/arm64/boot/dts/qcom/sm7325-xiaomi-taoyao.dts > > > > > > > + firmware-name = "qcom/sm7325/xiaomi/taoyao/ipa_fws.mbn"; > > > + > > > + status = "okay"; > > > +}; > > > + > > > + > > > +&tlmm { > > > + gpio-reserved-ranges = <48 4>, <56 4>; > > > > Could you please add a comment why they are reserved? I _assume_ that 48 > > is NFC SE and 56 is fingerprint reader > > I can add a comment like this (or you can suggest different wording): > > /* > * 48-51: presumably NFC SE > * 56-59: presumably fingerprint reader > */ > > If that works, I will add in v6. Yes, thanks > > Thanks for the review, > > Best regards, > Stanislav -- With best wishes Dmitry ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <73cd6f96-07ea-46c3-8f6f-1cc8086a28fe@oss.qualcomm.com>]
* Re: [PATCH v5 2/2] arm64: dts: qcom: Add Xiaomi 12 Lite 5G (taoyao) DTS [not found] ` <73cd6f96-07ea-46c3-8f6f-1cc8086a28fe@oss.qualcomm.com> @ 2026-05-12 8:03 ` Stanislav Zaikin 0 siblings, 0 replies; 3+ messages in thread From: Stanislav Zaikin @ 2026-05-12 8:03 UTC (permalink / raw) To: Konrad Dybcio, devicetree Cc: linux-arm-msm, andersson, konradybcio, robh, krzk+dt, conor+dt, linux-kernel, val On 4/24/26 1:47 PM, Konrad Dybcio wrote: > On 4/17/26 10:47 AM, Stanislav Zaikin wrote: >> Xiaomi 12 Lite 5G is a handset released in 2022 >> >> This commit has the following features working: >> - Display (with simple fb) >> - Touchscreen >> - UFS >> - Power and volume buttons >> - Pinctrl >> - RPM Regulators >> - Remoteprocs - wifi, bluetooth >> - USB (Device Mode) >> >> Signed-off-by: Stanislav Zaikin <zstaseg@gmail.com> >> --- > > [...] > >> + hst_bt_en: hst-bt-en-state { >> + pins = "gpio85"; >> + function = "gpio"; >> + output-low; > > You shouldn't need this property, since the driver will control the > pin Thanks, will fix in v6. Best regards, Stanislav ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-05-13 14:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260417084749.253242-1-zstaseg@gmail.com>
[not found] ` <20260417084749.253242-3-zstaseg@gmail.com>
[not found] ` <pxldv7v6iymoa7oyg5xs5d76atl7fliol4oty3urudvnkoaynj@4xhovegebszz>
2026-05-12 7:59 ` [PATCH v5 2/2] arm64: dts: qcom: Add Xiaomi 12 Lite 5G (taoyao) DTS Stanislav Zaikin
2026-05-13 14:34 ` Dmitry Baryshkov
[not found] ` <73cd6f96-07ea-46c3-8f6f-1cc8086a28fe@oss.qualcomm.com>
2026-05-12 8:03 ` Stanislav Zaikin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox