Message ID | 1656659827-27450-3-git-send-email-quic_srivasam@quicinc.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add software clock gating requirement check | expand |
On 01-07-22, 12:47, Srinivasa Rao Mandadapu wrote: > Enable software clock gating flag in private data for SC7280 > based platforms, which are soundwire 1.6.0 version based. why is this tagged ASoC... ??? I have fixed it up while applying
On 7/4/2022 11:06 AM, Vinod Koul wrote: > On 01-07-22, 12:47, Srinivasa Rao Mandadapu wrote: >> Enable software clock gating flag in private data for SC7280 >> based platforms, which are soundwire 1.6.0 version based. > why is this tagged ASoC... ??? As regular habit, did this mistake. No particular intention. Will take care from next time. > > I have fixed it up while applying Thanks Vinod. Sorry for inconvenience caused. >
diff --git a/drivers/soundwire/qcom.c b/drivers/soundwire/qcom.c index 5baceda..4a77e74 100644 --- a/drivers/soundwire/qcom.c +++ b/drivers/soundwire/qcom.c @@ -192,6 +192,12 @@ static const struct qcom_swrm_data swrm_v1_5_data = { .default_cols = 16, }; +static const struct qcom_swrm_data swrm_v1_6_data = { + .default_rows = 50, + .default_cols = 16, + .sw_clk_gate_required = true, +}; + #define to_qcom_sdw(b) container_of(b, struct qcom_swrm_ctrl, bus) static int qcom_swrm_ahb_reg_read(struct qcom_swrm_ctrl *ctrl, int reg, @@ -1558,7 +1564,7 @@ static const struct dev_pm_ops swrm_dev_pm_ops = { static const struct of_device_id qcom_swrm_of_match[] = { { .compatible = "qcom,soundwire-v1.3.0", .data = &swrm_v1_3_data }, { .compatible = "qcom,soundwire-v1.5.1", .data = &swrm_v1_5_data }, - { .compatible = "qcom,soundwire-v1.6.0", .data = &swrm_v1_5_data }, + { .compatible = "qcom,soundwire-v1.6.0", .data = &swrm_v1_6_data }, {/* sentinel */}, };