sifive_e.c (84fcf3c15111de9f0c72efbb6bc0def264555c46) | sifive_e.c (b609b7e3199912e16ef3b0447823f21fed73597e) |
---|---|
1/* 2 * QEMU RISC-V Board Compatible with SiFive Freedom E SDK 3 * 4 * Copyright (c) 2017 SiFive, Inc. 5 * 6 * Provides a board compatible with the SiFive Freedom E SDK: 7 * 8 * 0) UART --- 25 unchanged lines hidden (view full) --- 34#include "qapi/error.h" 35#include "hw/boards.h" 36#include "hw/loader.h" 37#include "hw/sysbus.h" 38#include "hw/char/serial.h" 39#include "hw/misc/unimp.h" 40#include "target/riscv/cpu.h" 41#include "hw/riscv/riscv_hart.h" | 1/* 2 * QEMU RISC-V Board Compatible with SiFive Freedom E SDK 3 * 4 * Copyright (c) 2017 SiFive, Inc. 5 * 6 * Provides a board compatible with the SiFive Freedom E SDK: 7 * 8 * 0) UART --- 25 unchanged lines hidden (view full) --- 34#include "qapi/error.h" 35#include "hw/boards.h" 36#include "hw/loader.h" 37#include "hw/sysbus.h" 38#include "hw/char/serial.h" 39#include "hw/misc/unimp.h" 40#include "target/riscv/cpu.h" 41#include "hw/riscv/riscv_hart.h" |
42#include "hw/riscv/sifive_uart.h" | |
43#include "hw/riscv/sifive_e.h" 44#include "hw/riscv/boot.h" | 42#include "hw/riscv/sifive_e.h" 43#include "hw/riscv/boot.h" |
44#include "hw/char/sifive_uart.h" |
|
45#include "hw/intc/sifive_clint.h" 46#include "hw/intc/sifive_plic.h" 47#include "hw/misc/sifive_e_prci.h" 48#include "chardev/char.h" 49#include "sysemu/arch_init.h" 50#include "sysemu/sysemu.h" 51#include "exec/address-spaces.h" 52 --- 235 unchanged lines hidden --- | 45#include "hw/intc/sifive_clint.h" 46#include "hw/intc/sifive_plic.h" 47#include "hw/misc/sifive_e_prci.h" 48#include "chardev/char.h" 49#include "sysemu/arch_init.h" 50#include "sysemu/sysemu.h" 51#include "exec/address-spaces.h" 52 --- 235 unchanged lines hidden --- |