ARM: SAMSUNG: move interrupt part for common s5p into plat-samsung
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
bf46aaeacf
commit
68ae899847
|
@ -23,17 +23,6 @@ config PLAT_S5P
|
||||||
help
|
help
|
||||||
Base platform code for Samsung's S5P series SoC.
|
Base platform code for Samsung's S5P series SoC.
|
||||||
|
|
||||||
config S5P_EXT_INT
|
|
||||||
bool
|
|
||||||
help
|
|
||||||
Use the external interrupts (other than GPIO interrupts.)
|
|
||||||
Note: Do not choose this for S5P6440 and S5P6450.
|
|
||||||
|
|
||||||
config S5P_GPIO_INT
|
|
||||||
bool
|
|
||||||
help
|
|
||||||
Common code for the GPIO interrupts (other than external interrupts.)
|
|
||||||
|
|
||||||
config S5P_HRT
|
config S5P_HRT
|
||||||
bool
|
bool
|
||||||
select SAMSUNG_DEV_PWM
|
select SAMSUNG_DEV_PWM
|
||||||
|
|
|
@ -12,9 +12,6 @@ obj- :=
|
||||||
|
|
||||||
# Core files
|
# Core files
|
||||||
|
|
||||||
obj-y += irq.o
|
|
||||||
obj-$(CONFIG_S5P_EXT_INT) += irq-eint.o
|
|
||||||
obj-$(CONFIG_S5P_GPIO_INT) += irq-gpioint.o
|
|
||||||
obj-$(CONFIG_S5P_PM) += pm.o irq-pm.o
|
obj-$(CONFIG_S5P_PM) += pm.o irq-pm.o
|
||||||
obj-$(CONFIG_S5P_SLEEP) += sleep.o
|
obj-$(CONFIG_S5P_SLEEP) += sleep.o
|
||||||
obj-$(CONFIG_S5P_HRT) += s5p-time.o
|
obj-$(CONFIG_S5P_HRT) += s5p-time.o
|
||||||
|
|
|
@ -70,6 +70,22 @@ config SAMSUNG_IRQ_VIC_TIMER
|
||||||
help
|
help
|
||||||
Internal configuration to build the VIC timer interrupt code.
|
Internal configuration to build the VIC timer interrupt code.
|
||||||
|
|
||||||
|
config S5P_IRQ
|
||||||
|
def_bool (ARCH_S5P64X0 || ARCH_S5PC100 || ARCH_S5PV210 || ARCH_EXYNOS)
|
||||||
|
help
|
||||||
|
Support common interrup part for ARCH_S5P and ARCH_EXYNOS SoCs
|
||||||
|
|
||||||
|
config S5P_EXT_INT
|
||||||
|
bool
|
||||||
|
help
|
||||||
|
Use the external interrupts (other than GPIO interrupts.)
|
||||||
|
Note: Do not choose this for S5P6440 and S5P6450.
|
||||||
|
|
||||||
|
config S5P_GPIO_INT
|
||||||
|
bool
|
||||||
|
help
|
||||||
|
Common code for the GPIO interrupts (other than external interrupts.)
|
||||||
|
|
||||||
# options for gpio configuration support
|
# options for gpio configuration support
|
||||||
|
|
||||||
config SAMSUNG_GPIOLIB_4BIT
|
config SAMSUNG_GPIOLIB_4BIT
|
||||||
|
|
|
@ -20,6 +20,9 @@ obj-$(CONFIG_SAMSUNG_CLKSRC) += clock-clksrc.o
|
||||||
obj-$(CONFIG_S5P_CLOCK) += s5p-clock.o
|
obj-$(CONFIG_S5P_CLOCK) += s5p-clock.o
|
||||||
|
|
||||||
obj-$(CONFIG_SAMSUNG_IRQ_VIC_TIMER) += irq-vic-timer.o
|
obj-$(CONFIG_SAMSUNG_IRQ_VIC_TIMER) += irq-vic-timer.o
|
||||||
|
obj-$(CONFIG_S5P_IRQ) += s5p-irq.o
|
||||||
|
obj-$(CONFIG_S5P_EXT_INT) += s5p-irq-eint.o
|
||||||
|
obj-$(CONFIG_S5P_GPIO_INT) += s5p-irq-gpioint.o
|
||||||
|
|
||||||
# ADC
|
# ADC
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
/* linux/arch/arm/plat-s5p/irq-eint.c
|
/*
|
||||||
*
|
|
||||||
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
|
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
|
||||||
* http://www.samsung.com
|
* http://www.samsung.com
|
||||||
*
|
*
|
|
@ -1,5 +1,4 @@
|
||||||
/* linux/arch/arm/plat-s5p/irq-gpioint.c
|
/*
|
||||||
*
|
|
||||||
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
|
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
|
||||||
* Author: Kyungmin Park <kyungmin.park@samsung.com>
|
* Author: Kyungmin Park <kyungmin.park@samsung.com>
|
||||||
* Author: Joonyoung Shim <jy0922.shim@samsung.com>
|
* Author: Joonyoung Shim <jy0922.shim@samsung.com>
|
|
@ -1,5 +1,4 @@
|
||||||
/* arch/arm/plat-s5p/irq.c
|
/*
|
||||||
*
|
|
||||||
* Copyright (c) 2009 Samsung Electronics Co., Ltd.
|
* Copyright (c) 2009 Samsung Electronics Co., Ltd.
|
||||||
* http://www.samsung.com/
|
* http://www.samsung.com/
|
||||||
*
|
*
|
Loading…
Reference in New Issue