HIFIVE1-VP/riscv.sc/incl/sysc/SiFive/platform.h

74 lines
1.8 KiB
C
Raw Normal View History

/*******************************************************************************
* Copyright 2017 eyck@minres.com
2017-09-22 11:23:23 +02:00
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
2017-09-22 11:23:23 +02:00
*
* http://www.apache.org/licenses/LICENSE-2.0
2017-09-22 11:23:23 +02:00
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
******************************************************************************/
/*
* simplesystem.h
*
* Created on: 17.09.2017
* Author: eyck@minres.com
*/
#ifndef SIMPLESYSTEM_H_
#define SIMPLESYSTEM_H_
2017-10-04 10:31:11 +02:00
#include "aon.h"
#include "clint.h"
#include "gpio.h"
#include "plic.h"
2017-10-04 10:31:11 +02:00
#include "prci.h"
2017-09-22 11:23:23 +02:00
#include "spi.h"
#include "uart.h"
#include <array>
2017-09-22 11:23:23 +02:00
#include <sysc/kernel/sc_module.h>
2017-10-04 10:31:11 +02:00
#include <sysc/memory.h>
2017-09-22 11:23:23 +02:00
#include <sysc/router.h>
2017-10-04 10:31:11 +02:00
#include <sysc/utilities.h>
#include "core_complex.h"
namespace sysc {
2017-09-22 11:23:23 +02:00
class platform : public sc_core::sc_module {
public:
SC_HAS_PROCESS(platform);
2017-10-04 10:31:11 +02:00
SiFive::core_complex i_core_complex;
router<> i_router;
2017-10-04 10:31:11 +02:00
uart i_uart0, i_uart1;
spi i_spi;
gpio i_gpio;
plic i_plic;
2017-10-04 10:31:11 +02:00
aon i_aon;
prci i_prci;
clint i_clint;
memory<512_MB, 32> i_mem_qspi;
memory<128_kB, 32> i_mem_ram;
sc_core::sc_signal<sc_core::sc_time> s_clk;
2017-10-04 10:31:11 +02:00
sc_core::sc_signal<bool> s_rst, s_mtime_int, s_msie_int;
platform(sc_core::sc_module_name nm);
2017-09-22 11:23:23 +02:00
protected:
void gen_reset();
#include "gen/e300_plat_t.h"
};
} /* namespace sysc */
#endif /* SIMPLESYSTEM_H_ */