Rev 1787 | Rev 1939 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1787 | Rev 1937 | ||
|---|---|---|---|
| Line 193... | Line 193... | ||
| 193 | { |
193 | { |
| 194 | ipc_irq_send_notif(n-IVT_IRQBASE); |
194 | ipc_irq_send_notif(n-IVT_IRQBASE); |
| 195 | trap_virtual_eoi(); |
195 | trap_virtual_eoi(); |
| 196 | } |
196 | } |
| 197 | 197 | ||
| 198 | - | ||
| 199 | /* Reregister irq to be IPC-ready */ |
- | |
| 200 | void irq_ipc_bind_arch(unative_t irq) |
- | |
| 201 | { |
- | |
| 202 | if (irq == IRQ_CLK) |
- | |
| 203 | return; |
- | |
| 204 | exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int); |
- | |
| 205 | trap_virtual_enable_irqs(1 << irq); |
- | |
| 206 | } |
- | |
| 207 | - | ||
| 208 | /** @} |
198 | /** @} |
| 209 | */ |
199 | */ |
| 210 | - | ||