From: kernel test robot <lkp@intel.com>
To: Ziyue Zhang <quic_ziyuzhan@quicinc.com>,
vkoul@kernel.org, kishon@kernel.org, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org,
dmitry.baryshkov@linaro.org, neil.armstrong@linaro.org,
abel.vesa@linaro.org, manivannan.sadhasivam@linaro.org,
lpieralisi@kernel.org, kw@linux.com, bhelgaas@google.com,
andersson@kernel.org, konradybcio@kernel.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
linux-phy@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org,
linux-pci@vger.kernel.org, quic_qianyu@quicinc.com,
quic_krichai@quicinc.com, quic_vbadigan@quicinc.com,
Ziyue Zhang <quic_ziyuzhan@quicinc.com>
Subject: Re: [PATCH v3 2/8] phy: qcom-qmp-pcie: add dual lane PHY support for QCS8300
Date: Sun, 22 Dec 2024 06:04:41 +0800 [thread overview]
Message-ID: <202412220527.dEQSSoG8-lkp@intel.com> (raw)
In-Reply-To: <20241220055239.2744024-3-quic_ziyuzhan@quicinc.com>
Hi Ziyue,
kernel test robot noticed the following build errors:
[auto build test ERROR on 4176cf5c5651c33769de83bb61b0287f4ec7719f]
url: https://github.com/intel-lab-lkp/linux/commits/Ziyue-Zhang/dt-bindings-phy-qcom-sc8280xp-qmp-pcie-phy-Document-the-QCS8300-QMP-PCIe-PHY-Gen4-x2/20241220-135722
base: 4176cf5c5651c33769de83bb61b0287f4ec7719f
patch link: https://lore.kernel.org/r/20241220055239.2744024-3-quic_ziyuzhan%40quicinc.com
patch subject: [PATCH v3 2/8] phy: qcom-qmp-pcie: add dual lane PHY support for QCS8300
config: arm64-randconfig-002-20241221 (https://download.01.org/0day-ci/archive/20241222/202412220527.dEQSSoG8-lkp@intel.com/config)
compiler: clang version 16.0.6 (https://github.com/llvm/llvm-project 7cbf1a2591520c2491aa35339f227775f4d3adf6)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241222/202412220527.dEQSSoG8-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202412220527.dEQSSoG8-lkp@intel.com/
All errors (new ones prefixed by >>):
>> drivers/phy/qualcomm/phy-qcom-qmp-pcie.c:3419:12: error: use of undeclared identifier 'pciephy_v5_20_regs_layout'
.regs = pciephy_v5_20_regs_layout,
^
1 error generated.
vim +/pciephy_v5_20_regs_layout +3419 drivers/phy/qualcomm/phy-qcom-qmp-pcie.c
3390
3391 static const struct qmp_phy_cfg qcs8300_qmp_gen4x2_pciephy_cfg = {
3392 .lanes = 2,
3393 .offsets = &qmp_pcie_offsets_v5_20,
3394
3395 .tbls = {
3396 .serdes = sa8775p_qmp_gen4x2_pcie_serdes_alt_tbl,
3397 .serdes_num = ARRAY_SIZE(sa8775p_qmp_gen4x2_pcie_serdes_alt_tbl),
3398 .tx = sa8775p_qmp_gen4_pcie_tx_tbl,
3399 .tx_num = ARRAY_SIZE(sa8775p_qmp_gen4_pcie_tx_tbl),
3400 .rx = qcs8300_qmp_gen4x2_pcie_rx_alt_tbl,
3401 .rx_num = ARRAY_SIZE(qcs8300_qmp_gen4x2_pcie_rx_alt_tbl),
3402 .pcs = sa8775p_qmp_gen4x2_pcie_pcs_alt_tbl,
3403 .pcs_num = ARRAY_SIZE(sa8775p_qmp_gen4x2_pcie_pcs_alt_tbl),
3404 .pcs_misc = sa8775p_qmp_gen4_pcie_pcs_misc_tbl,
3405 .pcs_misc_num = ARRAY_SIZE(sa8775p_qmp_gen4_pcie_pcs_misc_tbl),
3406 },
3407
3408 .tbls_rc = &(const struct qmp_phy_cfg_tbls) {
3409 .serdes = sa8775p_qmp_gen4x2_pcie_rc_serdes_alt_tbl,
3410 .serdes_num = ARRAY_SIZE(sa8775p_qmp_gen4x2_pcie_rc_serdes_alt_tbl),
3411 .pcs_misc = sa8775p_qmp_gen4_pcie_rc_pcs_misc_tbl,
3412 .pcs_misc_num = ARRAY_SIZE(sa8775p_qmp_gen4_pcie_rc_pcs_misc_tbl),
3413 },
3414
3415 .reset_list = sdm845_pciephy_reset_l,
3416 .num_resets = ARRAY_SIZE(sdm845_pciephy_reset_l),
3417 .vreg_list = qmp_phy_vreg_l,
3418 .num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
> 3419 .regs = pciephy_v5_20_regs_layout,
3420
3421 .pwrdn_ctrl = SW_PWRDN | REFCLK_DRV_DSBL,
3422 .phy_status = PHYSTATUS_4_20,
3423 };
3424
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-12-21 22:04 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-20 5:52 [PATCH v3 0/8] pci: qcom: Add QCS8300 PCIe support Ziyue Zhang
2024-12-20 5:52 ` [PATCH v3 1/8] dt-bindings: phy: qcom,sc8280xp-qmp-pcie-phy: Document the QCS8300 QMP PCIe PHY Gen4 x2 Ziyue Zhang
2024-12-20 5:52 ` [PATCH v3 2/8] phy: qcom-qmp-pcie: add dual lane PHY support for QCS8300 Ziyue Zhang
2024-12-21 6:13 ` kernel test robot
2024-12-21 22:04 ` kernel test robot [this message]
2024-12-20 5:52 ` [PATCH v3 3/8] dt-bindings: PCI: qcom,pcie-sa8775p: document qcs8300 Ziyue Zhang
2024-12-20 5:52 ` [PATCH v3 4/8] PCI: qcom: Add QCS8300 PCIe support Ziyue Zhang
2024-12-20 5:52 ` [PATCH v3 5/8] arm64: dts: qcom: qcs8300: enable pcie0 for qcs8300 soc Ziyue Zhang
2024-12-20 10:16 ` Konrad Dybcio
2024-12-20 5:52 ` [PATCH v3 6/8] arm64: dts: qcom: qcs8300: enable pcie0 for qcs8300 platform Ziyue Zhang
2024-12-20 10:17 ` Konrad Dybcio
2024-12-20 5:52 ` [PATCH v3 7/8] arm64: dts: qcom: qcs8300: enable pcie1 for qcs8300 soc Ziyue Zhang
2025-01-03 13:14 ` Konrad Dybcio
2024-12-20 5:52 ` [PATCH v3 8/8] arm64: dts: qcom: qcs8300: enable pcie1 for qcs8300 platform Ziyue Zhang
2024-12-20 10:17 ` 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=202412220527.dEQSSoG8-lkp@intel.com \
--to=lkp@intel.com \
--cc=abel.vesa@linaro.org \
--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=llvm@lists.linux.dev \
--cc=lpieralisi@kernel.org \
--cc=manivannan.sadhasivam@linaro.org \
--cc=neil.armstrong@linaro.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=quic_krichai@quicinc.com \
--cc=quic_qianyu@quicinc.com \
--cc=quic_vbadigan@quicinc.com \
--cc=quic_ziyuzhan@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