Subversion Repositories HelenOS

Rev

Rev 1920 | Rev 1922 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1920 Rev 1921
Line 35... Line 35...
35
#ifndef KERN_IRQ_H_
35
#ifndef KERN_IRQ_H_
36
#define KERN_IRQ_H_
36
#define KERN_IRQ_H_
37
 
37
 
38
#include <arch/types.h>
38
#include <arch/types.h>
39
#include <adt/list.h>
39
#include <adt/list.h>
-
 
40
#include <ipc/ipc.h>
-
 
41
#include <ipc/irq.h>
-
 
42
#include <atomic.h>
-
 
43
#include <synch/spinlock.h>
40
 
44
 
41
typedef enum {
45
typedef enum {
42
    IRQ_DECLINE,        /**< Decline to service. */
46
    IRQ_DECLINE,        /**< Decline to service. */
43
    IRQ_ACCEPT      /**< Accept to service. */
47
    IRQ_ACCEPT      /**< Accept to service. */
44
} irq_ownership_t;
48
} irq_ownership_t;
Line 60... Line 64...
60
 */
64
 */
61
struct irq {
65
struct irq {
62
    /** Hash table link. */
66
    /** Hash table link. */
63
    link_t link;
67
    link_t link;
64
 
68
 
-
 
69
    /** Lock protecting everything in this structure
-
 
70
     *  except the link member. When both the IRQ
-
 
71
     *  hash table lock and this lock are to be acquired,
-
 
72
     *  this lock must not be taken first.
-
 
73
     */
-
 
74
    SPINLOCK_DECLARE(lock);
-
 
75
 
65
    /** Unique device number. -1 if not yet assigned. */
76
    /** Unique device number. -1 if not yet assigned. */
66
    devno_t devno;
77
    devno_t devno;
67
 
78
 
68
    /** Actual IRQ number. -1 if not yet assigned. */
79
    /** Actual IRQ number. -1 if not yet assigned. */
69
    inr_t inr;
80
    inr_t inr;
70
    /** Task ID of the task to be notified about the IRQ or 0. */
-
 
71
    task_id_t notif;
-
 
72
    /** Trigger level of the IRQ.*/
81
    /** Trigger level of the IRQ.*/
73
    irq_trigger_t trigger;
82
    irq_trigger_t trigger;
74
    /** Claim ownership of the IRQ. */
83
    /** Claim ownership of the IRQ. */
75
    irq_ownership_t (* claim)(void);
84
    irq_ownership_t (* claim)(void);
76
    /** Handler for this IRQ and device. */
85
    /** Handler for this IRQ and device. */
77
    irq_handler_t handler;
86
    irq_handler_t handler;
78
    /** Argument for the handler. */
87
    /** Argument for the handler. */
79
    void *arg;
88
    void *arg;
-
 
89
 
-
 
90
    /** Answerbox of the task that wanted to be notified. */
-
 
91
    answerbox_t *notif_answerbox;
-
 
92
    /** Pseudo-code to be performed by the top-half
-
 
93
     *  before a notification is sent. */
-
 
94
    irq_code_t *code;
-
 
95
    /** Counter of IRQ notifications. */
-
 
96
    atomic_t counter;
80
};
97
};
81
 
98
 
82
extern void irq_init(count_t inrs, count_t chains);
99
extern void irq_init(count_t inrs, count_t chains);
83
extern void irq_initialize(irq_t *irq);
100
extern void irq_initialize(irq_t *irq);
84
extern void irq_register(irq_t *irq);
101
extern void irq_register(irq_t *irq);