spike.c (650d103d3ea959212f826acb9d3fe80cf30e347b) spike.c (46517dd4971fc1fdd5b379e72cc377626ad98160)
1/*
2 * QEMU RISC-V Spike Board
3 *
4 * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
5 * Copyright (c) 2017-2018 SiFive, Inc.
6 *
7 * This provides a RISC-V Board with the following devices:
8 *

--- 26 unchanged lines hidden (view full) ---

35#include "hw/riscv/riscv_hart.h"
36#include "hw/riscv/sifive_clint.h"
37#include "hw/riscv/spike.h"
38#include "hw/riscv/boot.h"
39#include "chardev/char.h"
40#include "sysemu/arch_init.h"
41#include "sysemu/device_tree.h"
42#include "sysemu/qtest.h"
1/*
2 * QEMU RISC-V Spike Board
3 *
4 * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
5 * Copyright (c) 2017-2018 SiFive, Inc.
6 *
7 * This provides a RISC-V Board with the following devices:
8 *

--- 26 unchanged lines hidden (view full) ---

35#include "hw/riscv/riscv_hart.h"
36#include "hw/riscv/sifive_clint.h"
37#include "hw/riscv/spike.h"
38#include "hw/riscv/boot.h"
39#include "chardev/char.h"
40#include "sysemu/arch_init.h"
41#include "sysemu/device_tree.h"
42#include "sysemu/qtest.h"
43#include "sysemu/sysemu.h"
43#include "exec/address-spaces.h"
44
45#include <libfdt.h>
46
47static const struct MemmapEntry {
48 hwaddr base;
49 hwaddr size;
50} spike_memmap[] = {

--- 409 unchanged lines hidden ---
44#include "exec/address-spaces.h"
45
46#include <libfdt.h>
47
48static const struct MemmapEntry {
49 hwaddr base;
50 hwaddr size;
51} spike_memmap[] = {

--- 409 unchanged lines hidden ---