Subversion Repositories HelenOS

Rev

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

Rev 4343 Rev 4344
Line 34... Line 34...
34
 
34
 
35
#ifndef KERN_IRQ_H_
35
#ifndef KERN_IRQ_H_
36
#define KERN_IRQ_H_
36
#define KERN_IRQ_H_
37
 
37
 
38
typedef enum {
38
typedef enum {
39
    CMD_MEM_READ_1 = 0,
39
    CMD_PIO_READ_8 = 1,
40
    CMD_MEM_READ_2,
40
    CMD_PIO_READ_16,
41
    CMD_MEM_READ_4,
41
    CMD_PIO_READ_32,
42
    CMD_MEM_READ_8,
42
    CMD_PIO_WRITE_8,
43
    CMD_MEM_WRITE_1,
43
    CMD_PIO_WRITE_16,
44
    CMD_MEM_WRITE_2,
44
    CMD_PIO_WRITE_32,
45
    CMD_MEM_WRITE_4,
45
    CMD_BTEST,
46
    CMD_MEM_WRITE_8,
46
    CMD_PREDICATE,
47
    CMD_PORT_READ_1,
47
    CMD_ACCEPT,
48
    CMD_PORT_WRITE_1,
48
    CMD_DECLINE,
49
    CMD_LAST
49
    CMD_LAST
50
} irq_cmd_type;
50
} irq_cmd_type;
51
 
51
 
52
typedef struct {
52
typedef struct {
53
    irq_cmd_type cmd;
53
    irq_cmd_type cmd;
54
    void *addr;
54
    void *addr;
55
    unsigned long long value;
55
    unsigned long long value;
-
 
56
    unsigned int srcarg;
56
    int dstarg;
57
    unsigned int dstarg;
57
} irq_cmd_t;
58
} irq_cmd_t;
58
 
59
 
59
typedef struct {
60
typedef struct {
60
    unsigned int cmdcount;
61
    unsigned int cmdcount;
61
    irq_cmd_t *cmds;
62
    irq_cmd_t *cmds;
Line 63... Line 64...
63
 
64
 
64
#ifdef KERNEL
65
#ifdef KERNEL
65
 
66
 
66
#include <arch/types.h>
67
#include <arch/types.h>
67
#include <adt/list.h>
68
#include <adt/list.h>
-
 
69
#include <adt/hash_table.h>
68
#include <synch/spinlock.h>
70
#include <synch/spinlock.h>
69
#include <proc/task.h>
71
#include <proc/task.h>
-
 
72
#include <ipc/ipc.h>
70
 
73
 
71
typedef enum {
74
typedef enum {
72
    IRQ_DECLINE,        /**< Decline to service. */
75
    IRQ_DECLINE,        /**< Decline to service. */
73
    IRQ_ACCEPT      /**< Accept to service. */
76
    IRQ_ACCEPT      /**< Accept to service. */
74
} irq_ownership_t;
77
} irq_ownership_t;
Line 94... Line 97...
94
    bool notify;
97
    bool notify;
95
    /** Answerbox for notifications. */
98
    /** Answerbox for notifications. */
96
    answerbox_t *answerbox;
99
    answerbox_t *answerbox;
97
    /** Method to be used for the notification. */
100
    /** Method to be used for the notification. */
98
    unative_t method;
101
    unative_t method;
-
 
102
    /** Arguments that will be sent if the IRQ is claimed. */
-
 
103
    unative_t scratch[IPC_CALL_LEN];
99
    /** Top-half pseudocode. */
104
    /** Top-half pseudocode. */
100
    irq_code_t *code;
105
    irq_code_t *code;
101
    /** Counter. */
106
    /** Counter. */
102
    count_t counter;
107
    count_t counter;
103
    /**
108
    /**
Line 137... Line 142...
137
    /** Actual IRQ number. -1 if not yet assigned. */
142
    /** Actual IRQ number. -1 if not yet assigned. */
138
    inr_t inr;
143
    inr_t inr;
139
    /** Trigger level of the IRQ. */
144
    /** Trigger level of the IRQ. */
140
    irq_trigger_t trigger;
145
    irq_trigger_t trigger;
141
    /** Claim ownership of the IRQ. */
146
    /** Claim ownership of the IRQ. */
142
    irq_ownership_t (* claim)(void *);
147
    irq_ownership_t (* claim)(struct irq *);
143
    /** Handler for this IRQ and device. */
148
    /** Handler for this IRQ and device. */
144
    irq_handler_t handler;
149
    irq_handler_t handler;
145
    /** Instance argument for the handler and the claim function. */
150
    /** Instance argument for the handler and the claim function. */
146
    void *instance;
151
    void *instance;
147
 
152
 
Line 152... Line 157...
152
 
157
 
153
    /** Notification configuration structure. */
158
    /** Notification configuration structure. */
154
    ipc_notif_cfg_t notif_cfg;
159
    ipc_notif_cfg_t notif_cfg;
155
} irq_t;
160
} irq_t;
156
 
161
 
-
 
162
SPINLOCK_EXTERN(irq_uspace_hash_table_lock);
-
 
163
extern hash_table_t irq_uspace_hash_table;
-
 
164
 
157
extern void irq_init(count_t, count_t);
165
extern void irq_init(count_t, count_t);
158
extern void irq_initialize(irq_t *);
166
extern void irq_initialize(irq_t *);
159
extern void irq_register(irq_t *);
167
extern void irq_register(irq_t *);
160
extern irq_t *irq_dispatch_and_lock(inr_t);
168
extern irq_t *irq_dispatch_and_lock(inr_t);
161
extern irq_t *irq_find_and_lock(inr_t, devno_t);
-
 
162
 
169
 
163
#endif
170
#endif
164
 
171
 
165
#endif
172
#endif
166
 
173