bfee95bb83
This patch adds board support for the Media5200 platform. Changes are: - add the media5200 device tree - add the media5200 platform support code and cascaded interrupt controller - add media5200 to the build targets. Note: this patch also includes a minor tweak to the lite5200(b) target images list to add the .dtb files to the image list. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
18 lines
495 B
Makefile
18 lines
495 B
Makefile
#
|
|
# Makefile for 52xx based boards
|
|
#
|
|
obj-y += mpc52xx_pic.o mpc52xx_common.o mpc52xx_gpt.o
|
|
obj-$(CONFIG_PCI) += mpc52xx_pci.o
|
|
|
|
obj-$(CONFIG_PPC_MPC5200_SIMPLE) += mpc5200_simple.o
|
|
obj-$(CONFIG_PPC_EFIKA) += efika.o
|
|
obj-$(CONFIG_PPC_LITE5200) += lite5200.o
|
|
obj-$(CONFIG_PPC_MEDIA5200) += media5200.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
|
|
|
|
obj-$(CONFIG_PPC_MPC5200_GPIO) += mpc52xx_gpio.o
|