Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
8afca009
Commit
8afca009
authored
Jul 08, 2002
by
Andy Grover
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ACPI interpreter update
parent
e31ad404
Changes
48
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
48 changed files
with
1774 additions
and
900 deletions
+1774
-900
drivers/acpi/debugger/dbdisasm.c
drivers/acpi/debugger/dbdisasm.c
+3
-2
drivers/acpi/debugger/dbdisply.c
drivers/acpi/debugger/dbdisply.c
+74
-14
drivers/acpi/debugger/dbexec.c
drivers/acpi/debugger/dbexec.c
+8
-1
drivers/acpi/debugger/dbfileio.c
drivers/acpi/debugger/dbfileio.c
+7
-3
drivers/acpi/dispatcher/dsmethod.c
drivers/acpi/dispatcher/dsmethod.c
+2
-2
drivers/acpi/dispatcher/dsobject.c
drivers/acpi/dispatcher/dsobject.c
+3
-1
drivers/acpi/dispatcher/dswload.c
drivers/acpi/dispatcher/dswload.c
+1
-7
drivers/acpi/executer/exconfig.c
drivers/acpi/executer/exconfig.c
+3
-1
drivers/acpi/executer/exdump.c
drivers/acpi/executer/exdump.c
+10
-1
drivers/acpi/executer/exmisc.c
drivers/acpi/executer/exmisc.c
+36
-25
drivers/acpi/executer/exoparg1.c
drivers/acpi/executer/exoparg1.c
+12
-2
drivers/acpi/executer/exoparg2.c
drivers/acpi/executer/exoparg2.c
+7
-4
drivers/acpi/executer/exresnte.c
drivers/acpi/executer/exresnte.c
+2
-2
drivers/acpi/executer/exresolv.c
drivers/acpi/executer/exresolv.c
+3
-1
drivers/acpi/executer/exresop.c
drivers/acpi/executer/exresop.c
+2
-1
drivers/acpi/executer/exstore.c
drivers/acpi/executer/exstore.c
+2
-1
drivers/acpi/include/acconfig.h
drivers/acpi/include/acconfig.h
+2
-2
drivers/acpi/include/acdebug.h
drivers/acpi/include/acdebug.h
+5
-1
drivers/acpi/include/acglobal.h
drivers/acpi/include/acglobal.h
+2
-1
drivers/acpi/include/aclocal.h
drivers/acpi/include/aclocal.h
+1
-5
drivers/acpi/include/acparser.h
drivers/acpi/include/acparser.h
+5
-1
drivers/acpi/include/acpixf.h
drivers/acpi/include/acpixf.h
+4
-0
drivers/acpi/include/actables.h
drivers/acpi/include/actables.h
+38
-31
drivers/acpi/include/actbl.h
drivers/acpi/include/actbl.h
+10
-4
drivers/acpi/include/actypes.h
drivers/acpi/include/actypes.h
+13
-3
drivers/acpi/include/amlresrc.h
drivers/acpi/include/amlresrc.h
+512
-0
drivers/acpi/include/platform/aclinux.h
drivers/acpi/include/platform/aclinux.h
+1
-1
drivers/acpi/namespace/nseval.c
drivers/acpi/namespace/nseval.c
+3
-2
drivers/acpi/namespace/nsload.c
drivers/acpi/namespace/nsload.c
+2
-3
drivers/acpi/namespace/nsnames.c
drivers/acpi/namespace/nsnames.c
+2
-2
drivers/acpi/parser/psparse.c
drivers/acpi/parser/psparse.c
+5
-1
drivers/acpi/parser/psutils.c
drivers/acpi/parser/psutils.c
+32
-1
drivers/acpi/parser/psxface.c
drivers/acpi/parser/psxface.c
+3
-3
drivers/acpi/resources/rscreate.c
drivers/acpi/resources/rscreate.c
+2
-4
drivers/acpi/resources/rsio.c
drivers/acpi/resources/rsio.c
+3
-1
drivers/acpi/resources/rsirq.c
drivers/acpi/resources/rsirq.c
+3
-1
drivers/acpi/resources/rslist.c
drivers/acpi/resources/rslist.c
+3
-1
drivers/acpi/tables/tbconvrt.c
drivers/acpi/tables/tbconvrt.c
+5
-9
drivers/acpi/tables/tbget.c
drivers/acpi/tables/tbget.c
+233
-572
drivers/acpi/tables/tbgetall.c
drivers/acpi/tables/tbgetall.c
+290
-0
drivers/acpi/tables/tbinstal.c
drivers/acpi/tables/tbinstal.c
+24
-32
drivers/acpi/tables/tbrsdt.c
drivers/acpi/tables/tbrsdt.c
+304
-0
drivers/acpi/tables/tbutils.c
drivers/acpi/tables/tbutils.c
+5
-88
drivers/acpi/tables/tbxface.c
drivers/acpi/tables/tbxface.c
+7
-8
drivers/acpi/tables/tbxfroot.c
drivers/acpi/tables/tbxfroot.c
+34
-35
drivers/acpi/utilities/utcopy.c
drivers/acpi/utilities/utcopy.c
+10
-9
drivers/acpi/utilities/utglobal.c
drivers/acpi/utilities/utglobal.c
+10
-10
drivers/acpi/utilities/utxface.c
drivers/acpi/utilities/utxface.c
+26
-1
No files found.
drivers/acpi/debugger/dbdisasm.c
View file @
8afca009
/*******************************************************************************
*
* Module Name: dbdisasm - parser op tree display routines
* $Revision: 6
6
$
* $Revision: 6
7
$
*
******************************************************************************/
...
...
@@ -674,7 +674,8 @@ acpi_db_display_opcode (
(
walk_state
)
&&
(
walk_state
->
results
)
&&
(
walk_state
->
results
->
results
.
num_results
))
{
acpi_db_decode_internal_object
(
walk_state
->
results
->
results
.
obj_desc
[
walk_state
->
results
->
results
.
num_results
-
1
]);
acpi_db_decode_internal_object
(
walk_state
->
results
->
results
.
obj_desc
[
walk_state
->
results
->
results
.
num_results
-
1
]);
}
#endif
break
;
...
...
drivers/acpi/debugger/dbdisply.c
View file @
8afca009
/*******************************************************************************
*
* Module Name: dbdisply - debug display commands
* $Revision: 7
5
$
* $Revision: 7
6
$
*
******************************************************************************/
...
...
@@ -300,6 +300,11 @@ acpi_db_decode_internal_object (
return
;
}
if
(
ACPI_GET_DESCRIPTOR_TYPE
(
obj_desc
)
!=
ACPI_DESC_TYPE_OPERAND
)
{
acpi_os_printf
(
"%p"
,
obj_desc
);
return
;
}
acpi_os_printf
(
" %s"
,
acpi_ut_get_object_type_name
(
obj_desc
));
switch
(
ACPI_GET_OBJECT_TYPE
(
obj_desc
))
{
...
...
@@ -336,12 +341,45 @@ acpi_db_decode_internal_object (
default:
/* No additional display for other types */
acpi_os_printf
(
"%p"
,
obj_desc
);
break
;
}
}
/*******************************************************************************
*
* FUNCTION: Acpi_db_decode_node
*
* PARAMETERS: Node - Object to be displayed
*
* RETURN: None
*
* DESCRIPTION: Short display of a namespace node
*
******************************************************************************/
void
acpi_db_decode_node
(
acpi_namespace_node
*
node
)
{
acpi_os_printf
(
"<Node> Name %4.4s Type-%s"
,
node
->
name
.
ascii
,
acpi_ut_get_type_name
(
node
->
type
));
if
(
node
->
flags
&
ANOBJ_METHOD_ARG
)
{
acpi_os_printf
(
" [Method Arg]"
);
}
if
(
node
->
flags
&
ANOBJ_METHOD_LOCAL
)
{
acpi_os_printf
(
" [Method Local]"
);
}
acpi_db_decode_internal_object
(
acpi_ns_get_attached_object
(
node
));
}
/*******************************************************************************
*
* FUNCTION: Acpi_db_display_internal_object
...
...
@@ -381,16 +419,7 @@ acpi_db_display_internal_object (
case
ACPI_DESC_TYPE_NAMED
:
acpi_os_printf
(
"<Node> Name %4.4s Type-%s"
,
((
acpi_namespace_node
*
)
obj_desc
)
->
name
.
ascii
,
acpi_ut_get_type_name
(((
acpi_namespace_node
*
)
obj_desc
)
->
type
));
if
(((
acpi_namespace_node
*
)
obj_desc
)
->
flags
&
ANOBJ_METHOD_ARG
)
{
acpi_os_printf
(
" [Method Arg]"
);
}
if
(((
acpi_namespace_node
*
)
obj_desc
)
->
flags
&
ANOBJ_METHOD_LOCAL
)
{
acpi_os_printf
(
" [Method Local]"
);
}
acpi_db_decode_node
((
acpi_namespace_node
*
)
obj_desc
);
break
;
...
...
@@ -406,8 +435,10 @@ acpi_db_display_internal_object (
switch
(
ACPI_GET_OBJECT_TYPE
(
obj_desc
))
{
case
INTERNAL_TYPE_REFERENCE
:
switch
(
obj_desc
->
reference
.
opcode
)
{
case
AML_LOCAL_OP
:
acpi_os_printf
(
"[Local%d] "
,
obj_desc
->
reference
.
offset
);
if
(
walk_state
)
{
obj_desc
=
walk_state
->
local_variables
[
obj_desc
->
reference
.
offset
].
object
;
...
...
@@ -416,7 +447,9 @@ acpi_db_display_internal_object (
}
break
;
case
AML_ARG_OP
:
acpi_os_printf
(
"[Arg%d] "
,
obj_desc
->
reference
.
offset
);
if
(
walk_state
)
{
obj_desc
=
walk_state
->
arguments
[
obj_desc
->
reference
.
offset
].
object
;
...
...
@@ -425,24 +458,51 @@ acpi_db_display_internal_object (
}
break
;
case
AML_DEBUG_OP
:
acpi_os_printf
(
"[Debug] "
);
break
;
case
AML_INDEX_OP
:
acpi_os_printf
(
"[Index] "
);
acpi_db_decode_internal_object
(
obj_desc
->
reference
.
object
);
break
;
case
AML_REF_OF_OP
:
acpi_os_printf
(
"[Reference] "
);
/* Reference can be to a Node or an Operand object */
switch
(
ACPI_GET_DESCRIPTOR_TYPE
(
obj_desc
->
reference
.
object
))
{
case
ACPI_DESC_TYPE_NAMED
:
acpi_db_decode_node
(
obj_desc
->
reference
.
object
);
break
;
case
ACPI_DESC_TYPE_OPERAND
:
acpi_db_decode_internal_object
(
obj_desc
->
reference
.
object
);
break
;
default:
break
;
}
break
;
default:
acpi_os_printf
(
"Unknown Reference opcode %X
\n
"
,
obj_desc
->
reference
.
opcode
);
break
;
}
break
;
default:
acpi_os_printf
(
"<Obj> "
);
acpi_os_printf
(
" "
);
acpi_db_decode_internal_object
(
obj_desc
);
...
...
drivers/acpi/debugger/dbexec.c
View file @
8afca009
/*******************************************************************************
*
* Module Name: dbexec - debugger control method execution
* $Revision: 4
1
$
* $Revision: 4
2
$
*
******************************************************************************/
...
...
@@ -223,6 +223,9 @@ acpi_db_execute (
acpi_gbl_db_method_info
.
args
=
args
;
acpi_gbl_db_method_info
.
flags
=
flags
;
return_obj
.
pointer
=
NULL
;
return_obj
.
length
=
ACPI_ALLOCATE_BUFFER
;
acpi_db_execute_setup
(
&
acpi_gbl_db_method_info
);
status
=
acpi_db_execute_method
(
&
acpi_gbl_db_method_info
,
&
return_obj
);
...
...
@@ -260,6 +263,10 @@ acpi_db_execute (
acpi_gbl_db_method_info
.
pathname
,
return_obj
.
pointer
,
return_obj
.
length
);
acpi_db_dump_object
(
return_obj
.
pointer
,
1
);
}
else
{
acpi_os_printf
(
"No return object from execution of %s
\n
"
,
acpi_gbl_db_method_info
.
pathname
);
}
}
acpi_db_set_output_destination
(
ACPI_DB_CONSOLE_OUTPUT
);
...
...
drivers/acpi/debugger/dbfileio.c
View file @
8afca009
...
...
@@ -2,7 +2,7 @@
*
* Module Name: dbfileio - Debugger file I/O commands. These can't usually
* be used when running the debugger in Ring 0 (Kernel mode)
* $Revision: 6
3
$
* $Revision: 6
4
$
*
******************************************************************************/
...
...
@@ -279,9 +279,13 @@ ae_local_load_table (
return_ACPI_STATUS
(
AE_BAD_PARAMETER
);
}
/* Install the new table into the local data structures */
table_info
.
pointer
=
table_ptr
;
status
=
acpi_tb_recognize_table
(
&
table_info
,
ACPI_TABLE_SECONDARY
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/* Install the new table into the local data structures */
status
=
acpi_tb_install_table
(
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
...
...
drivers/acpi/dispatcher/dsmethod.c
View file @
8afca009
/******************************************************************************
*
* Module Name: dsmethod - Parser/Interpreter interface - control method parsing
* $Revision: 8
6
$
* $Revision: 8
7
$
*
*****************************************************************************/
...
...
@@ -290,7 +290,7 @@ acpi_ds_call_control_method (
/* Create and init a Root Node */
op
=
acpi_ps_
alloc_op
(
AML_SCOPE_OP
);
op
=
acpi_ps_
create_scope_op
(
);
if
(
!
op
)
{
status
=
AE_NO_MEMORY
;
goto
cleanup
;
...
...
drivers/acpi/dispatcher/dsobject.c
View file @
8afca009
/******************************************************************************
*
* Module Name: dsobject - Dispatcher object management routines
* $Revision: 10
3
$
* $Revision: 10
4
$
*
*****************************************************************************/
...
...
@@ -368,6 +368,8 @@ acpi_ds_init_object_from_op (
obj_desc
->
reference
.
opcode
=
AML_LOCAL_OP
;
obj_desc
->
reference
.
offset
=
opcode
-
AML_LOCAL_OP
;
acpi_ds_method_data_get_node
(
AML_LOCAL_OP
,
obj_desc
->
reference
.
offset
,
walk_state
,
(
acpi_namespace_node
**
)
&
obj_desc
->
reference
.
object
);
break
;
...
...
drivers/acpi/dispatcher/dswload.c
View file @
8afca009
/******************************************************************************
*
* Module Name: dswload - Dispatcher namespace load callbacks
* $Revision: 6
6
$
* $Revision: 6
7
$
*
*****************************************************************************/
...
...
@@ -448,12 +448,6 @@ acpi_ds_load2_end_op (
if
(
op
->
common
.
aml_opcode
==
AML_SCOPE_OP
)
{
ACPI_DEBUG_PRINT
((
ACPI_DB_DISPATCH
,
"Ending scope Op=%p State=%p
\n
"
,
op
,
walk_state
));
if
(
op
->
named
.
name
==
ACPI_UINT16_MAX
)
{
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Unnamed scope! Op=%p State=%p
\n
"
,
op
,
walk_state
));
return
(
AE_OK
);
}
}
...
...
drivers/acpi/executer/exconfig.c
View file @
8afca009
/******************************************************************************
*
* Module Name: exconfig - Namespace reconfiguration (Load/Unload opcodes)
* $Revision: 6
6
$
* $Revision: 6
7
$
*
*****************************************************************************/
...
...
@@ -138,6 +138,7 @@ acpi_ex_load_table_op (
ACPI_FUNCTION_TRACE
(
"Ex_load_table_op"
);
#if 0
/*
* Make sure that the signature does not match one of the tables that
* is already loaded.
...
...
@@ -148,6 +149,7 @@ acpi_ex_load_table_op (
return_ACPI_STATUS (AE_ALREADY_EXISTS);
}
#endif
/* Find the ACPI table */
...
...
drivers/acpi/executer/exdump.c
View file @
8afca009
/******************************************************************************
*
* Module Name: exdump - Interpreter debug output routines
* $Revision: 15
5
$
* $Revision: 15
6
$
*
*****************************************************************************/
...
...
@@ -121,6 +121,13 @@ acpi_ex_dump_operand (
break
;
case
AML_REF_OF_OP
:
acpi_os_printf
(
"Reference: (Ref_of) %p
\n
"
,
obj_desc
->
reference
.
object
);
break
;
case
AML_ARG_OP
:
acpi_os_printf
(
"Reference: Arg%d"
,
...
...
@@ -157,10 +164,12 @@ acpi_ex_dump_operand (
case
AML_INT_NAMEPATH_OP
:
acpi_os_printf
(
"Reference.Node->Name %X
\n
"
,
obj_desc
->
reference
.
node
->
name
.
integer
);
break
;
default:
/* unknown opcode */
...
...
drivers/acpi/executer/exmisc.c
View file @
8afca009
...
...
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exmisc - ACPI AML (p-code) execution - specific opcodes
* $Revision: 10
6
$
* $Revision: 10
7
$
*
*****************************************************************************/
...
...
@@ -41,6 +41,7 @@
*
* PARAMETERS: Obj_desc - Create a reference to this object
* Return_desc - Where to store the reference
* Walk_state - Current state
*
* RETURN: Status
*
...
...
@@ -55,65 +56,75 @@ acpi_ex_get_object_reference (
acpi_operand_object
**
return_desc
,
acpi_walk_state
*
walk_state
)
{
acpi_status
status
=
AE_OK
;
acpi_operand_object
*
reference_obj
;
acpi_operand_object
*
referenced_obj
;
ACPI_FUNCTION_TRACE_PTR
(
"Ex_get_object_reference"
,
obj_desc
);
*
return_desc
=
NULL
;
switch
(
ACPI_GET_DESCRIPTOR_TYPE
(
obj_desc
))
{
case
ACPI_DESC_TYPE_OPERAND
:
if
(
ACPI_GET_OBJECT_TYPE
(
obj_desc
)
!=
INTERNAL_TYPE_REFERENCE
)
{
*
return_desc
=
NULL
;
status
=
AE_TYPE
;
goto
cleanup
;
return_ACPI_STATUS
(
AE_AML_OPERAND_TYPE
);
}
/*
* Not a Name -- an indirect name pointer would have
* been converted to a direct name pointer in Acpi_ex_resolve_operands
* Must be a reference to a Local or Arg
*/
switch
(
obj_desc
->
reference
.
opcode
)
{
case
AML_LOCAL_OP
:
case
AML_ARG_OP
:
status
=
acpi_ds_method_data_get_node
(
obj_desc
->
reference
.
opcode
,
obj_desc
->
reference
.
offset
,
walk_state
,
ACPI_CAST_INDIRECT_PTR
(
acpi_namespace_node
,
return_desc
))
;
/* The referenced object is the pseudo-node for the local/arg */
referenced_obj
=
obj_desc
->
reference
.
object
;
break
;
default:
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"
(Internal) Unknown Ref subtype %02x
\n
"
,
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"
Unknown Reference subtype %X
\n
"
,
obj_desc
->
reference
.
opcode
));
*
return_desc
=
NULL
;
status
=
AE_AML_INTERNAL
;
goto
cleanup
;
return_ACPI_STATUS
(
AE_AML_INTERNAL
);
}
break
;
case
ACPI_DESC_TYPE_NAMED
:
/* Must be a named object; Just return the Node */
*
return_desc
=
obj_desc
;
/*
* A named reference that has already been resolved to a Node
*/
referenced_obj
=
obj_desc
;
break
;
default:
*
return_desc
=
NULL
;
status
=
AE_TYPE
;
break
;
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Invalid descriptor type %X in %p
\n
"
,
ACPI_GET_DESCRIPTOR_TYPE
(
obj_desc
),
obj_desc
))
;
return_ACPI_STATUS
(
AE_TYPE
)
;
}
cleanup:
/* Create a new reference object */
ACPI_DEBUG_PRINT
((
ACPI_DB_EXEC
,
"Obj=%p Ref=%p
\n
"
,
obj_desc
,
*
return_desc
));
return_ACPI_STATUS
(
status
);
reference_obj
=
acpi_ut_create_internal_object
(
INTERNAL_TYPE_REFERENCE
);
if
(
!
reference_obj
)
{
return_ACPI_STATUS
(
AE_NO_MEMORY
);
}
reference_obj
->
reference
.
opcode
=
AML_REF_OF_OP
;
reference_obj
->
reference
.
object
=
referenced_obj
;
*
return_desc
=
reference_obj
;
ACPI_DEBUG_PRINT
((
ACPI_DB_EXEC
,
"Object %p Type [%s], returning Reference %p
\n
"
,
obj_desc
,
acpi_ut_get_object_type_name
(
obj_desc
),
*
return_desc
));
return_ACPI_STATUS
(
AE_OK
);
}
...
...
drivers/acpi/executer/exoparg1.c
View file @
8afca009
...
...
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exoparg1 - AML execution - opcodes with 1 argument
* $Revision: 1
39
$
* $Revision: 1
40
$
*
*****************************************************************************/
...
...
@@ -355,7 +355,7 @@ acpi_ex_opcode_1A_1T_1R (
goto
cleanup
;
}
/* Get the object reference
and store it
*/
/* Get the object reference
, store it, and remove our reference
*/
status
=
acpi_ex_get_object_reference
(
operand
[
0
],
&
return_desc2
,
walk_state
);
if
(
ACPI_FAILURE
(
status
))
{
...
...
@@ -363,6 +363,7 @@ acpi_ex_opcode_1A_1T_1R (
}
status
=
acpi_ex_store
(
return_desc2
,
operand
[
1
],
walk_state
);
acpi_ut_remove_reference
(
return_desc2
);
/* The object exists in the namespace, return TRUE */
...
...
@@ -733,6 +734,15 @@ acpi_ex_opcode_1A_0T_1R (
operand
[
0
]
=
temp_desc
;
break
;
case
AML_REF_OF_OP
:
/* Get the object to which the reference refers */
temp_desc
=
operand
[
0
]
->
reference
.
object
;
acpi_ut_remove_reference
(
operand
[
0
]);
operand
[
0
]
=
temp_desc
;
break
;
default:
/* Must be an Index op - handled below */
...
...
drivers/acpi/executer/exoparg2.c
View file @
8afca009
/******************************************************************************
*
* Module Name: exoparg2 - AML execution - opcodes with 2 arguments
* $Revision: 10
8
$
* $Revision: 10
9
$
*
*****************************************************************************/
...
...
@@ -359,7 +359,8 @@ acpi_ex_opcode_2A_1T_1R (
/* Object to be indexed is a Package */
if
(
index
>=
operand
[
0
]
->
package
.
count
)
{
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Index value beyond package end
\n
"
));
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Index value (%X) beyond package end (%X)
\n
"
,
index
,
operand
[
0
]
->
package
.
count
));
status
=
AE_AML_PACKAGE_LIMIT
;
goto
cleanup
;
}
...
...
@@ -401,7 +402,8 @@ acpi_ex_opcode_2A_1T_1R (
/* Object to be indexed is a Buffer */
if
(
index
>=
operand
[
0
]
->
buffer
.
length
)
{
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Index value beyond end of buffer
\n
"
));
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Index value (%X) beyond end of buffer (%X)
\n
"
,
index
,
operand
[
0
]
->
buffer
.
length
));
status
=
AE_AML_BUFFER_LIMIT
;
goto
cleanup
;
}
...
...
@@ -522,7 +524,8 @@ acpi_ex_opcode_2A_0T_1R (
default:
ACPI_REPORT_ERROR
((
"Acpi_ex_opcode_2A_0T_1R: Unknown opcode %X
\n
"
,
walk_state
->
opcode
));
ACPI_REPORT_ERROR
((
"Acpi_ex_opcode_2A_0T_1R: Unknown opcode %X
\n
"
,
walk_state
->
opcode
));
status
=
AE_AML_BAD_OPCODE
;
goto
cleanup
;
}
...
...
drivers/acpi/executer/exresnte.c
View file @
8afca009
...
...
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exresnte - AML Interpreter object resolution
* $Revision: 5
6
$
* $Revision: 5
7
$
*
*****************************************************************************/
...
...
@@ -219,7 +219,7 @@ acpi_ex_resolve_node_to_value (
/* No named references are allowed here */
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Unsupported
r
eference opcode %X
\n
"
,
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Unsupported
R
eference opcode %X
\n
"
,
source_desc
->
reference
.
opcode
));
return_ACPI_STATUS
(
AE_AML_OPERAND_TYPE
);
...
...
drivers/acpi/executer/exresolv.c
View file @
8afca009
...
...
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exresolv - AML Interpreter object resolution
* $Revision: 11
4
$
* $Revision: 11
5
$
*
*****************************************************************************/
...
...
@@ -227,9 +227,11 @@ acpi_ex_resolve_object_to_value (
break
;
case
AML_REF_OF_OP
:
case
AML_DEBUG_OP
:
/* Just leave the object as-is */
break
;
...
...
drivers/acpi/executer/exresop.c
View file @
8afca009
...
...
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exresop - AML Interpreter operand/object resolution
* $Revision: 5
3
$
* $Revision: 5
4
$
*
*****************************************************************************/
...
...
@@ -204,6 +204,7 @@ acpi_ex_resolve_operands (
case
AML_DEBUG_OP
:
case
AML_NAME_OP
:
case
AML_INDEX_OP
:
case
AML_REF_OF_OP
:
case
AML_ARG_OP
:
case
AML_LOCAL_OP
:
...
...
drivers/acpi/executer/exstore.c
View file @
8afca009
...
...
@@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exstore - AML Interpreter object store support
* $Revision: 16
7
$
* $Revision: 16
8
$
*
*****************************************************************************/
...
...
@@ -130,6 +130,7 @@ acpi_ex_store (
*/
switch
(
ref_desc
->
reference
.
opcode
)
{
case
AML_NAME_OP
:
case
AML_REF_OF_OP
:
/* Storing an object into a Name "container" */
...
...
drivers/acpi/include/acconfig.h
View file @
8afca009
/******************************************************************************
*
* Name: acconfig.h - Global configuration constants
* $Revision: 10
4
$
* $Revision: 10
5
$
*
*****************************************************************************/
...
...
@@ -54,7 +54,7 @@
/* Version string */
#define ACPI_CA_VERSION 0x20020
611
#define ACPI_CA_VERSION 0x20020
702
/* Version of ACPI supported */
...
...
drivers/acpi/include/acdebug.h
View file @
8afca009
/******************************************************************************
*
* Name: acdebug.h - ACPI/AML debugger
* $Revision: 6
1
$
* $Revision: 6
2
$
*
*****************************************************************************/
...
...
@@ -212,6 +212,10 @@ void
acpi_db_decode_internal_object
(
acpi_operand_object
*
obj_desc
);
void
acpi_db_decode_node
(
acpi_namespace_node
*
node
);
u32
acpi_db_block_type
(
acpi_parse_object
*
op
);
...
...
drivers/acpi/include/acglobal.h
View file @
8afca009
/******************************************************************************
*
* Name: acglobal.h - Declarations for global variables
* $Revision: 12
5
$
* $Revision: 12
6
$
*
*****************************************************************************/
...
...
@@ -72,6 +72,7 @@ extern u32 acpi_gbl_nesting_level;
*
*/
ACPI_EXTERN
u32
acpi_gbl_table_flags
;
ACPI_EXTERN
u32
acpi_gbl_rsdt_table_count
;
ACPI_EXTERN
RSDP_DESCRIPTOR
*
acpi_gbl_RSDP
;
ACPI_EXTERN
xsdt_descriptor
*
acpi_gbl_XSDT
;
ACPI_EXTERN
FADT_DESCRIPTOR
*
acpi_gbl_FADT
;
...
...
drivers/acpi/include/aclocal.h
View file @
8afca009
/******************************************************************************
*
* Name: aclocal.h - Internal data types used across the ACPI subsystem
* $Revision: 16
7
$
* $Revision: 16
8
$
*
*****************************************************************************/
...
...
@@ -33,10 +33,6 @@ typedef void* acpi_mutex;
typedef
u32
ACPI_MUTEX_HANDLE
;
#define ACPI_MEMORY_MODE 0x01
#define ACPI_LOGICAL_ADDRESSING 0x00
#define ACPI_PHYSICAL_ADDRESSING 0x01
/* Total number of aml opcodes defined */
#define AML_NUM_OPCODES 0x7E
...
...
drivers/acpi/include/acparser.h
View file @
8afca009
/******************************************************************************
*
* Module Name: acparser.h - AML Parser subcomponent prototypes and defines
* $Revision:
59
$
* $Revision:
60
$
*
*****************************************************************************/
...
...
@@ -266,6 +266,10 @@ acpi_ps_delete_completed_op (
/* psutils - parser utilities */
acpi_parse_object
*
acpi_ps_create_scope_op
(
void
);
void
acpi_ps_init_op
(
acpi_parse_object
*
op
,
...
...
drivers/acpi/include/acpixf.h
View file @
8afca009
...
...
@@ -43,6 +43,10 @@ acpi_status
acpi_enable_subsystem
(
u32
flags
);
acpi_status
acpi_initialize_objects
(
u32
flags
);
acpi_status
acpi_terminate
(
void
);
...
...
drivers/acpi/include/actables.h
View file @
8afca009
/******************************************************************************
*
* Name: actables.h - ACPI table management
* $Revision: 4
1
$
* $Revision: 4
2
$
*
*****************************************************************************/
...
...
@@ -43,8 +43,7 @@ acpi_tb_handle_to_object (
acpi_status
acpi_tb_convert_to_xsdt
(
acpi_table_desc
*
table_info
,
u32
*
number_of_tables
);
acpi_table_desc
*
table_info
);
acpi_status
acpi_tb_convert_table_fadt
(
...
...
@@ -63,13 +62,31 @@ acpi_tb_get_table_count (
* tbget - Table "get" routines
*/
void
acpi_tb_table_override
(
acpi_status
acpi_tb_get_table
(
ACPI_POINTER
*
address
,
acpi_table_desc
*
table_info
);
acpi_status
acpi_tb_get_table_
with_override
(
acpi_tb_get_table_
header
(
ACPI_POINTER
*
address
,
acpi_table_header
*
return_header
);
acpi_status
acpi_tb_get_table_body
(
ACPI_POINTER
*
address
,
acpi_table_header
*
header
,
acpi_table_desc
*
table_info
);
acpi_status
acpi_tb_get_this_table
(
ACPI_POINTER
*
address
,
acpi_table_header
*
header
,
acpi_table_desc
*
table_info
);
acpi_status
acpi_tb_table_override
(
acpi_table_header
*
header
,
acpi_table_desc
*
table_info
);
acpi_status
...
...
@@ -78,11 +95,6 @@ acpi_tb_get_table_ptr (
u32
instance
,
acpi_table_header
**
table_ptr_loc
);
acpi_status
acpi_tb_get_table
(
ACPI_POINTER
*
address
,
acpi_table_desc
*
table_info
);
acpi_status
acpi_tb_verify_rsdp
(
ACPI_POINTER
*
address
);
...
...
@@ -96,20 +108,19 @@ acpi_tb_validate_rsdt (
acpi_table_header
*
table_ptr
);
acpi_status
acpi_tb_get_table_pointer
(
ACPI_POINTER
*
address
,
u32
flags
,
ACPI_SIZE
*
size
,
acpi_table_header
**
table_ptr
);
/*
* tbgetall - Get all firmware ACPI tables
*/
acpi_tb_get_required_tables
(
void
);
acpi_status
acpi_tb_get_all_tables
(
u32
number_of_tables
);
acpi_tb_get_primary_table
(
ACPI_POINTER
*
address
,
acpi_table_desc
*
table_info
);
acpi_status
acpi_tb_get_secondary_table
(
ACPI_POINTER
*
address
,
acpi_string
signature
,
acpi_table_desc
*
table_info
);
/*
* tbinstall - Table installation
...
...
@@ -122,11 +133,13 @@ acpi_tb_install_table (
acpi_status
acpi_tb_match_signature
(
NATIVE_CHAR
*
signature
,
acpi_table_desc
*
table_info
);
acpi_table_desc
*
table_info
,
u8
search_type
);
acpi_status
acpi_tb_recognize_table
(
acpi_table_desc
*
table_info
);
acpi_table_desc
*
table_info
,
u8
search_type
);
acpi_status
acpi_tb_init_table_descriptor
(
...
...
@@ -165,7 +178,7 @@ acpi_tb_free_acpi_tables_of_type (
acpi_status
acpi_tb_get_table_rsdt
(
u32
*
number_of_tables
);
void
);
u8
*
acpi_tb_scan_memory_for_rsdp
(
...
...
@@ -189,12 +202,6 @@ acpi_tb_find_table (
NATIVE_CHAR
*
oem_table_id
,
acpi_table_header
**
table_ptr
);
acpi_status
acpi_tb_map_acpi_table
(
ACPI_PHYSICAL_ADDRESS
physical_address
,
ACPI_SIZE
*
size
,
acpi_table_header
**
logical_address
);
acpi_status
acpi_tb_verify_table_checksum
(
acpi_table_header
*
table_header
);
...
...
drivers/acpi/include/actbl.h
View file @
8afca009
/******************************************************************************
*
* Name: actbl.h - Table data structures defined in ACPI specification
* $Revision: 5
2
$
* $Revision: 5
3
$
*
*****************************************************************************/
...
...
@@ -185,9 +185,15 @@ typedef struct /* Smart Battery Description Table */
/* Definitions for the Flags bitfield member of ACPI_TABLE_SUPPORT */
#define ACPI_TABLE_SINGLE 0
#define ACPI_TABLE_MULTIPLE 1
#define ACPI_TABLE_EXECUTABLE 2
#define ACPI_TABLE_SINGLE 0x00
#define ACPI_TABLE_MULTIPLE 0x01
#define ACPI_TABLE_EXECUTABLE 0x02
#define ACPI_TABLE_ROOT 0x00
#define ACPI_TABLE_PRIMARY 0x10
#define ACPI_TABLE_SECONDARY 0x20
#define ACPI_TABLE_OTHER 0x30
#define ACPI_TABLE_TYPE_MASK 0x30
/* Data about each known table type */
...
...
drivers/acpi/include/actypes.h
View file @
8afca009
/******************************************************************************
*
* Name: actypes.h - Common data types for the entire ACPI subsystem
* $Revision: 23
7
$
* $Revision: 23
8
$
*
*****************************************************************************/
...
...
@@ -209,8 +209,18 @@ typedef struct acpi_pointer
/* Pointer_types for above */
#define ACPI_LOGICAL_POINTER 0x01
#define ACPI_PHYSICAL_POINTER 0x02
#define ACPI_PHYSICAL_POINTER 0x01
#define ACPI_LOGICAL_POINTER 0x02
/* Processor mode */
#define ACPI_PHYSICAL_ADDRESSING 0x04
#define ACPI_LOGICAL_ADDRESSING 0x08
#define ACPI_MEMORY_MODE 0x0C
#define ACPI_PHYSMODE_PHYSPTR ACPI_PHYSICAL_ADDRESSING | ACPI_PHYSICAL_POINTER
#define ACPI_LOGMODE_PHYSPTR ACPI_LOGICAL_ADDRESSING | ACPI_PHYSICAL_POINTER
#define ACPI_LOGMODE_LOGPTR ACPI_LOGICAL_ADDRESSING | ACPI_LOGICAL_POINTER
/*
...
...
drivers/acpi/include/amlresrc.h
0 → 100644
View file @
8afca009
This diff is collapsed.
Click to expand it.
drivers/acpi/include/platform/aclinux.h
View file @
8afca009
/******************************************************************************
*
* Name: aclinux.h - OS specific defines, etc.
* $Revision: 2
5
$
* $Revision: 2
6
$
*
*****************************************************************************/
...
...
drivers/acpi/namespace/nseval.c
View file @
8afca009
...
...
@@ -2,7 +2,7 @@
*
* Module Name: nseval - Object evaluation interfaces -- includes control
* method lookup and execution.
* $Revision: 11
6
$
* $Revision: 11
7
$
*
******************************************************************************/
...
...
@@ -485,7 +485,8 @@ acpi_ns_get_object_value (
if
(
ACPI_SUCCESS
(
status
))
{
status
=
AE_CTRL_RETURN_VALUE
;
*
return_obj_desc
=
ACPI_CAST_PTR
(
acpi_operand_object
,
resolved_node
);
ACPI_DEBUG_PRINT
((
ACPI_DB_NAMES
,
"Returning obj %p
\n
"
,
resolved_node
));
ACPI_DEBUG_PRINT
((
ACPI_DB_NAMES
,
"Returning object %p [%s]
\n
"
,
*
return_obj_desc
,
acpi_ut_get_object_type_name
(
*
return_obj_desc
)));
}
}
...
...
drivers/acpi/namespace/nsload.c
View file @
8afca009
/******************************************************************************
*
* Module Name: nsload - namespace loading/expanding/contracting procedures
* $Revision: 5
5
$
* $Revision: 5
6
$
*
*****************************************************************************/
...
...
@@ -115,12 +115,11 @@ acpi_ns_one_complete_parse (
/* Create and init a Root Node */
parse_root
=
acpi_ps_
alloc_op
(
AML_SCOPE_OP
);
parse_root
=
acpi_ps_
create_scope_op
(
);
if
(
!
parse_root
)
{
return_ACPI_STATUS
(
AE_NO_MEMORY
);
}
parse_root
->
named
.
name
=
ACPI_ROOT_NAME
;
/* Create and initialize a new walk state */
...
...
drivers/acpi/namespace/nsnames.c
View file @
8afca009
/*******************************************************************************
*
* Module Name: nsnames - Name manipulation and search
* $Revision: 7
7
$
* $Revision: 7
8
$
*
******************************************************************************/
...
...
@@ -179,7 +179,7 @@ acpi_ns_get_pathname_length (
size
=
0
;
next_node
=
node
;
while
(
next_node
!=
acpi_gbl_root_node
)
{
while
(
next_node
&&
(
next_node
!=
acpi_gbl_root_node
)
)
{
size
+=
PATH_SEGMENT_LENGTH
;
next_node
=
acpi_ns_get_parent_node
(
next_node
);
}
...
...
drivers/acpi/parser/psparse.c
View file @
8afca009
/******************************************************************************
*
* Module Name: psparse - Parser top level AML parse routines
* $Revision: 12
7
$
* $Revision: 12
8
$
*
*****************************************************************************/
...
...
@@ -581,6 +581,10 @@ acpi_ps_parse_loop (
pre_op
.
common
.
value
.
arg
=
NULL
;
pre_op
.
common
.
aml_opcode
=
walk_state
->
opcode
;
/*
* Get and append arguments until we find the node that contains
* the name (the type ARGP_NAME).
*/
while
(
GET_CURRENT_ARG_TYPE
(
walk_state
->
arg_types
)
!=
ARGP_NAME
)
{
arg
=
acpi_ps_get_next_arg
(
parser_state
,
GET_CURRENT_ARG_TYPE
(
walk_state
->
arg_types
),
...
...
drivers/acpi/parser/psutils.c
View file @
8afca009
/******************************************************************************
*
* Module Name: psutils - Parser miscellaneous utilities (Parser only)
* $Revision: 5
1
$
* $Revision: 5
2
$
*
*****************************************************************************/
...
...
@@ -27,11 +27,42 @@
#include "acpi.h"
#include "acparser.h"
#include "amlcode.h"
#include "acnamesp.h"
#define _COMPONENT ACPI_PARSER
ACPI_MODULE_NAME
(
"psutils"
)
/*******************************************************************************
*
* FUNCTION: Acpi_ps_create_scope_op
*
* PARAMETERS: None
*
* RETURN: Scope_op
*
* DESCRIPTION: Create a Scope and associated namepath op with the root name
*
******************************************************************************/
acpi_parse_object
*
acpi_ps_create_scope_op
(
void
)
{
acpi_parse_object
*
scope_op
;
scope_op
=
acpi_ps_alloc_op
(
AML_SCOPE_OP
);
if
(
!
scope_op
)
{
return
(
NULL
);
}
scope_op
->
named
.
name
=
ACPI_ROOT_NAME
;
return
(
scope_op
);
}
/*******************************************************************************
*
* FUNCTION: Acpi_ps_init_op
...
...
drivers/acpi/parser/psxface.c
View file @
8afca009
/******************************************************************************
*
* Module Name: psxface - Parser external interfaces
* $Revision: 6
4
$
* $Revision: 6
5
$
*
*****************************************************************************/
...
...
@@ -108,7 +108,7 @@ acpi_psx_execute (
/* Create and init a Root Node */
op
=
acpi_ps_
alloc_op
(
AML_SCOPE_OP
);
op
=
acpi_ps_
create_scope_op
(
);
if
(
!
op
)
{
return_ACPI_STATUS
(
AE_NO_MEMORY
);
}
...
...
@@ -149,7 +149,7 @@ acpi_psx_execute (
/* Create and init a Root Node */
op
=
acpi_ps_
alloc_op
(
AML_SCOPE_OP
);
op
=
acpi_ps_
create_scope_op
(
);
if
(
!
op
)
{
return_ACPI_STATUS
(
AE_NO_MEMORY
);
}
...
...
drivers/acpi/resources/rscreate.c
View file @
8afca009
/*******************************************************************************
*
* Module Name: rscreate - Create resource lists/tables
* $Revision: 5
7
$
* $Revision: 5
8
$
*
******************************************************************************/
...
...
@@ -39,7 +39,6 @@
*
* PARAMETERS: Byte_stream_buffer - Pointer to the resource byte stream
* Output_buffer - Pointer to the user's buffer
* Output_buffer_length - Pointer to the size of Output_buffer
*
* RETURN: Status - AE_OK if okay, else a valid acpi_status code
* If Output_buffer is not large enough, Output_buffer_length
...
...
@@ -116,7 +115,6 @@ acpi_rs_create_resource_list (
* PARAMETERS: Package_object - Pointer to an acpi_operand_object
* package
* Output_buffer - Pointer to the user's buffer
* Output_buffer_length - Size of Output_buffer
*
* RETURN: Status AE_OK if okay, else a valid acpi_status code.
* If the Output_buffer is too small, the error will be
...
...
drivers/acpi/resources/rsio.c
View file @
8afca009
/*******************************************************************************
*
* Module Name: rsio - IO and DMA resource descriptors
* $Revision: 2
0
$
* $Revision: 2
1
$
*
******************************************************************************/
...
...
@@ -410,6 +410,7 @@ acpi_rs_dma_resource (
if
(
i
==
0
)
{
/* Zero channels is invalid! */
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Found Zero DMA channels in resource list
\n
"
));
return_ACPI_STATUS
(
AE_BAD_DATA
);
}
output_struct
->
data
.
dma
.
number_of_channels
=
i
;
...
...
@@ -432,6 +433,7 @@ acpi_rs_dma_resource (
output_struct
->
data
.
dma
.
transfer
=
temp8
&
0x03
;
if
(
0x03
==
output_struct
->
data
.
dma
.
transfer
)
{
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Invalid DMA.Transfer preference (3)
\n
"
));
return_ACPI_STATUS
(
AE_BAD_DATA
);
}
...
...
drivers/acpi/resources/rsirq.c
View file @
8afca009
/*******************************************************************************
*
* Module Name: rsirq - IRQ resource descriptors
* $Revision: 2
8
$
* $Revision: 2
9
$
*
******************************************************************************/
...
...
@@ -99,6 +99,7 @@ acpi_rs_irq_resource (
if
(
i
==
0
)
{
/* Zero interrupts is invalid! */
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Found Zero interrupt levels in resource list
\n
"
));
return_ACPI_STATUS
(
AE_BAD_DATA
);
}
output_struct
->
data
.
irq
.
number_of_interrupts
=
i
;
...
...
@@ -133,6 +134,7 @@ acpi_rs_irq_resource (
* are allowed (ACPI spec v1.0b ection 6.4.2.1),
* so an error will occur if we reach this point
*/
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Invalid interrupt polarity/trigger in resource list
\n
"
));
return_ACPI_STATUS
(
AE_BAD_DATA
);
}
}
...
...
drivers/acpi/resources/rslist.c
View file @
8afca009
/*******************************************************************************
*
* Module Name: rslist - Linked list utilities
* $Revision: 3
0
$
* $Revision: 3
1
$
*
******************************************************************************/
...
...
@@ -471,6 +471,8 @@ acpi_rs_list_to_byte_stream (
* If we get here, everything is out of sync,
* so exit with an error
*/
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Invalid descriptor type (%X) in resource list
\n
"
,
linked_list
->
id
));
status
=
AE_BAD_DATA
;
break
;
...
...
drivers/acpi/tables/tbconvrt.c
View file @
8afca009
/******************************************************************************
*
* Module Name: tbconvrt - ACPI Table conversion utilities
* $Revision: 4
1
$
* $Revision: 4
2
$
*
*****************************************************************************/
...
...
@@ -90,8 +90,7 @@ acpi_tb_get_table_count (
acpi_status
acpi_tb_convert_to_xsdt
(
acpi_table_desc
*
table_info
,
u32
*
number_of_tables
)
acpi_table_desc
*
table_info
)
{
ACPI_SIZE
table_size
;
u32
i
;
...
...
@@ -101,13 +100,10 @@ acpi_tb_convert_to_xsdt (
ACPI_FUNCTION_ENTRY
();
/* Get the number of tables defined in the RSDT or XSDT */
*
number_of_tables
=
acpi_tb_get_table_count
(
acpi_gbl_RSDP
,
table_info
->
pointer
);
/* Compute size of the converted XSDT */
table_size
=
((
ACPI_SIZE
)
*
number_of_tables
*
sizeof
(
u64
))
+
sizeof
(
acpi_table_header
);
table_size
=
((
ACPI_SIZE
)
acpi_gbl_rsdt_table_count
*
sizeof
(
u64
))
+
sizeof
(
acpi_table_header
);
/* Allocate an XSDT */
...
...
@@ -123,7 +119,7 @@ acpi_tb_convert_to_xsdt (
/* Copy the table pointers */
for
(
i
=
0
;
i
<
*
number_of_tables
;
i
++
)
{
for
(
i
=
0
;
i
<
acpi_gbl_rsdt_table_count
;
i
++
)
{
if
(
acpi_gbl_RSDP
->
revision
<
2
)
{
ACPI_STORE_ADDRESS
(
new_table
->
table_offset_entry
[
i
],
((
RSDT_DESCRIPTOR_REV1
*
)
table_info
->
pointer
)
->
table_offset_entry
[
i
]);
...
...
drivers/acpi/tables/tbget.c
View file @
8afca009
This diff is collapsed.
Click to expand it.
drivers/acpi/tables/tbgetall.c
0 → 100644
View file @
8afca009
/******************************************************************************
*
* Module Name: tbgetall - Get all required ACPI tables
* $Revision: 1 $
*
*****************************************************************************/
/*
* Copyright (C) 2000 - 2002, R. Byron Moore
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "acpi.h"
#include "actables.h"
#define _COMPONENT ACPI_TABLES
ACPI_MODULE_NAME
(
"tbgetall"
)
/*******************************************************************************
*
* FUNCTION: Acpi_tb_get_primary_table
*
* PARAMETERS: Address - Physical address of table to retrieve
* *Table_info - Where the table info is returned
*
* RETURN: Status
*
* DESCRIPTION: Maps the physical address of table into a logical address
*
******************************************************************************/
acpi_status
acpi_tb_get_primary_table
(
ACPI_POINTER
*
address
,
acpi_table_desc
*
table_info
)
{
acpi_status
status
;
acpi_table_header
header
;
ACPI_FUNCTION_TRACE
(
"Tb_get_primary_table"
);
/* Ignore a NULL address in the RSDT */
if
(
!
address
->
pointer
.
value
)
{
return_ACPI_STATUS
(
AE_OK
);
}
/*
* Get the header in order to get signature and table size
*/
status
=
acpi_tb_get_table_header
(
address
,
&
header
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/* Clear the Table_info */
ACPI_MEMSET
(
table_info
,
0
,
sizeof
(
acpi_table_desc
));
/*
* Check the table signature and make sure it is recognized.
* Also checks the header checksum
*/
table_info
->
pointer
=
&
header
;
status
=
acpi_tb_recognize_table
(
table_info
,
ACPI_TABLE_PRIMARY
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/* Get the entire table */
status
=
acpi_tb_get_table_body
(
address
,
&
header
,
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/* Install the table */
status
=
acpi_tb_install_table
(
table_info
);
return_ACPI_STATUS
(
status
);
}
/*******************************************************************************
*
* FUNCTION: Acpi_tb_get_secondary_table
*
* PARAMETERS: Address - Physical address of table to retrieve
* *Table_info - Where the table info is returned
*
* RETURN: Status
*
* DESCRIPTION: Maps the physical address of table into a logical address
*
******************************************************************************/
acpi_status
acpi_tb_get_secondary_table
(
ACPI_POINTER
*
address
,
acpi_string
signature
,
acpi_table_desc
*
table_info
)
{
acpi_status
status
;
acpi_table_header
header
;
ACPI_FUNCTION_TRACE_STR
(
"Tb_get_secondary_table"
,
signature
);
/* Get the header in order to match the signature */
status
=
acpi_tb_get_table_header
(
address
,
&
header
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/* Signature must match request */
if
(
ACPI_STRNCMP
(
header
.
signature
,
signature
,
ACPI_NAME_SIZE
))
{
ACPI_REPORT_ERROR
((
"Incorrect table signature - wanted [%s] found [%4.4s]
\n
"
,
signature
,
header
.
signature
));
return_ACPI_STATUS
(
AE_BAD_SIGNATURE
);
}
/*
* Check the table signature and make sure it is recognized.
* Also checks the header checksum
*/
table_info
->
pointer
=
&
header
;
status
=
acpi_tb_recognize_table
(
table_info
,
ACPI_TABLE_SECONDARY
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/* Get the entire table */
status
=
acpi_tb_get_table_body
(
address
,
&
header
,
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/* Install the table */
status
=
acpi_tb_install_table
(
table_info
);
return_ACPI_STATUS
(
status
);
}
/*******************************************************************************
*
* FUNCTION: Acpi_tb_get_required_tables
*
* PARAMETERS: None
*
* RETURN: Status
*
* DESCRIPTION: Load and validate tables other than the RSDT. The RSDT must
* already be loaded and validated.
*
* Get the minimum set of ACPI tables, namely:
*
* 1) FADT (via RSDT in loop below)
* 2) FACS (via FADT)
* 3) DSDT (via FADT)
*
******************************************************************************/
acpi_status
acpi_tb_get_required_tables
(
void
)
{
acpi_status
status
=
AE_OK
;
u32
i
;
acpi_table_desc
table_info
;
ACPI_POINTER
address
;
ACPI_FUNCTION_TRACE
(
"Tb_get_required_tables"
);
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"%d ACPI tables in RSDT
\n
"
,
acpi_gbl_rsdt_table_count
));
address
.
pointer_type
=
acpi_gbl_table_flags
|
ACPI_LOGICAL_ADDRESSING
;
/*
* Loop through all table pointers found in RSDT.
* This will NOT include the FACS and DSDT - we must get
* them after the loop.
*
* The only tables we are interested in getting here is the FADT and
* any SSDTs.
*/
for
(
i
=
0
;
i
<
acpi_gbl_rsdt_table_count
;
i
++
)
{
/* Get the table addresss from the common internal XSDT */
address
.
pointer
.
value
=
ACPI_GET_ADDRESS
(
acpi_gbl_XSDT
->
table_offset_entry
[
i
]);
/*
* Get the tables needed by this subsystem (FADT and any SSDTs).
* NOTE: All other tables are completely ignored at this time.
*/
acpi_tb_get_primary_table
(
&
address
,
&
table_info
);
}
/* We must have a FADT to continue */
if
(
!
acpi_gbl_FADT
)
{
ACPI_REPORT_ERROR
((
"No FADT present in RSDT/XSDT
\n
"
));
return_ACPI_STATUS
(
AE_NO_ACPI_TABLES
);
}
/*
* Convert the FADT to a common format. This allows earlier revisions of the
* table to coexist with newer versions, using common access code.
*/
status
=
acpi_tb_convert_table_fadt
();
if
(
ACPI_FAILURE
(
status
))
{
ACPI_REPORT_ERROR
((
"Could not convert FADT to internal common format
\n
"
));
return_ACPI_STATUS
(
status
);
}
/*
* Get the FACS (Pointed to by the FADT)
*/
address
.
pointer
.
value
=
ACPI_GET_ADDRESS
(
acpi_gbl_FADT
->
Xfirmware_ctrl
);
status
=
acpi_tb_get_secondary_table
(
&
address
,
FACS_SIG
,
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
ACPI_REPORT_ERROR
((
"Could not get/install the FACS, %s
\n
"
,
acpi_format_exception
(
status
)));
return_ACPI_STATUS
(
status
);
}
/*
* Create the common FACS pointer table
* (Contains pointers to the original table)
*/
status
=
acpi_tb_build_common_facs
(
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/*
* Get/install the DSDT (Pointed to by the FADT)
*/
address
.
pointer
.
value
=
ACPI_GET_ADDRESS
(
acpi_gbl_FADT
->
Xdsdt
);
status
=
acpi_tb_get_secondary_table
(
&
address
,
DSDT_SIG
,
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
ACPI_REPORT_ERROR
((
"Could not get/install the DSDT
\n
"
));
return_ACPI_STATUS
(
status
);
}
/* Set Integer Width (32/64) based upon DSDT revision */
acpi_ut_set_integer_width
(
acpi_gbl_DSDT
->
revision
);
/* Dump the entire DSDT */
ACPI_DEBUG_PRINT
((
ACPI_DB_TABLES
,
"Hex dump of entire DSDT, size %d (0x%X), Integer width = %d
\n
"
,
acpi_gbl_DSDT
->
length
,
acpi_gbl_DSDT
->
length
,
acpi_gbl_integer_bit_width
));
ACPI_DUMP_BUFFER
((
u8
*
)
acpi_gbl_DSDT
,
acpi_gbl_DSDT
->
length
);
/* Always delete the RSDP mapping, we are done with it */
acpi_tb_delete_acpi_table
(
ACPI_TABLE_RSDP
);
return_ACPI_STATUS
(
status
);
}
drivers/acpi/tables/tbinstal.c
View file @
8afca009
/******************************************************************************
*
* Module Name: tbinstal - ACPI table installation and removal
* $Revision: 6
1
$
* $Revision: 6
2
$
*
*****************************************************************************/
...
...
@@ -49,7 +49,8 @@
acpi_status
acpi_tb_match_signature
(
NATIVE_CHAR
*
signature
,
acpi_table_desc
*
table_info
)
acpi_table_desc
*
table_info
,
u8
search_type
)
{
NATIVE_UINT
i
;
...
...
@@ -61,6 +62,10 @@ acpi_tb_match_signature (
* Search for a signature match among the known table types
*/
for
(
i
=
0
;
i
<
NUM_ACPI_TABLES
;
i
++
)
{
if
((
acpi_gbl_acpi_table_data
[
i
].
flags
&
ACPI_TABLE_TYPE_MASK
)
!=
search_type
)
{
continue
;
}
if
(
!
ACPI_STRNCMP
(
signature
,
acpi_gbl_acpi_table_data
[
i
].
signature
,
acpi_gbl_acpi_table_data
[
i
].
sig_length
))
{
/* Found a signature match, return index if requested */
...
...
@@ -69,13 +74,18 @@ acpi_tb_match_signature (
table_info
->
type
=
(
u8
)
i
;
}
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"ACPI Signature match %4.4s
\n
"
,
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"Table [%4.4s] matched and is a required ACPI table
\n
"
,
(
char
*
)
acpi_gbl_acpi_table_data
[
i
].
signature
));
return_ACPI_STATUS
(
AE_OK
);
}
}
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"Table [%4.4s] is not a required ACPI table - ignored
\n
"
,
(
char
*
)
signature
));
return_ACPI_STATUS
(
AE_TABLE_NOT_SUPPORTED
);
}
...
...
@@ -84,7 +94,7 @@ acpi_tb_match_signature (
*
* FUNCTION: Acpi_tb_install_table
*
* PARAMETERS: Table_info - Return value from Acpi_tb_get_table
* PARAMETERS: Table_info - Return value from Acpi_tb_get_table
_body
*
* RETURN: Status
*
...
...
@@ -103,25 +113,22 @@ acpi_tb_install_table (
ACPI_FUNCTION_TRACE
(
"Tb_install_table"
);
/*
* Check the table signature and make sure it is recognized
* Also checks the header checksum
*/
status
=
acpi_tb_recognize_table
(
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/* Lock tables while installing */
status
=
acpi_ut_acquire_mutex
(
ACPI_MTX_TABLES
);
if
(
ACPI_FAILURE
(
status
))
{
ACPI_REPORT_ERROR
((
"Could not acquire table mutex for [%4.4s], %s
\n
"
,
table_info
->
pointer
->
signature
,
acpi_format_exception
(
status
)));
return_ACPI_STATUS
(
status
);
}
/* Install the table into the global data structure */
status
=
acpi_tb_init_table_descriptor
(
table_info
->
type
,
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
ACPI_REPORT_ERROR
((
"Could not install ACPI table [%s], %s
\n
"
,
table_info
->
pointer
->
signature
,
acpi_format_exception
(
status
)));
}
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"%s located at %p
\n
"
,
acpi_gbl_acpi_table_data
[
table_info
->
type
].
name
,
table_info
->
pointer
));
...
...
@@ -135,7 +142,7 @@ acpi_tb_install_table (
*
* FUNCTION: Acpi_tb_recognize_table
*
* PARAMETERS: Table_info - Return value from Acpi_tb_get_table
* PARAMETERS: Table_info - Return value from Acpi_tb_get_table
_body
*
* RETURN: Status
*
...
...
@@ -153,7 +160,8 @@ acpi_tb_install_table (
acpi_status
acpi_tb_recognize_table
(
acpi_table_desc
*
table_info
)
acpi_table_desc
*
table_info
,
u8
search_type
)
{
acpi_table_header
*
table_header
;
acpi_status
status
;
...
...
@@ -177,7 +185,7 @@ acpi_tb_recognize_table (
* This can be any one of many valid ACPI tables, it just isn't one of
* the tables that is consumed by the core subsystem
*/
status
=
acpi_tb_match_signature
(
table_header
->
signature
,
table_info
);
status
=
acpi_tb_match_signature
(
table_header
->
signature
,
table_info
,
search_type
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
...
...
@@ -191,22 +199,6 @@ acpi_tb_recognize_table (
table_info
->
length
=
(
ACPI_SIZE
)
table_header
->
length
;
/*
* Validate checksum for _most_ tables,
* even the ones whose signature we don't recognize
*/
if
(
table_info
->
type
!=
ACPI_TABLE_FACS
)
{
status
=
acpi_tb_verify_table_checksum
(
table_header
);
#if (!ACPI_CHECKSUM_ABORT)
if
(
ACPI_FAILURE
(
status
))
{
/* Ignore the error if configuration says so */
status
=
AE_OK
;
}
#endif
}
return_ACPI_STATUS
(
status
);
}
...
...
drivers/acpi/tables/tbrsdt.c
0 → 100644
View file @
8afca009
/******************************************************************************
*
* Module Name: tbrsdt - ACPI RSDT table utilities
* $Revision: 1 $
*
*****************************************************************************/
/*
* Copyright (C) 2000 - 2002, R. Byron Moore
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "acpi.h"
#include "actables.h"
#define _COMPONENT ACPI_TABLES
ACPI_MODULE_NAME
(
"tbrsdt"
)
/*******************************************************************************
*
* FUNCTION: Acpi_tb_verify_rsdp
*
* PARAMETERS: Address - RSDP (Pointer to RSDT)
*
* RETURN: Status
*
* DESCRIPTION: Load and validate the RSDP (ptr) and RSDT (table)
*
******************************************************************************/
acpi_status
acpi_tb_verify_rsdp
(
ACPI_POINTER
*
address
)
{
acpi_table_desc
table_info
;
acpi_status
status
;
RSDP_DESCRIPTOR
*
rsdp
;
ACPI_FUNCTION_TRACE
(
"Tb_verify_rsdp"
);
switch
(
address
->
pointer_type
)
{
case
ACPI_LOGICAL_POINTER
:
rsdp
=
address
->
pointer
.
logical
;
break
;
case
ACPI_PHYSICAL_POINTER
:
/*
* Obtain access to the RSDP structure
*/
status
=
acpi_os_map_memory
(
address
->
pointer
.
physical
,
sizeof
(
RSDP_DESCRIPTOR
),
(
void
**
)
&
rsdp
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
break
;
default:
return_ACPI_STATUS
(
AE_BAD_PARAMETER
);
}
/*
* The signature and checksum must both be correct
*/
if
(
ACPI_STRNCMP
((
NATIVE_CHAR
*
)
rsdp
,
RSDP_SIG
,
sizeof
(
RSDP_SIG
)
-
1
)
!=
0
)
{
/* Nope, BAD Signature */
status
=
AE_BAD_SIGNATURE
;
goto
cleanup
;
}
/* Check the standard checksum */
if
(
acpi_tb_checksum
(
rsdp
,
ACPI_RSDP_CHECKSUM_LENGTH
)
!=
0
)
{
status
=
AE_BAD_CHECKSUM
;
goto
cleanup
;
}
/* Check extended checksum if table version >= 2 */
if
(
rsdp
->
revision
>=
2
)
{
if
(
acpi_tb_checksum
(
rsdp
,
ACPI_RSDP_XCHECKSUM_LENGTH
)
!=
0
)
{
status
=
AE_BAD_CHECKSUM
;
goto
cleanup
;
}
}
/* The RSDP supplied is OK */
table_info
.
pointer
=
ACPI_CAST_PTR
(
acpi_table_header
,
rsdp
);
table_info
.
length
=
sizeof
(
RSDP_DESCRIPTOR
);
table_info
.
allocation
=
ACPI_MEM_MAPPED
;
table_info
.
base_pointer
=
rsdp
;
/* Save the table pointers and allocation info */
status
=
acpi_tb_init_table_descriptor
(
ACPI_TABLE_RSDP
,
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
goto
cleanup
;
}
/* Save the RSDP in a global for easy access */
acpi_gbl_RSDP
=
ACPI_CAST_PTR
(
RSDP_DESCRIPTOR
,
table_info
.
pointer
);
return_ACPI_STATUS
(
status
);
/* Error exit */
cleanup:
if
(
acpi_gbl_table_flags
&
ACPI_PHYSICAL_POINTER
)
{
acpi_os_unmap_memory
(
rsdp
,
sizeof
(
RSDP_DESCRIPTOR
));
}
return_ACPI_STATUS
(
status
);
}
/*******************************************************************************
*
* FUNCTION: Acpi_tb_get_rsdt_address
*
* PARAMETERS: None
*
* RETURN: RSDT physical address
*
* DESCRIPTION: Extract the address of the RSDT or XSDT, depending on the
* version of the RSDP
*
******************************************************************************/
void
acpi_tb_get_rsdt_address
(
ACPI_POINTER
*
out_address
)
{
ACPI_FUNCTION_ENTRY
();
out_address
->
pointer_type
=
acpi_gbl_table_flags
|
ACPI_LOGICAL_ADDRESSING
;
/*
* For RSDP revision 0 or 1, we use the RSDT.
* For RSDP revision 2 (and above), we use the XSDT
*/
if
(
acpi_gbl_RSDP
->
revision
<
2
)
{
out_address
->
pointer
.
value
=
acpi_gbl_RSDP
->
rsdt_physical_address
;
}
else
{
out_address
->
pointer
.
value
=
ACPI_GET_ADDRESS
(
acpi_gbl_RSDP
->
xsdt_physical_address
);
}
}
/*******************************************************************************
*
* FUNCTION: Acpi_tb_validate_rsdt
*
* PARAMETERS: Table_ptr - Addressable pointer to the RSDT.
*
* RETURN: Status
*
* DESCRIPTION: Validate signature for the RSDT or XSDT
*
******************************************************************************/
acpi_status
acpi_tb_validate_rsdt
(
acpi_table_header
*
table_ptr
)
{
int
no_match
;
ACPI_FUNCTION_NAME
(
"Tb_validate_rsdt"
);
/*
* For RSDP revision 0 or 1, we use the RSDT.
* For RSDP revision 2 and above, we use the XSDT
*/
if
(
acpi_gbl_RSDP
->
revision
<
2
)
{
no_match
=
ACPI_STRNCMP
((
char
*
)
table_ptr
,
RSDT_SIG
,
sizeof
(
RSDT_SIG
)
-
1
);
}
else
{
no_match
=
ACPI_STRNCMP
((
char
*
)
table_ptr
,
XSDT_SIG
,
sizeof
(
XSDT_SIG
)
-
1
);
}
if
(
no_match
)
{
/* Invalid RSDT or XSDT signature */
ACPI_REPORT_ERROR
((
"Invalid signature where RSDP indicates RSDT/XSDT should be located
\n
"
));
ACPI_DUMP_BUFFER
(
acpi_gbl_RSDP
,
20
);
ACPI_DEBUG_PRINT_RAW
((
ACPI_DB_ERROR
,
"RSDT/XSDT signature at %X (%p) is invalid
\n
"
,
acpi_gbl_RSDP
->
rsdt_physical_address
,
(
void
*
)
(
NATIVE_UINT
)
acpi_gbl_RSDP
->
rsdt_physical_address
));
return
(
AE_BAD_SIGNATURE
);
}
return
(
AE_OK
);
}
/*******************************************************************************
*
* FUNCTION: Acpi_tb_get_table_rsdt
*
* PARAMETERS: None
*
* RETURN: Status
*
* DESCRIPTION: Load and validate the RSDP (ptr) and RSDT (table)
*
******************************************************************************/
acpi_status
acpi_tb_get_table_rsdt
(
void
)
{
acpi_table_desc
table_info
;
acpi_status
status
;
ACPI_POINTER
address
;
ACPI_FUNCTION_TRACE
(
"Tb_get_table_rsdt"
);
/* Get the RSDT/XSDT via the RSDP */
acpi_tb_get_rsdt_address
(
&
address
);
status
=
acpi_tb_get_table
(
&
address
,
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
ACPI_DEBUG_PRINT
((
ACPI_DB_ERROR
,
"Could not get the RSDT/XSDT, %s
\n
"
,
acpi_format_exception
(
status
)));
return_ACPI_STATUS
(
status
);
}
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"RSDP located at %p, points to RSDT physical=%8.8X%8.8X
\n
"
,
acpi_gbl_RSDP
,
ACPI_HIDWORD
(
address
.
pointer
.
value
),
ACPI_LODWORD
(
address
.
pointer
.
value
)));
/* Check the RSDT or XSDT signature */
status
=
acpi_tb_validate_rsdt
(
table_info
.
pointer
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/*
* Valid RSDT signature, verify the checksum. If it fails, just
* print a warning and ignore it.
*/
status
=
acpi_tb_verify_table_checksum
(
table_info
.
pointer
);
/* Get the number of tables defined in the RSDT or XSDT */
acpi_gbl_rsdt_table_count
=
acpi_tb_get_table_count
(
acpi_gbl_RSDP
,
table_info
.
pointer
);
/* Convert and/or copy to an XSDT structure */
status
=
acpi_tb_convert_to_xsdt
(
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
/* Save the table pointers and allocation info */
status
=
acpi_tb_init_table_descriptor
(
ACPI_TABLE_XSDT
,
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
acpi_gbl_XSDT
=
(
xsdt_descriptor
*
)
table_info
.
pointer
;
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"XSDT located at %p
\n
"
,
acpi_gbl_XSDT
));
return_ACPI_STATUS
(
status
);
}
drivers/acpi/tables/tbutils.c
View file @
8afca009
/******************************************************************************
*
* Module Name: tbutils - Table manipulation utilities
* $Revision: 5
4
$
* $Revision: 5
5
$
*
*****************************************************************************/
...
...
@@ -121,7 +121,8 @@ acpi_tb_validate_table_header (
"Table signature at %p [%p] has invalid characters
\n
"
,
table_header
,
&
signature
));
ACPI_REPORT_WARNING
((
"Invalid table signature found: [%4.4s]
\n
"
,
(
char
*
)
&
signature
));
ACPI_REPORT_WARNING
((
"Invalid table signature found: [%4.4s]
\n
"
,
(
char
*
)
&
signature
));
ACPI_DUMP_BUFFER
(
table_header
,
sizeof
(
acpi_table_header
));
return
(
AE_BAD_SIGNATURE
);
}
...
...
@@ -133,7 +134,8 @@ acpi_tb_validate_table_header (
"Invalid length in table header %p name %4.4s
\n
"
,
table_header
,
(
char
*
)
&
signature
));
ACPI_REPORT_WARNING
((
"Invalid table header length (0x%X) found
\n
"
,
table_header
->
length
));
ACPI_REPORT_WARNING
((
"Invalid table header length (0x%X) found
\n
"
,
table_header
->
length
));
ACPI_DUMP_BUFFER
(
table_header
,
sizeof
(
acpi_table_header
));
return
(
AE_BAD_HEADER
);
}
...
...
@@ -142,91 +144,6 @@ acpi_tb_validate_table_header (
}
/*******************************************************************************
*
* FUNCTION: Acpi_tb_map_acpi_table
*
* PARAMETERS: Physical_address - Physical address of table to map
* *Size - Size of the table. If zero, the size
* from the table header is used.
* Actual size is returned here.
* **Logical_address - Logical address of mapped table
*
* RETURN: Logical address of the mapped table.
*
* DESCRIPTION: Maps the physical address of table into a logical address
*
******************************************************************************/
acpi_status
acpi_tb_map_acpi_table
(
ACPI_PHYSICAL_ADDRESS
physical_address
,
ACPI_SIZE
*
size
,
acpi_table_header
**
logical_address
)
{
acpi_table_header
*
table
;
ACPI_SIZE
table_size
=
*
size
;
acpi_status
status
=
AE_OK
;
ACPI_FUNCTION_NAME
(
"Tb_map_acpi_table"
);
/* If size is zero, look at the table header to get the actual size */
if
((
*
size
)
==
0
)
{
/* Get the table header so we can extract the table length */
status
=
acpi_os_map_memory
(
physical_address
,
sizeof
(
acpi_table_header
),
(
void
**
)
&
table
);
if
(
ACPI_FAILURE
(
status
))
{
return
(
status
);
}
/* Extract the full table length before we delete the mapping */
table_size
=
(
ACPI_SIZE
)
table
->
length
;
#if 0
/* We don't want to validate the header here. */
/*
* Validate the header and delete the mapping.
* We will create a mapping for the full table below.
*/
status = acpi_tb_validate_table_header (table);
#endif
/* Always unmap the memory for the header */
acpi_os_unmap_memory
(
table
,
sizeof
(
acpi_table_header
));
#if 0
/* Exit if header invalid */
if (ACPI_FAILURE (status)) {
return (status);
}
#endif
}
/* Map the physical memory for the correct length */
status
=
acpi_os_map_memory
(
physical_address
,
table_size
,
(
void
**
)
&
table
);
if
(
ACPI_FAILURE
(
status
))
{
return
(
status
);
}
ACPI_DEBUG_PRINT
((
ACPI_DB_INFO
,
"Mapped memory for ACPI table, length=%d(%X) at %p
\n
"
,
table_size
,
table_size
,
table
));
*
size
=
table_size
;
*
logical_address
=
table
;
return
(
status
);
}
/*******************************************************************************
*
* FUNCTION: Acpi_tb_verify_table_checksum
...
...
drivers/acpi/tables/tbxface.c
View file @
8afca009
...
...
@@ -2,7 +2,7 @@
*
* Module Name: tbxface - Public interfaces to the ACPI subsystem
* ACPI table oriented interfaces
* $Revision: 5
7
$
* $Revision: 5
8
$
*
*****************************************************************************/
...
...
@@ -52,7 +52,6 @@ acpi_load_tables (void)
{
ACPI_POINTER
rsdp_address
;
acpi_status
status
;
u32
number_of_tables
=
0
;
ACPI_FUNCTION_TRACE
(
"Acpi_load_tables"
);
...
...
@@ -81,16 +80,16 @@ acpi_load_tables (void)
/* Get the RSDT via the RSDP */
status
=
acpi_tb_get_table_rsdt
(
&
number_of_tables
);
status
=
acpi_tb_get_table_rsdt
();
if
(
ACPI_FAILURE
(
status
))
{
ACPI_REPORT_ERROR
((
"Acpi_load_tables: Could not load RSDT: %s
\n
"
,
acpi_format_exception
(
status
)));
goto
error_exit
;
}
/* Now get the
rest of the tables
*/
/* Now get the
tables needed by this subsystem (FADT, DSDT, etc.)
*/
status
=
acpi_tb_get_
all_tables
(
number_of_tables
);
status
=
acpi_tb_get_
required_tables
(
);
if
(
ACPI_FAILURE
(
status
))
{
ACPI_REPORT_ERROR
((
"Acpi_load_tables: Error getting required tables (DSDT/FADT/FACS): %s
\n
"
,
acpi_format_exception
(
status
)));
...
...
@@ -154,10 +153,10 @@ acpi_load_table (
/* Copy the table to a local buffer */
address
.
pointer_type
=
ACPI_LOGICAL_POINTER
;
address
.
pointer_type
=
ACPI_LOGICAL_POINTER
|
ACPI_LOGICAL_ADDRESSING
;
address
.
pointer
.
logical
=
table_ptr
;
status
=
acpi_tb_get_table
(
&
address
,
&
table_info
);
status
=
acpi_tb_get_table
_body
(
&
address
,
table_ptr
,
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
...
...
@@ -166,7 +165,7 @@ acpi_load_table (
status
=
acpi_tb_install_table
(
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
/* Free table allocated by Acpi_tb_get_table */
/* Free table allocated by Acpi_tb_get_table
_body
*/
acpi_tb_delete_single_table
(
&
table_info
);
return_ACPI_STATUS
(
status
);
...
...
drivers/acpi/tables/tbxfroot.c
View file @
8afca009
/******************************************************************************
*
* Module Name: tbxfroot - Find the root ACPI table (RSDT)
* $Revision: 6
3
$
* $Revision: 6
4
$
*
*****************************************************************************/
...
...
@@ -63,9 +63,9 @@ acpi_tb_find_table (
/* Validate string lengths */
if
((
ACPI_STRLEN
(
signature
)
>
4
)
||
(
ACPI_STRLEN
(
oem_id
)
>
6
)
||
(
ACPI_STRLEN
(
oem_table_id
)
>
8
))
{
if
((
ACPI_STRLEN
(
signature
)
>
ACPI_NAME_SIZE
)
||
(
ACPI_STRLEN
(
oem_id
)
>
sizeof
(
table
->
oem_id
)
)
||
(
ACPI_STRLEN
(
oem_table_id
)
>
sizeof
(
table
->
oem_table_id
)
))
{
return_ACPI_STATUS
(
AE_AML_STRING_LIMIT
);
}
...
...
@@ -96,7 +96,7 @@ acpi_tb_find_table (
* PARAMETERS: Signature - Any ACPI table signature
* Instance - the non zero instance of the table, allows
* support for multiple tables of the same type
* Flags -
0:
Physical/Virtual support
* Flags - Physical/Virtual support
* Ret_buffer - pointer to a structure containing a buffer to
* receive the table
*
...
...
@@ -120,11 +120,10 @@ acpi_get_firmware_table (
{
ACPI_POINTER
rsdp_address
;
ACPI_POINTER
address
;
acpi_table_header
*
rsdt_ptr
=
NULL
;
acpi_table_header
*
table_ptr
;
acpi_status
status
;
ACPI_SIZE
rsdt_size
=
0
;
ACPI_SIZE
table_size
;
acpi_table_header
header
;
acpi_table_desc
table_info
;
acpi_table_desc
rsdt_info
;
u32
table_count
;
u32
i
;
u32
j
;
...
...
@@ -147,6 +146,8 @@ acpi_get_firmware_table (
return_ACPI_STATUS
(
AE_BAD_PARAMETER
);
}
rsdt_info
.
pointer
=
NULL
;
if
(
!
acpi_gbl_RSDP
)
{
/* Get the RSDP */
...
...
@@ -175,15 +176,13 @@ acpi_get_firmware_table (
if
(
ACPI_STRNCMP
((
NATIVE_CHAR
*
)
acpi_gbl_RSDP
,
RSDP_SIG
,
sizeof
(
RSDP_SIG
)
-
1
)
!=
0
)
{
/* Nope, BAD Signature */
status
=
AE_BAD_SIGNATURE
;
goto
cleanup
;
return_ACPI_STATUS
(
AE_BAD_SIGNATURE
);
}
if
(
acpi_tb_checksum
(
acpi_gbl_RSDP
,
ACPI_RSDP_CHECKSUM_LENGTH
)
!=
0
)
{
/* Nope, BAD Checksum */
status
=
AE_BAD_CHECKSUM
;
goto
cleanup
;
return_ACPI_STATUS
(
AE_BAD_CHECKSUM
);
}
}
...
...
@@ -197,63 +196,65 @@ acpi_get_firmware_table (
ACPI_HIDWORD
(
address
.
pointer
.
value
),
ACPI_LODWORD
(
address
.
pointer
.
value
)));
status
=
acpi_tb_get_table_pointer
(
&
address
,
flags
,
&
rsdt_size
,
&
rsdt_ptr
);
/* Insert Processor_mode flags */
address
.
pointer_type
|=
flags
;
status
=
acpi_tb_get_table
(
&
address
,
&
rsdt_info
);
if
(
ACPI_FAILURE
(
status
))
{
return_ACPI_STATUS
(
status
);
}
status
=
acpi_tb_validate_rsdt
(
rsdt_
pt
r
);
status
=
acpi_tb_validate_rsdt
(
rsdt_
info
.
pointe
r
);
if
(
ACPI_FAILURE
(
status
))
{
goto
cleanup
;
}
/* Get the number of table pointers within the RSDT */
table_count
=
acpi_tb_get_table_count
(
acpi_gbl_RSDP
,
rsdt_
pt
r
);
table_count
=
acpi_tb_get_table_count
(
acpi_gbl_RSDP
,
rsdt_
info
.
pointe
r
);
address
.
pointer_type
=
acpi_gbl_table_flags
|
flags
;
/*
* Search the RSDT/XSDT for the correct instance of the
* requested table
*/
for
(
i
=
0
,
j
=
0
;
i
<
table_count
;
i
++
)
{
/* Get the next table pointer */
/* Get the next table pointer
, handle RSDT vs. XSDT
*/
address
.
pointer_type
=
acpi_gbl_table_flags
;
if
(
acpi_gbl_RSDP
->
revision
<
2
)
{
address
.
pointer
.
value
=
((
RSDT_DESCRIPTOR
*
)
rsdt_
pt
r
)
->
table_offset_entry
[
i
];
address
.
pointer
.
value
=
((
RSDT_DESCRIPTOR
*
)
rsdt_
info
.
pointe
r
)
->
table_offset_entry
[
i
];
}
else
{
address
.
pointer
.
value
=
ACPI_GET_ADDRESS
(
((
xsdt_descriptor
*
)
rsdt_
pt
r
)
->
table_offset_entry
[
i
]);
((
xsdt_descriptor
*
)
rsdt_
info
.
pointe
r
)
->
table_offset_entry
[
i
]);
}
/* Get
addressibility if necessary
*/
/* Get
the table header
*/
status
=
acpi_tb_get_table_
pointer
(
&
address
,
flags
,
&
table_size
,
&
table_pt
r
);
status
=
acpi_tb_get_table_
header
(
&
address
,
&
heade
r
);
if
(
ACPI_FAILURE
(
status
))
{
goto
cleanup
;
}
/* Compare table signatures and table instance */
if
(
!
ACPI_STRNCMP
(
(
char
*
)
table_ptr
,
signature
,
ACPI_STRLEN
(
signature
)
))
{
if
(
!
ACPI_STRNCMP
(
header
.
signature
,
signature
,
ACPI_NAME_SIZE
))
{
/* An instance of the table was found */
j
++
;
if
(
j
>=
instance
)
{
/* Found the correct instance */
/* Found the correct instance
, get the entire table
*/
*
table_pointer
=
table_ptr
;
status
=
acpi_tb_get_table_body
(
&
address
,
&
header
,
&
table_info
);
if
(
ACPI_FAILURE
(
status
))
{
goto
cleanup
;
}
}
/* Delete table mapping if using virtual addressing */
if
((
table_size
)
&&
((
flags
&
ACPI_MEMORY_MODE
)
==
ACPI_LOGICAL_ADDRESSING
))
{
acpi_os_unmap_memory
(
table_ptr
,
table_size
);
*
table_pointer
=
table_info
.
pointer
;
goto
cleanup
;
}
}
}
...
...
@@ -263,9 +264,7 @@ acpi_get_firmware_table (
cleanup:
if
(
rsdt_size
)
{
acpi_os_unmap_memory
(
rsdt_ptr
,
rsdt_size
);
}
acpi_os_unmap_memory
(
rsdt_info
.
pointer
,
(
ACPI_SIZE
)
rsdt_info
.
pointer
->
length
);
return_ACPI_STATUS
(
status
);
}
...
...
drivers/acpi/utilities/utcopy.c
View file @
8afca009
/******************************************************************************
*
* Module Name: utcopy - Internal to external object translation utilities
* $Revision: 10
1
$
* $Revision: 10
3
$
*
*****************************************************************************/
...
...
@@ -286,19 +286,21 @@ acpi_ut_copy_ipackage_to_epackage (
/*
* Free space begins right after the first package
*/
info
.
length
=
0
;
info
.
length
=
ACPI_ROUND_UP_TO_NATIVE_WORD
(
sizeof
(
acpi_object
));
info
.
free_space
=
buffer
+
ACPI_ROUND_UP_TO_NATIVE_WORD
(
sizeof
(
acpi_object
));
info
.
object_space
=
0
;
info
.
num_packages
=
1
;
info
.
free_space
=
buffer
+
ACPI_ROUND_UP_TO_NATIVE_WORD
(
sizeof
(
acpi_object
));
external_object
->
type
=
ACPI_GET_OBJECT_TYPE
(
internal_object
);
external_object
->
package
.
count
=
internal_object
->
package
.
count
;
external_object
->
package
.
elements
=
ACPI_CAST_PTR
(
acpi_object
,
info
.
free_space
);
/*
*
Build
an array of ACPI_OBJECTS in the buffer
*
Leave room for
an array of ACPI_OBJECTS in the buffer
* and move the free space past it
*/
info
.
length
+=
(
ACPI_SIZE
)
external_object
->
package
.
count
*
ACPI_ROUND_UP_TO_NATIVE_WORD
(
sizeof
(
acpi_object
));
info
.
free_space
+=
external_object
->
package
.
count
*
ACPI_ROUND_UP_TO_NATIVE_WORD
(
sizeof
(
acpi_object
));
...
...
@@ -517,7 +519,6 @@ acpi_ut_copy_epackage_to_ipackage (
external_object
->
package
.
count
=
internal_object
->
package
.
count
;
external_object
->
package
.
elements
=
(
acpi_object
*
)
free_space
;
/*
* Build an array of ACPI_OBJECTS in the buffer
* and move the free space past it
...
...
drivers/acpi/utilities/utglobal.c
View file @
8afca009
/******************************************************************************
*
* Module Name: utglobal - Global variables for the ACPI subsystem
* $Revision: 16
3
$
* $Revision: 16
4
$
*
*****************************************************************************/
...
...
@@ -286,15 +286,15 @@ acpi_table_desc acpi_gbl_acpi_tables[NUM_ACPI_TABLES];
ACPI_TABLE_SUPPORT
acpi_gbl_acpi_table_data
[
NUM_ACPI_TABLES
]
=
{
/*********** Name, Signature, Global typed pointer Signature size, How many allowed?, Contains valid AML? */
/* RSDP 0 */
{
RSDP_NAME
,
RSDP_SIG
,
NULL
,
sizeof
(
RSDP_SIG
)
-
1
,
ACPI_TABLE_SINGLE
},
/* DSDT 1 */
{
DSDT_SIG
,
DSDT_SIG
,
(
void
**
)
&
acpi_gbl_DSDT
,
sizeof
(
DSDT_SIG
)
-
1
,
ACPI_TABLE_SINGLE
|
ACPI_TABLE_EXECUTABLE
},
/* FADT 2 */
{
FADT_SIG
,
FADT_SIG
,
(
void
**
)
&
acpi_gbl_FADT
,
sizeof
(
FADT_SIG
)
-
1
,
ACPI_TABLE_SINGLE
},
/* FACS 3 */
{
FACS_SIG
,
FACS_SIG
,
(
void
**
)
&
acpi_gbl_FACS
,
sizeof
(
FACS_SIG
)
-
1
,
ACPI_TABLE_SINGLE
},
/* PSDT 4 */
{
PSDT_SIG
,
PSDT_SIG
,
NULL
,
sizeof
(
PSDT_SIG
)
-
1
,
ACPI_TABLE_MULTIPLE
|
ACPI_TABLE_EXECUTABLE
},
/* SSDT 5 */
{
SSDT_SIG
,
SSDT_SIG
,
NULL
,
sizeof
(
SSDT_SIG
)
-
1
,
ACPI_TABLE_MULTIPLE
|
ACPI_TABLE_EXECUTABLE
},
/* XSDT 6 */
{
XSDT_SIG
,
XSDT_SIG
,
NULL
,
sizeof
(
RSDT_SIG
)
-
1
,
ACPI_TABLE_SINGLE
},
/*********** Name, Signature, Global typed pointer Signature size,
Type
How many allowed?, Contains valid AML? */
/* RSDP 0 */
{
RSDP_NAME
,
RSDP_SIG
,
NULL
,
sizeof
(
RSDP_SIG
)
-
1
,
ACPI_TABLE_
ROOT
|
ACPI_TABLE_
SINGLE
},
/* DSDT 1 */
{
DSDT_SIG
,
DSDT_SIG
,
(
void
**
)
&
acpi_gbl_DSDT
,
sizeof
(
DSDT_SIG
)
-
1
,
ACPI_TABLE_S
ECONDARY
|
ACPI_TABLE_S
INGLE
|
ACPI_TABLE_EXECUTABLE
},
/* FADT 2 */
{
FADT_SIG
,
FADT_SIG
,
(
void
**
)
&
acpi_gbl_FADT
,
sizeof
(
FADT_SIG
)
-
1
,
ACPI_TABLE_
PRIMARY
|
ACPI_TABLE_
SINGLE
},
/* FACS 3 */
{
FACS_SIG
,
FACS_SIG
,
(
void
**
)
&
acpi_gbl_FACS
,
sizeof
(
FACS_SIG
)
-
1
,
ACPI_TABLE_S
ECONDARY
|
ACPI_TABLE_S
INGLE
},
/* PSDT 4 */
{
PSDT_SIG
,
PSDT_SIG
,
NULL
,
sizeof
(
PSDT_SIG
)
-
1
,
ACPI_TABLE_
PRIMARY
|
ACPI_TABLE_
MULTIPLE
|
ACPI_TABLE_EXECUTABLE
},
/* SSDT 5 */
{
SSDT_SIG
,
SSDT_SIG
,
NULL
,
sizeof
(
SSDT_SIG
)
-
1
,
ACPI_TABLE_
PRIMARY
|
ACPI_TABLE_
MULTIPLE
|
ACPI_TABLE_EXECUTABLE
},
/* XSDT 6 */
{
XSDT_SIG
,
XSDT_SIG
,
NULL
,
sizeof
(
RSDT_SIG
)
-
1
,
ACPI_TABLE_
ROOT
|
ACPI_TABLE_
SINGLE
},
};
...
...
drivers/acpi/utilities/utxface.c
View file @
8afca009
/******************************************************************************
*
* Module Name: utxface - External interfaces for "global" ACPI functions
* $Revision: 9
6
$
* $Revision: 9
7
$
*
*****************************************************************************/
...
...
@@ -192,6 +192,31 @@ acpi_enable_subsystem (
}
}
return_ACPI_STATUS
(
status
);
}
/*******************************************************************************
*
* FUNCTION: Acpi_initialize_objects
*
* PARAMETERS: Flags - Init/enable Options
*
* RETURN: Status
*
* DESCRIPTION: Completes namespace initialization by initializing device
* objects and executing AML code for Regions, buffers, etc.
*
******************************************************************************/
acpi_status
acpi_initialize_objects
(
u32
flags
)
{
acpi_status
status
=
AE_OK
;
ACPI_FUNCTION_TRACE
(
"Acpi_initialize_objects"
);
/*
* Initialize all device objects in the namespace
* This runs the _STA and _INI methods.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment