cpu/amd/*/*/acpi/: Use 'Device()' instead of 'Processor()'

Processor() operator is deprecated, use Device() instead.

Found-by: ACPICA 20191018
Change-Id: I4541372a98f05d3e915c74bc28f41309754014e4
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36258
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/src/cpu/amd/agesa/family16kb/acpi/cpu.asl b/src/cpu/amd/agesa/family16kb/acpi/cpu.asl
index bc52b68..37eb58a 100644
--- a/src/cpu/amd/agesa/family16kb/acpi/cpu.asl
+++ b/src/cpu/amd/agesa/family16kb/acpi/cpu.asl
@@ -15,62 +15,44 @@
  * Processor Object
  *
  */
-Scope (\_PR) {		/* define processor scope */
-	Processor(
-		P000,		/* name space name */
-		0,			/* Unique number for this processor */
-		0x810,		/* PBLK system I/O address !hardcoded! */
-		0x06		/* PBLKLEN for boot processor */
-		) {
+Scope (\_PR) {/* define processor scope */
+	Device (P000) {
+	Name(_HID, "ACPI0007")
+	Name(_UID, 0)
 	}
 
-	Processor(
-		P001,		/* name space name */
-		1,			/* Unique number for this processor */
-		0x0810,		/* PBLK system I/O address !hardcoded! */
-		0x06		/* PBLKLEN for boot processor */
-		) {
+	Device (P001) {
+	Name(_HID, "ACPI0007")
+	Name(_UID, 1)
 	}
-	Processor(
-		P002,		/* name space name */
-		2,			/* Unique number for this processor */
-		0x0810,		/* PBLK system I/O address !hardcoded! */
-		0x06		/* PBLKLEN for boot processor */
-		) {
+
+	Device (P002) {
+	Name(_HID, "ACPI0007")
+	Name(_UID, 2)
 	}
-	Processor(
-		P003,		/* name space name */
-		3,			/* Unique number for this processor */
-		0x0810,		/* PBLK system I/O address !hardcoded! */
-		0x06		/* PBLKLEN for boot processor */
-		) {
+
+	Device (P003) {
+	Name(_HID, "ACPI0007")
+	Name(_UID, 3)
 	}
-	Processor(
-		P004,		/* name space name */
-		4,			/* Unique number for this processor */
-		0x0810,		/* PBLK system I/O address !hardcoded! */
-		0x06		/* PBLKLEN for boot processor */
-		) {
+
+	Device (P004) {
+	Name(_HID, "ACPI0007")
+	Name(_UID, 4)
 	}
-	Processor(
-		P005,		/* name space name */
-		5,			/* Unique number for this processor */
-		0x0810,		/* PBLK system I/O address !hardcoded! */
-		0x06		/* PBLKLEN for boot processor */
-		) {
+
+	Device (P005) {
+	Name(_HID, "ACPI0007")
+	Name(_UID, 5)
 	}
-	Processor(
-		P006,		/* name space name */
-		6,			/* Unique number for this processor */
-		0x0810,		/* PBLK system I/O address !hardcoded! */
-		0x06		/* PBLKLEN for boot processor */
-		) {
+
+	Device (P006) {
+	Name(_HID, "ACPI0007")
+	Name(_UID, 6)
 	}
-	Processor(
-		P007,		/* name space name */
-		7,			/* Unique number for this processor */
-		0x0810,		/* PBLK system I/O address !hardcoded! */
-		0x06		/* PBLKLEN for boot processor */
-		) {
+
+	Device (P007) {
+	Name(_HID, "ACPI0007")
+	Name(_UID, 7)
 	}
 } /* End _PR scope */