mirror of
https://github.com/apache/nuttx.git
synced 2026-06-05 07:12:54 +08:00
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
This commit is contained in:
@@ -1609,6 +1609,9 @@
|
|||||||
Decio Renno.
|
Decio Renno.
|
||||||
* Initialization for the CONFIG_APPS_DIR is now supported during the
|
* Initialization for the CONFIG_APPS_DIR is now supported during the
|
||||||
earlier, 'context' build phase.
|
earlier, 'context' build phase.
|
||||||
|
* arch/arm/src/lpc17_gpioint.c -- Finish coding of the LPC17xx GPIO
|
||||||
|
interrupt logic.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
<tr align="center" bgcolor="#e4e4e4">
|
<tr align="center" bgcolor="#e4e4e4">
|
||||||
<td>
|
<td>
|
||||||
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
<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>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@@ -2157,8 +2157,19 @@ buildroot-1.9 2011-02-10 <spudmonkey@racsa.co.cr>
|
|||||||
<ul><pre>
|
<ul><pre>
|
||||||
nuttx-6.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
nuttx-6.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
|
* 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 <spudmonkey@racsa.co.cr>
|
apps-6.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
|
* Creation of auto-generated header files now occurs during the context
|
||||||
|
build phase.
|
||||||
|
|
||||||
pascal-2.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
pascal-2.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
buildroot-1.10 2011-xx-xx <spudmonkey@racsa.co.cr>
|
buildroot-1.10 2011-xx-xx <spudmonkey@racsa.co.cr>
|
||||||
|
|||||||
@@ -278,7 +278,7 @@ static int lpc17_pullup(uint16_t cfgset, unsigned int port, unsigned int pin)
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_GPIO_IRQ
|
#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;
|
uint64_t *intedge;
|
||||||
unsigned int shift;
|
unsigned int shift;
|
||||||
@@ -287,11 +287,11 @@ static int lpc17_setintedge(unsigned int port, unsigned int pin, unsigned int va
|
|||||||
|
|
||||||
if (port == 0)
|
if (port == 0)
|
||||||
{
|
{
|
||||||
intedge = g_intedge0;
|
intedge = &g_intedge0;
|
||||||
}
|
}
|
||||||
else if (port == 2)
|
else if (port == 2)
|
||||||
{
|
{
|
||||||
intedge = g_intedge2;
|
intedge = &g_intedge2;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -45,6 +45,7 @@
|
|||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
#include <arch/irq.h>
|
#include <arch/irq.h>
|
||||||
|
#include <nuttx/arch.h>
|
||||||
|
|
||||||
#include "up_arch.h"
|
#include "up_arch.h"
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
@@ -84,17 +85,17 @@
|
|||||||
|
|
||||||
static unsigned int lpc17_getintedge(unsigned int port, unsigned int pin)
|
static unsigned int lpc17_getintedge(unsigned int port, unsigned int pin)
|
||||||
{
|
{
|
||||||
const uint64_t *intedge;
|
uint64_t *intedge;
|
||||||
|
|
||||||
/* Which word to we use? */
|
/* Which word to we use? */
|
||||||
|
|
||||||
if (port == 0)
|
if (port == 0)
|
||||||
{
|
{
|
||||||
intedge = g_intedge0;
|
intedge = &g_intedge0;
|
||||||
}
|
}
|
||||||
else if (port == 2)
|
else if (port == 2)
|
||||||
{
|
{
|
||||||
intedge = g_intedge2;
|
intedge = &g_intedge2;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -129,7 +130,6 @@ static void lpc17_setintedge(uint32_t intbase, unsigned int pin, unsigned int ed
|
|||||||
{
|
{
|
||||||
regval &= ~GPIOINT(pin);
|
regval &= ~GPIOINT(pin);
|
||||||
}
|
}
|
||||||
endif
|
|
||||||
putreg32(regval, intbase + LPC17_GPIOINT_INTENR_OFFSET);
|
putreg32(regval, intbase + LPC17_GPIOINT_INTENR_OFFSET);
|
||||||
|
|
||||||
/* Set/clear the rising edge enable bit */
|
/* 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);
|
regval &= ~GPIOINT(pin);
|
||||||
}
|
}
|
||||||
endif
|
|
||||||
putreg32(regval, intbase + LPC17_GPIOINT_INTENF_OFFSET);
|
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 */
|
/* 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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set 2: 16 interrupts p0.15-p0.30 */
|
/* 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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set 3: 14 interrupts p2.0-p2.13 */
|
/* 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;
|
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 */
|
/* 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;
|
return irq - LPC17_VALID_FIRST0L + LPC17_VALID_SHIFT0L;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set 2: 16 interrupts p0.15-p0.30 */
|
/* 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;
|
return irq - LPC17_VALID_FIRST0H + LPC17_VALID_SHIFT0H;
|
||||||
|
|
||||||
12
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set 3: 14 interrupts p2.0-p2.13 */
|
/* 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 irq - LPC17_VALID_FIRST0H + LPC17_VALID_SHIFT2;
|
||||||
}
|
}
|
||||||
return -EINVAL;
|
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
|
* 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
|
* Name: lpc17_gpioirqenable
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* Enable the interrupt for specified GPIO IRQ
|
* Enable the interrupt for specified GPIO IRQ
|
||||||
*
|
*
|
||||||
************************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
void lpc17_gpioirqenable(int irq)
|
void lpc17_gpioirqenable(int irq)
|
||||||
{
|
{
|
||||||
@@ -239,25 +369,25 @@ void lpc17_gpioirqenable(int irq)
|
|||||||
* address of the GPIOINT registers for the port.
|
* address of the GPIOINT registers for the port.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
uint32_t intbase = g_intbase[GPIO_NPORTS];
|
uint32_t intbase = g_intbase[port];
|
||||||
if (intabase != 0)
|
if (intbase != 0)
|
||||||
{
|
{
|
||||||
/* And get the pin number associated with the port */
|
/* 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);
|
unsigned int edges = lpc17_getintedge(port, pin);
|
||||||
lpc17_setintedge(intbase, pin, edges);
|
lpc17_setintedge(intbase, pin, edges);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************************
|
/****************************************************************************
|
||||||
* Name: lpc17_gpioirqdisable
|
* Name: lpc17_gpioirqdisable
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* Disable the interrupt for specified GPIO IRQ
|
* Disable the interrupt for specified GPIO IRQ
|
||||||
*
|
*
|
||||||
************************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
void lpc17_gpioirqdisable(int irq)
|
void lpc17_gpioirqdisable(int irq)
|
||||||
{
|
{
|
||||||
@@ -270,18 +400,16 @@ void lpc17_gpioirqdisable(int irq)
|
|||||||
* address of the GPIOINT registers for the port.
|
* address of the GPIOINT registers for the port.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
uint32_t intbase = g_intbase[GPIO_NPORTS];
|
uint32_t intbase = g_intbase[port];
|
||||||
if (intabase != 0)
|
if (intbase != 0)
|
||||||
{
|
{
|
||||||
/* And get the pin number associated with the port */
|
/* 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);
|
lpc17_setintedge(intbase, pin, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#warning "Still needs initialization, interrupt handling and decoding logic"
|
|
||||||
|
|
||||||
#endif /* CONFIG_GPIO_IRQ */
|
#endif /* CONFIG_GPIO_IRQ */
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
* arch/arm/src/lpc17/lpc17_irq.c
|
* arch/arm/src/lpc17/lpc17_irq.c
|
||||||
* arch/arm/src/chip/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>
|
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
|||||||
Reference in New Issue
Block a user