From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
To: Varadarajan Narayanan <quic_varada@quicinc.com>,
lpieralisi@kernel.org, kw@linux.com,
manivannan.sadhasivam@linaro.org, robh@kernel.org,
bhelgaas@google.com, krzk+dt@kernel.org, conor+dt@kernel.org,
vkoul@kernel.org, kishon@kernel.org, andersson@kernel.org,
konradybcio@kernel.org, p.zabel@pengutronix.de,
quic_nsekar@quicinc.com, dmitry.baryshkov@linaro.org,
linux-arm-msm@vger.kernel.org, linux-pci@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-phy@lists.infradead.org
Subject: Re: [PATCH v2 2/6] phy: qcom: Introduce PCIe UNIPHY 28LP driver
Date: Thu, 5 Dec 2024 17:40:15 +0100 [thread overview]
Message-ID: <710aa948-d27f-49f6-a4a8-73f6208502c3@oss.qualcomm.com> (raw)
In-Reply-To: <20241204113329.3195627-3-quic_varada@quicinc.com>
On 4.12.2024 12:33 PM, Varadarajan Narayanan wrote:
> From: Nitheesh Sekar <quic_nsekar@quicinc.com>
>
> Add Qualcomm PCIe UNIPHY 28LP driver support present
> in Qualcomm IPQ5332 SoC and the phy init sequence.
>
> Signed-off-by: Nitheesh Sekar <quic_nsekar@quicinc.com>
> Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
> ---
[...]
> +struct qcom_uniphy_pcie_regs {
> + unsigned int offset;
> + unsigned int val;
u32
> +};
> +
> +struct qcom_uniphy_pcie_data {
> + int lanes;
> + /* 2nd lane offset */
> + int lane_offset;
'lanes', 'lane_offset' and '2nd lane' together imply one of:
- there can be more lines, all at an equal offset
- there can only ever be two lines
Please specify which one is the case
> + unsigned int phy_type;
> + const struct qcom_uniphy_pcie_regs *init_seq;
> + unsigned int init_seq_num;
> + unsigned int pipe_clk_rate;
> +};
> +
> +struct qcom_uniphy_pcie {
> + struct phy phy;
> + struct device *dev;
> + const struct qcom_uniphy_pcie_data *data;
> + struct clk_bulk_data *clks;
> + int num_clks;
> + struct reset_control *resets;
> + void __iomem *base;
> +};
> +
> +#define phy_to_dw_phy(x) container_of((x), struct qca_uni_pcie_phy, phy)
A space after #define, please
> +
> +static const struct qcom_uniphy_pcie_regs ipq5332_regs[] = {
> + {
> + .offset = PHY_CFG_PLLCFG,
> + .val = 0x30,
> + }, {
> + .offset = PHY_CFG_EIOS_DTCT_REG,
> + .val = 0x53ef,
> + }, {
> + .offset = PHY_CFG_GEN3_ALIGN_HOLDOFF_TIME,
> + .val = 0xCf,
mixed case hex.. please make it lowercase
> + },
> +};
> +
> +static const struct qcom_uniphy_pcie_data ipq5332_x1_data = {
> + .lanes = 1,
> + .phy_type = PHY_TYPE_PCIE_GEN3,
> + .init_seq = ipq5332_regs,
> + .init_seq_num = ARRAY_SIZE(ipq5332_regs),
> + .pipe_clk_rate = 250000000,
> +};
> +
> +static const struct qcom_uniphy_pcie_data ipq5332_x2_data = {
> + .lanes = 2,
> + .lane_offset = 0x800,
> + .phy_type = PHY_TYPE_PCIE_GEN3,
> + .init_seq = ipq5332_regs,
> + .init_seq_num = ARRAY_SIZE(ipq5332_regs),
> + .pipe_clk_rate = 250000000,
> +};
Are there going to be more UNIPHY-equipped SoCs?
> +
> +static void qcom_uniphy_pcie_init(struct qcom_uniphy_pcie *phy)
> +{
> + const struct qcom_uniphy_pcie_data *data = phy->data;
> + const struct qcom_uniphy_pcie_regs *init_seq;
> + void __iomem *base = phy->base;
> + int lane, i;
> +
> + for (lane = 0; lane != data->lanes; lane++) {
while effectively the same, < would be less eyebrow-raising
> + init_seq = data->init_seq;
> +
> + for (i = 0; i < data->init_seq_num; i++, init_seq++)
> + writel(init_seq->val, base + init_seq->offset);
writel(init_seq[i].val, ...)
> +
> + base += data->lane_offset;
> + }
> +}
> +
> +static int qcom_uniphy_pcie_power_off(struct phy *x)
> +{
> + struct qcom_uniphy_pcie *phy = phy_get_drvdata(x);
> +
> + clk_bulk_disable_unprepare(phy->num_clks, phy->clks);
> +
> + reset_control_assert(phy->resets);
This can fail, return it instead of zero
[...]
> +MODULE_LICENSE("Dual BSD/GPL");
I think this is too vague, there are many BSD variants
Konrad
--
linux-phy mailing list
linux-phy@lists.infradead.org
https://lists.infradead.org/mailman/listinfo/linux-phy
next prev parent reply other threads:[~2024-12-05 16:41 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-04 11:33 [PATCH v2 0/6] Add PCIe support for Qualcomm IPQ5332 Varadarajan Narayanan
2024-12-04 11:33 ` [PATCH v2 1/6] dt-bindings: phy: qcom,uniphy-pcie: Document PCIe uniphy Varadarajan Narayanan
2024-12-05 9:38 ` Krzysztof Kozlowski
2024-12-11 8:51 ` Varadarajan Narayanan
2024-12-04 11:33 ` [PATCH v2 2/6] phy: qcom: Introduce PCIe UNIPHY 28LP driver Varadarajan Narayanan
2024-12-04 23:01 ` Dmitry Baryshkov
2024-12-05 9:39 ` Krzysztof Kozlowski
2024-12-06 8:46 ` Krzysztof Kozlowski
2024-12-05 16:40 ` Konrad Dybcio [this message]
2024-12-16 6:30 ` Varadarajan Narayanan
2024-12-16 12:05 ` Konrad Dybcio
2024-12-04 11:33 ` [PATCH v2 3/6] dt-bindings: PCI: qcom: Add IPQ5332 SoC Varadarajan Narayanan
2024-12-05 9:40 ` Krzysztof Kozlowski
2024-12-04 11:33 ` [PATCH v2 4/6] pci: qcom: Add support for IPQ5332 Varadarajan Narayanan
2024-12-04 23:10 ` Bjorn Helgaas
2024-12-11 9:34 ` Manivannan Sadhasivam
2024-12-04 11:33 ` [PATCH v2 5/6] arm64: dts: qcom: ipq5332: Add PCIe related nodes Varadarajan Narayanan
2024-12-05 16:55 ` Konrad Dybcio
2024-12-04 11:33 ` [PATCH v2 6/6] arm64: dts: qcom: ipq5332: Enable PCIe phys and controllers Varadarajan Narayanan
2024-12-05 16:58 ` Konrad Dybcio
2024-12-16 11:27 ` Varadarajan Narayanan
2024-12-05 16:58 ` Konrad Dybcio
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=710aa948-d27f-49f6-a4a8-73f6208502c3@oss.qualcomm.com \
--to=konrad.dybcio@oss.qualcomm.com \
--cc=andersson@kernel.org \
--cc=bhelgaas@google.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=kishon@kernel.org \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=kw@linux.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=lpieralisi@kernel.org \
--cc=manivannan.sadhasivam@linaro.org \
--cc=p.zabel@pengutronix.de \
--cc=quic_nsekar@quicinc.com \
--cc=quic_varada@quicinc.com \
--cc=robh@kernel.org \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox