mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
riscv: Add a sifive_cpu.h to include both E and U cpu type defines
Group SiFive E and U cpu type defines into one header file. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
This commit is contained in:
parent
68c9a9b3eb
commit
20f41c8698
3 changed files with 33 additions and 12 deletions
31
include/hw/riscv/sifive_cpu.h
Normal file
31
include/hw/riscv/sifive_cpu.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* SiFive CPU types
|
||||
*
|
||||
* Copyright (c) 2017 SiFive, Inc.
|
||||
* Copyright (c) 2019 Bin Meng <bmeng.cn@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms and conditions of the GNU General Public License,
|
||||
* version 2 or later, as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef HW_SIFIVE_CPU_H
|
||||
#define HW_SIFIVE_CPU_H
|
||||
|
||||
#if defined(TARGET_RISCV32)
|
||||
#define SIFIVE_E_CPU TYPE_RISCV_CPU_SIFIVE_E31
|
||||
#define SIFIVE_U_CPU TYPE_RISCV_CPU_SIFIVE_U34
|
||||
#elif defined(TARGET_RISCV64)
|
||||
#define SIFIVE_E_CPU TYPE_RISCV_CPU_SIFIVE_E51
|
||||
#define SIFIVE_U_CPU TYPE_RISCV_CPU_SIFIVE_U54
|
||||
#endif
|
||||
|
||||
#endif /* HW_SIFIVE_CPU_H */
|
Loading…
Add table
Add a link
Reference in a new issue