OVPsim

OVPsim is a multiprocessor platform emulator (often called a full-system simulator) used to run unchanged production binaries of the target hardware that uses dynamic binary translation technology to achieve high simulation speeds. It has public APIs allowing users to create their own processor, peripheral and platform models. Various models are available as source.<ref name="ovpworldlibrary" /> OVPsim is a key component of the Open Virtual Platforms initiative. Requires registration to actually download.
Licensing
OVPsim is written and maintained by Imperas. The core simulation platform is proprietary software; it is available free of charge for non-commercial usage, but commercial usage requires a license from Imperas.
Various processor, peripheral and platform models are available as free software under the Apache License 2.0.
Details
There are three main components of OVP: open source models, fast OVPsim simulator, and modeling APIs. These components are designed to make it easy to assemble multi-core heterogeneous or homogeneous platforms with complex memory hierarchies, cache systems and layers of embedded software that can run at hundreds of MIPS on standard desktop PCs.
OVPSim is not cycle-accurate.
There are many examples of components, and complete virtual platforms that can boot Linux in under 5 seconds at OVP Homepage.
Open source models
Within OVP there are several different model categories. These models are provided as both pre-compiled object code, and as source files. Currently there are processor models of ARM (processors using the ARMv4, ARMv5, ARMv6, ARMv7 instruction sets) up to the ARM Cortex-A9MPx4, MIPS ( processors using MIPS32, MIPS64, and microMIPS instruction sets) up to the microAptiv, interAptiv, and proAptiv cores, Synopsys Virage ARC600/ARC700, Renesas v850 and m16c, PowerPC, Xilinx MicroBlaze and OpenRisc families. There are also models of many different types of system components including RAM, ROM, cache, and bridge. There are also peripheral models including DMA, UART, and FIFO. There are also models of several different pre-built platforms including software like ucLinux, Linux, Android, FreeRTOS, Nucleus, Micrium to run on them.
One of the main uses of the OVP simulation infrastructure is the ability to create and simulate your own models - either from scratch, or by using one of the open source models as a starting point. The OVP APIs are tailored to different model types: processors, behavioral models of peripherals, and platforms. There are over 100 source model variants available to download.
OVPsim simulator
The OVPsim is available as an OVP reference and is free for non-commercial usage. The simulator uses dynamic binary translation technology to achieve very high simulation speeds (more than a billion simulated instructions per second is possible in some cases on regular desktop PC machines). OVPsim is available for x86 Windows and Linux hosts.
OVPsim comes with a GDB RSP interface to allow simulated processors to be debugged with any standard debugger that supports this GDB RSP interface.
OVPsim can be encapsulated and called from within other simulation environments and comes as standard with wrappers for C, , and SystemC. OVPsim includes native SystemC TLM2.0 wrappers. It is also possible to encapsulate legacy models of processors and behavioral models so that they can be used by OVPsim.
Modeling APIs
OVP models are created using C/ APIs. There are three main APIs: ICM, VMI, BHM/PPM.
ICM
For platforms there is the ICM API for controlling, connecting, and observing platforms. This API can be called from C, C++, or SystemC. The platform provides the basic structure of the design and creates, connects, and configures the components. The platform also specifies the address mapping, and software that is loaded on the processors. It is very easy with ICM to specify very complex and complete platforms of many different processors, local and shared memories, caches, bus bridges, peripherals and all their complex address maps, interrupts and operating systems and application software.
VMI
For processor modeling there is the VMI API. These API functions provide the ability to easily describe the behavior of the processor. A processor model written in C using the VMI decodes the target instruction to be simulated and translates this to native x86 instructions that are then executed on the PC. VMI can be used for modeling 8, 16, 32, and 64 bit architectures. There is an interception mechanism enabling emulation of calls to functions in the application runtime libraries (such as write, fstat etc.) without requiring modification of either the processor model or the simulated application.
PPM & BHM
Behavioral components, peripherals, and the overall environment is modeled using C code and calls to these two APIs. Underlying these APIs is an event based scheduling mechanism to enable modeling of time, events, and concurrency. Peripheral models provide callbacks that are called when the application software running on processors modeled in the platform access memory locations where the peripheral is enabled.
 
< Prev   Next >