]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
rtc: Limit RTC PIE frequency
authorThomas Gleixner <tglx@linutronix.de>
Fri, 22 Jul 2011 09:12:51 +0000 (09:12 +0000)
committerJohn Stultz <john.stultz@linaro.org>
Tue, 26 Jul 2011 21:50:01 +0000 (14:50 -0700)
The RTC pie hrtimer is self rearming. We really need to limit the
frequency to something sensible. Thus limit it to the 8192Hz max
value from the rtc man documentation

Cc: Willy Tarreau <w@1wt.eu>
Cc: stable@kernel.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
[jstultz: slightly reworked to use RTC_MAX_FREQ value]
Signed-off-by: John Stultz <john.stultz@linaro.org>
drivers/rtc/interface.c
include/linux/rtc.h

index a1ba2caa8308b7cd991130d8b29db2392ba277b5..44e91e598f8d975ae7570b80366a67540611c8da 100644 (file)
@@ -708,7 +708,7 @@ int rtc_irq_set_freq(struct rtc_device *rtc, struct rtc_task *task, int freq)
        int err = 0;
        unsigned long flags;
 
-       if (freq <= 0)
+       if (freq <= 0 || freq > RTC_MAX_FREQ)
                return -EINVAL;
 retry:
        spin_lock_irqsave(&rtc->irq_task_lock, flags);
index b27ebea25660bff86dbdf2f86040f26904ab45c7..93f4d035076bc8f295fde5b0a6b5b89e4c5df9ff 100644 (file)
@@ -97,6 +97,9 @@ struct rtc_pll_info {
 #define RTC_AF 0x20    /* Alarm interrupt */
 #define RTC_UF 0x10    /* Update interrupt for 1Hz RTC */
 
+
+#define RTC_MAX_FREQ   8192
+
 #ifdef __KERNEL__
 
 #include <linux/types.h>