aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2014-09-02 12:12:35 -0400
committerNicolas Ferre <nicolas.ferre@atmel.com>2014-09-15 11:55:48 -0400
commitb052ff30cd450c91a32e8e928979bca021462996 (patch)
tree201a1cf76c134b1262db953dc51f29ffe72f5142
parent7d80335e29701e9c2cc55ec0ea79afe6351aa20b (diff)
ARM: at91: PIT: Move the driver to drivers/clocksource
Now that we don't depend on anyting in the mach-at91 directory, we can just move the driver to where it belongs. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Boris BREZILLON <boris.brezillon@free-electrons.com> Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Conflicts: arch/arm/mach-at91/Kconfig arch/arm/mach-at91/Makefile
-rw-r--r--arch/arm/mach-at91/Kconfig6
-rw-r--r--arch/arm/mach-at91/Makefile1
-rw-r--r--drivers/clocksource/Kconfig4
-rw-r--r--drivers/clocksource/Makefile1
-rw-r--r--drivers/clocksource/timer-atmel-pit.c (renamed from arch/arm/mach-at91/at91sam926x_time.c)0
5 files changed, 5 insertions, 7 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
index c3f9ebc5f9f5..474c855fa83c 100644
--- a/arch/arm/mach-at91/Kconfig
+++ b/arch/arm/mach-at91/Kconfig
@@ -33,16 +33,11 @@ config OLD_IRQ_AT91
33 select MULTI_IRQ_HANDLER 33 select MULTI_IRQ_HANDLER
34 select SPARSE_IRQ 34 select SPARSE_IRQ
35 35
36config AT91_SAM9_TIME
37 select CLKSRC_OF if OF
38 bool
39
40config HAVE_AT91_SMD 36config HAVE_AT91_SMD
41 bool 37 bool
42 38
43config SOC_AT91SAM9 39config SOC_AT91SAM9
44 bool 40 bool
45 select AT91_SAM9_TIME
46 select ATMEL_AIC_IRQ if !OLD_IRQ_AT91 41 select ATMEL_AIC_IRQ if !OLD_IRQ_AT91
47 select CPU_ARM926T 42 select CPU_ARM926T
48 select GENERIC_CLOCKEVENTS 43 select GENERIC_CLOCKEVENTS
@@ -51,7 +46,6 @@ config SOC_AT91SAM9
51 46
52config SOC_SAMA5 47config SOC_SAMA5
53 bool 48 bool
54 select AT91_SAM9_TIME
55 select ATMEL_AIC5_IRQ 49 select ATMEL_AIC5_IRQ
56 select CPU_V7 50 select CPU_V7
57 select GENERIC_CLOCKEVENTS 51 select GENERIC_CLOCKEVENTS
diff --git a/arch/arm/mach-at91/Makefile b/arch/arm/mach-at91/Makefile
index 306c82b3d45c..61d04f9314e7 100644
--- a/arch/arm/mach-at91/Makefile
+++ b/arch/arm/mach-at91/Makefile
@@ -9,7 +9,6 @@ obj- :=
9 9
10obj-$(CONFIG_OLD_IRQ_AT91) += irq.o 10obj-$(CONFIG_OLD_IRQ_AT91) += irq.o
11obj-$(CONFIG_OLD_CLK_AT91) += clock.o 11obj-$(CONFIG_OLD_CLK_AT91) += clock.o
12obj-$(CONFIG_AT91_SAM9_TIME) += at91sam926x_time.o
13obj-$(CONFIG_SOC_AT91SAM9) += sam9_smc.o 12obj-$(CONFIG_SOC_AT91SAM9) += sam9_smc.o
14 13
15# CPU-specific support 14# CPU-specific support
diff --git a/drivers/clocksource/Kconfig b/drivers/clocksource/Kconfig
index cfd6519df661..82a2ebe41e27 100644
--- a/drivers/clocksource/Kconfig
+++ b/drivers/clocksource/Kconfig
@@ -120,6 +120,10 @@ config CLKSRC_ARM_GLOBAL_TIMER_SCHED_CLOCK
120 help 120 help
121 Use ARM global timer clock source as sched_clock 121 Use ARM global timer clock source as sched_clock
122 122
123config ATMEL_PIT
124 select CLKSRC_OF if OF
125 def_bool SOC_AT91SAM9 || SOC_SAMA5
126
123config CLKSRC_METAG_GENERIC 127config CLKSRC_METAG_GENERIC
124 def_bool y if METAG 128 def_bool y if METAG
125 help 129 help
diff --git a/drivers/clocksource/Makefile b/drivers/clocksource/Makefile
index 7fd9fd1dff42..e566f6c7ded4 100644
--- a/drivers/clocksource/Makefile
+++ b/drivers/clocksource/Makefile
@@ -1,4 +1,5 @@
1obj-$(CONFIG_CLKSRC_OF) += clksrc-of.o 1obj-$(CONFIG_CLKSRC_OF) += clksrc-of.o
2obj-$(CONFIG_ATMEL_PIT) += timer-atmel-pit.o
2obj-$(CONFIG_ATMEL_TCB_CLKSRC) += tcb_clksrc.o 3obj-$(CONFIG_ATMEL_TCB_CLKSRC) += tcb_clksrc.o
3obj-$(CONFIG_X86_PM_TIMER) += acpi_pm.o 4obj-$(CONFIG_X86_PM_TIMER) += acpi_pm.o
4obj-$(CONFIG_SCx200HR_TIMER) += scx200_hrt.o 5obj-$(CONFIG_SCx200HR_TIMER) += scx200_hrt.o
diff --git a/arch/arm/mach-at91/at91sam926x_time.c b/drivers/clocksource/timer-atmel-pit.c
index d5289098b3df..d5289098b3df 100644
--- a/arch/arm/mach-at91/at91sam926x_time.c
+++ b/drivers/clocksource/timer-atmel-pit.c