|
@@ -26,6 +26,60 @@
|
|
#include "generic.h"
|
|
#include "generic.h"
|
|
|
|
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+ * We don't need to ACK IRQs on the SA1100 unless they're GPIOs
|
|
|
|
+ * this is for internal IRQs i.e. from IRQ LCD to RTCAlrm.
|
|
|
|
+ */
|
|
|
|
+static void sa1100_mask_irq(struct irq_data *d)
|
|
|
|
+{
|
|
|
|
+ ICMR &= ~BIT(d->hwirq);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void sa1100_unmask_irq(struct irq_data *d)
|
|
|
|
+{
|
|
|
|
+ ICMR |= BIT(d->hwirq);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * Apart form GPIOs, only the RTC alarm can be a wakeup event.
|
|
|
|
+ */
|
|
|
|
+static int sa1100_set_wake(struct irq_data *d, unsigned int on)
|
|
|
|
+{
|
|
|
|
+ if (BIT(d->hwirq) == IC_RTCAlrm) {
|
|
|
|
+ if (on)
|
|
|
|
+ PWER |= PWER_RTC;
|
|
|
|
+ else
|
|
|
|
+ PWER &= ~PWER_RTC;
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+ return -EINVAL;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static struct irq_chip sa1100_normal_chip = {
|
|
|
|
+ .name = "SC",
|
|
|
|
+ .irq_ack = sa1100_mask_irq,
|
|
|
|
+ .irq_mask = sa1100_mask_irq,
|
|
|
|
+ .irq_unmask = sa1100_unmask_irq,
|
|
|
|
+ .irq_set_wake = sa1100_set_wake,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static int sa1100_normal_irqdomain_map(struct irq_domain *d,
|
|
|
|
+ unsigned int irq, irq_hw_number_t hwirq)
|
|
|
|
+{
|
|
|
|
+ irq_set_chip_and_handler(irq, &sa1100_normal_chip,
|
|
|
|
+ handle_level_irq);
|
|
|
|
+ set_irq_flags(irq, IRQF_VALID);
|
|
|
|
+
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static struct irq_domain_ops sa1100_normal_irqdomain_ops = {
|
|
|
|
+ .map = sa1100_normal_irqdomain_map,
|
|
|
|
+ .xlate = irq_domain_xlate_onetwocell,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct irq_domain *sa1100_normal_irqdomain;
|
|
|
|
+
|
|
/*
|
|
/*
|
|
* SA1100 GPIO edge detection for IRQs:
|
|
* SA1100 GPIO edge detection for IRQs:
|
|
* IRQs are generated on Falling-Edge, Rising-Edge, or both.
|
|
* IRQs are generated on Falling-Edge, Rising-Edge, or both.
|
|
@@ -63,24 +117,14 @@ static int sa1100_gpio_type(struct irq_data *d, unsigned int type)
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
/*
|
|
- * GPIO IRQs must be acknowledged. This is for IRQs from GPIO0 to 10.
|
|
|
|
|
|
+ * GPIO IRQs must be acknowledged.
|
|
*/
|
|
*/
|
|
-static void sa1100_low_gpio_ack(struct irq_data *d)
|
|
|
|
|
|
+static void sa1100_gpio_ack(struct irq_data *d)
|
|
{
|
|
{
|
|
GEDR = BIT(d->hwirq);
|
|
GEDR = BIT(d->hwirq);
|
|
}
|
|
}
|
|
|
|
|
|
-static void sa1100_low_gpio_mask(struct irq_data *d)
|
|
|
|
-{
|
|
|
|
- ICMR &= ~BIT(d->hwirq);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static void sa1100_low_gpio_unmask(struct irq_data *d)
|
|
|
|
-{
|
|
|
|
- ICMR |= BIT(d->hwirq);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static int sa1100_low_gpio_wake(struct irq_data *d, unsigned int on)
|
|
|
|
|
|
+static int sa1100_gpio_wake(struct irq_data *d, unsigned int on)
|
|
{
|
|
{
|
|
if (on)
|
|
if (on)
|
|
PWER |= BIT(d->hwirq);
|
|
PWER |= BIT(d->hwirq);
|
|
@@ -89,13 +133,16 @@ static int sa1100_low_gpio_wake(struct irq_data *d, unsigned int on)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+ * This is for IRQs from 0 to 10.
|
|
|
|
+ */
|
|
static struct irq_chip sa1100_low_gpio_chip = {
|
|
static struct irq_chip sa1100_low_gpio_chip = {
|
|
.name = "GPIO-l",
|
|
.name = "GPIO-l",
|
|
- .irq_ack = sa1100_low_gpio_ack,
|
|
|
|
- .irq_mask = sa1100_low_gpio_mask,
|
|
|
|
- .irq_unmask = sa1100_low_gpio_unmask,
|
|
|
|
|
|
+ .irq_ack = sa1100_gpio_ack,
|
|
|
|
+ .irq_mask = sa1100_mask_irq,
|
|
|
|
+ .irq_unmask = sa1100_unmask_irq,
|
|
.irq_set_type = sa1100_gpio_type,
|
|
.irq_set_type = sa1100_gpio_type,
|
|
- .irq_set_wake = sa1100_low_gpio_wake,
|
|
|
|
|
|
+ .irq_set_wake = sa1100_gpio_wake,
|
|
};
|
|
};
|
|
|
|
|
|
static int sa1100_low_gpio_irqdomain_map(struct irq_domain *d,
|
|
static int sa1100_low_gpio_irqdomain_map(struct irq_domain *d,
|
|
@@ -151,13 +198,6 @@ sa1100_high_gpio_handler(unsigned int irq, struct irq_desc *desc)
|
|
* In addition, the IRQs are all collected up into one bit in the
|
|
* In addition, the IRQs are all collected up into one bit in the
|
|
* interrupt controller registers.
|
|
* interrupt controller registers.
|
|
*/
|
|
*/
|
|
-static void sa1100_high_gpio_ack(struct irq_data *d)
|
|
|
|
-{
|
|
|
|
- unsigned int mask = BIT(d->hwirq);
|
|
|
|
-
|
|
|
|
- GEDR = mask;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static void sa1100_high_gpio_mask(struct irq_data *d)
|
|
static void sa1100_high_gpio_mask(struct irq_data *d)
|
|
{
|
|
{
|
|
unsigned int mask = BIT(d->hwirq);
|
|
unsigned int mask = BIT(d->hwirq);
|
|
@@ -178,22 +218,13 @@ static void sa1100_high_gpio_unmask(struct irq_data *d)
|
|
GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
|
|
GFER = GPIO_IRQ_falling_edge & GPIO_IRQ_mask;
|
|
}
|
|
}
|
|
|
|
|
|
-static int sa1100_high_gpio_wake(struct irq_data *d, unsigned int on)
|
|
|
|
-{
|
|
|
|
- if (on)
|
|
|
|
- PWER |= BIT(d->hwirq);
|
|
|
|
- else
|
|
|
|
- PWER &= ~BIT(d->hwirq);
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static struct irq_chip sa1100_high_gpio_chip = {
|
|
static struct irq_chip sa1100_high_gpio_chip = {
|
|
.name = "GPIO-h",
|
|
.name = "GPIO-h",
|
|
- .irq_ack = sa1100_high_gpio_ack,
|
|
|
|
|
|
+ .irq_ack = sa1100_gpio_ack,
|
|
.irq_mask = sa1100_high_gpio_mask,
|
|
.irq_mask = sa1100_high_gpio_mask,
|
|
.irq_unmask = sa1100_high_gpio_unmask,
|
|
.irq_unmask = sa1100_high_gpio_unmask,
|
|
.irq_set_type = sa1100_gpio_type,
|
|
.irq_set_type = sa1100_gpio_type,
|
|
- .irq_set_wake = sa1100_high_gpio_wake,
|
|
|
|
|
|
+ .irq_set_wake = sa1100_gpio_wake,
|
|
};
|
|
};
|
|
|
|
|
|
static int sa1100_high_gpio_irqdomain_map(struct irq_domain *d,
|
|
static int sa1100_high_gpio_irqdomain_map(struct irq_domain *d,
|
|
@@ -213,60 +244,6 @@ static struct irq_domain_ops sa1100_high_gpio_irqdomain_ops = {
|
|
|
|
|
|
static struct irq_domain *sa1100_high_gpio_irqdomain;
|
|
static struct irq_domain *sa1100_high_gpio_irqdomain;
|
|
|
|
|
|
-/*
|
|
|
|
- * We don't need to ACK IRQs on the SA1100 unless they're GPIOs
|
|
|
|
- * this is for internal IRQs i.e. from IRQ LCD to RTCAlrm.
|
|
|
|
- */
|
|
|
|
-static void sa1100_mask_irq(struct irq_data *d)
|
|
|
|
-{
|
|
|
|
- ICMR &= ~BIT(d->hwirq);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static void sa1100_unmask_irq(struct irq_data *d)
|
|
|
|
-{
|
|
|
|
- ICMR |= BIT(d->hwirq);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/*
|
|
|
|
- * Apart form GPIOs, only the RTC alarm can be a wakeup event.
|
|
|
|
- */
|
|
|
|
-static int sa1100_set_wake(struct irq_data *d, unsigned int on)
|
|
|
|
-{
|
|
|
|
- if (BIT(d->hwirq) == IC_RTCAlrm) {
|
|
|
|
- if (on)
|
|
|
|
- PWER |= PWER_RTC;
|
|
|
|
- else
|
|
|
|
- PWER &= ~PWER_RTC;
|
|
|
|
- return 0;
|
|
|
|
- }
|
|
|
|
- return -EINVAL;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static struct irq_chip sa1100_normal_chip = {
|
|
|
|
- .name = "SC",
|
|
|
|
- .irq_ack = sa1100_mask_irq,
|
|
|
|
- .irq_mask = sa1100_mask_irq,
|
|
|
|
- .irq_unmask = sa1100_unmask_irq,
|
|
|
|
- .irq_set_wake = sa1100_set_wake,
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
-static int sa1100_normal_irqdomain_map(struct irq_domain *d,
|
|
|
|
- unsigned int irq, irq_hw_number_t hwirq)
|
|
|
|
-{
|
|
|
|
- irq_set_chip_and_handler(irq, &sa1100_normal_chip,
|
|
|
|
- handle_level_irq);
|
|
|
|
- set_irq_flags(irq, IRQF_VALID);
|
|
|
|
-
|
|
|
|
- return 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-static struct irq_domain_ops sa1100_normal_irqdomain_ops = {
|
|
|
|
- .map = sa1100_normal_irqdomain_map,
|
|
|
|
- .xlate = irq_domain_xlate_onetwocell,
|
|
|
|
-};
|
|
|
|
-
|
|
|
|
-static struct irq_domain *sa1100_normal_irqdomain;
|
|
|
|
-
|
|
|
|
static struct resource irq_resource =
|
|
static struct resource irq_resource =
|
|
DEFINE_RES_MEM_NAMED(0x90050000, SZ_64K, "irqs");
|
|
DEFINE_RES_MEM_NAMED(0x90050000, SZ_64K, "irqs");
|
|
|
|
|