mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 12:41:55 +00:00
69f1d1a6ac
* 'next/devel' of ssh://master.kernel.org/pub/scm/linux/kernel/git/arm/linux-arm-soc: (128 commits) ARM: S5P64X0: External Interrupt Support ARM: EXYNOS4: Enable MFC on Samsung NURI ARM: EXYNOS4: Enable MFC on universal_c210 ARM: S5PV210: Enable MFC on Goni ARM: S5P: Add support for MFC device ARM: EXYNOS4: Add support FIMD on SMDKC210 ARM: EXYNOS4: Add platform device and helper functions for FIMD ARM: EXYNOS4: Add resource definition for FIMD ARM: EXYNOS4: Change devname for FIMD clkdev ARM: SAMSUNG: Add IRQ_I2S0 definition ARM: SAMSUNG: Add platform device for idma ARM: EXYNOS4: Add more registers to be saved and restored for PM ARM: EXYNOS4: Add more register addresses of CMU ARM: EXYNOS4: Add platform device for dwmci driver ARM: EXYNOS4: configure rtc-s3c on NURI ARM: EXYNOS4: configure MAX8903 secondary charger on NURI ARM: EXYNOS4: configure ADC on NURI ARM: EXYNOS4: configure MAX17042 fuel gauge on NURI ARM: EXYNOS4: configure regulators and PMIC(MAX8997) on NURI ARM: EXYNOS4: Increase NR_IRQS for devices with more IRQs ... Fix up tons of silly conflicts: - arch/arm/mach-davinci/include/mach/psc.h - arch/arm/mach-exynos4/Kconfig - arch/arm/mach-exynos4/mach-smdkc210.c - arch/arm/mach-exynos4/pm.c - arch/arm/mach-imx/mm-imx1.c - arch/arm/mach-imx/mm-imx21.c - arch/arm/mach-imx/mm-imx25.c - arch/arm/mach-imx/mm-imx27.c - arch/arm/mach-imx/mm-imx31.c - arch/arm/mach-imx/mm-imx35.c - arch/arm/mach-mx5/mm.c - arch/arm/mach-s5pv210/mach-goni.c - arch/arm/mm/Kconfig
56 lines
1.7 KiB
Makefile
56 lines
1.7 KiB
Makefile
# arch/arm/mach-exynos4/Makefile
|
|
#
|
|
# Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com/
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# Core support for EXYNOS4 system
|
|
|
|
obj-$(CONFIG_CPU_EXYNOS4210) += cpu.o init.o clock.o irq-combiner.o
|
|
obj-$(CONFIG_CPU_EXYNOS4210) += setup-i2c0.o irq-eint.o dma.o pmu.o
|
|
obj-$(CONFIG_PM) += pm.o sleep.o
|
|
obj-$(CONFIG_CPU_IDLE) += cpuidle.o
|
|
|
|
obj-$(CONFIG_SMP) += platsmp.o headsmp.o
|
|
|
|
obj-$(CONFIG_EXYNOS4_MCT) += mct.o
|
|
|
|
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
|
|
|
|
# machine support
|
|
|
|
obj-$(CONFIG_MACH_SMDKC210) += mach-smdkc210.o
|
|
obj-$(CONFIG_MACH_SMDKV310) += mach-smdkv310.o
|
|
obj-$(CONFIG_MACH_ARMLEX4210) += mach-armlex4210.o
|
|
obj-$(CONFIG_MACH_UNIVERSAL_C210) += mach-universal_c210.o
|
|
obj-$(CONFIG_MACH_NURI) += mach-nuri.o
|
|
|
|
# device support
|
|
|
|
obj-y += dev-audio.o
|
|
obj-$(CONFIG_EXYNOS4_DEV_AHCI) += dev-ahci.o
|
|
obj-$(CONFIG_EXYNOS4_DEV_PD) += dev-pd.o
|
|
obj-$(CONFIG_EXYNOS4_DEV_SYSMMU) += dev-sysmmu.o
|
|
obj-$(CONFIG_EXYNOS4_DEV_DWMCI) += dev-dwmci.o
|
|
|
|
obj-$(CONFIG_EXYNOS4_SETUP_FIMC) += setup-fimc.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_FIMD0) += setup-fimd0.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_I2C1) += setup-i2c1.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_I2C2) += setup-i2c2.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_I2C3) += setup-i2c3.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_I2C4) += setup-i2c4.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_I2C5) += setup-i2c5.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_I2C6) += setup-i2c6.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_I2C7) += setup-i2c7.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_KEYPAD) += setup-keypad.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_SDHCI) += setup-sdhci.o
|
|
obj-$(CONFIG_EXYNOS4_SETUP_SDHCI_GPIO) += setup-sdhci-gpio.o
|
|
|
|
obj-$(CONFIG_EXYNOS4_SETUP_USB_PHY) += setup-usb-phy.o
|