/******************************************************************************* * Copyright (C) 2017, 2018 MINRES Technologies GmbH * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * 3. Neither the name of the copyright holder nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * *******************************************************************************/ #ifndef _PLATFORM_H_ #define _PLATFORM_H_ #include "aon.h" #include "clint.h" #include "gpio.h" #include "plic.h" #include "prci.h" #include "pwm.h" #include "spi.h" #include "sysc/core_complex.h" #include "uart.h" #include "cci_configuration" #include "scc/memory.h" #include "scc/router.h" #include "scc/utilities.h" #include "tlm/tlm_signal_sockets.h" #include #include #include namespace sysc { class fe310 : public sc_core::sc_module { public: SC_HAS_PROCESS(fe310);// NOLINT sc_core::sc_vector> pins_o; sc_core::sc_vector> pins_i; sc_core::sc_in erst_n; fe310(sc_core::sc_module_name nm); cci::cci_param use_rtl; private: std::unique_ptr i_core_complex; std::unique_ptr> i_router; std::unique_ptr i_uart0, i_uart1; std::unique_ptr i_qspi0, i_qspi1, i_qspi2; std::unique_ptr i_pwm0, i_pwm1, i_pwm2; std::unique_ptr i_gpio0; std::unique_ptr i_plic; std::unique_ptr i_aon; std::unique_ptr i_prci; std::unique_ptr i_clint; using mem_qspi_t = scc::memory<512_MB, 32>; std::unique_ptr i_mem_qspi; using mem_ram_t = scc::memory<128_kB, 32>; std::unique_ptr i_mem_ram; sc_core::sc_signal s_tlclk; sc_core::sc_signal s_lfclk; sc_core::sc_signal s_rst, s_mtime_int, s_msie_int; sc_core::sc_vector> s_global_int, s_local_int; sc_core::sc_signal s_core_int; sc_core::sc_vector s_dummy_sck_i; sc_core::sc_vector s_dummy_sck_o; protected: void gen_reset(); #include "gen/e300_plat_t.h" }; } /* namespace sysc */ #endif /* _PLATFORM_H_ */