mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
b28210421c
Most of the code for the s3c64xx platform is only used when booting with ATAGS based board files, but not when using device-tree. This tries to identify all the s3c64xx specific code that is unneeded when CONFIG_ATAGS is not set, so we can build a smaller DT-only kernel if configured that way. All board support is still left intact but now depends on the CONFIG_ATAGS symbol that users may intentionally disable. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
64 lines
1.8 KiB
Makefile
64 lines
1.8 KiB
Makefile
# arch/arm/mach-s3c64xx/Makefile
|
|
#
|
|
# Copyright 2008 Openmoko, Inc.
|
|
# Copyright 2008 Simtec Electronics
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/$(src)/include -I$(srctree)/arch/arm/plat-samsung/include
|
|
asflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/$(src)/include -I$(srctree)/arch/arm/plat-samsung/include
|
|
|
|
# PM
|
|
|
|
obj-$(CONFIG_PM) += pm.o
|
|
obj-$(CONFIG_PM_SLEEP) += sleep.o
|
|
obj-$(CONFIG_CPU_IDLE) += cpuidle.o
|
|
|
|
ifdef CONFIG_SAMSUNG_ATAGS
|
|
|
|
obj-$(CONFIG_PM_SLEEP) += irq-pm.o
|
|
|
|
# Core
|
|
|
|
obj-y += common.o
|
|
obj-$(CONFIG_CPU_S3C6400) += s3c6400.o
|
|
obj-$(CONFIG_CPU_S3C6410) += s3c6410.o
|
|
|
|
# DMA support
|
|
|
|
obj-$(CONFIG_S3C64XX_PL080) += pl080.o
|
|
|
|
# Device support
|
|
|
|
obj-y += dev-uart.o
|
|
obj-y += dev-audio.o
|
|
|
|
# Device setup
|
|
|
|
obj-$(CONFIG_S3C64XX_SETUP_FB_24BPP) += setup-fb-24bpp.o
|
|
obj-$(CONFIG_S3C64XX_SETUP_I2C0) += setup-i2c0.o
|
|
obj-$(CONFIG_S3C64XX_SETUP_I2C1) += setup-i2c1.o
|
|
obj-$(CONFIG_S3C64XX_SETUP_IDE) += setup-ide.o
|
|
obj-$(CONFIG_S3C64XX_SETUP_KEYPAD) += setup-keypad.o
|
|
obj-$(CONFIG_S3C64XX_SETUP_SDHCI_GPIO) += setup-sdhci-gpio.o
|
|
obj-$(CONFIG_S3C64XX_SETUP_SPI) += setup-spi.o
|
|
obj-$(CONFIG_S3C64XX_SETUP_USB_PHY) += setup-usb-phy.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_DEV_BACKLIGHT) += dev-backlight.o
|
|
|
|
# Machine support
|
|
|
|
obj-$(CONFIG_MACH_ANW6410) += mach-anw6410.o
|
|
obj-$(CONFIG_MACH_HMT) += mach-hmt.o
|
|
obj-$(CONFIG_MACH_MINI6410) += mach-mini6410.o
|
|
obj-$(CONFIG_MACH_NCP) += mach-ncp.o
|
|
obj-$(CONFIG_MACH_REAL6410) += mach-real6410.o
|
|
obj-$(CONFIG_MACH_SMARTQ) += mach-smartq.o
|
|
obj-$(CONFIG_MACH_SMARTQ5) += mach-smartq5.o
|
|
obj-$(CONFIG_MACH_SMARTQ7) += mach-smartq7.o
|
|
obj-$(CONFIG_MACH_SMDK6400) += mach-smdk6400.o
|
|
obj-$(CONFIG_MACH_SMDK6410) += mach-smdk6410.o
|
|
obj-$(CONFIG_MACH_WLF_CRAGG_6410) += mach-crag6410.o mach-crag6410-module.o
|
|
endif
|
|
|
|
obj-$(CONFIG_MACH_S3C64XX_DT) += mach-s3c64xx-dt.o
|