Message ID | DS7PR19MB8883A6C7E8FA6810089453149DCB2@DS7PR19MB8883.namprd19.prod.outlook.com (mailing list archive) |
---|---|
State | Handled Elsewhere |
Delegated to: | Krzysztof WilczyĆski |
Headers | show |
Series | Enable IPQ5018 PCI support | expand |
On Wed, Mar 05, 2025 at 05:41:27PM +0400, George Moussalem wrote: > From: Sricharan Ramabadhran <quic_srichara@quicinc.com> > > From: Nitheesh Sekar <quic_nsekar@quicinc.com> Something is wrong here. There can't be two authors for the patch. LGTM otherwise > > The Qualcomm UNIPHY PCIe PHY 28LP is found on both IPQ5332 and IPQ5018. > Adding the PHY init sequence, pipe clock rate, and compatible for IPQ5018. > > Signed-off-by: Nitheesh Sekar <quic_nsekar@quicinc.com> > Signed-off-by: Sricharan Ramabadhran <quic_srichara@quicinc.com> > Signed-off-by: George Moussalem <george.moussalem@outlook.com> > --- > .../phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c | 45 +++++++++++++++++++ > 1 file changed, 45 insertions(+) >
On 5.03.2025 9:39 PM, Dmitry Baryshkov wrote: > On Wed, Mar 05, 2025 at 05:41:27PM +0400, George Moussalem wrote: >> From: Sricharan Ramabadhran <quic_srichara@quicinc.com> >> >> From: Nitheesh Sekar <quic_nsekar@quicinc.com> > > Something is wrong here. There can't be two authors for the patch. It may be that Nitheesh was the original author, whose patch was then picked up by Sricharan for sending (no additional notices of co-development), but George later did the same, forgetting to remove Sricharan from the chain. Konrad
On Sat, Mar 08, 2025 at 03:25:05PM +0100, Konrad Dybcio wrote: > On 5.03.2025 9:39 PM, Dmitry Baryshkov wrote: > > On Wed, Mar 05, 2025 at 05:41:27PM +0400, George Moussalem wrote: > >> From: Sricharan Ramabadhran <quic_srichara@quicinc.com> > >> > >> From: Nitheesh Sekar <quic_nsekar@quicinc.com> > > > > Something is wrong here. There can't be two authors for the patch. > > It may be that Nitheesh was the original author, whose patch was then > picked up by Sricharan for sending (no additional notices of > co-development), but George later did the same, forgetting to remove > Sricharan from the chain. That would go to the SoB trailers. The issue is slightly different. I can't even come up with a normal way to end up with the patch having two From: headers: The only way how one can get the From: header is by doing git format-patch. But then git am would get rid of it by filling the commit metadata.
diff --git a/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c b/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c index c8b2a3818880..324c0a5d658e 100644 --- a/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c +++ b/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c @@ -75,6 +75,40 @@ struct qcom_uniphy_pcie { #define phy_to_dw_phy(x) container_of((x), struct qca_uni_pcie_phy, phy) +static const struct qcom_uniphy_pcie_regs ipq5018_regs[] = { + { + .offset = SSCG_CTRL_REG_4, + .val = 0x1cb9, + }, { + .offset = SSCG_CTRL_REG_5, + .val = 0x023a, + }, { + .offset = SSCG_CTRL_REG_3, + .val = 0xd360, + }, { + .offset = SSCG_CTRL_REG_1, + .val = 0x1, + }, { + .offset = SSCG_CTRL_REG_2, + .val = 0xeb, + }, { + .offset = CDR_CTRL_REG_4, + .val = 0x3f9, + }, { + .offset = CDR_CTRL_REG_5, + .val = 0x1c9, + }, { + .offset = CDR_CTRL_REG_2, + .val = 0x419, + }, { + .offset = CDR_CTRL_REG_1, + .val = 0x200, + }, { + .offset = PCS_INTERNAL_CONTROL_2, + .val = 0xf101, + }, +}; + static const struct qcom_uniphy_pcie_regs ipq5332_regs[] = { { .offset = PHY_CFG_PLLCFG, @@ -88,6 +122,14 @@ static const struct qcom_uniphy_pcie_regs ipq5332_regs[] = { }, }; +static const struct qcom_uniphy_pcie_data ipq5018_data = { + .lane_offset = 0x800, + .phy_type = PHY_TYPE_PCIE_GEN2, + .init_seq = ipq5018_regs, + .init_seq_num = ARRAY_SIZE(ipq5018_regs), + .pipe_clk_rate = 125 * MEGA, +}; + static const struct qcom_uniphy_pcie_data ipq5332_data = { .lane_offset = 0x800, .phy_type = PHY_TYPE_PCIE_GEN3, @@ -212,6 +254,9 @@ static inline int phy_pipe_clk_register(struct qcom_uniphy_pcie *phy, int id) static const struct of_device_id qcom_uniphy_pcie_id_table[] = { { + .compatible = "qcom,ipq5018-uniphy-pcie-phy", + .data = &ipq5018_data, + }, { .compatible = "qcom,ipq5332-uniphy-pcie-phy", .data = &ipq5332_data, }, {