mb/asus: Use 'Device()' instead of 'Processor()'
Processor() keyword is deprecated, use Device() instead. Change-Id: I162304bdef6562fd660c01fb8fc67037ebe8cfa5 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36304 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
4b0598c35a
commit
dac4497754
|
@ -22,17 +22,25 @@
|
|||
#include <arch/acpi.h>
|
||||
DefinitionBlock ("DSDT.AML", "DSDT", 0x01, OEM_ID, ACPI_TABLE_CREATOR, 0x00010001)
|
||||
{
|
||||
Scope (\_PR) {
|
||||
Processor(CPU0,0,0x808,0x06) {
|
||||
Scope (\_PR) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU1,1,0x0,0x0) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU2,2,0x0,0x0) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU3,3,0x0,0x0) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,17 +22,25 @@
|
|||
#include <arch/acpi.h>
|
||||
DefinitionBlock ("DSDT.AML", "DSDT", 0x01, OEM_ID, ACPI_TABLE_CREATOR, 0x00010001)
|
||||
{
|
||||
Scope (\_PR) {
|
||||
Processor(CPU0,0,0x808,0x06) {
|
||||
Scope (\_PR) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU1,1,0x0,0x0) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU2,2,0x0,0x0) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU3,3,0x0,0x0) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,39 +58,24 @@ DefinitionBlock (
|
|||
*
|
||||
*/
|
||||
Scope (\_PR) { /* define processor scope */
|
||||
Processor(
|
||||
CPU0, /* name space name */
|
||||
0, /* Unique number for this processor */
|
||||
0x808, /* PBLK system I/O address !hardcoded! */
|
||||
0x06 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU1, /* name space name */
|
||||
1, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU2, /* name space name */
|
||||
2, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU3, /* name space name */
|
||||
3, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
} /* End _PR scope */
|
||||
|
|
|
@ -22,17 +22,25 @@
|
|||
#include <arch/acpi.h>
|
||||
DefinitionBlock ("DSDT.AML", "DSDT", 0x01, OEM_ID, ACPI_TABLE_CREATOR, 0x00010001)
|
||||
{
|
||||
Scope (\_PR) {
|
||||
Processor(CPU0,0,0x808,0x06) {
|
||||
Scope (\_PR) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU1,1,0x0,0x0) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU2,2,0x0,0x0) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU3,3,0x0,0x0) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,39 +58,24 @@ DefinitionBlock (
|
|||
*
|
||||
*/
|
||||
Scope (\_PR) { /* define processor scope */
|
||||
Processor(
|
||||
CPU0, /* name space name */
|
||||
0, /* Unique number for this processor */
|
||||
0x808, /* PBLK system I/O address !hardcoded! */
|
||||
0x06 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU1, /* name space name */
|
||||
1, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU2, /* name space name */
|
||||
2, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU3, /* name space name */
|
||||
3, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
} /* End _PR scope */
|
||||
|
|
|
@ -22,17 +22,25 @@
|
|||
#include <arch/acpi.h>
|
||||
DefinitionBlock ("DSDT.AML", "DSDT", 0x01, OEM_ID, ACPI_TABLE_CREATOR, 0x00010001)
|
||||
{
|
||||
Scope (\_PR) {
|
||||
Processor(CPU0,0,0x808,0x06) {
|
||||
Scope (\_PR) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU1,1,0x0,0x0) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU2,2,0x0,0x0) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU3,3,0x0,0x0) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,39 +58,24 @@ DefinitionBlock (
|
|||
*
|
||||
*/
|
||||
Scope (\_PR) { /* define processor scope */
|
||||
Processor(
|
||||
CPU0, /* name space name */
|
||||
0, /* Unique number for this processor */
|
||||
0x808, /* PBLK system I/O address !hardcoded! */
|
||||
0x06 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU1, /* name space name */
|
||||
1, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU2, /* name space name */
|
||||
2, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU3, /* name space name */
|
||||
3, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
} /* End _PR scope */
|
||||
|
|
|
@ -22,17 +22,25 @@
|
|||
#include <arch/acpi.h>
|
||||
DefinitionBlock ("DSDT.AML", "DSDT", 0x01, OEM_ID, ACPI_TABLE_CREATOR, 0x00010001)
|
||||
{
|
||||
Scope (\_PR) {
|
||||
Processor(CPU0,0,0x808,0x06) {
|
||||
Scope (\_PR) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU1,1,0x0,0x0) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU2,2,0x0,0x0) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
Processor(CPU3,3,0x0,0x0) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "cpstate.asl"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,39 +58,24 @@ DefinitionBlock (
|
|||
*
|
||||
*/
|
||||
Scope (\_PR) { /* define processor scope */
|
||||
Processor(
|
||||
CPU0, /* name space name */
|
||||
0, /* Unique number for this processor */
|
||||
0x808, /* PBLK system I/O address !hardcoded! */
|
||||
0x06 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU0) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 0)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU1, /* name space name */
|
||||
1, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU1) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 1)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU2, /* name space name */
|
||||
2, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU2) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 2)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
|
||||
Processor(
|
||||
CPU3, /* name space name */
|
||||
3, /* Unique number for this processor */
|
||||
0x0000, /* PBLK system I/O address !hardcoded! */
|
||||
0x00 /* PBLKLEN for boot processor */
|
||||
) {
|
||||
Device (CPU3) {
|
||||
Name (_HID, "ACPI0007")
|
||||
Name (_UID, 3)
|
||||
#include "acpi/cpstate.asl"
|
||||
}
|
||||
} /* End _PR scope */
|
||||
|
|
Loading…
Reference in New Issue