aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/include/intr.h
diff options
context:
space:
mode:
authorSvatopluk Kraus <skra@FreeBSD.org>2016-04-04 09:15:25 +0000
committerSvatopluk Kraus <skra@FreeBSD.org>2016-04-04 09:15:25 +0000
commitbff6be3e9b2c8d87ee626fa8639fb45044801322 (patch)
treef884312693aa8e3bfe57c9d06b22bc2bd6db88d2 /sys/arm/include/intr.h
parent4d1dd74a5017583ecbf3aa1bc8a92d30fe3fd6f5 (diff)
downloadsrc-bff6be3e9b2c8d87ee626fa8639fb45044801322.tar.gz
src-bff6be3e9b2c8d87ee626fa8639fb45044801322.zip
Remove FDT specific parts from INTRNG. Change its interface to make it
universal. (1) New struct intr_map_data is defined as a container for arbitrary description of an interrupt used by a device. Typically, an interrupt number and configuration relevant to an interrupt controller is encoded in such description. However, any additional information may be encoded too like a set of cpus on which an interrupt should be enabled or vendor specific data needed for setup of an interrupt in controller. The struct intr_map_data itself is meant to be opaque for INTRNG. (2) An intr_map_irq() function is created which takes an interrupt controller identification and struct intr_map_data as arguments and returns global interrupt number which identifies an interrupt. (3) A set of functions to be used by bus drivers is created as well as a corresponding set of methods for interrupt controller drivers. These sets take both struct resource and struct intr_map_data as one of the arguments. There is a goal to keep struct intr_map_data in struct resource, however, this way a final solution is not limited to that. (4) Other small changes are done to reflect new situation. This is only first step aiming to create stable interface for interrupt controller drivers. Thus, some temporary solution is taken. Interrupt descriptions for devices are stored in INTRNG and two specific mapping function are created to be temporary used by bus drivers. That's why the struct intr_map_data is not opaque for INTRNG now. This temporary solution will be replaced by final one in next step. Differential Revision: https://reviews.freebsd.org/D5730
Notes
Notes: svn path=/head/; revision=297539
Diffstat (limited to 'sys/arm/include/intr.h')
-rw-r--r--sys/arm/include/intr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/include/intr.h b/sys/arm/include/intr.h
index a5683855fae5..e81bc7dd7ab7 100644
--- a/sys/arm/include/intr.h
+++ b/sys/arm/include/intr.h
@@ -52,7 +52,7 @@
#include <sys/intr.h>
#ifdef SMP
-typedef void intr_ipi_send_t(void *, cpuset_t);
+typedef void intr_ipi_send_t(void *, cpuset_t, u_int);
typedef void intr_ipi_handler_t(void *);
void intr_ipi_dispatch(u_int, struct trapframe *);