diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2016-01-01 17:58:45 +0530 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2016-05-09 09:32:29 +0530 |
commit | 77c8d0d6b3f4ea0989b9ca42fb368cc2aac02495 (patch) | |
tree | 5ba977ce5f91690719b836091fead52a78301ec7 /arch/arc/include | |
parent | 7ec9f34a03e4a08469cca206ff5324f6b99fdc3f (diff) | |
download | blackbird-op-linux-77c8d0d6b3f4ea0989b9ca42fb368cc2aac02495.tar.gz blackbird-op-linux-77c8d0d6b3f4ea0989b9ca42fb368cc2aac02495.zip |
ARC: clockevent: DT based probe
- timer frequency is derived from DT (no longer rely on top level
DT "clock-frequency" probed early and exported by asm/clk.h)
- TIMER0_IRQ need not be exported across arch code, confined to intc as
it is property of same
- Any failures in clockevent setup are considered pedantic and system
panic()'s as there is no generic fallback (unlike clocksource where
a jiffies based soft clocksource always exists)
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/include')
-rw-r--r-- | arch/arc/include/asm/irq.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/arc/include/asm/irq.h b/arch/arc/include/asm/irq.h index 5c0b5abda67a..a6ac89dc228f 100644 --- a/arch/arc/include/asm/irq.h +++ b/arch/arc/include/asm/irq.h @@ -12,15 +12,6 @@ #define NR_CPU_IRQS 32 /* number of interrupt lines of ARC770 CPU */ #define NR_IRQS 128 /* allow some CPU external IRQ handling */ -/* Platform Independent IRQs */ -#ifdef CONFIG_ISA_ARCOMPACT -#define TIMER0_IRQ 3 -#define TIMER1_IRQ 4 -#else -#define TIMER0_IRQ 16 -#define TIMER1_IRQ 17 -#endif - #include <linux/interrupt.h> #include <asm-generic/irq.h> |