Message ID | 20221110103345.729018-1-dmitry.baryshkov@linaro.org |
---|---|
Headers | show |
Series | PCI/phy: Add support for PCI on sm8350 platform | expand |
On Thu, Nov 10, 2022 at 01:33:45PM +0300, Dmitry Baryshkov wrote: > Enable PCIe0 and PCIe1 hosts found on SM8350 HDK board. > > Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > --- > arch/arm64/boot/dts/qcom/sm8350-hdk.dts | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > > diff --git a/arch/arm64/boot/dts/qcom/sm8350-hdk.dts b/arch/arm64/boot/dts/qcom/sm8350-hdk.dts > index 0fcf5bd88fc7..58a9dc7705a5 100644 > --- a/arch/arm64/boot/dts/qcom/sm8350-hdk.dts > +++ b/arch/arm64/boot/dts/qcom/sm8350-hdk.dts > @@ -222,6 +222,22 @@ &mpss { > firmware-name = "qcom/sm8350/modem.mbn"; > }; > > +&pcie0 { > + status = "okay"; > +}; > + > +&pcie0_phy { > + status = "okay"; > +}; Looks like the required regulators are missing from the PHY nodes. Johan
On 10/11/2022 13:51, Johan Hovold wrote: > On Thu, Nov 10, 2022 at 01:33:45PM +0300, Dmitry Baryshkov wrote: >> Enable PCIe0 and PCIe1 hosts found on SM8350 HDK board. >> >> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> >> --- >> arch/arm64/boot/dts/qcom/sm8350-hdk.dts | 16 ++++++++++++++++ >> 1 file changed, 16 insertions(+) >> >> diff --git a/arch/arm64/boot/dts/qcom/sm8350-hdk.dts b/arch/arm64/boot/dts/qcom/sm8350-hdk.dts >> index 0fcf5bd88fc7..58a9dc7705a5 100644 >> --- a/arch/arm64/boot/dts/qcom/sm8350-hdk.dts >> +++ b/arch/arm64/boot/dts/qcom/sm8350-hdk.dts >> @@ -222,6 +222,22 @@ &mpss { >> firmware-name = "qcom/sm8350/modem.mbn"; >> }; >> >> +&pcie0 { >> + status = "okay"; >> +}; >> + >> +&pcie0_phy { >> + status = "okay"; >> +}; > > Looks like the required regulators are missing from the PHY nodes. Ack, nice catch! > > Johan