Searched refs:runtime (Results 1 – 14 of 14) sorted by relevance
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/hdl/modules/ |
D | renode.sv | 19 ref renode_runtime runtime, port 37 .runtime(runtime), 43 runtime.controllers = new[RenodeToCosimCount]; 44 foreach(runtime.controllers[i]) begin 45 runtime.controllers[i] = new(); 48 runtime.peripherals = new[CosimToRenodeCount]; 49 foreach(runtime.peripherals[i]) begin 50 runtime.peripherals[i] = new(); 57 always @(runtime.peripherals[i].read_transaction_request) read_transaction(i); 58 always @(runtime.peripherals[i].write_transaction_request) write_transaction(i); [all …]
|
D | renode_inputs.sv | 15 ref renode_runtime runtime, port 37 …runtime.connection.log(renode_pkg::LogDebug, $sformatf("GPIO %d changed: %d -> %d", addr, inputs_p… 39 runtime.connection.send_to_async_receiver(renode_pkg::message_t'{
|
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/hdl/modules/apb3/ |
D | renode_apb3_requester.sv | 13 ref renode_runtime runtime, port 57 always @(runtime.controllers[RenodeToCosimIndex].reset_assert_request) begin 66 runtime.controllers[RenodeToCosimIndex].reset_assert_respond(); 69 always @(runtime.controllers[RenodeToCosimIndex].reset_deassert_request) begin 73 runtime.controllers[RenodeToCosimIndex].reset_deassert_respond(); 88 always @(runtime.controllers[RenodeToCosimIndex].read_transaction_request) begin 91 …if(!renode_pkg::is_access_aligned(runtime.controllers[RenodeToCosimIndex].read_transaction_address… 92 …runtime.connection.log(LogWarning, "Unaligned access on APB bus results in unpredictable behavior"… 94 …transaction_width = renode_pkg::valid_bits_to_transaction_width(runtime.controllers[RenodeToCosimI… 96 runtime.connection.log(LogWarning, [all …]
|
D | renode_apb3_completer.sv | 16 ref renode_runtime runtime, port 49 always @(runtime.peripherals[CosimToRenodeIndex].reset_assert_request) begin 53 runtime.peripherals[CosimToRenodeIndex].reset_assert_respond(); 56 always @(runtime.peripherals[CosimToRenodeIndex].reset_deassert_request) begin 60 runtime.peripherals[CosimToRenodeIndex].reset_deassert_respond(); 110 …runtime.peripherals[CosimToRenodeIndex].write(renode_pkg::address_t'(paddr), valid_bits, renode_pk… 113 … runtime.connection.log(LogWarning, "Renode connection write transfer was unable to complete"); 125 …runtime.peripherals[CosimToRenodeIndex].read(renode_pkg::address_t'(paddr), valid_bits, prdata_int… 127 … runtime.connection.log(LogWarning, "Renode connection read transfer was unable to complete");
|
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/hdl/modules/ahb/ |
D | renode_ahb_manager.sv | 14 ref renode_runtime runtime, port 23 always @(runtime.controllers[RenodeToCosimIndex].reset_assert_request) begin 28 runtime.controllers[RenodeToCosimIndex].reset_assert_respond(); 31 always @(runtime.controllers[RenodeToCosimIndex].reset_deassert_request) begin 34 runtime.controllers[RenodeToCosimIndex].reset_deassert_respond(); 37 always @(runtime.controllers[RenodeToCosimIndex].read_transaction_request) read_transaction(); 38 always @(runtime.controllers[RenodeToCosimIndex].write_transaction_request) write_transaction(); 45 valid_bits = runtime.controllers[RenodeToCosimIndex].write_transaction_data_bits; 46 data = data_t'(runtime.controllers[RenodeToCosimIndex].write_transaction_data & valid_bits); 47 …configure_transfer(runtime.controllers[RenodeToCosimIndex].write_transaction_address, valid_bits, … [all …]
|
D | renode_ahb_subordinate.sv | 14 ref renode_runtime runtime, port 23 always @(runtime.peripherals[CosimToRenodeIndex].reset_assert_request) begin 28 runtime.peripherals[CosimToRenodeIndex].reset_assert_respond(); 31 always @(runtime.peripherals[CosimToRenodeIndex].reset_deassert_request) begin 34 runtime.peripherals[CosimToRenodeIndex].reset_deassert_respond(); 57 runtime.peripherals[CosimToRenodeIndex].read(address, valid_bits, data, is_error); 59 …if (is_error) runtime.connection.log(LogWarning, $sformatf("Unable to read data from Renode at add… 61 …runtime.peripherals[CosimToRenodeIndex].write(address, valid_bits, renode_pkg::data_t'(bus.hwdata)… 62 …if (is_error) runtime.connection.log(LogWarning, $sformatf("Unable to write data to Renode at addr… 87 …runtime.connection.log(LogWarning, $sformatf("Unsupported transaction width of %d for AHB bus with…
|
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/hdl/modules/axi/ |
D | renode_axi_manager.sv | 13 ref renode_runtime runtime, port 25 always @(runtime.controllers[RenodeToCosimIndex].reset_assert_request) begin 32 runtime.controllers[RenodeToCosimIndex].reset_assert_respond(); 35 always @(runtime.controllers[RenodeToCosimIndex].reset_deassert_request) begin 39 runtime.controllers[RenodeToCosimIndex].reset_deassert_respond(); 42 always @(runtime.controllers[RenodeToCosimIndex].read_transaction_request) read_transaction(); 43 always @(runtime.controllers[RenodeToCosimIndex].write_transaction_request) write_transaction(); 52 address = address_t'(runtime.controllers[RenodeToCosimIndex].read_transaction_address); 53 valid_bits = runtime.controllers[RenodeToCosimIndex].read_transaction_data_bits; 56 runtime.controllers[RenodeToCosimIndex].read_respond(0, 1); [all …]
|
D | renode_axi_subordinate.sv | 13 ref renode_runtime runtime, port 25 always @(runtime.peripherals[CosimToRenodeIndex].reset_assert_request) begin 31 runtime.peripherals[CosimToRenodeIndex].reset_assert_respond(); 34 always @(runtime.peripherals[CosimToRenodeIndex].reset_deassert_request) begin 38 runtime.peripherals[CosimToRenodeIndex].reset_deassert_respond(); 66 …runtime.peripherals[CosimToRenodeIndex].read(renode_pkg::address_t'(address), valid_bits, data, is… 68 …runtime.connection.log(LogWarning, $sformatf("Unable to read data from Renode at address 'h%h, res… 112 …if (bus.wlast != (address == address_last)) runtime.connection.log(LogWarning, "Unexpected state o… 114 …runtime.peripherals[CosimToRenodeIndex].write(renode_pkg::address_t'(address), valid_bits, renode_… 115 …if (is_error) runtime.connection.log(LogWarning, $sformatf("Unable to write data to Renode at addr… [all …]
|
/Renode-v1.15.3-c57714d/src/Renode/ |
D | Program.cs | 122 var runtime = ".NET"; 124 var runtime = ".NET Framework"; 126 var runtime = "Mono"; 133 runtime,
|
/Renode-v1.15.3-c57714d/tests/platforms/ |
D | ARMv8R-PMSA.robot | 66 # For Cortex-R Zephyr retrieves count of MPU regions in runtime.
|
/Renode-v1.15.3-c57714d/tools/packaging/windows/ |
D | mingw-license | 1 MinGW-w64 runtime licensing 5 linked against the MinGW-w64 runtime. Some parts of the runtime 218 in MinGW runtime. At least on follow-up it is marked that debian sees the
|
/Renode-v1.15.3-c57714d/tests/unit-tests/ |
D | python-engine.robot | 69 Wait For Log Entry Python runtime error: name 'b' is not defined
|
/Renode-v1.15.3-c57714d/ |
D | README.md | 42 …ode.io/renode-latest.linux-portable-dotnet.tar.gz) - portable Linux package, embeds dotnet runtime 43 …builds.renode.io/renode-latest.linux-portable.tar.gz) - portable Linux package, embeds Mono runtime 101 The **.NET SDK** includes runtime, so you will be able to build and run Renode.
|
D | CHANGELOG.rst | 19 * fixed runtime configurability of the RISC-V MISA registers 151 * mechanism for enabling sysbus transaction translations for unimplemented widths in runtime 374 * TranslationCPU's CyclesPerInstruction changes during runtime not being automatically applied to A…
|