xref: /titanic_41/usr/src/uts/intel/io/acpica/tables/tbinstal.c (revision 936b7af69172dce89b577831f79c0e18d15e854b)
1 /******************************************************************************
2  *
3  * Module Name: tbinstal - ACPI table installation and removal
4  *              $Revision: 1.87 $
5  *
6  *****************************************************************************/
7 
8 /******************************************************************************
9  *
10  * 1. Copyright Notice
11  *
12  * Some or all of this work - Copyright (c) 1999 - 2006, Intel Corp.
13  * All rights reserved.
14  *
15  * 2. License
16  *
17  * 2.1. This is your license from Intel Corp. under its intellectual property
18  * rights.  You may have additional license terms from the party that provided
19  * you this software, covering your right to use that party's intellectual
20  * property rights.
21  *
22  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23  * copy of the source code appearing in this file ("Covered Code") an
24  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25  * base code distributed originally by Intel ("Original Intel Code") to copy,
26  * make derivatives, distribute, use and display any portion of the Covered
27  * Code in any form, with the right to sublicense such rights; and
28  *
29  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30  * license (with the right to sublicense), under only those claims of Intel
31  * patents that are infringed by the Original Intel Code, to make, use, sell,
32  * offer to sell, and import the Covered Code and derivative works thereof
33  * solely to the minimum extent necessary to exercise the above copyright
34  * license, and in no event shall the patent license extend to any additions
35  * to or modifications of the Original Intel Code.  No other license or right
36  * is granted directly or by implication, estoppel or otherwise;
37  *
38  * The above copyright and patent license is granted only if the following
39  * conditions are met:
40  *
41  * 3. Conditions
42  *
43  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44  * Redistribution of source code of any substantial portion of the Covered
45  * Code or modification with rights to further distribute source must include
46  * the above Copyright Notice, the above License, this list of Conditions,
47  * and the following Disclaimer and Export Compliance provision.  In addition,
48  * Licensee must cause all Covered Code to which Licensee contributes to
49  * contain a file documenting the changes Licensee made to create that Covered
50  * Code and the date of any change.  Licensee must include in that file the
51  * documentation of any changes made by any predecessor Licensee.  Licensee
52  * must include a prominent statement that the modification is derived,
53  * directly or indirectly, from Original Intel Code.
54  *
55  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56  * Redistribution of source code of any substantial portion of the Covered
57  * Code or modification without rights to further distribute source must
58  * include the following Disclaimer and Export Compliance provision in the
59  * documentation and/or other materials provided with distribution.  In
60  * addition, Licensee may not authorize further sublicense of source of any
61  * portion of the Covered Code, and must include terms to the effect that the
62  * license from Licensee to its licensee is limited to the intellectual
63  * property embodied in the software Licensee provides to its licensee, and
64  * not to intellectual property embodied in modifications its licensee may
65  * make.
66  *
67  * 3.3. Redistribution of Executable. Redistribution in executable form of any
68  * substantial portion of the Covered Code or modification must reproduce the
69  * above Copyright Notice, and the following Disclaimer and Export Compliance
70  * provision in the documentation and/or other materials provided with the
71  * distribution.
72  *
73  * 3.4. Intel retains all right, title, and interest in and to the Original
74  * Intel Code.
75  *
76  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77  * Intel shall be used in advertising or otherwise to promote the sale, use or
78  * other dealings in products derived from or relating to the Covered Code
79  * without prior written authorization from Intel.
80  *
81  * 4. Disclaimer and Export Compliance
82  *
83  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84  * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
86  * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
87  * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
88  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
89  * PARTICULAR PURPOSE.
90  *
91  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
97  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
98  * LIMITED REMEDY.
99  *
100  * 4.3. Licensee shall not export, either directly or indirectly, any of this
101  * software or system incorporating such software without first obtaining any
102  * required license or other approval from the U. S. Department of Commerce or
103  * any other agency or department of the United States Government.  In the
104  * event Licensee exports any such software from the United States or
105  * re-exports any such software from a foreign destination, Licensee shall
106  * ensure that the distribution and export/re-export of the software is in
107  * compliance with all laws, regulations, orders, or other restrictions of the
108  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109  * any of its subsidiaries will export/re-export any technical data, process,
110  * software, or service, directly or indirectly, to any country for which the
111  * United States government or any agency thereof requires an export license,
112  * other governmental approval, or letter of assurance, without first obtaining
113  * such license, approval or letter.
114  *
115  *****************************************************************************/
116 
117 
118 #define __TBINSTAL_C__
119 
120 #include "acpi.h"
121 #include "actables.h"
122 
123 
124 #define _COMPONENT          ACPI_TABLES
125         ACPI_MODULE_NAME    ("tbinstal")
126 
127 /* Local prototypes */
128 
129 static ACPI_STATUS
130 AcpiTbMatchSignature (
131     char                    *Signature,
132     ACPI_TABLE_DESC         *TableInfo,
133     UINT8                   SearchType);
134 
135 
136 /*******************************************************************************
137  *
138  * FUNCTION:    AcpiTbMatchSignature
139  *
140  * PARAMETERS:  Signature           - Table signature to match
141  *              TableInfo           - Return data
142  *              SearchType          - Table type to match (primary/secondary)
143  *
144  * RETURN:      Status
145  *
146  * DESCRIPTION: Compare signature against the list of "ACPI-subsystem-owned"
147  *              tables (DSDT/FADT/SSDT, etc.) Returns the TableTypeID on match.
148  *
149  ******************************************************************************/
150 
151 static ACPI_STATUS
152 AcpiTbMatchSignature (
153     char                    *Signature,
154     ACPI_TABLE_DESC         *TableInfo,
155     UINT8                   SearchType)
156 {
157     ACPI_NATIVE_UINT        i;
158 
159 
160     ACPI_FUNCTION_TRACE (TbMatchSignature);
161 
162 
163     /* Search for a signature match among the known table types */
164 
165     for (i = 0; i < (ACPI_TABLE_ID_MAX+1); i++)
166     {
167         if (!(AcpiGbl_TableData[i].Flags & SearchType))
168         {
169             continue;
170         }
171 
172         if (!ACPI_STRNCMP (Signature, AcpiGbl_TableData[i].Signature,
173                 AcpiGbl_TableData[i].SigLength))
174         {
175             /* Found a signature match, return index if requested */
176 
177             if (TableInfo)
178             {
179                 TableInfo->Type = (UINT8) i;
180             }
181 
182             ACPI_DEBUG_PRINT ((ACPI_DB_INFO,
183                 "Table [%4.4s] is an ACPI table consumed by the core subsystem\n",
184                 (char *) AcpiGbl_TableData[i].Signature));
185 
186             return_ACPI_STATUS (AE_OK);
187         }
188     }
189 
190     ACPI_DEBUG_PRINT ((ACPI_DB_INFO,
191         "Table [%4.4s] is not an ACPI table consumed by the core subsystem - ignored\n",
192         (char *) Signature));
193 
194     return_ACPI_STATUS (AE_TABLE_NOT_SUPPORTED);
195 }
196 
197 
198 /*******************************************************************************
199  *
200  * FUNCTION:    AcpiTbInstallTable
201  *
202  * PARAMETERS:  TableInfo           - Return value from AcpiTbGetTableBody
203  *
204  * RETURN:      Status
205  *
206  * DESCRIPTION: Install the table into the global data structures.
207  *
208  ******************************************************************************/
209 
210 ACPI_STATUS
211 AcpiTbInstallTable (
212     ACPI_TABLE_DESC         *TableInfo)
213 {
214     ACPI_STATUS             Status;
215 
216 
217     ACPI_FUNCTION_TRACE (TbInstallTable);
218 
219 
220     /* Lock tables while installing */
221 
222     Status = AcpiUtAcquireMutex (ACPI_MTX_TABLES);
223     if (ACPI_FAILURE (Status))
224     {
225         ACPI_EXCEPTION ((AE_INFO, Status, "Could not acquire table mutex"));
226         return_ACPI_STATUS (Status);
227     }
228 
229     /*
230      * Ignore a table that is already installed. For example, some BIOS
231      * ASL code will repeatedly attempt to load the same SSDT.
232      */
233     Status = AcpiTbIsTableInstalled (TableInfo);
234     if (ACPI_FAILURE (Status))
235     {
236         goto UnlockAndExit;
237     }
238 
239     /* Install the table into the global data structure */
240 
241     Status = AcpiTbInitTableDescriptor (TableInfo->Type, TableInfo);
242     if (ACPI_FAILURE (Status))
243     {
244         ACPI_EXCEPTION ((AE_INFO, Status, "Could not install table [%4.4s]",
245             TableInfo->Pointer->Signature));
246     }
247 
248     ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "%s located at %p\n",
249         AcpiGbl_TableData[TableInfo->Type].Name, TableInfo->Pointer));
250 
251 
252 UnlockAndExit:
253     (void) AcpiUtReleaseMutex (ACPI_MTX_TABLES);
254     return_ACPI_STATUS (Status);
255 }
256 
257 
258 /*******************************************************************************
259  *
260  * FUNCTION:    AcpiTbRecognizeTable
261  *
262  * PARAMETERS:  TableInfo           - Return value from AcpiTbGetTableBody
263  *              SearchType          - Table type to match (primary/secondary)
264  *
265  * RETURN:      Status
266  *
267  * DESCRIPTION: Check a table signature for a match against known table types
268  *
269  * NOTE:  All table pointers are validated as follows:
270  *          1) Table pointer must point to valid physical memory
271  *          2) Signature must be 4 ASCII chars, even if we don't recognize the
272  *             name
273  *          3) Table must be readable for length specified in the header
274  *          4) Table checksum must be valid (with the exception of the FACS
275  *             which has no checksum for some odd reason)
276  *
277  ******************************************************************************/
278 
279 ACPI_STATUS
280 AcpiTbRecognizeTable (
281     ACPI_TABLE_DESC         *TableInfo,
282     UINT8                   SearchType)
283 {
284     ACPI_TABLE_HEADER       *TableHeader;
285     ACPI_STATUS             Status;
286 
287 
288     ACPI_FUNCTION_TRACE (TbRecognizeTable);
289 
290 
291     /* Ensure that we have a valid table pointer */
292 
293     TableHeader = (ACPI_TABLE_HEADER *) TableInfo->Pointer;
294     if (!TableHeader)
295     {
296         return_ACPI_STATUS (AE_BAD_PARAMETER);
297     }
298 
299     /*
300      * We only "recognize" a limited number of ACPI tables -- namely, the
301      * ones that are used by the subsystem (DSDT, FADT, etc.)
302      *
303      * An AE_TABLE_NOT_SUPPORTED means that the table was not recognized.
304      * This can be any one of many valid ACPI tables, it just isn't one of
305      * the tables that is consumed by the core subsystem
306      */
307     Status = AcpiTbMatchSignature (TableHeader->Signature,
308                 TableInfo, SearchType);
309     if (ACPI_FAILURE (Status))
310     {
311         return_ACPI_STATUS (Status);
312     }
313 
314     Status = AcpiTbValidateTableHeader (TableHeader);
315     if (ACPI_FAILURE (Status))
316     {
317         return_ACPI_STATUS (Status);
318     }
319 
320     /* Return the table type and length via the info struct */
321 
322     TableInfo->Length = (ACPI_SIZE) TableHeader->Length;
323     return_ACPI_STATUS (Status);
324 }
325 
326 
327 /*******************************************************************************
328  *
329  * FUNCTION:    AcpiTbInitTableDescriptor
330  *
331  * PARAMETERS:  TableType           - The type of the table
332  *              TableInfo           - A table info struct
333  *
334  * RETURN:      None.
335  *
336  * DESCRIPTION: Install a table into the global data structs.
337  *
338  ******************************************************************************/
339 
340 ACPI_STATUS
341 AcpiTbInitTableDescriptor (
342     ACPI_TABLE_TYPE         TableType,
343     ACPI_TABLE_DESC         *TableInfo)
344 {
345     ACPI_TABLE_LIST         *ListHead;
346     ACPI_TABLE_DESC         *TableDesc;
347     ACPI_STATUS             Status;
348 
349 
350     ACPI_FUNCTION_TRACE_U32 (TbInitTableDescriptor, TableType);
351 
352 
353     /* Allocate a descriptor for this table */
354 
355     TableDesc = ACPI_ALLOCATE_ZEROED (sizeof (ACPI_TABLE_DESC));
356     if (!TableDesc)
357     {
358         return_ACPI_STATUS (AE_NO_MEMORY);
359     }
360 
361     /* Get a new owner ID for the table */
362 
363     Status = AcpiUtAllocateOwnerId (&TableDesc->OwnerId);
364     if (ACPI_FAILURE (Status))
365     {
366         goto ErrorExit1;
367     }
368 
369     /* Install the table into the global data structure */
370 
371     ListHead = &AcpiGbl_TableLists[TableType];
372 
373     /*
374      * Two major types of tables:  1) Only one instance is allowed.  This
375      * includes most ACPI tables such as the DSDT.  2) Multiple instances of
376      * the table are allowed.  This includes SSDT and PSDTs.
377      */
378     if (ACPI_IS_SINGLE_TABLE (AcpiGbl_TableData[TableType].Flags))
379     {
380         /*
381          * Only one table allowed, and a table has alread been installed
382          * at this location, so return an error.
383          */
384         if (ListHead->Next)
385         {
386             Status = AE_ALREADY_EXISTS;
387             goto ErrorExit2;
388         }
389 
390         TableDesc->Next = ListHead->Next;
391         ListHead->Next = TableDesc;
392 
393         if (TableDesc->Next)
394         {
395             TableDesc->Next->Prev = TableDesc;
396         }
397 
398         ListHead->Count++;
399     }
400     else
401     {
402         /*
403          * Link the new table in to the list of tables of this type.
404          * Insert at the end of the list, order IS IMPORTANT.
405          *
406          * TableDesc->Prev & Next are already NULL from calloc()
407          */
408         ListHead->Count++;
409 
410         if (!ListHead->Next)
411         {
412             ListHead->Next = TableDesc;
413         }
414         else
415         {
416             TableDesc->Next = ListHead->Next;
417 
418             while (TableDesc->Next->Next)
419             {
420                 TableDesc->Next = TableDesc->Next->Next;
421             }
422 
423             TableDesc->Next->Next = TableDesc;
424             TableDesc->Prev = TableDesc->Next;
425             TableDesc->Next = NULL;
426         }
427     }
428 
429     /* Finish initialization of the table descriptor */
430 
431     TableDesc->LoadedIntoNamespace = FALSE;
432     TableDesc->Type = (UINT8) TableType;
433     TableDesc->Pointer = TableInfo->Pointer;
434     TableDesc->Length = TableInfo->Length;
435     TableDesc->Allocation = TableInfo->Allocation;
436     TableDesc->AmlStart = (UINT8 *) (TableDesc->Pointer + 1),
437     TableDesc->AmlLength = (UINT32)
438         (TableDesc->Length - (UINT32) sizeof (ACPI_TABLE_HEADER));
439 
440     /*
441      * Set the appropriate global pointer (if there is one) to point to the
442      * newly installed table
443      */
444     if (AcpiGbl_TableData[TableType].GlobalPtr)
445     {
446         *(AcpiGbl_TableData[TableType].GlobalPtr) = TableInfo->Pointer;
447     }
448 
449     /* Return Data */
450 
451     TableInfo->OwnerId = TableDesc->OwnerId;
452     TableInfo->InstalledDesc = TableDesc;
453     return_ACPI_STATUS (AE_OK);
454 
455 
456     /* Error exit with cleanup */
457 
458 ErrorExit2:
459 
460     AcpiUtReleaseOwnerId (&TableDesc->OwnerId);
461 
462 ErrorExit1:
463 
464     ACPI_FREE (TableDesc);
465     return_ACPI_STATUS (Status);
466 }
467 
468 
469 /*******************************************************************************
470  *
471  * FUNCTION:    AcpiTbDeleteAllTables
472  *
473  * PARAMETERS:  None.
474  *
475  * RETURN:      None.
476  *
477  * DESCRIPTION: Delete all internal ACPI tables
478  *
479  ******************************************************************************/
480 
481 void
482 AcpiTbDeleteAllTables (
483     void)
484 {
485     ACPI_TABLE_TYPE         Type;
486 
487 
488     /*
489      * Free memory allocated for ACPI tables
490      * Memory can either be mapped or allocated
491      */
492     for (Type = 0; Type < (ACPI_TABLE_ID_MAX+1); Type++)
493     {
494         AcpiTbDeleteTablesByType (Type);
495     }
496 }
497 
498 
499 /*******************************************************************************
500  *
501  * FUNCTION:    AcpiTbDeleteTablesByType
502  *
503  * PARAMETERS:  Type                - The table type to be deleted
504  *
505  * RETURN:      None.
506  *
507  * DESCRIPTION: Delete an internal ACPI table
508  *              Locks the ACPI table mutex
509  *
510  ******************************************************************************/
511 
512 void
513 AcpiTbDeleteTablesByType (
514     ACPI_TABLE_TYPE         Type)
515 {
516     ACPI_TABLE_DESC         *TableDesc;
517     UINT32                  Count;
518     UINT32                  i;
519 
520 
521     ACPI_FUNCTION_TRACE_U32 (TbDeleteTablesByType, Type);
522 
523 
524     if (Type > ACPI_TABLE_ID_MAX)
525     {
526         return_VOID;
527     }
528 
529     if (ACPI_FAILURE (AcpiUtAcquireMutex (ACPI_MTX_TABLES)))
530     {
531         return;
532     }
533 
534     /* Clear the appropriate "typed" global table pointer */
535 
536     switch (Type)
537     {
538     case ACPI_TABLE_ID_RSDP:
539         AcpiGbl_RSDP = NULL;
540         break;
541 
542     case ACPI_TABLE_ID_DSDT:
543         AcpiGbl_DSDT = NULL;
544         break;
545 
546     case ACPI_TABLE_ID_FADT:
547         AcpiGbl_FADT = NULL;
548         break;
549 
550     case ACPI_TABLE_ID_FACS:
551         AcpiGbl_FACS = NULL;
552         break;
553 
554     case ACPI_TABLE_ID_XSDT:
555         AcpiGbl_XSDT = NULL;
556         break;
557 
558     case ACPI_TABLE_ID_SSDT:
559     case ACPI_TABLE_ID_PSDT:
560     default:
561         break;
562     }
563 
564     /*
565      * Free the table
566      * 1) Get the head of the list
567      */
568     TableDesc = AcpiGbl_TableLists[Type].Next;
569     Count = AcpiGbl_TableLists[Type].Count;
570 
571     /*
572      * 2) Walk the entire list, deleting both the allocated tables
573      *    and the table descriptors
574      */
575     for (i = 0; i < Count; i++)
576     {
577         TableDesc = AcpiTbUninstallTable (TableDesc);
578     }
579 
580     (void) AcpiUtReleaseMutex (ACPI_MTX_TABLES);
581     return_VOID;
582 }
583 
584 
585 /*******************************************************************************
586  *
587  * FUNCTION:    AcpiTbDeleteSingleTable
588  *
589  * PARAMETERS:  TableInfo           - A table info struct
590  *
591  * RETURN:      None.
592  *
593  * DESCRIPTION: Low-level free for a single ACPI table.  Handles cases where
594  *              the table was allocated a buffer or was mapped.
595  *
596  ******************************************************************************/
597 
598 void
599 AcpiTbDeleteSingleTable (
600     ACPI_TABLE_DESC         *TableDesc)
601 {
602 
603     /* Must have a valid table descriptor and pointer */
604 
605     if ((!TableDesc) ||
606          (!TableDesc->Pointer))
607     {
608         return;
609     }
610 
611     /* Valid table, determine type of memory allocation */
612 
613     switch (TableDesc->Allocation)
614     {
615     case ACPI_MEM_NOT_ALLOCATED:
616         break;
617 
618     case ACPI_MEM_ALLOCATED:
619 
620         ACPI_FREE (TableDesc->Pointer);
621         break;
622 
623     case ACPI_MEM_MAPPED:
624 
625         AcpiOsUnmapMemory (TableDesc->Pointer, TableDesc->Length);
626         break;
627 
628     default:
629         break;
630     }
631 }
632 
633 
634 /*******************************************************************************
635  *
636  * FUNCTION:    AcpiTbUninstallTable
637  *
638  * PARAMETERS:  TableInfo           - A table info struct
639  *
640  * RETURN:      Pointer to the next table in the list (of same type)
641  *
642  * DESCRIPTION: Free the memory associated with an internal ACPI table that
643  *              is either installed or has never been installed.
644  *              Table mutex should be locked.
645  *
646  ******************************************************************************/
647 
648 ACPI_TABLE_DESC *
649 AcpiTbUninstallTable (
650     ACPI_TABLE_DESC         *TableDesc)
651 {
652     ACPI_TABLE_DESC         *NextDesc;
653 
654 
655     ACPI_FUNCTION_TRACE_PTR (TbUninstallTable, TableDesc);
656 
657 
658     if (!TableDesc)
659     {
660         return_PTR (NULL);
661     }
662 
663     /* Unlink the descriptor from the doubly linked list */
664 
665     if (TableDesc->Prev)
666     {
667         TableDesc->Prev->Next = TableDesc->Next;
668     }
669     else
670     {
671         /* Is first on list, update list head */
672 
673         AcpiGbl_TableLists[TableDesc->Type].Next = TableDesc->Next;
674     }
675 
676     if (TableDesc->Next)
677     {
678         TableDesc->Next->Prev = TableDesc->Prev;
679     }
680 
681     /* Free the memory allocated for the table itself */
682 
683     AcpiTbDeleteSingleTable (TableDesc);
684 
685     /* Free the owner ID associated with this table */
686 
687     AcpiUtReleaseOwnerId (&TableDesc->OwnerId);
688 
689     /* Free the table descriptor */
690 
691     NextDesc = TableDesc->Next;
692     ACPI_FREE (TableDesc);
693 
694     /* Return pointer to the next descriptor */
695 
696     return_PTR (NextDesc);
697 }
698 
699