Commit 36fe2684 authored by Srinivasa Rao Mandadapu's avatar Srinivasa Rao Mandadapu Committed by Linus Walleij

pinctrl: qcom: sc7280: Add clock optional check for ADSP bypass targets

Update lpass lpi pin control driver, with clock optional check for ADSP
disabled platforms. This check required for distingushing ADSP based
platforms and ADSP bypass platforms.
In case of ADSP enabled platforms, where audio is routed through ADSP
macro and decodec GDSC Switches are triggered as clocks by pinctrl
driver and ADSP firmware controls them. So It's mandatory to enable
them in ADSP based solutions.
In case of ADSP bypass platforms clock voting is optional as these macro
and dcodec GDSC switches are maintained as power domains and operated from
lpass clock drivers.
Signed-off-by: default avatarSrinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Reviewed-by: default avatarStephen Boyd <swboyd@chromium.org>
Link: https://lore.kernel.org/r/1654921357-16400-3-git-send-email-quic_srivasam@quicinc.comSigned-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 174eceea
...@@ -388,6 +388,8 @@ int lpi_pinctrl_probe(struct platform_device *pdev) ...@@ -388,6 +388,8 @@ int lpi_pinctrl_probe(struct platform_device *pdev)
pctrl->data = data; pctrl->data = data;
pctrl->dev = &pdev->dev; pctrl->dev = &pdev->dev;
data->is_clk_optional = of_property_read_bool(np, "qcom,adsp-bypass-mode");
pctrl->clks[0].id = "core"; pctrl->clks[0].id = "core";
pctrl->clks[1].id = "audio"; pctrl->clks[1].id = "audio";
......
...@@ -141,7 +141,6 @@ static const struct lpi_pinctrl_variant_data sc7280_lpi_data = { ...@@ -141,7 +141,6 @@ static const struct lpi_pinctrl_variant_data sc7280_lpi_data = {
.ngroups = ARRAY_SIZE(sc7280_groups), .ngroups = ARRAY_SIZE(sc7280_groups),
.functions = sc7280_functions, .functions = sc7280_functions,
.nfunctions = ARRAY_SIZE(sc7280_functions), .nfunctions = ARRAY_SIZE(sc7280_functions),
.is_clk_optional = true,
}; };
static const struct of_device_id lpi_pinctrl_of_match[] = { static const struct of_device_id lpi_pinctrl_of_match[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment