Subversion Repositories HelenOS

Rev

Rev 3665 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * Copyright (c) 2006 Jakub Jermar
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  *
  9.  * - Redistributions of source code must retain the above copyright
  10.  *   notice, this list of conditions and the following disclaimer.
  11.  * - Redistributions in binary form must reproduce the above copyright
  12.  *   notice, this list of conditions and the following disclaimer in the
  13.  *   documentation and/or other materials provided with the distribution.
  14.  * - The name of the author may not be used to endorse or promote products
  15.  *   derived from this software without specific prior written permission.
  16.  *
  17.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  18.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  19.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  20.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  21.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  23.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  24.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  */
  28.  
  29. /** @addtogroup genericddi
  30.  * @{
  31.  */
  32. /** @file
  33.  */
  34.  
  35. #ifndef KERN_IRQ_H_
  36. #define KERN_IRQ_H_
  37.  
  38. typedef enum {
  39.     CMD_MEM_READ_1 = 0,
  40.     CMD_MEM_READ_2,
  41.     CMD_MEM_READ_4,
  42.     CMD_MEM_READ_8,
  43.     CMD_MEM_WRITE_1,
  44.     CMD_MEM_WRITE_2,
  45.     CMD_MEM_WRITE_4,
  46.     CMD_MEM_WRITE_8,
  47.     CMD_PORT_READ_1,
  48.     CMD_PORT_WRITE_1,
  49.     CMD_IA64_GETCHAR,
  50.     CMD_PPC32_GETCHAR,
  51.     CMD_NIAGARA_GETCHAR,
  52.     CMD_LAST
  53. } irq_cmd_type;
  54.  
  55. typedef struct {
  56.     irq_cmd_type cmd;
  57.     void *addr;
  58.     unsigned long long value;
  59.     int dstarg;
  60. } irq_cmd_t;
  61.  
  62. typedef struct {
  63.     unsigned int cmdcount;
  64.     irq_cmd_t *cmds;
  65. } irq_code_t;
  66.  
  67. #ifdef KERNEL
  68.  
  69. #include <arch/types.h>
  70. #include <adt/list.h>
  71. #include <synch/spinlock.h>
  72. #include <proc/task.h>
  73.  
  74. typedef enum {
  75.     IRQ_DECLINE,        /**< Decline to service. */
  76.     IRQ_ACCEPT      /**< Accept to service. */
  77. } irq_ownership_t;
  78.  
  79. typedef enum {
  80.     IRQ_TRIGGER_LEVEL = 1,
  81.     IRQ_TRIGGER_EDGE
  82. } irq_trigger_t;
  83.  
  84. struct irq;
  85. typedef void (* irq_handler_t)(struct irq *irq, void *arg, ...);
  86.  
  87. /** Type for function used to clear the interrupt. */
  88. typedef void (* cir_t)(void *arg, inr_t inr);
  89.  
  90. /** IPC notification config structure.
  91.  *
  92.  * Primarily, this structure is encapsulated in the irq_t structure.
  93.  * It is protected by irq_t::lock.
  94.  */
  95. typedef struct {
  96.     /** When false, notifications are not sent. */
  97.     bool notify;
  98.     /** Answerbox for notifications. */
  99.     answerbox_t *answerbox;
  100.     /** Method to be used for the notification. */
  101.     unative_t method;
  102.     /** Top-half pseudocode. */
  103.     irq_code_t *code;
  104.     /** Counter. */
  105.     count_t counter;
  106.     /**
  107.      * Link between IRQs that are notifying the same answerbox. The list is
  108.      * protected by the answerbox irq_lock.
  109.      */
  110.     link_t link;
  111. } ipc_notif_cfg_t;
  112.  
  113. /** Structure representing one device IRQ.
  114.  *
  115.  * If one device has multiple interrupts, there will be multiple irq_t
  116.  * instantions with the same devno.
  117.  */
  118. typedef struct irq {
  119.     /** Hash table link. */
  120.     link_t link;
  121.  
  122.     /** Lock protecting everything in this structure
  123.      *  except the link member. When both the IRQ
  124.      *  hash table lock and this lock are to be acquired,
  125.      *  this lock must not be taken first.
  126.      */
  127.     SPINLOCK_DECLARE(lock);
  128.    
  129.     /** Send EOI before processing the interrupt.
  130.      *  This is essential for timer interrupt which
  131.      *  has to be acknowledged before doing preemption
  132.      *  to make sure another timer interrupt will
  133.      *  be eventually generated.
  134.      */
  135.     bool preack;
  136.  
  137.     /** Unique device number. -1 if not yet assigned. */
  138.     devno_t devno;
  139.  
  140.     /** Actual IRQ number. -1 if not yet assigned. */
  141.     inr_t inr;
  142.     /** Trigger level of the IRQ. */
  143.     irq_trigger_t trigger;
  144.     /** Claim ownership of the IRQ. */
  145.     irq_ownership_t (* claim)(void);
  146.     /** Handler for this IRQ and device. */
  147.     irq_handler_t handler;
  148.     /** Argument for the handler. */
  149.     void *arg;
  150.  
  151.     /** Clear interrupt routine. */
  152.     cir_t cir;
  153.     /** First argument to the clear interrupt routine. */
  154.     void *cir_arg;
  155.  
  156.     /** Notification configuration structure. */
  157.     ipc_notif_cfg_t notif_cfg;
  158. } irq_t;
  159.  
  160. extern void irq_init(count_t inrs, count_t chains);
  161. extern void irq_initialize(irq_t *irq);
  162. extern void irq_register(irq_t *irq);
  163. extern irq_t *irq_dispatch_and_lock(inr_t inr);
  164. extern irq_t *irq_find_and_lock(inr_t inr, devno_t devno);
  165.  
  166. #endif
  167.  
  168. #endif
  169.  
  170. /** @}
  171.  */
  172.