Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68ae8998 authored by Kukjin Kim's avatar Kukjin Kim
Browse files

ARM: SAMSUNG: move interrupt part for common s5p into plat-samsung

parent bf46aaea
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -23,17 +23,6 @@ config PLAT_S5P
	help
	  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
	bool
	select SAMSUNG_DEV_PWM
+0 −3
Original line number Diff line number Diff line
@@ -12,9 +12,6 @@ obj- :=

# 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_SLEEP)		+= sleep.o
obj-$(CONFIG_S5P_HRT) 		+= s5p-time.o
+16 −0
Original line number Diff line number Diff line
@@ -70,6 +70,22 @@ config SAMSUNG_IRQ_VIC_TIMER
       help
         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

config SAMSUNG_GPIOLIB_4BIT
+3 −0
Original line number Diff line number Diff line
@@ -20,6 +20,9 @@ obj-$(CONFIG_SAMSUNG_CLKSRC) += clock-clksrc.o
obj-$(CONFIG_S5P_CLOCK)		+= s5p-clock.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

+1 −2
Original line number Diff line number Diff line
/* linux/arch/arm/plat-s5p/irq-eint.c
 *
/*
 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com
 *
Loading