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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*******************************************************************************
  2.  *
  3.  * Module Name: rsirq - IRQ resource descriptors
  4.  *              $Revision: 18 $
  5.  *
  6.  ******************************************************************************/
  7. /*
  8.  *  Copyright (C) 2000, 2001 R. Byron Moore
  9.  *
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  23.  */
  24. #include "acpi.h"
  25. #include "acresrc.h"
  26. #define _COMPONENT          ACPI_RESOURCES
  27.  MODULE_NAME         ("rsirq")
  28. /*******************************************************************************
  29.  *
  30.  * FUNCTION:    Acpi_rs_irq_resource
  31.  *
  32.  * PARAMETERS:  Byte_stream_buffer      - Pointer to the resource input byte
  33.  *                                        stream
  34.  *              Bytes_consumed          - u32 pointer that is filled with
  35.  *                                        the number of bytes consumed from
  36.  *                                        the Byte_stream_buffer
  37.  *              Output_buffer           - Pointer to the user's return buffer
  38.  *              Structure_size          - u32 pointer that is filled with
  39.  *                                        the number of bytes in the filled
  40.  *                                        in structure
  41.  *
  42.  * RETURN:      Status
  43.  *
  44.  * DESCRIPTION: Take the resource byte stream and fill out the appropriate
  45.  *              structure pointed to by the Output_buffer. Return the
  46.  *              number of bytes consumed from the byte stream.
  47.  *
  48.  ******************************************************************************/
  49. acpi_status
  50. acpi_rs_irq_resource (
  51. u8                      *byte_stream_buffer,
  52. u32                     *bytes_consumed,
  53. u8                      **output_buffer,
  54. u32                     *structure_size)
  55. {
  56. u8                      *buffer = byte_stream_buffer;
  57. acpi_resource           *output_struct = (acpi_resource *) *output_buffer;
  58. u16                     temp16 = 0;
  59. u8                      temp8 = 0;
  60. u8                      index;
  61. u8                      i;
  62. u32                     struct_size = SIZEOF_RESOURCE (acpi_resource_irq);
  63. FUNCTION_TRACE ("Rs_irq_resource");
  64. /*
  65.  * The number of bytes consumed are contained in the descriptor
  66.  *  (Bits:0-1)
  67.  */
  68. temp8 = *buffer;
  69. *bytes_consumed = (temp8 & 0x03) + 1;
  70. output_struct->id = ACPI_RSTYPE_IRQ;
  71. /*
  72.  * Point to the 16-bits of Bytes 1 and 2
  73.  */
  74. buffer += 1;
  75. MOVE_UNALIGNED16_TO_16 (&temp16, buffer);
  76. output_struct->data.irq.number_of_interrupts = 0;
  77. /* Decode the IRQ bits */
  78. for (i = 0, index = 0; index < 16; index++) {
  79. if((temp16 >> index) & 0x01) {
  80. output_struct->data.irq.interrupts[i] = index;
  81. i++;
  82. }
  83. }
  84. output_struct->data.irq.number_of_interrupts = i;
  85. /*
  86.  * Calculate the structure size based upon the number of interrupts
  87.  */
  88. struct_size += (output_struct->data.irq.number_of_interrupts - 1) * 4;
  89. /*
  90.  * Point to Byte 3 if it is used
  91.  */
  92. if (4 == *bytes_consumed) {
  93. buffer += 2;
  94. temp8 = *buffer;
  95. /*
  96.  * Check for HE, LL or HL
  97.  */
  98. if (temp8 & 0x01) {
  99. output_struct->data.irq.edge_level = EDGE_SENSITIVE;
  100. output_struct->data.irq.active_high_low = ACTIVE_HIGH;
  101. }
  102. else {
  103. if (temp8 & 0x8) {
  104. output_struct->data.irq.edge_level = LEVEL_SENSITIVE;
  105. output_struct->data.irq.active_high_low = ACTIVE_LOW;
  106. }
  107. else {
  108. /*
  109.  * Only _LL and _HE polarity/trigger interrupts
  110.  * are allowed (ACPI spec v1.0b ection 6.4.2.1),
  111.  * so an error will occur if we reach this point
  112.  */
  113. return_ACPI_STATUS (AE_BAD_DATA);
  114. }
  115. }
  116. /*
  117.  * Check for sharable
  118.  */
  119. output_struct->data.irq.shared_exclusive = (temp8 >> 3) & 0x01;
  120. }
  121. else {
  122. /*
  123.  * Assume Edge Sensitive, Active High, Non-Sharable
  124.  * per ACPI Specification
  125.  */
  126. output_struct->data.irq.edge_level = EDGE_SENSITIVE;
  127. output_struct->data.irq.active_high_low = ACTIVE_HIGH;
  128. output_struct->data.irq.shared_exclusive = EXCLUSIVE;
  129. }
  130. /*
  131.  * Set the Length parameter
  132.  */
  133. output_struct->length = struct_size;
  134. /*
  135.  * Return the final size of the structure
  136.  */
  137. *structure_size = struct_size;
  138. return_ACPI_STATUS (AE_OK);
  139. }
  140. /*******************************************************************************
  141.  *
  142.  * FUNCTION:    Acpi_rs_irq_stream
  143.  *
  144.  * PARAMETERS:  Linked_list             - Pointer to the resource linked list
  145.  *              Output_buffer           - Pointer to the user's return buffer
  146.  *              Bytes_consumed          - u32 pointer that is filled with
  147.  *                                        the number of bytes of the
  148.  *                                        Output_buffer used
  149.  *
  150.  * RETURN:      Status
  151.  *
  152.  * DESCRIPTION: Take the linked list resource structure and fills in the
  153.  *              the appropriate bytes in a byte stream
  154.  *
  155.  ******************************************************************************/
  156. acpi_status
  157. acpi_rs_irq_stream (
  158. acpi_resource           *linked_list,
  159. u8                      **output_buffer,
  160. u32                     *bytes_consumed)
  161. {
  162. u8                      *buffer = *output_buffer;
  163. u16                     temp16 = 0;
  164. u8                      temp8 = 0;
  165. u8                      index;
  166. u8                      IRQinfo_byte_needed;
  167. FUNCTION_TRACE ("Rs_irq_stream");
  168. /*
  169.  * The descriptor field is set based upon whether a third byte is
  170.  * needed to contain the IRQ Information.
  171.  */
  172. if (EDGE_SENSITIVE == linked_list->data.irq.edge_level &&
  173. ACTIVE_HIGH == linked_list->data.irq.active_high_low &&
  174. EXCLUSIVE == linked_list->data.irq.shared_exclusive) {
  175. *buffer = 0x22;
  176. IRQinfo_byte_needed = FALSE;
  177. }
  178. else {
  179. *buffer = 0x23;
  180. IRQinfo_byte_needed = TRUE;
  181. }
  182. buffer += 1;
  183. temp16 = 0;
  184. /*
  185.  * Loop through all of the interrupts and set the mask bits
  186.  */
  187. for(index = 0;
  188. index < linked_list->data.irq.number_of_interrupts;
  189. index++) {
  190. temp8 = (u8) linked_list->data.irq.interrupts[index];
  191. temp16 |= 0x1 << temp8;
  192. }
  193. MOVE_UNALIGNED16_TO_16 (buffer, &temp16);
  194. buffer += 2;
  195. /*
  196.  * Set the IRQ Info byte if needed.
  197.  */
  198. if (IRQinfo_byte_needed) {
  199. temp8 = 0;
  200. temp8 = (u8) ((linked_list->data.irq.shared_exclusive &
  201.  0x01) << 4);
  202. if (LEVEL_SENSITIVE == linked_list->data.irq.edge_level &&
  203. ACTIVE_LOW == linked_list->data.irq.active_high_low) {
  204. temp8 |= 0x08;
  205. }
  206. else {
  207. temp8 |= 0x01;
  208. }
  209. *buffer = temp8;
  210. buffer += 1;
  211. }
  212. /*
  213.  * Return the number of bytes consumed in this operation
  214.  */
  215. *bytes_consumed = POINTER_DIFF (buffer, *output_buffer);
  216. return_ACPI_STATUS (AE_OK);
  217. }
  218. /*******************************************************************************
  219.  *
  220.  * FUNCTION:    Acpi_rs_extended_irq_resource
  221.  *
  222.  * PARAMETERS:  Byte_stream_buffer      - Pointer to the resource input byte
  223.  *                                        stream
  224.  *              Bytes_consumed          - u32 pointer that is filled with
  225.  *                                        the number of bytes consumed from
  226.  *                                        the Byte_stream_buffer
  227.  *              Output_buffer           - Pointer to the user's return buffer
  228.  *              Structure_size          - u32 pointer that is filled with
  229.  *                                        the number of bytes in the filled
  230.  *                                        in structure
  231.  *
  232.  * RETURN:      Status
  233.  *
  234.  * DESCRIPTION: Take the resource byte stream and fill out the appropriate
  235.  *              structure pointed to by the Output_buffer. Return the
  236.  *              number of bytes consumed from the byte stream.
  237.  *
  238.  ******************************************************************************/
  239. acpi_status
  240. acpi_rs_extended_irq_resource (
  241. u8                      *byte_stream_buffer,
  242. u32                     *bytes_consumed,
  243. u8                      **output_buffer,
  244. u32                     *structure_size)
  245. {
  246. u8                      *buffer = byte_stream_buffer;
  247. acpi_resource           *output_struct = (acpi_resource *) *output_buffer;
  248. u16                     temp16 = 0;
  249. u8                      temp8 = 0;
  250. NATIVE_CHAR             *temp_ptr;
  251. u8                      index;
  252. u32                     struct_size = SIZEOF_RESOURCE (acpi_resource_ext_irq);
  253. FUNCTION_TRACE ("Rs_extended_irq_resource");
  254. /*
  255.  * Point past the Descriptor to get the number of bytes consumed
  256.  */
  257. buffer += 1;
  258. MOVE_UNALIGNED16_TO_16 (&temp16, buffer);
  259. *bytes_consumed = temp16 + 3;
  260. output_struct->id = ACPI_RSTYPE_EXT_IRQ;
  261. /*
  262.  * Point to the Byte3
  263.  */
  264. buffer += 2;
  265. temp8 = *buffer;
  266. output_struct->data.extended_irq.producer_consumer = temp8 & 0x01;
  267. /*
  268.  * Check for HE, LL or HL
  269.  */
  270. if(temp8 & 0x02) {
  271. output_struct->data.extended_irq.edge_level = EDGE_SENSITIVE;
  272. output_struct->data.extended_irq.active_high_low = ACTIVE_HIGH;
  273. }
  274. else {
  275. if(temp8 & 0x4) {
  276. output_struct->data.extended_irq.edge_level = LEVEL_SENSITIVE;
  277. output_struct->data.extended_irq.active_high_low = ACTIVE_LOW;
  278. }
  279. else {
  280. /*
  281.  * Only _LL and _HE polarity/trigger interrupts
  282.  * are allowed (ACPI spec v1.0b ection 6.4.2.1),
  283.  * so an error will occur if we reach this point
  284.  */
  285. return_ACPI_STATUS (AE_BAD_DATA);
  286. }
  287. }
  288. /*
  289.  * Check for sharable
  290.  */
  291. output_struct->data.extended_irq.shared_exclusive = (temp8 >> 3) & 0x01;
  292. /*
  293.  * Point to Byte4 (IRQ Table length)
  294.  */
  295. buffer += 1;
  296. temp8 = *buffer;
  297. output_struct->data.extended_irq.number_of_interrupts = temp8;
  298. /*
  299.  * Add any additional structure size to properly calculate
  300.  * the next pointer at the end of this function
  301.  */
  302. struct_size += (temp8 - 1) * 4;
  303. /*
  304.  * Point to Byte5 (First IRQ Number)
  305.  */
  306. buffer += 1;
  307. /*
  308.  * Cycle through every IRQ in the table
  309.  */
  310. for (index = 0; index < temp8; index++) {
  311. output_struct->data.extended_irq.interrupts[index] =
  312. (u32)*buffer;
  313. /* Point to the next IRQ */
  314. buffer += 4;
  315. }
  316. /*
  317.  * This will leave us pointing to the Resource Source Index
  318.  * If it is present, then save it off and calculate the
  319.  * pointer to where the null terminated string goes:
  320.  * Each Interrupt takes 32-bits + the 5 bytes of the
  321.  * stream that are default.
  322.  */
  323. if (*bytes_consumed >
  324. (u32)(output_struct->data.extended_irq.number_of_interrupts * 4) + 5) {
  325. /* Dereference the Index */
  326. temp8 = *buffer;
  327. output_struct->data.extended_irq.resource_source.index = (u32) temp8;
  328. /* Point to the String */
  329. buffer += 1;
  330. /*
  331.  * Point the String pointer to the end of this structure.
  332.  */
  333. output_struct->data.extended_irq.resource_source.string_ptr =
  334. (NATIVE_CHAR *)(output_struct + struct_size);
  335. temp_ptr = output_struct->data.extended_irq.resource_source.string_ptr;
  336. /* Copy the string into the buffer */
  337. index = 0;
  338. while (0x00 != *buffer) {
  339. *temp_ptr = *buffer;
  340. temp_ptr += 1;
  341. buffer += 1;
  342. index += 1;
  343. }
  344. /*
  345.  * Add the terminating null
  346.  */
  347. *temp_ptr = 0x00;
  348. output_struct->data.extended_irq.resource_source.string_length = index + 1;
  349. /*
  350.  * In order for the Struct_size to fall on a 32-bit boundary,
  351.  * calculate the length of the string and expand the
  352.  * Struct_size to the next 32-bit boundary.
  353.  */
  354. temp8 = (u8) (index + 1);
  355. struct_size += ROUND_UP_TO_32_bITS (temp8);
  356. }
  357. else {
  358. output_struct->data.extended_irq.resource_source.index = 0x00;
  359. output_struct->data.extended_irq.resource_source.string_length = 0;
  360. output_struct->data.extended_irq.resource_source.string_ptr = NULL;
  361. }
  362. /*
  363.  * Set the Length parameter
  364.  */
  365. output_struct->length = struct_size;
  366. /*
  367.  * Return the final size of the structure
  368.  */
  369. *structure_size = struct_size;
  370. return_ACPI_STATUS (AE_OK);
  371. }
  372. /*******************************************************************************
  373.  *
  374.  * FUNCTION:    Acpi_rs_extended_irq_stream
  375.  *
  376.  * PARAMETERS:  Linked_list             - Pointer to the resource linked list
  377.  *              Output_buffer           - Pointer to the user's return buffer
  378.  *              Bytes_consumed          - u32 pointer that is filled with
  379.  *                                        the number of bytes of the
  380.  *                                        Output_buffer used
  381.  *
  382.  * RETURN:      Status
  383.  *
  384.  * DESCRIPTION: Take the linked list resource structure and fills in the
  385.  *              the appropriate bytes in a byte stream
  386.  *
  387.  ******************************************************************************/
  388. acpi_status
  389. acpi_rs_extended_irq_stream (
  390. acpi_resource           *linked_list,
  391. u8                      **output_buffer,
  392. u32                     *bytes_consumed)
  393. {
  394. u8                      *buffer = *output_buffer;
  395. u16                     *length_field;
  396. u8                      temp8 = 0;
  397. u8                      index;
  398. NATIVE_CHAR             *temp_pointer = NULL;
  399. FUNCTION_TRACE ("Rs_extended_irq_stream");
  400. /*
  401.  * The descriptor field is static
  402.  */
  403. *buffer = 0x89;
  404. buffer += 1;
  405. /*
  406.  * Set a pointer to the Length field - to be filled in later
  407.  */
  408. length_field = (u16 *)buffer;
  409. buffer += 2;
  410. /*
  411.  * Set the Interrupt vector flags
  412.  */
  413. temp8 = (u8)(linked_list->data.extended_irq.producer_consumer & 0x01);
  414. temp8 |= ((linked_list->data.extended_irq.shared_exclusive & 0x01) << 3);
  415. if (LEVEL_SENSITIVE == linked_list->data.extended_irq.edge_level &&
  416.    ACTIVE_LOW == linked_list->data.extended_irq.active_high_low) {
  417. temp8 |= 0x04;
  418. }
  419. else {
  420. temp8 |= 0x02;
  421. }
  422. *buffer = temp8;
  423. buffer += 1;
  424. /*
  425.  * Set the Interrupt table length
  426.  */
  427. temp8 = (u8) linked_list->data.extended_irq.number_of_interrupts;
  428. *buffer = temp8;
  429. buffer += 1;
  430. for (index = 0; index < linked_list->data.extended_irq.number_of_interrupts;
  431.  index++) {
  432. MOVE_UNALIGNED32_TO_32 (buffer,
  433.   &linked_list->data.extended_irq.interrupts[index]);
  434. buffer += 4;
  435. }
  436. /*
  437.  * Resource Source Index and Resource Source are optional
  438.  */
  439. if (0 != linked_list->data.extended_irq.resource_source.string_length) {
  440. *buffer = (u8) linked_list->data.extended_irq.resource_source.index;
  441. buffer += 1;
  442. temp_pointer = (NATIVE_CHAR *) buffer;
  443. /*
  444.  * Copy the string
  445.  */
  446. STRCPY (temp_pointer,
  447. linked_list->data.extended_irq.resource_source.string_ptr);
  448. /*
  449.  * Buffer needs to be set to the length of the sting + one for the
  450.  * terminating null
  451.  */
  452. buffer += (STRLEN (linked_list->data.extended_irq.resource_source.string_ptr) + 1);
  453. }
  454. /*
  455.  * Return the number of bytes consumed in this operation
  456.  */
  457. *bytes_consumed = POINTER_DIFF (buffer, *output_buffer);
  458. /*
  459.  * Set the length field to the number of bytes consumed
  460.  * minus the header size (3 bytes)
  461.  */
  462. *length_field = (u16) (*bytes_consumed - 3);
  463. return_ACPI_STATUS (AE_OK);
  464. }