blob: 3f7892104059a4db7c777d6700b27e8af635a514 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
* \brief Hardware-interrupt subsystem
* \author Thomas Friebel <tf13@os.inf.tu-dresden.de>
* \author Christian Helmuth <ch12@os.inf.tu-dresden.de>
* \date 2007-01-26
*
* DDEKit supports registration of one handler function per interrupt. If any
* specific DDE implementation needs to register more than one handler,
* multiplexing has to be implemented there!
*/
#ifndef _ddekit_interrupt_h
#define _ddekit_interrupt_h
#include "ddekit/thread.h"
#define DDEKIT_IRQ_PRIO 2
/**
* Attach to hardware interrupt
*
* \param irq IRQ number to attach to
* \param shared set to 1 if interrupt sharing is supported; set to 0
* otherwise
* \param thread_init called just after DDEKit internal init and before any
* other function
* \param handler IRQ handler for interrupt irq
* \param priv private token (argument for thread_init and handler)
*
* \return pointer to interrupt thread created
*/
ddekit_thread_t *ddekit_interrupt_attach(int irq, int shared,
void(*thread_init)(void *),
void(*handler)(void *), void *priv);
/**
* Detach from a previously attached interrupt.
*
* \param irq IRQ number
*/
void ddekit_interrupt_detach(int irq);
/**
* Block interrupt.
*
* \param irq IRQ number to block
*/
void ddekit_interrupt_disable(int irq);
/**
* Enable interrupt.
*
* \param irq IRQ number to block
*/
void ddekit_interrupt_enable(int irq);
#endif
|