coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
qemu.c File Reference
#include <cpu/cpu.h>
#include <device/device.h>
Include dependency graph for qemu.c:

Go to the source code of this file.

Functions

static void qemu_cpu_init (struct device *dev)
 

Variables

static struct device_operations cpu_dev_ops
 
static const struct cpu_device_id cpu_table []
 
static const struct cpu_driver driver __cpu_driver
 
struct chip_operations cpu_qemu_x86_ops
 

Function Documentation

◆ qemu_cpu_init()

static void qemu_cpu_init ( struct device dev)
static

Definition at line 6 of file qemu.c.

Variable Documentation

◆ __cpu_driver

const struct cpu_driver driver __cpu_driver
static
Initial value:
= {
.ops = &cpu_dev_ops,
.id_table = cpu_table,
}
static const struct cpu_device_id cpu_table[]
Definition: qemu.c:14
static struct device_operations cpu_dev_ops
Definition: qemu.c:10

Definition at line 6 of file qemu.c.

◆ cpu_dev_ops

struct device_operations cpu_dev_ops
static
Initial value:
= {
.init = qemu_cpu_init,
}
static void qemu_cpu_init(struct device *dev)
Definition: qemu.c:6

Definition at line 6 of file qemu.c.

◆ cpu_qemu_x86_ops

struct chip_operations cpu_qemu_x86_ops
Initial value:
= {
}

Definition at line 6 of file qemu.c.

◆ cpu_table

const struct cpu_device_id cpu_table[]
static
Initial value:
= {
{ 0, 0 },
}
#define X86_VENDOR_ANY
Definition: cpu.h:149

Definition at line 6 of file qemu.c.