blob: f2d08034630e34b1e616f9774f699a538d27ca59 [file] [log] [blame]
Bob Mooref3d2e782007-02-02 19:48:18 +03001/******************************************************************************
2 *
3 * Module Name: tbfind - find table
4 *
5 *****************************************************************************/
6
7/*
Bob Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, Intel Corp.
Bob Mooref3d2e782007-02-02 19:48:18 +03009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "actables.h"
Bob Mooref3d2e782007-02-02 19:48:18 +030047
48#define _COMPONENT ACPI_TABLES
49ACPI_MODULE_NAME("tbfind")
50
51/*******************************************************************************
52 *
53 * FUNCTION: acpi_tb_find_table
54 *
Bob Mooreba494be2012-07-12 09:40:10 +080055 * PARAMETERS: signature - String with ACPI table signature
Bob Mooref3d2e782007-02-02 19:48:18 +030056 * oem_id - String with the table OEM ID
57 * oem_table_id - String with the OEM Table ID
58 * table_index - Where the table index is returned
59 *
60 * RETURN: Status and table index
61 *
62 * DESCRIPTION: Find an ACPI table (in the RSDT/XSDT) that matches the
63 * Signature, OEM ID and OEM Table ID. Returns an index that can
64 * be used to get the table header or entire table.
65 *
66 ******************************************************************************/
67acpi_status
68acpi_tb_find_table(char *signature,
Bob Moore67a119f2008-06-10 13:42:13 +080069 char *oem_id, char *oem_table_id, u32 *table_index)
Bob Mooref3d2e782007-02-02 19:48:18 +030070{
Bob Mooref3d2e782007-02-02 19:48:18 +030071 acpi_status status;
Lin Ming47c08722008-04-10 19:06:42 +040072 struct acpi_table_header header;
Bob Moore9f41fd82015-08-25 10:28:39 +080073 u32 i;
Bob Mooref3d2e782007-02-02 19:48:18 +030074
75 ACPI_FUNCTION_TRACE(tb_find_table);
76
Bob Moore9f41fd82015-08-25 10:28:39 +080077 /* Validate the input table signature */
78
79 if (!acpi_is_valid_signature(signature)) {
80 return_ACPI_STATUS(AE_BAD_SIGNATURE);
81 }
82
83 /* Don't allow the OEM strings to be too long */
84
85 if ((strlen(oem_id) > ACPI_OEM_ID_SIZE) ||
86 (strlen(oem_table_id) > ACPI_OEM_TABLE_ID_SIZE)) {
87 return_ACPI_STATUS(AE_AML_STRING_LIMIT);
88 }
89
Lin Ming47c08722008-04-10 19:06:42 +040090 /* Normalize the input strings */
91
Bob Moore4fa46162015-07-01 14:45:11 +080092 memset(&header, 0, sizeof(struct acpi_table_header));
Bob Mooreeed95252012-10-31 02:28:03 +000093 ACPI_MOVE_NAME(header.signature, signature);
Bob Moore4fa46162015-07-01 14:45:11 +080094 strncpy(header.oem_id, oem_id, ACPI_OEM_ID_SIZE);
95 strncpy(header.oem_table_id, oem_table_id, ACPI_OEM_TABLE_ID_SIZE);
Lin Ming47c08722008-04-10 19:06:42 +040096
97 /* Search for the table */
98
Bob Mooreb9ee2042010-04-27 11:16:14 +080099 for (i = 0; i < acpi_gbl_root_table_list.current_table_count; ++i) {
Bob Moore4fa46162015-07-01 14:45:11 +0800100 if (memcmp(&(acpi_gbl_root_table_list.tables[i].signature),
101 header.signature, ACPI_NAME_SIZE)) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300102
103 /* Not the requested table */
104
105 continue;
106 }
107
108 /* Table with matching signature has been found */
109
110 if (!acpi_gbl_root_table_list.tables[i].pointer) {
111
112 /* Table is not currently mapped, map it */
113
114 status =
Lv Zheng7f9fc992014-04-04 12:38:42 +0800115 acpi_tb_validate_table(&acpi_gbl_root_table_list.
116 tables[i]);
Bob Mooref3d2e782007-02-02 19:48:18 +0300117 if (ACPI_FAILURE(status)) {
118 return_ACPI_STATUS(status);
119 }
120
121 if (!acpi_gbl_root_table_list.tables[i].pointer) {
122 continue;
123 }
124 }
125
126 /* Check for table match on all IDs */
127
Bob Moore4fa46162015-07-01 14:45:11 +0800128 if (!memcmp
Bob Mooref3d2e782007-02-02 19:48:18 +0300129 (acpi_gbl_root_table_list.tables[i].pointer->signature,
Lin Ming47c08722008-04-10 19:06:42 +0400130 header.signature, ACPI_NAME_SIZE) && (!oem_id[0]
131 ||
Bob Moore4fa46162015-07-01 14:45:11 +0800132 !memcmp
Lin Ming47c08722008-04-10 19:06:42 +0400133 (acpi_gbl_root_table_list.
134 tables[i].pointer->
135 oem_id,
136 header.oem_id,
137 ACPI_OEM_ID_SIZE))
Bob Mooref3d2e782007-02-02 19:48:18 +0300138 && (!oem_table_id[0]
Bob Moore4fa46162015-07-01 14:45:11 +0800139 || !memcmp(acpi_gbl_root_table_list.tables[i].pointer->
140 oem_table_id, header.oem_table_id,
141 ACPI_OEM_TABLE_ID_SIZE))) {
Bob Mooref3d2e782007-02-02 19:48:18 +0300142 *table_index = i;
143
144 ACPI_DEBUG_PRINT((ACPI_DB_TABLES,
Lin Ming47c08722008-04-10 19:06:42 +0400145 "Found table [%4.4s]\n",
146 header.signature));
Bob Mooref3d2e782007-02-02 19:48:18 +0300147 return_ACPI_STATUS(AE_OK);
148 }
149 }
150
151 return_ACPI_STATUS(AE_NOT_FOUND);
152}