mirror of
https://github.com/torvalds/linux.git
synced 2024-12-31 23:31:29 +00:00
5b5820d08b
This patch adds support for 'mpc5200-simple-platform' compatible boards which do not need a platform specific setup. Such boards are supported assuming the following: - GPIO pins are configured by the firmware, - CDM configuration (clocking) is setup correctly by firmware, - if the 'fsl,has-wdt' property is present in one of the gpt nodes, then it is safe to use such gpt to reset the board, - PCI is supported if enabled in the kernel configuration and if there is a PCI bus node defined in the device tree. Signed-off-by: Marian Balakowicz <m8@semihalf.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
17 lines
423 B
Makefile
17 lines
423 B
Makefile
#
|
|
# Makefile for 52xx based boards
|
|
#
|
|
ifeq ($(CONFIG_PPC_MERGE),y)
|
|
obj-y += mpc52xx_pic.o mpc52xx_common.o
|
|
obj-$(CONFIG_PCI) += mpc52xx_pci.o
|
|
endif
|
|
|
|
obj-$(CONFIG_PPC_MPC5200_SIMPLE) += mpc5200_simple.o
|
|
obj-$(CONFIG_PPC_EFIKA) += efika.o
|
|
obj-$(CONFIG_PPC_LITE5200) += lite5200.o
|
|
|
|
obj-$(CONFIG_PM) += mpc52xx_sleep.o mpc52xx_pm.o
|
|
ifeq ($(CONFIG_PPC_LITE5200),y)
|
|
obj-$(CONFIG_PM) += lite5200_sleep.o lite5200_pm.o
|
|
endif
|