blob: e317d5b9a3e89dfcf574e31a7ec060d589f84eae [file] [log] [blame]
Huacai Chen313d1e92020-09-22 10:49:25 +08001/*
2 * QEMU fw_cfg helpers (MIPS specific)
3 *
4 * Copyright (c) 2020 Huacai Chen
5 *
6 * SPDX-License-Identifier: MIT
7 */
8
9#ifndef HW_MIPS_FW_CFG_H
10#define HW_MIPS_FW_CFG_H
11
12#include "hw/boards.h"
13#include "hw/nvram/fw_cfg.h"
14
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)
18
19#endif