Commit 559a6fc0 authored by Mattias Wallin's avatar Mattias Wallin Committed by Linus Torvalds

rtc: pl031: fix up IRQ flags

The pl031 interrupt is shared between the timer part and the clockwatch
part of the same HW block on the ux500, so mark it IRQF_SHARED on this
variant.

This patch also adds the IRQF_NO_SUSPEND flag to the rtc irq on all
variants as we don't want this pretty important IRQ to be disabled in
suspend.
Signed-off-by: default avatarMattias Wallin <mattias.wallin@stericsson.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Reviewed-by: default avatarRickard Andersson <rickard.andersson@stericsson.com>
Reviewed-by: default avatarJonas Aberg <jonas.aberg@stericsson.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1bb457fc
...@@ -75,11 +75,13 @@ ...@@ -75,11 +75,13 @@
* clockwatch function * clockwatch function
* @st_weekday: if this is an ST Microelectronics silicon version that need * @st_weekday: if this is an ST Microelectronics silicon version that need
* the weekday fix * the weekday fix
* @irqflags: special IRQ flags per variant
*/ */
struct pl031_vendor_data { struct pl031_vendor_data {
struct rtc_class_ops ops; struct rtc_class_ops ops;
bool clockwatch; bool clockwatch;
bool st_weekday; bool st_weekday;
unsigned long irqflags;
}; };
struct pl031_local { struct pl031_local {
...@@ -373,7 +375,7 @@ static int pl031_probe(struct amba_device *adev, const struct amba_id *id) ...@@ -373,7 +375,7 @@ static int pl031_probe(struct amba_device *adev, const struct amba_id *id)
} }
if (request_irq(adev->irq[0], pl031_interrupt, if (request_irq(adev->irq[0], pl031_interrupt,
0, "rtc-pl031", ldata)) { vendor->irqflags, "rtc-pl031", ldata)) {
ret = -EIO; ret = -EIO;
goto out_no_irq; goto out_no_irq;
} }
...@@ -403,6 +405,7 @@ static struct pl031_vendor_data arm_pl031 = { ...@@ -403,6 +405,7 @@ static struct pl031_vendor_data arm_pl031 = {
.set_alarm = pl031_set_alarm, .set_alarm = pl031_set_alarm,
.alarm_irq_enable = pl031_alarm_irq_enable, .alarm_irq_enable = pl031_alarm_irq_enable,
}, },
.irqflags = IRQF_NO_SUSPEND,
}; };
/* The First ST derivative */ /* The First ST derivative */
...@@ -416,6 +419,7 @@ static struct pl031_vendor_data stv1_pl031 = { ...@@ -416,6 +419,7 @@ static struct pl031_vendor_data stv1_pl031 = {
}, },
.clockwatch = true, .clockwatch = true,
.st_weekday = true, .st_weekday = true,
.irqflags = IRQF_NO_SUSPEND,
}; };
/* And the second ST derivative */ /* And the second ST derivative */
...@@ -429,6 +433,11 @@ static struct pl031_vendor_data stv2_pl031 = { ...@@ -429,6 +433,11 @@ static struct pl031_vendor_data stv2_pl031 = {
}, },
.clockwatch = true, .clockwatch = true,
.st_weekday = true, .st_weekday = true,
/*
* This variant shares the IRQ with another block and must not
* suspend that IRQ line.
*/
.irqflags = IRQF_SHARED | IRQF_NO_SUSPEND,
}; };
static struct amba_id pl031_ids[] = { static struct amba_id pl031_ids[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment