[PATCH v1 05/10] PCI: qcom: add flag to enable use of ddrss_sf_tbu clock
Bjorn Helgaas
helgaas at kernel.org
Mon Dec 6 11:53:27 PST 2021
On Thu, Dec 02, 2021 at 05:17:21PM +0300, Dmitry Baryshkov wrote:
> Qualcomm PCIe driver uses compatible string to check if the ddrss_sf_tbu
> clock should be used. Since sc7280 support has added flags, switch to
> the new mechanism to check if this clock should be used.
Thanks for doing this!
If you have occasion to update this series, please update the subject
lines to match the existing convention of capitalizing the first word.
"git log --oneline drivers/pci/controller/dwc/pcie-qcom.c" looks like
this:
4e0e90539bb0 ("PCI: qcom: Fix an error handling path in 'qcom_pcie_probe()'")
45a3ec891370 ("PCI: qcom: Add sc8180x compatible")
aa9c0df98c29 ("PCI: qcom: Switch pcie_1_pipe_clk_src after PHY init in SC7280")
b89ff410253d ("PCI: qcom: Replace ops with struct pcie_cfg in pcie match data")
2cfef1971aea ("PCI: qcom: Use PHY_REFCLK_USE_PAD only for ipq8064")
7081556f81f7 ("PCI: qcom: Add support for ddrss_sf_tbu clock")
4c9398822106 ("PCI: qcom: Add support for configuring BDF to SID mapping for SM8250")
e1dd639e374a ("PCI: qcom: Add SM8250 SoC support")
Personally, I would also reorder the wording so the more important
words are earlier, e.g.,
PCI: qcom: Add ddrss_sf_tbu clock flag
PCI: qcom: Add SM8450 support
PCI: qcom: Remove qcom_pcie, qcom_pcie_cfg redundancy
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov at linaro.org>
> ---
> drivers/pci/controller/dwc/pcie-qcom.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/pci/controller/dwc/pcie-qcom.c b/drivers/pci/controller/dwc/pcie-qcom.c
> index 64f762cdbc7d..e51b313da46f 100644
> --- a/drivers/pci/controller/dwc/pcie-qcom.c
> +++ b/drivers/pci/controller/dwc/pcie-qcom.c
> @@ -194,7 +194,9 @@ struct qcom_pcie_ops {
>
> struct qcom_pcie_cfg {
> const struct qcom_pcie_ops *ops;
> + /* flags for ops 2.7.0 and 1.9.0 */
> unsigned int pipe_clk_need_muxing:1;
> + unsigned int has_ddrss_sf_tbu_clk:1;
> };
>
> struct qcom_pcie {
> @@ -1164,7 +1166,7 @@ static int qcom_pcie_get_resources_2_7_0(struct qcom_pcie *pcie)
> res->clks[3].id = "bus_slave";
> res->clks[4].id = "slave_q2a";
> res->clks[5].id = "tbu";
> - if (of_device_is_compatible(dev->of_node, "qcom,pcie-sm8250")) {
> + if (pcie->cfg.has_ddrss_sf_tbu_clk) {
> res->clks[6].id = "ddrss_sf_tbu";
> res->num_clks = 7;
> } else {
> @@ -1515,6 +1517,7 @@ static const struct qcom_pcie_cfg sdm845_cfg = {
>
> static const struct qcom_pcie_cfg sm8250_cfg = {
> .ops = &ops_1_9_0,
> + .has_ddrss_sf_tbu_clk = true,
> };
>
> static const struct qcom_pcie_cfg sc7280_cfg = {
> --
> 2.33.0
>
More information about the linux-phy
mailing list