xref: /aosp_15_r20/external/coreboot/src/cpu/power9/power9.c (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 #include <cpu/cpu.h>
4 #include <device/device.h>
5 
power9_cpu_init(struct device * dev)6 static void power9_cpu_init(struct device *dev)
7 {
8 }
9 
10 static struct device_operations cpu_dev_ops = {
11 	.init = power9_cpu_init,
12 };
13 
14 static const struct cpu_driver driver __cpu_driver = {
15 	.ops      = &cpu_dev_ops,
16 };
17 
18 struct chip_operations cpu_power8_qemu_ops = {
19 	.name = "POWER9 CPU",
20 };
21