2005-04-21 16:53:53 +02:00
|
|
|
/* The system call implemented in this file:
|
|
|
|
* m_type: SYS_IRQCTL
|
|
|
|
*
|
|
|
|
* The parameters for this system call are:
|
|
|
|
* m5_c1: IRQ_REQUEST (control operation to perform)
|
|
|
|
* m5_c2: IRQ_VECTOR (irq line that must be controlled)
|
2005-05-02 16:30:04 +02:00
|
|
|
* m5_i1: IRQ_POLICY (irq policy allows reenabling interrupts)
|
|
|
|
* m5_l3: IRQ_HOOK_ID (index of irq hook assigned at kernel)
|
2005-04-21 16:53:53 +02:00
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* Jorrit N. Herder <jnherder@cs.vu.nl>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../kernel.h"
|
|
|
|
#include "../system.h"
|
|
|
|
|
|
|
|
/*===========================================================================*
|
2005-05-02 16:30:04 +02:00
|
|
|
* do_irqctl *
|
2005-04-21 16:53:53 +02:00
|
|
|
*===========================================================================*/
|
|
|
|
PUBLIC int do_irqctl(m_ptr)
|
|
|
|
register message *m_ptr; /* pointer to request message */
|
|
|
|
{
|
|
|
|
/* Dismember the request message. */
|
2005-05-02 16:30:04 +02:00
|
|
|
int irq_vec;
|
|
|
|
int irq_hook_id;
|
|
|
|
int proc_nr;
|
|
|
|
irq_hook_t *hook_ptr;
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
/* See what is requested and take needed actions. */
|
|
|
|
switch(m_ptr->IRQ_REQUEST) {
|
|
|
|
|
|
|
|
/* Enable or disable IRQs. This is straightforward. */
|
2005-05-10 13:06:24 +02:00
|
|
|
case IRQ_ENABLE:
|
|
|
|
case IRQ_DISABLE:
|
2005-05-02 16:30:04 +02:00
|
|
|
irq_hook_id = (unsigned) m_ptr->IRQ_HOOK_ID;
|
|
|
|
if (irq_hook_id >= NR_IRQ_HOOKS) return(EINVAL);
|
2005-05-10 13:06:24 +02:00
|
|
|
if (irq_hooks[irq_hook_id].proc_nr != m_ptr->m_source) return(EPERM);
|
|
|
|
if (m_ptr->IRQ_REQUEST == IRQ_ENABLE)
|
|
|
|
enable_irq(&irq_hooks[irq_hook_id]);
|
|
|
|
else
|
|
|
|
disable_irq(&irq_hooks[irq_hook_id]);
|
2005-04-21 16:53:53 +02:00
|
|
|
break;
|
2005-05-10 13:06:24 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
/* Control IRQ policies. Set a policy and needed details in the IRQ table.
|
|
|
|
* This policy is used by a generic function to handle hardware interrupts.
|
|
|
|
*/
|
2005-05-10 13:06:24 +02:00
|
|
|
case IRQ_SETPOLICY:
|
2005-04-21 16:53:53 +02:00
|
|
|
|
2005-05-02 16:30:04 +02:00
|
|
|
/* Check if IRQ line is acceptable. */
|
|
|
|
irq_vec = (unsigned) m_ptr->IRQ_VECTOR;
|
|
|
|
if ((unsigned) irq_vec >= NR_IRQ_VECTORS) {
|
|
|
|
kprintf("ST: irq line %d is not acceptable!\n", irq_vec);
|
|
|
|
return(EINVAL);
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
2005-05-02 16:30:04 +02:00
|
|
|
|
|
|
|
/* Find a free IRQ hook for this mapping. */
|
|
|
|
hook_ptr = NULL;
|
|
|
|
for (irq_hook_id=0; irq_hook_id<NR_IRQ_HOOKS; irq_hook_id++) {
|
|
|
|
if (irq_hooks[irq_hook_id].proc_nr == NONE) {
|
|
|
|
hook_ptr = &irq_hooks[irq_hook_id]; /* free hook */
|
|
|
|
break;
|
|
|
|
}
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|
2005-05-02 16:30:04 +02:00
|
|
|
if (hook_ptr == NULL) return(ENOSPC);
|
|
|
|
|
|
|
|
/* Only caller can request IRQ mappings. Install handler. */
|
|
|
|
hook_ptr->proc_nr = m_ptr->m_source; /* process to notify */
|
|
|
|
hook_ptr->policy = m_ptr->IRQ_POLICY; /* policy for interrupts */
|
|
|
|
put_irq_handler(hook_ptr, irq_vec, generic_handler);
|
|
|
|
|
|
|
|
/* Return index of the IRQ hook in use. */
|
|
|
|
m_ptr->IRQ_HOOK_ID = irq_hook_id;
|
2005-04-21 16:53:53 +02:00
|
|
|
break;
|
2005-05-10 13:06:24 +02:00
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
default:
|
|
|
|
return(EINVAL); /* invalid IRQ_REQUEST */
|
|
|
|
}
|
|
|
|
return(OK);
|
|
|
|
}
|
|
|
|
|