iosapic_private.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. ** This file is private to iosapic driver.
  3. ** If stuff needs to be used by another driver, move it to a common file.
  4. **
  5. ** WARNING: fields most data structures here are ordered to make sure
  6. **          they pack nicely for 64-bit compilation. (ie sizeof(long) == 8)
  7. */
  8. /*
  9. ** Interrupt Routing Stuff
  10. ** -----------------------
  11. ** The interrupt routing table consists of entries derived from
  12. ** MP Specification Draft 1.5. There is one interrupt routing 
  13. ** table per cell.  N- and L-class consist of a single cell.
  14. */
  15. struct irt_entry {
  16. /* Entry Type 139 identifies an I/O SAPIC interrupt entry */
  17. u8 entry_type;
  18. /* Entry Length 16 indicates entry is 16 bytes long */
  19. u8 entry_length;
  20. /* 
  21. ** Interrupt Type of 0 indicates a vectored interrupt, 
  22. ** all other values are reserved 
  23. */
  24. u8 interrupt_type;
  25. /* 
  26. ** PO and EL
  27. ** Polarity of SAPIC I/O input signals: 
  28. **    00 = Reserved 
  29. **    01 = Active high 
  30. **    10 = Reserved 
  31. **    11 = Active low 
  32. ** Trigger mode of SAPIC I/O input signals: 
  33. **    00 = Reserved 
  34. **    01 = Edge-triggered 
  35. **    10 = Reserved 
  36. **    11 = Level-triggered
  37. */
  38. u8 polarity_trigger;
  39. /* 
  40. ** IRQ and DEVNO
  41. ** irq identifies PCI interrupt signal where
  42. **    0x0 corresponds to INT_A#, 
  43. **    0x1 corresponds to INT_B#, 
  44. **    0x2 corresponds to INT_C# 
  45. **    0x3 corresponds to INT_D# 
  46. ** PCI device number where interrupt originates 
  47. */
  48. u8 src_bus_irq_devno;
  49. /* Source Bus ID identifies the bus where interrupt signal comes from */
  50. u8 src_bus_id;
  51. /* 
  52. ** Segment ID is unique across a protection domain and
  53. ** identifies a segment of PCI buses (reserved in 
  54. ** MP Specification Draft 1.5) 
  55. */
  56. u8 src_seg_id;
  57. /* 
  58. ** Destination I/O SAPIC INTIN# identifies the INTIN n pin 
  59. ** to which the signal is connected 
  60. */
  61. u8 dest_iosapic_intin;
  62. /* 
  63. ** Destination I/O SAPIC Address identifies the I/O SAPIC 
  64. ** to which the signal is connected 
  65. */
  66. u64 dest_iosapic_addr;
  67. };
  68. #define IRT_IOSAPIC_TYPE   139
  69. #define IRT_IOSAPIC_LENGTH 16
  70. #define IRT_VECTORED_INTR  0
  71. #define IRT_PO_MASK        0x3
  72. #define IRT_ACTIVE_HI      1
  73. #define IRT_ACTIVE_LO      3
  74. #define IRT_EL_MASK        0x3
  75. #define IRT_EL_SHIFT       2
  76. #define IRT_EDGE_TRIG      1
  77. #define IRT_LEVEL_TRIG     3
  78. #define IRT_IRQ_MASK       0x3
  79. #define IRT_DEV_MASK       0x1f
  80. #define IRT_DEV_SHIFT      2
  81. #define IRT_IRQ_DEVNO_MASK ((IRT_DEV_MASK << IRT_DEV_SHIFT) | IRT_IRQ_MASK)
  82. #ifdef SUPPORT_MULTI_CELL
  83. struct iosapic_irt {
  84.         struct iosapic_irt *irt_next;  /* next routing table */
  85.         struct irt_entry *irt_base;             /* intr routing table address */
  86.         size_t  irte_count;            /* number of entries in the table */
  87.         size_t  irte_size;             /* size (bytes) of each entry */
  88. };
  89. #endif
  90. struct vector_info {
  91. struct iosapic_info *vi_ios;    /* I/O SAPIC this vector is on */
  92. struct irt_entry *vi_irte;      /* IRT entry */
  93. u32 *vi_eoi_addr; /* precalculate EOI reg address */
  94. u32 vi_eoi_data; /* IA64: ?       PA: swapped txn_data */
  95. u8 vi_status; /* status/flags */
  96. u8 vi_irqline; /* INTINn(IRQ) */
  97. int vi_txn_irq; /* virtual IRQ number for processor */
  98. ulong vi_txn_addr;    /* IA64: id_eid  PA: partial HPA */
  99. ulong vi_txn_data;    /* IA64: vector  PA: EIR bit */
  100. };
  101. struct iosapic_info {
  102. struct iosapic_info  *isi_next;      /* list of I/O SAPIC          */
  103. volatile void        *isi_hpa;       /* physical base address      */
  104. struct irq_region    *isi_region;    /* each I/O SAPIC is one region */
  105. struct vector_info   *isi_vector;    /* IRdT (IRQ line) array  */
  106. int                  isi_num_vectors; /* size of IRdT array */
  107. int                  isi_status;     /* status/flags               */
  108. unsigned int         isi_version;    /* DEBUG: data fr version reg */
  109. };
  110. #ifdef __IA64__
  111. /*
  112. ** PA risc does NOT have any local sapics. IA64 does.
  113. ** PIB (Processor Interrupt Block) is handled by Astro or Dew (Stretch CEC).
  114. **
  115. ** PA: Get id_eid from IRT and hardcode PIB to 0xfeeNNNN0
  116. **     Emulate the data on PAT platforms.
  117. */
  118. struct local_sapic_info {
  119. struct local_sapic_info *lsi_next;      /* point to next CPU info */
  120. int                     *lsi_cpu_id;    /* point to logical CPU id */
  121. unsigned long           *lsi_id_eid;    /* point to IA-64 CPU id */
  122. int                     *lsi_status;    /* point to CPU status   */
  123. void                    *lsi_private;   /* point to special info */
  124. };
  125. /*
  126. ** "root" data structure which ties everything together.
  127. ** Should always be able to start with sapic_root and locate
  128. ** the desired information.
  129. */
  130. struct sapic_info {
  131. struct sapic_info *si_next; /* info is per cell */
  132. int                     si_cellid;      /* cell id */
  133. unsigned int            si_status;       /* status  */
  134. char                    *si_pib_base;   /* intr blk base address */
  135. local_sapic_info_t      *si_local_info;
  136. io_sapic_info_t         *si_io_info;
  137. extint_info_t           *si_extint_info;/* External Intr info      */
  138. };
  139. #endif