soc/intel/alderlake: Add ADL-P 4+4 with 28W TDP
[coreboot.git] / src / cpu / qemu-power8 / qemu.c
blob2da3c9f9b357811629435f8ce73a9d1adf6c9556
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #include <cpu/cpu.h>
4 #include <device/device.h>
6 static void qemu_cpu_init(struct device *dev)
10 static struct device_operations cpu_dev_ops = {
11 .init = qemu_cpu_init,
14 static const struct cpu_device_id cpu_table[] = {
15 { 0, 0 },
18 static const struct cpu_driver driver __cpu_driver = {
19 .ops = &cpu_dev_ops,
20 .id_table = cpu_table,
23 struct chip_operations cpu_power8_qemu_ops = {
24 CHIP_NAME("QEMU POWER8 CPU")