aboutsummaryrefslogtreecommitdiff
path: root/hw/mips/fw_cfg.h
blob: e317d5b9a3e89dfcf574e31a7ec060d589f84eae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * QEMU fw_cfg helpers (MIPS specific)
 *
 * Copyright (c) 2020 Huacai Chen
 *
 * SPDX-License-Identifier: MIT
 */

#ifndef HW_MIPS_FW_CFG_H
#define HW_MIPS_FW_CFG_H

#include "hw/boards.h"
#include "hw/nvram/fw_cfg.h"

/* Data for BIOS to identify machine */
#define FW_CFG_MACHINE_VERSION  (FW_CFG_ARCH_LOCAL + 0)
#define FW_CFG_CPU_FREQ         (FW_CFG_ARCH_LOCAL + 1)

#endif