summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-24 02:26:25 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-24 02:26:25 +0000
commit048de7cf3c1d0a20adb148aaa1ff3bc299858ca3 (patch)
treefd609a354c3cd47633f4cd92e665c458a04ffe58 /nuttx
parent1e10d8d0d3733432f69d86948645896295864d42 (diff)
downloadpx4-nuttx-048de7cf3c1d0a20adb148aaa1ff3bc299858ca3.tar.gz
px4-nuttx-048de7cf3c1d0a20adb148aaa1ff3bc299858ca3.tar.bz2
px4-nuttx-048de7cf3c1d0a20adb148aaa1ff3bc299858ca3.zip
Add lpc17xx GPIO interrupts + fixes needed by last apps-build check-in
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3413 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/ChangeLog3
-rw-r--r--nuttx/Documentation/NuttX.html13
-rwxr-xr-xnuttx/arch/arm/src/lpc17xx/lpc17_gpio.c6
-rwxr-xr-xnuttx/arch/arm/src/lpc17xx/lpc17_gpioint.c180
-rwxr-xr-xnuttx/arch/arm/src/lpc17xx/lpc17_irq.c2
5 files changed, 173 insertions, 31 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 0d08388a8..9787ddcde 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -1609,6 +1609,9 @@
Decio Renno.
* Initialization for the CONFIG_APPS_DIR is now supported during the
earlier, 'context' build phase.
+ * arch/arm/src/lpc17_gpioint.c -- Finish coding of the LPC17xx GPIO
+ interrupt logic.
+
diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html
index c8e89dc68..75d09209a 100644
--- a/nuttx/Documentation/NuttX.html
+++ b/nuttx/Documentation/NuttX.html
@@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
- <p>Last Updated: March 21, 2011</p>
+ <p>Last Updated: March 23, 2011</p>
</td>
</tr>
</table>
@@ -2157,8 +2157,19 @@ buildroot-1.9 2011-02-10 &lt;spudmonkey@racsa.co.cr&gt;
<ul><pre>
nuttx-6.1 2011-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
+ * arch/arm/include/lpc17xx/irq.h and arch/arm/src/lpc17xx/lpc17_gpio*.c
+ -- Fix several bugs in the GPIO interrupt logic. Submited by
+ Decio Renno.
+ * Initialization for the CONFIG_APPS_DIR is now supported during the
+ earlier, 'context' build phase.
+ * arch/arm/src/lpc17_gpioint.c -- Finish coding of the LPC17xx GPIO
+ interrupt logic.
+
apps-6.1 2011-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
+ * Creation of auto-generated header files now occurs during the context
+ build phase.
+
pascal-2.1 2011-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
buildroot-1.10 2011-xx-xx &lt;spudmonkey@racsa.co.cr&gt;
diff --git a/nuttx/arch/arm/src/lpc17xx/lpc17_gpio.c b/nuttx/arch/arm/src/lpc17xx/lpc17_gpio.c
index aa658d3e8..8a894d31c 100755
--- a/nuttx/arch/arm/src/lpc17xx/lpc17_gpio.c
+++ b/nuttx/arch/arm/src/lpc17xx/lpc17_gpio.c
@@ -278,7 +278,7 @@ static int lpc17_pullup(uint16_t cfgset, unsigned int port, unsigned int pin)
****************************************************************************/
#ifdef CONFIG_GPIO_IRQ
-static int lpc17_setintedge(unsigned int port, unsigned int pin, unsigned int value)
+static void lpc17_setintedge(unsigned int port, unsigned int pin, unsigned int value)
{
uint64_t *intedge;
unsigned int shift;
@@ -287,11 +287,11 @@ static int lpc17_setintedge(unsigned int port, unsigned int pin, unsigned int va
if (port == 0)
{
- intedge = g_intedge0;
+ intedge = &g_intedge0;
}
else if (port == 2)
{
- intedge = g_intedge2;
+ intedge = &g_intedge2;
}
else
{
diff --git a/nuttx/arch/arm/src/lpc17xx/lpc17_gpioint.c b/nuttx/arch/arm/src/lpc17xx/lpc17_gpioint.c
index 5b7672d91..213b80596 100755
--- a/nuttx/arch/arm/src/lpc17xx/lpc17_gpioint.c
+++ b/nuttx/arch/arm/src/lpc17xx/lpc17_gpioint.c
@@ -45,6 +45,7 @@
#include <debug.h>
#include <arch/irq.h>
+#include <nuttx/arch.h>
#include "up_arch.h"
#include "chip.h"
@@ -84,17 +85,17 @@
static unsigned int lpc17_getintedge(unsigned int port, unsigned int pin)
{
- const uint64_t *intedge;
+ uint64_t *intedge;
/* Which word to we use? */
if (port == 0)
{
- intedge = g_intedge0;
+ intedge = &g_intedge0;
}
else if (port == 2)
{
- intedge = g_intedge2;
+ intedge = &g_intedge2;
}
else
{
@@ -129,7 +130,6 @@ static void lpc17_setintedge(uint32_t intbase, unsigned int pin, unsigned int ed
{
regval &= ~GPIOINT(pin);
}
- endif
putreg32(regval, intbase + LPC17_GPIOINT_INTENR_OFFSET);
/* Set/clear the rising edge enable bit */
@@ -143,7 +143,6 @@ static void lpc17_setintedge(uint32_t intbase, unsigned int pin, unsigned int ed
{
regval &= ~GPIOINT(pin);
}
- endif
putreg32(regval, intbase + LPC17_GPIOINT_INTENF_OFFSET);
}
@@ -159,21 +158,21 @@ static int lpc17_irq2port(int irq)
{
/* Set 1: 12 interrupts p0.0-p0.11 */
- if (irq >= LPC17_VALID_FIRST0L && irq < (LPC17_VALID_FIRST0L+LPC17_VALID_NIRQS0L)
+ if (irq >= LPC17_VALID_FIRST0L && irq < (LPC17_VALID_FIRST0L+LPC17_VALID_NIRQS0L))
{
return 0;
}
/* Set 2: 16 interrupts p0.15-p0.30 */
- else if (irq >= LPC17_VALID_FIRST0H && irq < (LPC17_VALID_FIRST0H+LPC17_VALID_NIRQS0H)
+ else if (irq >= LPC17_VALID_FIRST0H && irq < (LPC17_VALID_FIRST0H+LPC17_VALID_NIRQS0H))
{
return 0;
}
/* Set 3: 14 interrupts p2.0-p2.13 */
- else if (irq >= LPC17_VALID_NIRQS2 && irq < (LPC17_VALID_FIRST2+LPC17_VALID_NIRQS2)
+ else if (irq >= LPC17_VALID_NIRQS2 && irq < (LPC17_VALID_FIRST2+LPC17_VALID_NIRQS2))
{
return 2;
}
@@ -188,45 +187,176 @@ static int lpc17_irq2port(int irq)
*
****************************************************************************/
-static int lpc17_irq2port(int irq)
+static int lpc17_irq2pin(int irq)
{
/* Set 1: 12 interrupts p0.0-p0.11 */
- if (irq >= LPC17_VALID_FIRST0L && irq < (LPC17_VALID_FIRST0L+LPC17_VALID_NIRQS0L)
+ if (irq >= LPC17_VALID_FIRST0L && irq < (LPC17_VALID_FIRST0L+LPC17_VALID_NIRQS0L))
{
return irq - LPC17_VALID_FIRST0L + LPC17_VALID_SHIFT0L;
}
/* Set 2: 16 interrupts p0.15-p0.30 */
- else if (irq >= LPC17_VALID_FIRST0H && irq < (LPC17_VALID_FIRST0H+LPC17_VALID_NIRQS0H)
+ else if (irq >= LPC17_VALID_FIRST0H && irq < (LPC17_VALID_FIRST0H+LPC17_VALID_NIRQS0H))
{
return irq - LPC17_VALID_FIRST0H + LPC17_VALID_SHIFT0H;
-
- 12
}
/* Set 3: 14 interrupts p2.0-p2.13 */
- else if (irq >= LPC17_VALID_NIRQS2 && irq < (LPC17_VALID_FIRST2+LPC17_VALID_NIRQS2)
+ else if (irq >= LPC17_VALID_NIRQS2 && irq < (LPC17_VALID_FIRST2+LPC17_VALID_NIRQS2))
{
return irq - LPC17_VALID_FIRST0H + LPC17_VALID_SHIFT2;
}
return -EINVAL;
}
+/****************************************************************************
+ * Name: lpc17_gpiodemux
+ *
+ * Description:
+ * Demux all interrupts on one GPIO interrupt status register.
+ *
+ ****************************************************************************/
+
+static void lpc17_gpiodemux(uint32_t intbase, uint32_t intmask,
+ int irqbase, void *context)
+{
+ uint32_t intstatr;
+ uint32_t intstatf;
+ uint32_t intstatus;
+ uint32_t bit;
+ int irq;
+
+ /* Get the interrupt rising and falling edge status and mask out only the
+ * interrupts that are enabled.
+ */
+
+ intstatr = getreg32(intbase + LPC17_GPIOINT_INTSTATR_OFFSET);
+ intstatr &= getreg32(intbase + LPC17_GPIOINT_INTENR_OFFSET);
+
+ intstatf = getreg32(intbase + LPC17_GPIOINT_INTSTATF_OFFSET);
+ intstatf &= getreg32(intbase + LPC17_GPIOINT_INTENF_OFFSET);
+
+ /* And get the OR of the enabled interrupt sources. We do not make any
+ * distinction between rising and falling edges (but the hardware does support
+ * the ability to differently if needed.
+ */
+
+ intstatus = intstatr | intstatf;
+
+ /* Now march through the (valid) bits and dispatch each interrupt */
+
+ irq = irqbase;
+ bit = 1;
+ while (intstatus != 0)
+ {
+ /* Does this pin support an interrupt? If no, skip over it WITHOUT
+ * incrementing irq.
+ */
+
+ if ((intmask & bit) != 0)
+ {
+ /* This pin can support an interrupt. Is there an interrupt pending
+ * and enabled?
+ */
+
+ if ((intstatus & bit) != 0)
+ {
+ /* Clear the interrupt status */
+
+ putreg32(bit, intbase + LPC17_GPIOINT_INTCLR_OFFSET);
+
+ /* And dispatch the interrupt */
+
+ irq_dispatch(irq, context);
+ }
+
+ /* Increment the IRQ number on each interrupt pin */
+
+ irq++;
+ }
+
+ /* Next bit */
+
+ intstatus &= ~bit;
+ bit <<= 1;
+ }
+}
+
+/****************************************************************************
+ * Name: lpc17_gpiointerrupt
+ *
+ * Description:
+ * Handle the EINT3 interrupt that also indicates that a GPIO interrupt has
+ * occurred. NOTE: This logic will have to be extended if EINT3 is
+ * actually used for External Interrupt 3.
+ *
+ ****************************************************************************/
+
+static int lpc17_gpiointerrupt(int irq, void *context)
+{
+ /* Get the GPIO interrupt status */
+
+ uint32_t intstatus = getreg32(LPC17_GPIOINT_IOINTSTATUS);
+
+ /* Check for an interrupt on GPIO0 */
+
+ if ((intstatus & GPIOINT_IOINTSTATUS_P0INT) != 0)
+ {
+ lpc17_gpiodemux(LPC17_GPIOINT0_BASE, LPC17_VALID_GPIOINT0,
+ LPC17_VALID_FIRST0L, context);
+ }
+
+ /* Check for an interrupt on GPIO2 */
+
+ if ((intstatus & GPIOINT_IOINTSTATUS_P2INT) != 0)
+ {
+ lpc17_gpiodemux(LPC17_GPIOINT2_BASE, LPC17_VALID_GPIOINT2,
+ LPC17_VALID_FIRST2, context);
+ }
+
+ return OK;
+}
/****************************************************************************
* Global Functions
****************************************************************************/
-/************************************************************************************
+/****************************************************************************
+ * Name: lpc17_gpioirqinitialize
+ *
+ * Description:
+ * Initialize logic to support a second level of interrupt decoding for
+ * GPIO pins.
+ *
+ ****************************************************************************/
+
+void lpc17_gpioirqinitialize(void)
+{
+ /* Disable all GPIO interrupts */
+
+ putreg32(0, LPC17_GPIOINT0_INTENR);
+ putreg32(0, LPC17_GPIOINT0_INTENF);
+ putreg32(0, LPC17_GPIOINT2_INTENR);
+ putreg32(0, LPC17_GPIOINT2_INTENF);
+
+ /* Attach and enable the GPIO IRQ. Note: GPIO0 and GPIO2 interrupts share
+ * the same position in the NVIC with External Interrupt 3
+ */
+
+ (void)irq_attach(LPC17_IRQ_EINT3, lpc17_gpiointerrupt);
+ up_enable_irq(LPC17_IRQ_EINT3);
+}
+
+/****************************************************************************
* Name: lpc17_gpioirqenable
*
* Description:
* Enable the interrupt for specified GPIO IRQ
*
- ************************************************************************************/
+ ****************************************************************************/
void lpc17_gpioirqenable(int irq)
{
@@ -239,25 +369,25 @@ void lpc17_gpioirqenable(int irq)
* address of the GPIOINT registers for the port.
*/
- uint32_t intbase = g_intbase[GPIO_NPORTS];
- if (intabase != 0)
+ uint32_t intbase = g_intbase[port];
+ if (intbase != 0)
{
/* And get the pin number associated with the port */
- unsigned int pin = g_irq2pin(irq);
+ unsigned int pin = lpc17_irq2pin(irq);
unsigned int edges = lpc17_getintedge(port, pin);
lpc17_setintedge(intbase, pin, edges);
}
}
}
-/************************************************************************************
+/****************************************************************************
* Name: lpc17_gpioirqdisable
*
* Description:
* Disable the interrupt for specified GPIO IRQ
*
- ************************************************************************************/
+ ****************************************************************************/
void lpc17_gpioirqdisable(int irq)
{
@@ -270,18 +400,16 @@ void lpc17_gpioirqdisable(int irq)
* address of the GPIOINT registers for the port.
*/
- uint32_t intbase = g_intbase[GPIO_NPORTS];
- if (intabase != 0)
+ uint32_t intbase = g_intbase[port];
+ if (intbase != 0)
{
/* And get the pin number associated with the port */
- unsigned int pin = g_irq2pin(irq);
+ unsigned int pin = lpc17_irq2pin(irq);
lpc17_setintedge(intbase, pin, 0);
}
}
}
-#warning "Still needs initialization, interrupt handling and decoding logic"
-
#endif /* CONFIG_GPIO_IRQ */
diff --git a/nuttx/arch/arm/src/lpc17xx/lpc17_irq.c b/nuttx/arch/arm/src/lpc17xx/lpc17_irq.c
index dad1d1ca4..5190c8e66 100755
--- a/nuttx/arch/arm/src/lpc17xx/lpc17_irq.c
+++ b/nuttx/arch/arm/src/lpc17xx/lpc17_irq.c
@@ -2,7 +2,7 @@
* arch/arm/src/lpc17/lpc17_irq.c
* arch/arm/src/chip/lpc17_irq.c
*
- * Copyright (C) 2010 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2010-2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without