linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: build failure after merge of the qcom tree
@ 2020-04-15  0:41 Stephen Rothwell
  2020-04-15  1:18 ` John Stultz
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Rothwell @ 2020-04-15  0:41 UTC (permalink / raw)
  To: Andy Gross
  Cc: Linux Next Mailing List, Linux Kernel Mailing List, Stephen Boyd,
	Bjorn Andersson, John Stultz

[-- Attachment #1: Type: text/plain, Size: 809 bytes --]

Hi all,

After merging the qcom tree, today's linux-next build (x86_64
allmodconfig) failed like this:

drivers/soc/qcom/rpmh-rsc.c: In function '__tcs_buffer_write':
drivers/soc/qcom/rpmh-rsc.c:484:3: error: implicit declaration of function 'trace_rpmh_send_msg_rcuidle'; did you mean 'trace_rpmh_send_msg_enabled'? [-Werror=implicit-function-declaration]
  484 |   trace_rpmh_send_msg_rcuidle(drv, tcs_id, j, msgid, cmd);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
      |   trace_rpmh_send_msg_enabled
cc1: some warnings being treated as errors

I don't know why this error only started happening today.  However
reverting commit

  1d3c6f86fd3f ("soc: qcom: rpmh: Allow RPMH driver to be loaded as a module")

fixes the build, so I have done that for today.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2020-04-15  0:41 linux-next: build failure after merge of the qcom tree Stephen Rothwell
@ 2020-04-15  1:18 ` John Stultz
  2020-04-20 23:29   ` Stephen Rothwell
  0 siblings, 1 reply; 23+ messages in thread
From: John Stultz @ 2020-04-15  1:18 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Andy Gross, Linux Next Mailing List, Linux Kernel Mailing List,
	Stephen Boyd, Bjorn Andersson

On Tue, Apr 14, 2020 at 5:41 PM Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Hi all,
>
> After merging the qcom tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
>
> drivers/soc/qcom/rpmh-rsc.c: In function '__tcs_buffer_write':
> drivers/soc/qcom/rpmh-rsc.c:484:3: error: implicit declaration of function 'trace_rpmh_send_msg_rcuidle'; did you mean 'trace_rpmh_send_msg_enabled'? [-Werror=implicit-function-declaration]
>   484 |   trace_rpmh_send_msg_rcuidle(drv, tcs_id, j, msgid, cmd);
>       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
>       |   trace_rpmh_send_msg_enabled
> cc1: some warnings being treated as errors
>
> I don't know why this error only started happening today.  However
> reverting commit
>
>   1d3c6f86fd3f ("soc: qcom: rpmh: Allow RPMH driver to be loaded as a module")
>
> fixes the build, so I have done that for today.


Ah. I'm guessing the newly added rpmh-rsc code depends on rpmh being built in.

I'll take a look at it.

thanks
-john

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2020-04-15  1:18 ` John Stultz
@ 2020-04-20 23:29   ` Stephen Rothwell
  2020-04-21  2:41     ` John Stultz
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Rothwell @ 2020-04-20 23:29 UTC (permalink / raw)
  To: John Stultz
  Cc: Andy Gross, Linux Next Mailing List, Linux Kernel Mailing List,
	Stephen Boyd, Bjorn Andersson

[-- Attachment #1: Type: text/plain, Size: 1199 bytes --]

Hi all,

On Tue, 14 Apr 2020 18:18:11 -0700 John Stultz <john.stultz@linaro.org> wrote:
>
> On Tue, Apr 14, 2020 at 5:41 PM Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> >
> > After merging the qcom tree, today's linux-next build (x86_64
> > allmodconfig) failed like this:
> >
> > drivers/soc/qcom/rpmh-rsc.c: In function '__tcs_buffer_write':
> > drivers/soc/qcom/rpmh-rsc.c:484:3: error: implicit declaration of function 'trace_rpmh_send_msg_rcuidle'; did you mean 'trace_rpmh_send_msg_enabled'? [-Werror=implicit-function-declaration]
> >   484 |   trace_rpmh_send_msg_rcuidle(drv, tcs_id, j, msgid, cmd);
> >       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
> >       |   trace_rpmh_send_msg_enabled
> > cc1: some warnings being treated as errors
> >
> > I don't know why this error only started happening today.  However
> > reverting commit
> >
> >   1d3c6f86fd3f ("soc: qcom: rpmh: Allow RPMH driver to be loaded as a module")
> >
> > fixes the build, so I have done that for today.  
> 
> 
> Ah. I'm guessing the newly added rpmh-rsc code depends on rpmh being built in.
> 
> I'll take a look at it.

I am still reverting that commit.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2020-04-20 23:29   ` Stephen Rothwell
@ 2020-04-21  2:41     ` John Stultz
  2020-05-18  5:16       ` Stephen Rothwell
  0 siblings, 1 reply; 23+ messages in thread
From: John Stultz @ 2020-04-21  2:41 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Andy Gross, Linux Next Mailing List, Linux Kernel Mailing List,
	Stephen Boyd, Bjorn Andersson

On Mon, Apr 20, 2020 at 4:29 PM Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Hi all,
>
> On Tue, 14 Apr 2020 18:18:11 -0700 John Stultz <john.stultz@linaro.org> wrote:
> >
> > On Tue, Apr 14, 2020 at 5:41 PM Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> > >
> > > After merging the qcom tree, today's linux-next build (x86_64
> > > allmodconfig) failed like this:
> > >
> > > drivers/soc/qcom/rpmh-rsc.c: In function '__tcs_buffer_write':
> > > drivers/soc/qcom/rpmh-rsc.c:484:3: error: implicit declaration of function 'trace_rpmh_send_msg_rcuidle'; did you mean 'trace_rpmh_send_msg_enabled'? [-Werror=implicit-function-declaration]
> > >   484 |   trace_rpmh_send_msg_rcuidle(drv, tcs_id, j, msgid, cmd);
> > >       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
> > >       |   trace_rpmh_send_msg_enabled
> > > cc1: some warnings being treated as errors
> > >
> > > I don't know why this error only started happening today.  However
> > > reverting commit
> > >
> > >   1d3c6f86fd3f ("soc: qcom: rpmh: Allow RPMH driver to be loaded as a module")
> > >
> > > fixes the build, so I have done that for today.
> >
> >
> > Ah. I'm guessing the newly added rpmh-rsc code depends on rpmh being built in.
> >
> > I'll take a look at it.
>
> I am still reverting that commit.

Yea. I've stirred up some discussion on it, but its fairly
complicated. Unfortunately I suspect it will take some time to confirm
and justify the change I think is needed, so I think reverting this is
the best short term plan.

thanks
-john

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2020-04-21  2:41     ` John Stultz
@ 2020-05-18  5:16       ` Stephen Rothwell
  2020-05-18  6:19         ` Bjorn Andersson
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Rothwell @ 2020-05-18  5:16 UTC (permalink / raw)
  To: John Stultz
  Cc: Andy Gross, Linux Next Mailing List, Linux Kernel Mailing List,
	Stephen Boyd, Bjorn Andersson

[-- Attachment #1: Type: text/plain, Size: 1870 bytes --]

Hi all,

On Mon, 20 Apr 2020 19:41:56 -0700 John Stultz <john.stultz@linaro.org> wrote:
>
> On Mon, Apr 20, 2020 at 4:29 PM Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> >
> > On Tue, 14 Apr 2020 18:18:11 -0700 John Stultz <john.stultz@linaro.org> wrote:  
> > >
> > > On Tue, Apr 14, 2020 at 5:41 PM Stephen Rothwell <sfr@canb.auug.org.au> wrote:  
> > > >
> > > > After merging the qcom tree, today's linux-next build (x86_64
> > > > allmodconfig) failed like this:
> > > >
> > > > drivers/soc/qcom/rpmh-rsc.c: In function '__tcs_buffer_write':
> > > > drivers/soc/qcom/rpmh-rsc.c:484:3: error: implicit declaration of function 'trace_rpmh_send_msg_rcuidle'; did you mean 'trace_rpmh_send_msg_enabled'? [-Werror=implicit-function-declaration]
> > > >   484 |   trace_rpmh_send_msg_rcuidle(drv, tcs_id, j, msgid, cmd);
> > > >       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
> > > >       |   trace_rpmh_send_msg_enabled
> > > > cc1: some warnings being treated as errors
> > > >
> > > > I don't know why this error only started happening today.  However
> > > > reverting commit
> > > >
> > > >   1d3c6f86fd3f ("soc: qcom: rpmh: Allow RPMH driver to be loaded as a module")
> > > >
> > > > fixes the build, so I have done that for today.  
> > >
> > >
> > > Ah. I'm guessing the newly added rpmh-rsc code depends on rpmh being built in.
> > >
> > > I'll take a look at it.  
> >
> > I am still reverting that commit.  
> 
> Yea. I've stirred up some discussion on it, but its fairly
> complicated. Unfortunately I suspect it will take some time to confirm
> and justify the change I think is needed, so I think reverting this is
> the best short term plan.

I am still reverting that commit.  It is probably time (we are beyond
-rc6 now) that it is either reverted or fixed in the qcom tree, please.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2020-05-18  5:16       ` Stephen Rothwell
@ 2020-05-18  6:19         ` Bjorn Andersson
  0 siblings, 0 replies; 23+ messages in thread
From: Bjorn Andersson @ 2020-05-18  6:19 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: John Stultz, Andy Gross, Linux Next Mailing List,
	Linux Kernel Mailing List, Stephen Boyd

On Sun 17 May 22:16 PDT 2020, Stephen Rothwell wrote:

> Hi all,
> 
> On Mon, 20 Apr 2020 19:41:56 -0700 John Stultz <john.stultz@linaro.org> wrote:
> >
> > On Mon, Apr 20, 2020 at 4:29 PM Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> > >
> > > On Tue, 14 Apr 2020 18:18:11 -0700 John Stultz <john.stultz@linaro.org> wrote:  
> > > >
> > > > On Tue, Apr 14, 2020 at 5:41 PM Stephen Rothwell <sfr@canb.auug.org.au> wrote:  
> > > > >
> > > > > After merging the qcom tree, today's linux-next build (x86_64
> > > > > allmodconfig) failed like this:
> > > > >
> > > > > drivers/soc/qcom/rpmh-rsc.c: In function '__tcs_buffer_write':
> > > > > drivers/soc/qcom/rpmh-rsc.c:484:3: error: implicit declaration of function 'trace_rpmh_send_msg_rcuidle'; did you mean 'trace_rpmh_send_msg_enabled'? [-Werror=implicit-function-declaration]
> > > > >   484 |   trace_rpmh_send_msg_rcuidle(drv, tcs_id, j, msgid, cmd);
> > > > >       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
> > > > >       |   trace_rpmh_send_msg_enabled
> > > > > cc1: some warnings being treated as errors
> > > > >
> > > > > I don't know why this error only started happening today.  However
> > > > > reverting commit
> > > > >
> > > > >   1d3c6f86fd3f ("soc: qcom: rpmh: Allow RPMH driver to be loaded as a module")
> > > > >
> > > > > fixes the build, so I have done that for today.  
> > > >
> > > >
> > > > Ah. I'm guessing the newly added rpmh-rsc code depends on rpmh being built in.
> > > >
> > > > I'll take a look at it.  
> > >
> > > I am still reverting that commit.  
> > 
> > Yea. I've stirred up some discussion on it, but its fairly
> > complicated. Unfortunately I suspect it will take some time to confirm
> > and justify the change I think is needed, so I think reverting this is
> > the best short term plan.
> 
> I am still reverting that commit.  It is probably time (we are beyond
> -rc6 now) that it is either reverted or fixed in the qcom tree, please.
> 

Thanks for the reminder Stephen, I've pushed the revert out to the qcom
branch now.

Regards,
Bjorn

^ permalink raw reply	[flat|nested] 23+ messages in thread

* linux-next: build failure after merge of the qcom tree
@ 2023-12-03 23:30 Stephen Rothwell
  0 siblings, 0 replies; 23+ messages in thread
From: Stephen Rothwell @ 2023-12-03 23:30 UTC (permalink / raw)
  To: Andy Gross, Olof Johansson, Arnd Bergmann
  Cc: Bjorn Andersson, Dmitry Baryshkov, Dominik Kobinski,
	Ivaylo Ivanov, Jack Matthews, Rayyan Ansari, ARM,
	Linux Kernel Mailing List, Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 2093 bytes --]

Hi all,

After merging the qcom tree, today's linux-next build (arm
multi_v7_defconfig) failed like this:

In file included from arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-dempsey.dts:11:
arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-common.dtsi:12:10: fatal error: qcom-pm8226.dtsi: No such file or directory
   12 | #include "qcom-pm8226.dtsi"
      |          ^~~~~~~~~~~~~~~~~~
In file included from arch/arm/boot/dts/qcom/qcom-msm8926-microsoft-superman-lte.dts:11:
arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-common.dtsi:12:10: fatal error: qcom-pm8226.dtsi: No such file or directory
   12 | #include "qcom-pm8226.dtsi"
      |          ^~~~~~~~~~~~~~~~~~
arch/arm/boot/dts/qcom/qcom-msm8926-htc-memul.dts:9:10: fatal error: qcom-pm8226.dtsi: No such file or directory
    9 | #include "qcom-pm8226.dtsi"
      |          ^~~~~~~~~~~~~~~~~~
In file included from arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-makepeace.dts:11:
arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-common.dtsi:12:10: fatal error: qcom-pm8226.dtsi: No such file or directory
   12 | #include "qcom-pm8226.dtsi"
      |          ^~~~~~~~~~~~~~~~~~
In file included from arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-moneypenny.dts:11:
arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-common.dtsi:12:10: fatal error: qcom-pm8226.dtsi: No such file or directory
   12 | #include "qcom-pm8226.dtsi"
      |          ^~~~~~~~~~~~~~~~~~
In file included from arch/arm/boot/dts/qcom/qcom-msm8926-microsoft-tesla.dts:11:
arch/arm/boot/dts/qcom/qcom-msm8226-microsoft-common.dtsi:12:10: fatal error: qcom-pm8226.dtsi: No such file or directory
   12 | #include "qcom-pm8226.dtsi"
      |          ^~~~~~~~~~~~~~~~~~

Caused by commit

  455a4c46e023 ("ARM: dts: qcom: strip prefix from PMIC files")

interacting with commits

  244281556a11 ("ARM: dts: qcom: add common dt for MSM8x26 Lumias along with Nokia Lumia 630")

from the arm-soc tree.

Since I have reverted the gcom tree for another build failure today,
I will fix this up tomorrow.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* linux-next: build failure after merge of the qcom tree
@ 2023-12-03 23:23 Stephen Rothwell
  0 siblings, 0 replies; 23+ messages in thread
From: Stephen Rothwell @ 2023-12-03 23:23 UTC (permalink / raw)
  To: Andy Gross
  Cc: Bjorn Andersson, Konrad Dybcio, Linux Kernel Mailing List,
	Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 625 bytes --]

Hi all,

After merging the qcom tree, today's linux-next build (arm
multi_v7_defconfig) failed like this:

drivers/soc/qcom/qcom_stats.c: In function 'qcom_ddr_stats_print':
drivers/soc/qcom/qcom_stats.c:167:16: error: implicit declaration of function 'FIELD_GET' [-Werror=implicit-function-declaration]
  167 |         type = FIELD_GET(DDR_NAME_TYPE, entry->name);
      |                ^~~~~~~~~
cc1: some warnings being treated as errors

Caused by commit

  4a55812229a7 ("soc: qcom: stats: Add DDR sleep stats")

I have used the qcom tree from next-20231201 for today.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2023-09-20 22:42 Stephen Rothwell
@ 2023-09-21  6:30 ` Luca Weiss
  0 siblings, 0 replies; 23+ messages in thread
From: Luca Weiss @ 2023-09-21  6:30 UTC (permalink / raw)
  To: Stephen Rothwell, Andy Gross
  Cc: Bjorn Andersson, Linux Kernel Mailing List, Linux Next Mailing List

On Thu Sep 21, 2023 at 12:42 AM CEST, Stephen Rothwell wrote:
> Hi all,
>
> After merging the qcom tree, today's linux-next build (arm
> multi_v7_defconfig) failed like this:
>
> Error: scripts/dtc/include-prefixes/arm64/qcom/pm7250b.dtsi:44.10-11 syntax error
> FATAL ERROR: Unable to parse input tree
>
> Caused (exposed) by commit
>
>   eee9602ad649 ("arm64: dts: qcom: qcm6490: Add device-tree for Fairphone 5")

Hi, this should be caused by
"arm64: dts: qcom: pm7250b: make SID configurable"

It seems I've missed updating one arm32 dts file, I'll send a patch for
this shortly.

Sorry about that.

diff --git a/arch/arm/boot/dts/qcom/qcom-sdx65-mtp.dts b/arch/arm/boot/dts/qcom/qcom-sdx65-mtp.dts
index fcf1c51c5e7a..9649c859a2c3 100644
--- a/arch/arm/boot/dts/qcom/qcom-sdx65-mtp.dts
+++ b/arch/arm/boot/dts/qcom/qcom-sdx65-mtp.dts
@@ -4,6 +4,10 @@
  */
 /dts-v1/;
 
+/* PM7250B is configured to use SID2/3 */
+#define PM7250B_SID 2
+#define PM7250B_SID1 3
+
 #include "qcom-sdx65.dtsi"
 #include <dt-bindings/regulator/qcom,rpmh-regulator.h>
 #include <arm64/qcom/pmk8350.dtsi>

>
> I have used the qcom tree from next-20230920 for today.


^ permalink raw reply related	[flat|nested] 23+ messages in thread

* linux-next: build failure after merge of the qcom tree
@ 2023-09-20 22:42 Stephen Rothwell
  2023-09-21  6:30 ` Luca Weiss
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Rothwell @ 2023-09-20 22:42 UTC (permalink / raw)
  To: Andy Gross
  Cc: Bjorn Andersson, Luca Weiss, Linux Kernel Mailing List,
	Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 440 bytes --]

Hi all,

After merging the qcom tree, today's linux-next build (arm
multi_v7_defconfig) failed like this:

Error: scripts/dtc/include-prefixes/arm64/qcom/pm7250b.dtsi:44.10-11 syntax error
FATAL ERROR: Unable to parse input tree

Caused (exposed) by commit

  eee9602ad649 ("arm64: dts: qcom: qcm6490: Add device-tree for Fairphone 5")

I have used the qcom tree from next-20230920 for today.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2022-11-07 22:00 Stephen Rothwell
  2022-11-07 22:15 ` Matti Lehtimäki
@ 2022-11-08  1:30 ` Bjorn Andersson
  1 sibling, 0 replies; 23+ messages in thread
From: Bjorn Andersson @ 2022-11-08  1:30 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Andy Gross, Matti Lehtimäki, Rayyan Ansari,
	Linux Kernel Mailing List, Linux Next Mailing List

On Tue, Nov 08, 2022 at 09:00:18AM +1100, Stephen Rothwell wrote:
> Hi all,
> 
> After merging the qcom tree, today's linux-next build (arm
> multi_v7_defconfig) failed like this:
> 
> arch/arm/boot/dts/qcom-msm8226.dtsi:302.21-327.5: ERROR (phandle_references): /soc/cci@fda0c000: Reference to non-existent node or label "mmcc"
> 

Sorry about that, not sure why I didn't catch that before pushing my
branch. I've pulled in the missing patch today.

Thanks,
Bjorn

> Caused by commit
> 
>   4ab2f41b0850 ("ARM: dts: qcom: msm8226: Add CCI bus")
> 
> I have used the qcom tree from next-20221107 for today.
> 
> -- 
> Cheers,
> Stephen Rothwell



^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2022-11-07 22:00 Stephen Rothwell
@ 2022-11-07 22:15 ` Matti Lehtimäki
  2022-11-08  1:30 ` Bjorn Andersson
  1 sibling, 0 replies; 23+ messages in thread
From: Matti Lehtimäki @ 2022-11-07 22:15 UTC (permalink / raw)
  To: Stephen Rothwell, Andy Gross
  Cc: Bjorn Andersson, Rayyan Ansari, Linux Kernel Mailing List,
	Linux Next Mailing List

Hi,

This happened because one of the dts patches in the patch series which 
contained "ARM: dts: qcom: msm8226: Add CCI bus" was not applied when 
the other two dts patches were applied qcom tree. The patch number 1 
"ARM: dts: qcom: msm8226: Add MMCC node" in that patch series 
(https://lore.kernel.org/linux-arm-msm/20221002122859.75525-1-matti.lehtimaki@gmail.com/T/#m920039b455ad024249d000332d1f07f9e4c19008) 
is required for that "ARM: dts: qcom: msm8226: Add CCI bus".

-- 
Matti Lehtimäki

On 8.11.2022 0.00, Stephen Rothwell wrote:
> Hi all,
> 
> After merging the qcom tree, today's linux-next build (arm
> multi_v7_defconfig) failed like this:
> 
> arch/arm/boot/dts/qcom-msm8226.dtsi:302.21-327.5: ERROR (phandle_references): /soc/cci@fda0c000: Reference to non-existent node or label "mmcc"
> 
> Caused by commit
> 
>    4ab2f41b0850 ("ARM: dts: qcom: msm8226: Add CCI bus")
> 
> I have used the qcom tree from next-20221107 for today.
> 

^ permalink raw reply	[flat|nested] 23+ messages in thread

* linux-next: build failure after merge of the qcom tree
@ 2022-11-07 22:00 Stephen Rothwell
  2022-11-07 22:15 ` Matti Lehtimäki
  2022-11-08  1:30 ` Bjorn Andersson
  0 siblings, 2 replies; 23+ messages in thread
From: Stephen Rothwell @ 2022-11-07 22:00 UTC (permalink / raw)
  To: Andy Gross
  Cc: Bjorn Andersson, Matti Lehtimäki, Rayyan Ansari,
	Linux Kernel Mailing List, Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 429 bytes --]

Hi all,

After merging the qcom tree, today's linux-next build (arm
multi_v7_defconfig) failed like this:

arch/arm/boot/dts/qcom-msm8226.dtsi:302.21-327.5: ERROR (phandle_references): /soc/cci@fda0c000: Reference to non-existent node or label "mmcc"

Caused by commit

  4ab2f41b0850 ("ARM: dts: qcom: msm8226: Add CCI bus")

I have used the qcom tree from next-20221107 for today.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2021-10-24 23:43 Stephen Rothwell
@ 2021-10-25  2:37 ` Bjorn Andersson
  0 siblings, 0 replies; 23+ messages in thread
From: Bjorn Andersson @ 2021-10-25  2:37 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Andy Gross, Stephan Gerhold, Linux Kernel Mailing List,
	Linux Next Mailing List

On Sun 24 Oct 18:43 CDT 2021, Stephen Rothwell wrote:

> Hi all,
> 
> After merging the qcom tree, today's linux-next build (x86_64
> allmodconfig) failed like this:
> 
> drivers/firmware/qcom_scm.c:20:10: fatal error: asm/smp_plat.h: No such file or directory
>    20 | #include <asm/smp_plat.h>
>       |          ^~~~~~~~~~~~~~~~
> 
> Caused by commit
> 
>   55845f46df03 ("firmware: qcom: scm: Add support for MC boot address API")
> 

Thanks for the report Stephen, I will take a look at this.

> I have used the qcom tree from next-20211022 for today.
> 

Thanks,
Bjorn

^ permalink raw reply	[flat|nested] 23+ messages in thread

* linux-next: build failure after merge of the qcom tree
@ 2021-10-24 23:43 Stephen Rothwell
  2021-10-25  2:37 ` Bjorn Andersson
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Rothwell @ 2021-10-24 23:43 UTC (permalink / raw)
  To: Andy Gross
  Cc: Bjorn Andersson, Stephan Gerhold, Linux Kernel Mailing List,
	Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 462 bytes --]

Hi all,

After merging the qcom tree, today's linux-next build (x86_64
allmodconfig) failed like this:

drivers/firmware/qcom_scm.c:20:10: fatal error: asm/smp_plat.h: No such file or directory
   20 | #include <asm/smp_plat.h>
      |          ^~~~~~~~~~~~~~~~

Caused by commit

  55845f46df03 ("firmware: qcom: scm: Add support for MC boot address API")

I have used the qcom tree from next-20211022 for today.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2019-04-23 23:25 Stephen Rothwell
@ 2019-04-23 23:50 ` Matthias Kaehlcke
  0 siblings, 0 replies; 23+ messages in thread
From: Matthias Kaehlcke @ 2019-04-23 23:50 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Andy Gross, Linux Next Mailing List, Linux Kernel Mailing List,
	Douglas Anderson, Stephen Boyd

On Wed, Apr 24, 2019 at 09:25:31AM +1000, Stephen Rothwell wrote:
> Hi all,
> 
> After merging the qcom tree, today's linux-next build (arm
> multi_v7_defconfig) failed like this:
> 
> arch/arm/boot/dts/qcom-apq8064.dtsi:1297.29-1309.5: ERROR (phandle_references): /soc/dsi-phy@4700200: Reference to non-existent node or label "xo_board"
> 
> Caused by commit
> 
>   3560af5a56b5 ("ARM: dts: qcom-apq8064: Set 'xo_board' as ref clock of the DSI PHY")
> 
> I have used the version of the qcom tree from next-20190423 for today.

I thought I built-tested this, but probably only did arm64 builds :(

I'm working on a fix.

Matthias

^ permalink raw reply	[flat|nested] 23+ messages in thread

* linux-next: build failure after merge of the qcom tree
@ 2019-04-23 23:25 Stephen Rothwell
  2019-04-23 23:50 ` Matthias Kaehlcke
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Rothwell @ 2019-04-23 23:25 UTC (permalink / raw)
  To: Andy Gross
  Cc: Linux Next Mailing List, Linux Kernel Mailing List,
	Matthias Kaehlcke, Douglas Anderson, Stephen Boyd

[-- Attachment #1: Type: text/plain, Size: 483 bytes --]

Hi all,

After merging the qcom tree, today's linux-next build (arm
multi_v7_defconfig) failed like this:

arch/arm/boot/dts/qcom-apq8064.dtsi:1297.29-1309.5: ERROR (phandle_references): /soc/dsi-phy@4700200: Reference to non-existent node or label "xo_board"

Caused by commit

  3560af5a56b5 ("ARM: dts: qcom-apq8064: Set 'xo_board' as ref clock of the DSI PHY")

I have used the version of the qcom tree from next-20190423 for today.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2018-04-26 16:42     ` Evan Green
@ 2018-04-26 21:23       ` Andy Gross
  0 siblings, 0 replies; 23+ messages in thread
From: Andy Gross @ 2018-04-26 21:23 UTC (permalink / raw)
  To: Evan Green
  Cc: sfr, agross, linux-next, linux-kernel,
	Karthikeyan Ramasubramanian, Sagar Dharia, Girish Mahadevan,
	groeck

On Thu, Apr 26, 2018 at 04:42:17PM +0000, Evan Green wrote:
> > I suspect that just Linus' tree merged with the qcom tree would have
> > been enough to cause the failure.

Sorry for missing this in my testing.

> 
> 
> I've verified that the patch listed above fixes the issue for me. Andy, if
> it looks okay to you, go ahead an pull it in. Apologies for the trouble,
> and thanks Guenter for having builders that notice this stuff early!
> -Evan

Thanks for looking at this Evan.


Andy

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2018-04-26  4:52   ` Stephen Rothwell
@ 2018-04-26 16:42     ` Evan Green
  2018-04-26 21:23       ` Andy Gross
  0 siblings, 1 reply; 23+ messages in thread
From: Evan Green @ 2018-04-26 16:42 UTC (permalink / raw)
  To: sfr
  Cc: agross, linux-next, linux-kernel, Karthikeyan Ramasubramanian,
	Sagar Dharia, Girish Mahadevan, groeck

On Wed, Apr 25, 2018 at 9:54 PM Stephen Rothwell <sfr@canb.auug.org.au>
wrote:

> Hi Evan,

> On Thu, 26 Apr 2018 03:39:25 +0000 Evan Green <evgreen@chromium.org>
wrote:
> >
> > Guenter and I had a fix for compile test here, which had failures that
> > looked similar:
> >
> > https://lkml.org/lkml/2018/4/18/752

> That looks like it could very well be the problem/solution.

> > I was hoping to verify myself whether or not this fixed allmodconfig,
but
> > my machine at home is not so fast, and I must be missing something,
either
> > in the configuration or the tree. Which tree exactly are you building?

> I was attempting to compile my partial linux-next for today after
> merging the qcom tree.  So once I release linux-next, it will be commit
> a72d0aa48d2e ("Merge remote-tracking branch 'omap/for-next'") plus a
> merge of the qcom tree
> (git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git#for-next
> - which today meant commit c78d6951a806 ("Merge branch 'soc-for-4.18'
> into all-for-4.18")).

> I suspect that just Linus' tree merged with the qcom tree would have
> been enough to cause the failure.

> --
> Cheers,
> Stephen Rothwell

I've verified that the patch listed above fixes the issue for me. Andy, if
it looks okay to you, go ahead an pull it in. Apologies for the trouble,
and thanks Guenter for having builders that notice this stuff early!
-Evan

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2018-04-26  3:39 ` Evan Green
@ 2018-04-26  4:52   ` Stephen Rothwell
  2018-04-26 16:42     ` Evan Green
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Rothwell @ 2018-04-26  4:52 UTC (permalink / raw)
  To: Evan Green
  Cc: agross, linux-next, linux-kernel, Karthikeyan Ramasubramanian,
	Sagar Dharia, Girish Mahadevan, groeck

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

Hi Evan,

On Thu, 26 Apr 2018 03:39:25 +0000 Evan Green <evgreen@chromium.org> wrote:
>
> Guenter and I had a fix for compile test here, which had failures that
> looked similar:
> 
> https://lkml.org/lkml/2018/4/18/752

That looks like it could very well be the problem/solution.

> I was hoping to verify myself whether or not this fixed allmodconfig, but
> my machine at home is not so fast, and I must be missing something, either
> in the configuration or the tree. Which tree exactly are you building?

I was attempting to compile my partial linux-next for today after
merging the qcom tree.  So once I release linux-next, it will be commit
a72d0aa48d2e ("Merge remote-tracking branch 'omap/for-next'") plus a
merge of the qcom tree
(git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git#for-next
- which today meant commit c78d6951a806 ("Merge branch 'soc-for-4.18'
into all-for-4.18")).

I suspect that just Linus' tree merged with the qcom tree would have
been enough to cause the failure.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: linux-next: build failure after merge of the qcom tree
  2018-04-25 22:40 Stephen Rothwell
@ 2018-04-26  3:39 ` Evan Green
  2018-04-26  4:52   ` Stephen Rothwell
  0 siblings, 1 reply; 23+ messages in thread
From: Evan Green @ 2018-04-26  3:39 UTC (permalink / raw)
  To: sfr
  Cc: agross, linux-next, linux-kernel, Karthikeyan Ramasubramanian,
	Sagar Dharia, Girish Mahadevan, groeck

On Wed, Apr 25, 2018 at 3:42 PM Stephen Rothwell <sfr@canb.auug.org.au>
wrote:

> Hi Andy,

> After merging the qcom tree, today's linux-next build (x86_64
> allmodconfig) failed like this:

> ERROR: "geni_se_select_mode" [drivers/tty/serial/qcom_geni_serial.ko]
undefined!
> ERROR: "geni_se_init" [drivers/tty/serial/qcom_geni_serial.ko] undefined!
> ERROR: "geni_se_config_packing" [drivers/tty/serial/qcom_geni_serial.ko]
undefined!
> ERROR: "geni_se_resources_off" [drivers/tty/serial/qcom_geni_serial.ko]
undefined!
> ERROR: "geni_se_resources_on" [drivers/tty/serial/qcom_geni_serial.ko]
undefined!

> Probably caused by commit

>    eddac5af0654 ("soc: qcom: Add GENI based QUP Wrapper driver")

> I have used the qcom tree from next-20180424 for today.

> --
> Cheers,
> Stephen Rothwell

Guenter and I had a fix for compile test here, which had failures that
looked similar:

https://lkml.org/lkml/2018/4/18/752

I was hoping to verify myself whether or not this fixed allmodconfig, but
my machine at home is not so fast, and I must be missing something, either
in the configuration or the tree. Which tree exactly are you building?
-Evan

^ permalink raw reply	[flat|nested] 23+ messages in thread

* linux-next: build failure after merge of the qcom tree
@ 2018-04-25 22:40 Stephen Rothwell
  2018-04-26  3:39 ` Evan Green
  0 siblings, 1 reply; 23+ messages in thread
From: Stephen Rothwell @ 2018-04-25 22:40 UTC (permalink / raw)
  To: Andy Gross
  Cc: Linux-Next Mailing List, Linux Kernel Mailing List,
	Karthikeyan Ramasubramanian, Sagar Dharia, Girish Mahadevan,
	Evan Green

[-- Attachment #1: Type: text/plain, Size: 708 bytes --]

Hi Andy,

After merging the qcom tree, today's linux-next build (x86_64
allmodconfig) failed like this:

ERROR: "geni_se_select_mode" [drivers/tty/serial/qcom_geni_serial.ko] undefined!
ERROR: "geni_se_init" [drivers/tty/serial/qcom_geni_serial.ko] undefined!
ERROR: "geni_se_config_packing" [drivers/tty/serial/qcom_geni_serial.ko] undefined!
ERROR: "geni_se_resources_off" [drivers/tty/serial/qcom_geni_serial.ko] undefined!
ERROR: "geni_se_resources_on" [drivers/tty/serial/qcom_geni_serial.ko] undefined!

Probably caused by commit

  eddac5af0654 ("soc: qcom: Add GENI based QUP Wrapper driver")

I have used the qcom tree from next-20180424 for today.

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* linux-next: build failure after merge of the qcom tree
@ 2016-03-31 23:28 Stephen Rothwell
  0 siblings, 0 replies; 23+ messages in thread
From: Stephen Rothwell @ 2016-03-31 23:28 UTC (permalink / raw)
  To: Andy Gross; +Cc: linux-next, linux-kernel

Hi Andy,

After merging the qcom tree, today's linux-next build (arm
multi_v7_defconfig) failed like this:

ERROR (phandle_references): Reference to non-existent node or label "blsp2_dma"

ERROR (phandle_references): Reference to non-existent node or label "blsp2_dma"

ERROR: Input tree has errors, aborting (use -f to force output)
scripts/Makefile.lib:307: recipe for target 'arch/arm/boot/dts/qcom-msm8974-sony-xperia-honami.dtb' failed

Maybe caused by commit

  423f5fed42fa ("Revert "dts: msm8974: Add blsp2_bam dma node"")

I have used the qcom tree from next-20160331 for today.

-- 
Cheers,
Stephen Rothwell

^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2023-12-03 23:30 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-15  0:41 linux-next: build failure after merge of the qcom tree Stephen Rothwell
2020-04-15  1:18 ` John Stultz
2020-04-20 23:29   ` Stephen Rothwell
2020-04-21  2:41     ` John Stultz
2020-05-18  5:16       ` Stephen Rothwell
2020-05-18  6:19         ` Bjorn Andersson
  -- strict thread matches above, loose matches on Subject: below --
2023-12-03 23:30 Stephen Rothwell
2023-12-03 23:23 Stephen Rothwell
2023-09-20 22:42 Stephen Rothwell
2023-09-21  6:30 ` Luca Weiss
2022-11-07 22:00 Stephen Rothwell
2022-11-07 22:15 ` Matti Lehtimäki
2022-11-08  1:30 ` Bjorn Andersson
2021-10-24 23:43 Stephen Rothwell
2021-10-25  2:37 ` Bjorn Andersson
2019-04-23 23:25 Stephen Rothwell
2019-04-23 23:50 ` Matthias Kaehlcke
2018-04-25 22:40 Stephen Rothwell
2018-04-26  3:39 ` Evan Green
2018-04-26  4:52   ` Stephen Rothwell
2018-04-26 16:42     ` Evan Green
2018-04-26 21:23       ` Andy Gross
2016-03-31 23:28 Stephen Rothwell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).