hw/arm/xlnx-zynqmp: Remove obsolete 'has_rpu' property
[qemu/ar7.git] / include / hw / riscv / sifive_cpu.h
blob136799633a72fca8edabe116fcdcc655521f1023
1 /*
2 * SiFive CPU types
4 * Copyright (c) 2017 SiFive, Inc.
5 * Copyright (c) 2019 Bin Meng <bmeng.cn@gmail.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2 or later, as published by the Free Software Foundation.
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef HW_SIFIVE_CPU_H
21 #define HW_SIFIVE_CPU_H
23 #if defined(TARGET_RISCV32)
24 #define SIFIVE_E_CPU TYPE_RISCV_CPU_SIFIVE_E31
25 #define SIFIVE_U_CPU TYPE_RISCV_CPU_SIFIVE_U34
26 #elif defined(TARGET_RISCV64)
27 #define SIFIVE_E_CPU TYPE_RISCV_CPU_SIFIVE_E51
28 #define SIFIVE_U_CPU TYPE_RISCV_CPU_SIFIVE_U54
29 #endif
31 #endif /* HW_SIFIVE_CPU_H */