aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/power9/power9.c
blob: 4d68a5ffdc5e53bb778e4bb6d92cbf1619edb291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-or-later */

#include <cpu/cpu.h>
#include <device/device.h>

static void power9_cpu_init(struct device *dev)
{
}

static struct device_operations cpu_dev_ops = {
	.init = power9_cpu_init,
};

static const struct cpu_driver driver __cpu_driver = {
	.ops      = &cpu_dev_ops,
};

struct chip_operations cpu_power8_qemu_ops = {
	.name = "POWER9 CPU",
};