2008-09-19 06:56:32 +08:00
|
|
|
/****************************************************************************
|
2014-08-09 04:31:15 +08:00
|
|
|
* sched/irq/irq_attach.c
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2008-09-19 06:56:32 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-09-19 06:56:32 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2008-09-19 06:56:32 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2009-12-15 02:39:29 +08:00
|
|
|
#include <nuttx/config.h>
|
2012-07-15 03:30:31 +08:00
|
|
|
|
2018-01-01 01:11:57 +08:00
|
|
|
#include <errno.h>
|
|
|
|
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <nuttx/irq.h>
|
2012-07-15 03:30:31 +08:00
|
|
|
|
2014-08-09 04:31:15 +08:00
|
|
|
#include "irq/irq.h"
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-09-19 06:56:32 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Public Functions
|
2008-09-19 06:56:32 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-09-19 06:56:32 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Name: irq_attach
|
|
|
|
*
|
|
|
|
* Description:
|
2012-07-15 03:30:31 +08:00
|
|
|
* Configure the IRQ subsystem so that IRQ number 'irq' is dispatched to
|
|
|
|
* 'isr'
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2008-09-19 06:56:32 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2017-03-01 08:20:45 +08:00
|
|
|
int irq_attach(int irq, xcpt_t isr, FAR void *arg)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2007-02-28 05:17:21 +08:00
|
|
|
#if NR_IRQS > 0
|
2018-01-01 01:11:57 +08:00
|
|
|
int ret = -EINVAL;
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
if ((unsigned)irq < NR_IRQS)
|
|
|
|
{
|
2016-02-14 22:17:46 +08:00
|
|
|
irqstate_t flags;
|
2017-03-03 22:55:16 +08:00
|
|
|
int ndx;
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_MINIMAL_VECTORTABLE
|
|
|
|
/* Is there a mapping for this IRQ number? */
|
|
|
|
|
|
|
|
ndx = g_irqmap[irq];
|
|
|
|
if ((unsigned)ndx >= CONFIG_ARCH_NUSER_INTERRUPTS)
|
|
|
|
{
|
|
|
|
/* No.. then return failure. */
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
ndx = irq;
|
|
|
|
#endif
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
/* If the new ISR is NULL, then the ISR is being detached.
|
|
|
|
* In this case, disable the ISR and direct any interrupts
|
|
|
|
* to the unexpected interrupt handler.
|
|
|
|
*/
|
|
|
|
|
2016-02-14 22:17:46 +08:00
|
|
|
flags = enter_critical_section();
|
2007-02-18 07:21:28 +08:00
|
|
|
if (isr == NULL)
|
|
|
|
{
|
2012-01-04 08:14:45 +08:00
|
|
|
/* Disable the interrupt if we can before detaching it. We might
|
2014-04-14 04:32:20 +08:00
|
|
|
* not be able to do this if: (1) the device does not have a
|
2012-01-04 08:14:45 +08:00
|
|
|
* centralized interrupt controller (so up_disable_irq() is not
|
2020-05-05 01:34:04 +08:00
|
|
|
* supported). Or (2) if the device has different number for vector
|
2012-01-04 08:14:45 +08:00
|
|
|
* numbers and IRQ numbers (in that case, we don't know the correct
|
2020-05-05 01:34:04 +08:00
|
|
|
* IRQ number to use to disable the interrupt). In those cases, the
|
2012-01-04 08:14:45 +08:00
|
|
|
* code will just need to be careful that it disables all interrupt
|
|
|
|
* sources before detaching from the interrupt vector.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if !defined(CONFIG_ARCH_NOINTC) && !defined(CONFIG_ARCH_VECNOTIRQ)
|
|
|
|
up_disable_irq(irq);
|
2008-11-09 01:46:36 +08:00
|
|
|
#endif
|
2012-01-04 08:14:45 +08:00
|
|
|
/* Detaching the ISR really means re-attaching it to the
|
|
|
|
* unexpected exception handler.
|
|
|
|
*/
|
|
|
|
|
2017-08-15 07:19:27 +08:00
|
|
|
isr = irq_unexpected_isr;
|
|
|
|
arg = NULL;
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
|
|
|
|
2018-08-25 05:10:23 +08:00
|
|
|
#ifdef CONFIG_IRQCHAIN
|
|
|
|
/* Save the new ISR and its argument in the table.
|
|
|
|
* If there is only one ISR on this irq, then .handler point to the ISR
|
|
|
|
* and .arg point to the ISR parameter; Otherwise, .handler point to
|
|
|
|
* irqchain_dispatch and .arg point to irqchain_s.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (is_irqchain(ndx, isr))
|
|
|
|
{
|
|
|
|
ret = irqchain_attach(ndx, isr, arg);
|
|
|
|
leave_critical_section(flags);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-03-03 22:55:16 +08:00
|
|
|
/* Save the new ISR and its argument in the table. */
|
|
|
|
|
|
|
|
g_irqvector[ndx].handler = isr;
|
|
|
|
g_irqvector[ndx].arg = arg;
|
2018-01-13 07:41:09 +08:00
|
|
|
#ifdef CONFIG_SCHED_IRQMONITOR
|
2020-05-04 22:15:10 +08:00
|
|
|
g_irqvector[ndx].start = clock_systime_ticks();
|
2018-01-13 07:41:09 +08:00
|
|
|
#ifdef CONFIG_HAVE_LONG_LONG
|
|
|
|
g_irqvector[ndx].count = 0;
|
|
|
|
#else
|
|
|
|
g_irqvector[ndx].mscount = 0;
|
|
|
|
g_irqvector[ndx].lscount = 0;
|
|
|
|
#endif
|
|
|
|
#endif
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2016-02-14 22:17:46 +08:00
|
|
|
leave_critical_section(flags);
|
2007-02-18 07:21:28 +08:00
|
|
|
ret = OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2007-02-28 05:17:21 +08:00
|
|
|
#else
|
|
|
|
return OK;
|
|
|
|
#endif
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|