Message ID | 20230806-xiaomi-star-v1-1-0c384e8b5737@gmail.com |
---|---|
State | Superseded |
Headers | show |
Series | Add initial support for Xiaomi Mi 11 Ultra | expand |
On 5.08.2023 19:03, Xilin Wu via B4 Relay wrote: > From: Xilin Wu <wuxilin123@gmail.com> > > UCSI is supported on SM8350. Allow it to enable USB role switch and > altmode notifications on SM8350. > > Signed-off-by: Xilin Wu <wuxilin123@gmail.com> > --- I can confirm this is also required for my SM8350 Xperia 1 III. You will however need to rebase this patch atop next, sm8550_client_mask no longer exists. Konrad
On Sat, 12 Aug 2023 at 14:12, Konrad Dybcio <konrad.dybcio@linaro.org> wrote: > > On 5.08.2023 19:03, Xilin Wu via B4 Relay wrote: > > From: Xilin Wu <wuxilin123@gmail.com> > > > > UCSI is supported on SM8350. Allow it to enable USB role switch and > > altmode notifications on SM8350. > > > > Signed-off-by: Xilin Wu <wuxilin123@gmail.com> > > --- > I can confirm this is also required for my SM8350 Xperia 1 III. Last time I checked it, UCSI was broken on the SM8350 HDK. Trying to enable it caused pmic_glink to stop working after some port operations.
Dmitry Baryshkov <dmitry.baryshkov@linaro.org> 于2023年8月13日周日 18:56写道: > > On Sat, 12 Aug 2023 at 14:12, Konrad Dybcio <konrad.dybcio@linaro.org> wrote: > > > > On 5.08.2023 19:03, Xilin Wu via B4 Relay wrote: > > > From: Xilin Wu <wuxilin123@gmail.com> > > > > > > UCSI is supported on SM8350. Allow it to enable USB role switch and > > > altmode notifications on SM8350. > > > > > > Signed-off-by: Xilin Wu <wuxilin123@gmail.com> > > > --- > > I can confirm this is also required for my SM8350 Xperia 1 III. > > Last time I checked it, UCSI was broken on the SM8350 HDK. Trying to > enable it caused pmic_glink to stop working after some port > operations. I guess it could be firmware related issues? It works fine on my device with latest firmware.
diff --git a/drivers/soc/qcom/pmic_glink.c b/drivers/soc/qcom/pmic_glink.c index c87056769ebd..0f8ac55ec2ac 100644 --- a/drivers/soc/qcom/pmic_glink.c +++ b/drivers/soc/qcom/pmic_glink.c @@ -347,6 +347,7 @@ static const unsigned long pmic_glink_sm8550_client_mask = BIT(PMIC_GLINK_CLIENT BIT(PMIC_GLINK_CLIENT_UCSI); static const struct of_device_id pmic_glink_of_match[] = { + { .compatible = "qcom,sm8350-pmic-glink", .data = &pmic_glink_sm8450_client_mask }, { .compatible = "qcom,sm8450-pmic-glink", .data = &pmic_glink_sm8450_client_mask }, { .compatible = "qcom,sm8550-pmic-glink", .data = &pmic_glink_sm8550_client_mask }, { .compatible = "qcom,pmic-glink" },