mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 05:41:55 +00:00
6901a9f9ef
It used to be impossible to select CONFIG_CPM2 without selecting CONFIG_FSL_SOC at the same time because CONFIG_CPM2 was dependent on CONFIG_8260 and CONFIG_8260 was selecting CONFIG_FSL_SOC. But after commiteb5aa21372
("powerpc/82xx: Remove CONFIG_8260 and CONFIG_8272") CONFIG_CPM2 depends on CONFIG_PPC_82xx instead but CONFIG_PPC_82xx doesn't directly selects CONFIG_FSL_SOC. Fix it by forcing CONFIG_PPC_82xx to select CONFIG_FSL_SOC just like already done by PPC_8xx, PPC_MPC512x, PPC_83xx, PPC_86xx. Reported-by: Randy Dunlap <rdunlap@infradead.org> Fixes:eb5aa21372
("powerpc/82xx: Remove CONFIG_8260 and CONFIG_8272") Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Tested-by: Randy Dunlap <rdunlap@infradead.org> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/7ab513546148ebe33ddd4b0ea92c7bfd3cce3ad7.1694705016.git.christophe.leroy@csgroup.eu
29 lines
661 B
Plaintext
29 lines
661 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
menuconfig PPC_82xx
|
|
bool "82xx-based boards (PQ II)"
|
|
depends on PPC_BOOK3S_32
|
|
select FSL_SOC
|
|
|
|
if PPC_82xx
|
|
|
|
config EP8248E
|
|
bool "Embedded Planet EP8248E (a.k.a. CWH-PPC-8248N-VE)"
|
|
select CPM2
|
|
select PPC_INDIRECT_PCI if PCI
|
|
select PHYLIB if NETDEVICES
|
|
select MDIO_BITBANG if PHYLIB
|
|
help
|
|
This enables support for the Embedded Planet EP8248E board.
|
|
|
|
This board is also resold by Freescale as the QUICCStart
|
|
MPC8248 Evaluation System and/or the CWH-PPC-8248N-VE.
|
|
|
|
config MGCOGE
|
|
bool "Keymile MGCOGE"
|
|
select CPM2
|
|
select PPC_INDIRECT_PCI if PCI
|
|
help
|
|
This enables support for the Keymile MGCOGE board.
|
|
|
|
endif
|