* [PATCH -next?] powerpc/fsl_uli1575: fix kconfig warnings and build errors
@ 2023-04-29 4:35 Randy Dunlap
2023-04-29 9:27 ` Pali Rohár
2023-07-03 5:21 ` Michael Ellerman
0 siblings, 2 replies; 3+ messages in thread
From: Randy Dunlap @ 2023-04-29 4:35 UTC (permalink / raw)
To: linux-kernel; +Cc: Randy Dunlap, Pali Rohár, linuxppc-dev
Neither FSL_SOC_BOOKE nor PPC_86xx enables CONFIG_PCI by
default, so it may be unset in some randconfigs.
When that happens, FSL_ULI1575 may be set when it should not be
since it is a PCI driver. When it is set, there are 3 kconfig
warnings and a slew of build errors
WARNING: unmet direct dependencies detected for PCI_QUIRKS
Depends on [n]: PCI [=n]
Selected by [y]:
- FSL_PCI [=y]
WARNING: unmet direct dependencies detected for GENERIC_ISA_DMA
Depends on [n]: ISA_DMA_API [=n]
Selected by [y]:
- FSL_ULI1575 [=y] && (FSL_SOC_BOOKE [=n] || PPC_86xx [=y])
WARNING: unmet direct dependencies detected for PPC_INDIRECT_PCI
Depends on [n]: PCI [=n]
Selected by [y]:
- FSL_PCI [=y]
and 30+ build errors.
Fixes: 22fdf79171e8 ("powerpc/fsl_uli1575: Allow to disable FSL_ULI1575 support")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Pali Rohár <pali@kernel.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
---
arch/powerpc/platforms/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff -- a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig
--- a/arch/powerpc/platforms/Kconfig
+++ b/arch/powerpc/platforms/Kconfig
@@ -265,6 +265,7 @@ config CPM2
config FSL_ULI1575
bool "ULI1575 PCIe south bridge support"
depends on FSL_SOC_BOOKE || PPC_86xx
+ depends on PCI
select FSL_PCI
select GENERIC_ISA_DMA
help
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH -next?] powerpc/fsl_uli1575: fix kconfig warnings and build errors
2023-04-29 4:35 [PATCH -next?] powerpc/fsl_uli1575: fix kconfig warnings and build errors Randy Dunlap
@ 2023-04-29 9:27 ` Pali Rohár
2023-07-03 5:21 ` Michael Ellerman
1 sibling, 0 replies; 3+ messages in thread
From: Pali Rohár @ 2023-04-29 9:27 UTC (permalink / raw)
To: Randy Dunlap; +Cc: linuxppc-dev, linux-kernel
On Friday 28 April 2023 21:35:19 Randy Dunlap wrote:
> Neither FSL_SOC_BOOKE nor PPC_86xx enables CONFIG_PCI by
> default, so it may be unset in some randconfigs.
> When that happens, FSL_ULI1575 may be set when it should not be
> since it is a PCI driver. When it is set, there are 3 kconfig
> warnings and a slew of build errors
>
> WARNING: unmet direct dependencies detected for PCI_QUIRKS
> Depends on [n]: PCI [=n]
> Selected by [y]:
> - FSL_PCI [=y]
>
> WARNING: unmet direct dependencies detected for GENERIC_ISA_DMA
> Depends on [n]: ISA_DMA_API [=n]
> Selected by [y]:
> - FSL_ULI1575 [=y] && (FSL_SOC_BOOKE [=n] || PPC_86xx [=y])
>
> WARNING: unmet direct dependencies detected for PPC_INDIRECT_PCI
> Depends on [n]: PCI [=n]
> Selected by [y]:
> - FSL_PCI [=y]
>
> and 30+ build errors.
>
> Fixes: 22fdf79171e8 ("powerpc/fsl_uli1575: Allow to disable FSL_ULI1575 support")
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Pali Rohár <pali@kernel.org>
> Cc: Michael Ellerman <mpe@ellerman.id.au>
> Cc: linuxppc-dev@lists.ozlabs.org
> ---
> arch/powerpc/platforms/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff -- a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig
> --- a/arch/powerpc/platforms/Kconfig
> +++ b/arch/powerpc/platforms/Kconfig
> @@ -265,6 +265,7 @@ config CPM2
> config FSL_ULI1575
> bool "ULI1575 PCIe south bridge support"
> depends on FSL_SOC_BOOKE || PPC_86xx
> + depends on PCI
> select FSL_PCI
> select GENERIC_ISA_DMA
> help
Ok, looks like a reasonable solution for this issue.
These kind of cleanups (as done in uli1575 patch series) are always
problematic as they can break some unusual configuration...
Reviewed-by: Pali Rohár <pali@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH -next?] powerpc/fsl_uli1575: fix kconfig warnings and build errors
2023-04-29 4:35 [PATCH -next?] powerpc/fsl_uli1575: fix kconfig warnings and build errors Randy Dunlap
2023-04-29 9:27 ` Pali Rohár
@ 2023-07-03 5:21 ` Michael Ellerman
1 sibling, 0 replies; 3+ messages in thread
From: Michael Ellerman @ 2023-07-03 5:21 UTC (permalink / raw)
To: linux-kernel, Randy Dunlap; +Cc: linuxppc-dev, Pali Rohár
On Fri, 28 Apr 2023 21:35:19 -0700, Randy Dunlap wrote:
> Neither FSL_SOC_BOOKE nor PPC_86xx enables CONFIG_PCI by
> default, so it may be unset in some randconfigs.
> When that happens, FSL_ULI1575 may be set when it should not be
> since it is a PCI driver. When it is set, there are 3 kconfig
> warnings and a slew of build errors
>
> WARNING: unmet direct dependencies detected for PCI_QUIRKS
> Depends on [n]: PCI [=n]
> Selected by [y]:
> - FSL_PCI [=y]
>
> [...]
Applied to powerpc/fixes.
[1/1] powerpc/fsl_uli1575: fix kconfig warnings and build errors
https://git.kernel.org/powerpc/c/536d948a8dee21166d9c5b5a4189af56beba16e3
cheers
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-07-03 5:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-29 4:35 [PATCH -next?] powerpc/fsl_uli1575: fix kconfig warnings and build errors Randy Dunlap
2023-04-29 9:27 ` Pali Rohár
2023-07-03 5:21 ` Michael Ellerman
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).