[POWERPC] Add the mpc8641 hpcn Kconfig and Makefiles.
Signed-off-by: Xianghua Xiao <x.xiao@freescale.com> Signed-off-by: Jon Loeliger <jdl@freescale.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
committed by
Paul Mackerras
parent
8a30088794
commit
c9b484b5c1
@@ -141,6 +141,15 @@ config PPC_85xx
|
|||||||
select FSL_SOC
|
select FSL_SOC
|
||||||
select 85xx
|
select 85xx
|
||||||
|
|
||||||
|
config PPC_86xx
|
||||||
|
bool "Freescale 86xx"
|
||||||
|
select 6xx
|
||||||
|
select FSL_SOC
|
||||||
|
select PPC_FPU
|
||||||
|
select ALTIVEC
|
||||||
|
help
|
||||||
|
The Freescale E600 SoCs have 74xx cores.
|
||||||
|
|
||||||
config 40x
|
config 40x
|
||||||
bool "AMCC 40x"
|
bool "AMCC 40x"
|
||||||
|
|
||||||
@@ -549,6 +558,7 @@ source arch/powerpc/platforms/embedded6xx/Kconfig
|
|||||||
source arch/powerpc/platforms/4xx/Kconfig
|
source arch/powerpc/platforms/4xx/Kconfig
|
||||||
source arch/powerpc/platforms/83xx/Kconfig
|
source arch/powerpc/platforms/83xx/Kconfig
|
||||||
source arch/powerpc/platforms/85xx/Kconfig
|
source arch/powerpc/platforms/85xx/Kconfig
|
||||||
|
source arch/powerpc/platforms/86xx/Kconfig
|
||||||
source arch/powerpc/platforms/8xx/Kconfig
|
source arch/powerpc/platforms/8xx/Kconfig
|
||||||
source arch/powerpc/platforms/cell/Kconfig
|
source arch/powerpc/platforms/cell/Kconfig
|
||||||
|
|
||||||
@@ -780,6 +790,7 @@ config GENERIC_ISA_DMA
|
|||||||
|
|
||||||
config PPC_I8259
|
config PPC_I8259
|
||||||
bool
|
bool
|
||||||
|
default y if MPC8641_HPCN
|
||||||
default n
|
default n
|
||||||
|
|
||||||
config PPC_INDIRECT_PCI
|
config PPC_INDIRECT_PCI
|
||||||
@@ -802,8 +813,8 @@ config MCA
|
|||||||
bool
|
bool
|
||||||
|
|
||||||
config PCI
|
config PCI
|
||||||
bool "PCI support" if 40x || CPM2 || PPC_83xx || PPC_85xx || PPC_MPC52xx || (EMBEDDED && PPC_ISERIES)
|
bool "PCI support" if 40x || CPM2 || PPC_83xx || PPC_85xx || PPC_86xx || PPC_MPC52xx || (EMBEDDED && PPC_ISERIES)
|
||||||
default y if !40x && !CPM2 && !8xx && !APUS && !PPC_83xx && !PPC_85xx
|
default y if !40x && !CPM2 && !8xx && !APUS && !PPC_83xx && !PPC_85xx && !PPC_86xx
|
||||||
default PCI_PERMEDIA if !4xx && !CPM2 && !8xx && APUS
|
default PCI_PERMEDIA if !4xx && !CPM2 && !8xx && APUS
|
||||||
default PCI_QSPAN if !4xx && !CPM2 && 8xx
|
default PCI_QSPAN if !4xx && !CPM2 && 8xx
|
||||||
help
|
help
|
||||||
|
36
arch/powerpc/platforms/86xx/Kconfig
Normal file
36
arch/powerpc/platforms/86xx/Kconfig
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
menu "Platform Support"
|
||||||
|
depends on PPC_86xx
|
||||||
|
|
||||||
|
choice
|
||||||
|
prompt "Machine Type"
|
||||||
|
default MPC8641_HPCN
|
||||||
|
|
||||||
|
config MPC8641_HPCN
|
||||||
|
bool "Freescale MPC8641 HPCN"
|
||||||
|
help
|
||||||
|
This option enables support for the MPC8641 HPCN board.
|
||||||
|
|
||||||
|
endchoice
|
||||||
|
|
||||||
|
|
||||||
|
config MPC8641
|
||||||
|
bool
|
||||||
|
select PPC_INDIRECT_PCI
|
||||||
|
select PPC_UDBG_16550
|
||||||
|
default y if MPC8641_HPCN
|
||||||
|
|
||||||
|
config MPIC
|
||||||
|
bool
|
||||||
|
default y
|
||||||
|
|
||||||
|
config PPC_INDIRECT_PCI_BE
|
||||||
|
bool
|
||||||
|
depends on PPC_86xx
|
||||||
|
default y
|
||||||
|
|
||||||
|
config PPC_STD_MMU
|
||||||
|
bool
|
||||||
|
depends on PPC_86xx
|
||||||
|
default y
|
||||||
|
|
||||||
|
endmenu
|
10
arch/powerpc/platforms/86xx/Makefile
Normal file
10
arch/powerpc/platforms/86xx/Makefile
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
#
|
||||||
|
# Makefile for the PowerPC 86xx linux kernel.
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_PPC_86xx),y)
|
||||||
|
obj-$(CONFIG_SMP) += mpc86xx_smp.o
|
||||||
|
endif
|
||||||
|
obj-$(CONFIG_MPC8641_HPCN) += mpc86xx_hpcn.o
|
||||||
|
obj-$(CONFIG_PCI) += pci.o mpc86xx_pcie.o
|
@@ -9,6 +9,7 @@ obj-$(CONFIG_PPC_CHRP) += chrp/
|
|||||||
obj-$(CONFIG_4xx) += 4xx/
|
obj-$(CONFIG_4xx) += 4xx/
|
||||||
obj-$(CONFIG_PPC_83xx) += 83xx/
|
obj-$(CONFIG_PPC_83xx) += 83xx/
|
||||||
obj-$(CONFIG_PPC_85xx) += 85xx/
|
obj-$(CONFIG_PPC_85xx) += 85xx/
|
||||||
|
obj-$(CONFIG_PPC_86xx) += 86xx/
|
||||||
obj-$(CONFIG_PPC_PSERIES) += pseries/
|
obj-$(CONFIG_PPC_PSERIES) += pseries/
|
||||||
obj-$(CONFIG_PPC_ISERIES) += iseries/
|
obj-$(CONFIG_PPC_ISERIES) += iseries/
|
||||||
obj-$(CONFIG_PPC_MAPLE) += maple/
|
obj-$(CONFIG_PPC_MAPLE) += maple/
|
||||||
|
Reference in New Issue
Block a user