exec/memory: Use struct Object typedef
[qemu/ar7.git] / hw / mips / fw_cfg.h
blobe317d5b9a3e89dfcf574e31a7ec060d589f84eae
1 /*
2 * QEMU fw_cfg helpers (MIPS specific)
4 * Copyright (c) 2020 Huacai Chen
6 * SPDX-License-Identifier: MIT
7 */
9 #ifndef HW_MIPS_FW_CFG_H
10 #define HW_MIPS_FW_CFG_H
12 #include "hw/boards.h"
13 #include "hw/nvram/fw_cfg.h"
15 /* Data for BIOS to identify machine */
16 #define FW_CFG_MACHINE_VERSION (FW_CFG_ARCH_LOCAL + 0)
17 #define FW_CFG_CPU_FREQ (FW_CFG_ARCH_LOCAL + 1)
19 #endif