Home
last modified time | relevance | path

Searched refs:LogLevel (Results 1 – 25 of 631) sorted by relevance

12345678910>>...26

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/
DLogLevel.cs17 public sealed class LogLevel : IEquatable<LogLevel>, IComparable<LogLevel> class
19 public static LogLevel Noisy = new LogLevel(Level.Noisy);
20 public static LogLevel Debug = new LogLevel(Level.Debug);
21 public static LogLevel Info = new LogLevel(Level.Info, ConsoleColor.Green);
22 public static LogLevel Warning = new LogLevel(Level.Warning, ConsoleColor.DarkYellow);
23 public static LogLevel Error = new LogLevel(Level.Error, ConsoleColor.Red);
36 static LogLevel() in LogLevel() method in Antmicro.Renode.Logging.LogLevel
39 …ilableLevels = typeof(LogLevel).GetFields(BindingFlags.Public | BindingFlags.Static).Where(x => x.… in LogLevel()
40 .Select(x => (LogLevel)x.GetValue(null)).ToArray(); in LogLevel()
43 public static LogLevel[] AvailableLevels { get; private set; }
[all …]
DLogger.cs85 public static void SetLogLevel(ILoggerBackend backend, LogLevel level, int sourceId) in SetLogLevel()
91 public static void Log(LogLevel type, string message, params object[] args) in Log()
96 public static void Log(LogLevel type, string message) in Log()
101 public static void Log(LogLevel type, string message, object arg1) in Log()
106 public static void Log(LogLevel type, string message, object arg1, object arg2) in Log()
111 public static void Log(LogLevel type, string message, object arg1, object arg2, object arg3) in Log()
118 LogAs(null, LogLevel.Error, message); in Error()
123 LogAs(null, LogLevel.Warning, message); in Warning()
128 LogAs(null, LogLevel.Info, message); in Info()
133 LogAs(null, LogLevel.Debug, message); in Debug()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/
DEFM32GGI2CController.cs33 this.Log(LogLevel.Noisy, "read {0}", (Registers)offset); in ReadDoubleWord()
38 this.Log(LogLevel.Noisy, "register value = {0}", i2cn_ctrl); in ReadDoubleWord()
43 this.Log(LogLevel.Noisy, "register value = {0}", i2cn_state); in ReadDoubleWord()
46 this.Log(LogLevel.Noisy, "register value = {0}", i2cn_status); in ReadDoubleWord()
49 this.Log(LogLevel.Noisy, "register value = {0}", i2cn_clkdiv); in ReadDoubleWord()
52 this.Log(LogLevel.Noisy, "register value = {0}", i2cn_saddr); in ReadDoubleWord()
68 this.Log(LogLevel.Noisy, "register value = {0}", i2cn_rxdata); in ReadDoubleWord()
71 this.Log(LogLevel.Noisy, "register value = {0}", rxBuffer); in ReadDoubleWord()
76 this.Log(LogLevel.Noisy, "register value = {0}", i2cn_if); in ReadDoubleWord()
83 this.Log(LogLevel.Noisy, "register value = {0}", i2cn_ien); in ReadDoubleWord()
[all …]
DPULP_uDMA_I2C.cs108 this.Log(LogLevel.Debug, "Starting a DMA TX transaction"); in DefineRegisters()
111 …this.Log(LogLevel.Noisy, "Read data from the memory @ 0x{0:X}: {1}", txBufferAddress.Value, Misc.P… in DefineRegisters()
185 … this.Log(LogLevel.Warning, "Received data in an unexpected state: {0}", state); in HandleIncomingBytes()
201 …this.Log(LogLevel.Debug, "Handling command {0} (0x{0:X}) at offset {1}", command, argumentOffset -… in HandleCommand()
232 … this.Log(LogLevel.Debug, "Write command detected with {0} bytes of data", repeatCounter); in HandleCommand()
246 this.Log(LogLevel.Warning, "Unhandled command: {0} (0x{0:X})", command); in HandleCommand()
278 …this.Log(LogLevel.Debug, "Handled {0} bytes of incoming data, bytes left {1}", bytesConsumed, data… in HandleData()
289 …this.Log(LogLevel.Warning, "Tried to send data to the device, but there is no device address in th… in TrySendToDevice()
300 …this.Log(LogLevel.Warning, "Read bit should not be set when sending data to the device, ignoring t… in TrySendToDevice()
306 … this.Log(LogLevel.Warning, "Tried to send data to the device, but the output buffer is empty"); in TrySendToDevice()
[all …]
DLiteX_I2C.cs47 … this.Log(LogLevel.Warning, "Trying to read data, but the direction signal is set to OUTPUT"); in LiteX_I2C()
61 this.Log(LogLevel.Warning, "There are no more output bits to read"); in LiteX_I2C()
108 this.Log(LogLevel.Noisy, "Writing data to the device"); in HandleStopCondition()
114 this.Log(LogLevel.Noisy, "Stop condition detected in state: {0}", state); in HandleStopCondition()
120 this.Log(LogLevel.Noisy, "(repeated) Start condition detected in state: {0}", state); in HandleStartCondition()
124 this.Log(LogLevel.Noisy, "Writing data to the device"); in HandleStartCondition()
138 …this.Log(LogLevel.Noisy, "Appending address bit #{0}: {1}", bufferToDevice.Count, signals[DataSign… in HandleClockRising()
145 this.Log(LogLevel.Noisy, "Address decoded: 0x{0:X}", address); in HandleClockRising()
150 …this.Log(LogLevel.Warning, "Trying to access a non-existing I2C device at address 0x{0:X}", addres… in HandleClockRising()
159 this.Log(LogLevel.Noisy, "Operation decoded: {0}", isRead ? "read" : "write"); in HandleClockRising()
[all …]
DLiteX_I2C_Zephyr.cs48 … this.Log(LogLevel.Warning, "Trying to read data, but the direction signal is set to OUTPUT"); in LiteX_I2C_Zephyr()
54 this.Log(LogLevel.Noisy, "There are no more output bits to read"); in LiteX_I2C_Zephyr()
100 this.Log(LogLevel.Noisy, "Writing data to the device"); in HandleStopCondition()
106 this.Log(LogLevel.Noisy, "Stop condition detected in state: {0}", state); in HandleStopCondition()
114 this.Log(LogLevel.Noisy, "Writing data to the device"); in HandleStartCondition()
120 this.Log(LogLevel.Noisy, "(repeated) Start condition detected in state: {0}", state); in HandleStartCondition()
130 …this.Log(LogLevel.Noisy, "Appending address bit #{0}: {1}", bufferToDevice.Count, signals[DataSign… in HandleClockRising()
137 this.Log(LogLevel.Noisy, "Address decoded: 0x{0:X}", address); in HandleClockRising()
142 …this.Log(LogLevel.Warning, "Trying to access a non-existing I2C device at address 0x{0:X}", addres… in HandleClockRising()
151 this.Log(LogLevel.Noisy, "Operation decoded: {0}", isRead ? "read" : "write"); in HandleClockRising()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/SiLabs/
DSilabs_SecureElement.cs114 parent.Log(LogLevel.Error, "TxFifoEnqueueCallback: 0 words left"); in TxFifoEnqueueCallback()
137 parent.Log(LogLevel.Error, "ProcessCommand(): Queue is EMPTY!"); in ProcessCommand()
147 …parent.Log(LogLevel.Error, "ProcessCommand(): Not enough words FifoSize={0}, expectedWords={1}", t… in ProcessCommand()
168 …parent.Log(LogLevel.Info, "ProcessCommand(): command ID={0} command Options=0x{1:X} command params… in ProcessCommand()
229 … parent.Log(LogLevel.Error, "ProcessCommand(): Command ID 0x{0:X} not handled!", (uint)commandId); in ProcessCommand()
235 parent.Log(LogLevel.Info, "ProcessCommand(): Response code {0}", responseCode); in ProcessCommand()
256 parent.Log(LogLevel.Error, "IMPORT_KEY: invalid parameter count"); in HandleImportKeyCommand()
266 … parent.Log(LogLevel.Noisy, "IMPORT_KEY: keyIndex={0} keyType={1} keyMode={2} keyRestriction={3}", in HandleImportKeyCommand()
271 parent.Log(LogLevel.Error, "HandleImportKeyCommand: invalid key mode"); in HandleImportKeyCommand()
281 …parent.Log(LogLevel.Noisy, "IMPORT_KEY: keyPtr=0x{0:X} keyLength={1} options={2} nextDescriptorPtr… in HandleImportKeyCommand()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Backends/
DLoggerBackend.cs27 public virtual void SetLogLevel(LogLevel level, int sourceId = -1) in SetLogLevel()
47 public LogLevel GetCustomLogLevel(int? id) in GetCustomLogLevel()
49 LogLevel result = null; in GetCustomLogLevel()
57 public IDictionary<int, LogLevel> GetCustomLogLevels() in GetCustomLogLevels()
59 return new ReadOnlyDictionary<int, LogLevel>(peripheralsWithDifferentLogging); in GetCustomLogLevels()
62 public LogLevel GetLogLevel() in GetLogLevel()
80 peripheralsWithDifferentLogging = new Dictionary<int, LogLevel>(); in LoggerBackend()
84 protected LogLevel logLevel;
86 private readonly Dictionary<int, LogLevel> peripheralsWithDifferentLogging;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/Commands/
DLogLevelCommand.cs45 TrySetLogLevel((LogLevel)level.Value); in Run()
51 TrySetLogLevel(LogLevel.Parse(level.Value)); in Run()
57 RunInner(writer, (LogLevel)level.Value, emulationElementOrBackendName.Value); in Run()
63 RunInner(writer, (LogLevel)level.Value, emulationElementOrBackendName.Value); in Run()
69 … RunInner(writer, (LogLevel)level.Value, emulationElementOrBackendName.Value, recursive.Value); in Run()
75 … RunInner(writer, (LogLevel)level.Value, emulationElementOrBackendName.Value, recursive.Value); in Run()
81 RunInner(writer, LogLevel.Parse(level.Value), emulationElementOrBackendName.Value); in Run()
87 RunInner(writer, LogLevel.Parse(level.Value), emulationElementOrBackendName.Value); in Run()
93 …RunInner(writer, LogLevel.Parse(level.Value), emulationElementOrBackendName.Value, recursive.Value… in Run()
99 …RunInner(writer, LogLevel.Parse(level.Value), emulationElementOrBackendName.Value, recursive.Value… in Run()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_VerilatorSwTestStatus.cs27 this.Log(LogLevel.Info, "Opentitan Software test status set to 0x{0:x}", value); in DefineRegisters()
31 this.Log(LogLevel.Info, "Opentitan in boot ROM"); in DefineRegisters()
34 this.Log(LogLevel.Info, "Opentitan in test"); in DefineRegisters()
37 this.Log(LogLevel.Info, "Opentitan in WFI"); in DefineRegisters()
40 this.Log(LogLevel.Info, "Opentitan PASSED Test"); in DefineRegisters()
43 this.Log(LogLevel.Info, "Opentitan FAILED Test"); in DefineRegisters()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/
DEOSS3_SimplePeriodicTimer.cs29 this.Log(LogLevel.Noisy, "FFE Kick-Off is masked"); in EOSS3_SimplePeriodicTimer()
34 this.Log(LogLevel.Noisy, "FFE Kick-Off!"); in EOSS3_SimplePeriodicTimer()
60 … this.Log(LogLevel.Warning, "Invalid interrupt number: {0} set to {1}", number, value); in OnGPIO()
74 this.Log(LogLevel.Noisy, "Saved timestamp for interrupt {0}.", number); in OnGPIO()
78 … this.Log(LogLevel.Warning, "The interrupt {0} is masked: 0x{1:X}.", number, interruptMask.Value); in OnGPIO()
87 this.Log(LogLevel.Warning, "No such interrupt: {0}", number); in GetInterruptTimestamp()
141 this.Log(LogLevel.Noisy, "30-bit counter enabled"); in EnableCounter()
146 this.Log(LogLevel.Noisy, "FFE Kick off counter enabled"); in EnableCounter()
155 this.Log(LogLevel.Noisy, "Counters disabled"); in EnableCounter()
168 …this.Log(LogLevel.Warning, "Trying to update the FFE kick off period with a reserved value 0x{0:X}… in UpdateFFEKickOffPeriod()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DLSM303DLHC_Gyroscope.cs45 this.Log(LogLevel.Warning, "Unexpected write with no data"); in Write()
49 this.Log(LogLevel.Noisy, "Write with {0} bytes of data", data.Length); in Write()
57 … this.Log(LogLevel.Debug,"Writing 0x{0:X} to register {1} (0x{1:X})", b, regAddress); in Write()
64 this.Log(LogLevel.Noisy, "Preparing to read register {0} (0x{0:X})", regAddress); in Write()
72 … this.Log(LogLevel.Debug, "Reading {0} bytes from register {1} (0x{1:X})", count, regAddress); in Read()
81 this.Log(LogLevel.Noisy, "Read value {0}", result[i]); in Read()
94 this.Log(LogLevel.Warning, "Temperature is out of range");
99 this.Log(LogLevel.Noisy, "Sensor temperature set to {0}", temperature);
112 this.Log(LogLevel.Noisy, "MagneticFieldX set to {0}", magneticFieldX);
125 this.Log(LogLevel.Noisy, "MagneticFieldY set to {0}", magneticFieldY);
[all …]
DLIS2DS12.cs44 this.Log(LogLevel.Warning, "Unexpected write with no data"); in Write()
48 …this.Log(LogLevel.Noisy, "Write with {0} bytes of data: {1}", data.Length, Misc.PrettyPrintCollect… in Write()
56 … this.Log(LogLevel.Noisy, "Writing 0x{0:X} to register {1} (0x{1:X})", b, regAddress); in Write()
62 this.Log(LogLevel.Noisy, "Preparing to read register {0} (0x{0:X})", regAddress); in Write()
70 … this.Log(LogLevel.Noisy, "Reading {0} bytes from register {1} (0x{1:X})", count, regAddress); in Read()
77 this.Log(LogLevel.Noisy, "Read value {0}", result[i]); in Read()
91 this.Log(LogLevel.Noisy, "AccelerationX set to {0}", accelarationX);
104 this.Log(LogLevel.Noisy, "AccelerationY set to {0}", accelarationY);
117 this.Log(LogLevel.Noisy, "AccelerationZ set to {0}", accelarationZ);
195 … this.Log(LogLevel.Noisy, "Auto-incrementing to the next register 0x{0:X} - {0}", regAddress); in RegistersAutoIncrement()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DMAX3421E.cs48 this.Log(LogLevel.Debug, "USB device connected to port {0}", registrationPoint.Address); in Register()
66 this.Log(LogLevel.Noisy, "Transmission finished"); in FinishTransmission()
93 this.Log(LogLevel.Noisy, "Received byte: 0x{0:X} in state {1}", data, state); in Transmit()
104 … this.Log(LogLevel.Noisy, "Writing value 0x{0:X} to register {1} (0x{1:X})", data, lastRegister); in Transmit()
109 this.Log(LogLevel.Noisy, "Reading value from register {0} (0x{0:X})", lastRegister); in Transmit()
114 …this.Log(LogLevel.Error, "Received byte 0x{0:X} in an unexpected state: {1}. Ignoring it...", data… in Transmit()
118 this.Log(LogLevel.Noisy, "Returning byte: 0x{0:X}", result); in Transmit()
153 this.Log(LogLevel.Noisy, "Setting IRQ to {0}", state); in UpdateInterrupts()
164 this.Log(LogLevel.Warning, "Trying to read from an empty receive queue"); in DefineRegisters()
177 this.Log(LogLevel.Warning, "Trying to read from an empty send queue"); in DefineRegisters()
[all …]
DSPIMultiplexer.cs29 this.Log(LogLevel.Noisy, "GPIO #{0} set to {1}", number, value); in OnGPIO()
55 …this.Log(LogLevel.Warning, "Tried to transmit byte 0x{0:X}, but no device is currently selected - … in Transmit()
61 …this.Log(LogLevel.Warning, "Tried to transmit byte 0x{0:X}, but multiple devices are currently sel… in Transmit()
68 …this.Log(LogLevel.Warning, "Tried to transmit byte 0x{0:X} to device 0x{1:X}, but it's not connect… in Transmit()
84 … this.Log(LogLevel.Warning, "Tried to finish transmission, but no device is currently selected"); in FinishTransmission()
90 …this.Log(LogLevel.Warning, "Tried to finish transmission, but multiple devices are currently selec… in FinishTransmission()
102 …this.Log(LogLevel.Warning, "Tried to finish transmission to device 0x{0:X}, but it's not connected… in FinishTransmissionByAddress()
106 this.Log(LogLevel.Noisy, "Finisihing transmission on device 0x{0:X}", deviceAddress); in FinishTransmissionByAddress()
DNANDFlash.cs59 this.Log(LogLevel.Noisy, "Received byte: 0x{0:X} in state {1}", data, state); in Transmit()
73 this.Log(LogLevel.Noisy, "Reading register {0} = {1}", data, r); in Transmit()
83 this.Log(LogLevel.Noisy, "Column set to {0}", column); in Transmit()
99 this.Log(LogLevel.Error, "Trailing bytes on SetFeature command"); in Transmit()
105 this.Log(LogLevel.Noisy, "Setting register {0} = {1}", (long)r, data); in Transmit()
112 this.Log(LogLevel.Warning, "Nothing left in send queue"); in Transmit()
120 …this.Log(LogLevel.Error, "Received byte 0x{0:X} in an unexpected state: {1}. Ignoring it...", data… in Transmit()
124 this.Log(LogLevel.Noisy, "Returning byte: 0x{0:X}", result); in Transmit()
130 this.Log(LogLevel.Noisy, "Transmission finished"); in FinishTransmission()
136 … this.Log(LogLevel.Error, "Incorrect byte count for PageRead {0}", receiveStack.Count); in FinishTransmission()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/
DEmberRadio.cs112 this.Log(LogLevel.Warning, "ReadDoubleWordIRQ({0:X})", offset); in ReadDoubleWordIRQ()
134 this.Log(LogLevel.Noisy, "ReadDoubleWord({0:X})", offset); in ReadDoubleWord()
142 this.Log(LogLevel.Warning, "packlength = {0} (0x{0:X})", packLength); in ReadDoubleWord()
163 this.Log(LogLevel.Warning, "MAC_RX_CONFIG {0:X}", macRxConfig & 0xFFFFFFFE); in ReadDoubleWord()
197 this.Log(LogLevel.Warning, "WriteDoubleWordIRQ({0:X}, {1:X})", offset, value); in WriteDoubleWordIRQ()
203 this.Log(LogLevel.Warning, "WriteDoubleWord ({0:X}, 0x{1:X})", offset, value); in WriteDoubleWord()
224 this.Log(LogLevel.Warning, "Setting MAC_TX_ST_A to {0:X}", value); in WriteDoubleWord()
228 this.Log(LogLevel.Noisy, "Setting MAC_TX_END_A to {0:X}", value); in WriteDoubleWord()
248 this.Log(LogLevel.Warning, "Sending packet of size {0}", packet_len); in WriteDoubleWord()
256 … this.Log(LogLevel.Info, "data = {0}", dataToSend.Select(x => x.ToString("X")).Stringify()); in WriteDoubleWord()
[all …]
DAT86RF233.cs58 this.Log(LogLevel.Warning, "Unexpected GPIO: {0}", number); in OnGPIO()
100 this.Log(LogLevel.Warning, "Unsupported access mode: {0}", accessMode); in Transmit()
155 this.Log(LogLevel.Warning, "A frame with wrong CRC received - dropping it."); in HandleFrame()
161 …this.Log(LogLevel.Warning, "Short frame (length {0}) received - CRC is not checked.", frame.Length… in HandleFrame()
182 this.Log(LogLevel.Noisy, "Reading register {0}.", register); in HandleRegisterRead()
210 this.Log(LogLevel.Warning, "Read from unexpected register: 0x{0:X}", context); in HandleRegisterRead()
217 this.Log(LogLevel.Noisy, "Writing register {0} with data {1:X}.", register, data); in HandleRegisterWrite()
224 this.Log(LogLevel.Warning, "Unknown mode: 0x{0:1}", data); in HandleRegisterWrite()
228 this.Log(LogLevel.Info, "Entering {0} mode", operatingMode.ToString()); in HandleRegisterWrite()
232 this.Log(LogLevel.Info, "Entering {0} mode", operatingMode.ToString()); in HandleRegisterWrite()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/
DUSBEndpoint.cs64 device.Log(LogLevel.Warning, "Trying to write to a Read-Only endpoint"); in WriteData()
68 device.Log(LogLevel.Noisy, "Writing {0} bytes of data", packet.Length); in WriteData()
70 device.Log(LogLevel.Noisy, Misc.PrettyPrintCollectionHex(packet)); in WriteData()
76 …device.Log(LogLevel.Warning, "There is no data handler currently registered. Ignoring the written … in WriteData()
97 device.Log(LogLevel.Noisy, "Data read callback set"); in SetDataReadCallbackOneShot()
100 device.Log(LogLevel.Noisy, "Data read callback fired"); in SetDataReadCallbackOneShot()
102 …device.Log(LogLevel.Noisy, "Sending back {0} bytes: {1}", buffer.Peek().Count(), Misc.PrettyPrintC… in SetDataReadCallbackOneShot()
110 … device.Log(LogLevel.Noisy, "No data to read in non-blocking mode - returning an empty buffer"); in SetDataReadCallbackOneShot()
147 …Logger.Log(LogLevel.Warning, "Read more data from the USB endpoint ({0}) than limit ({1}). Some by… in Read()
181 device.Log(LogLevel.Noisy, "Handling data packet of size: {0}", data.Count); in HandlePacket()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DLiteX_Ethernet_CSR32.cs76 this.Log(LogLevel.Noisy, "Received frame of length: {0} bytes", frame.Bytes.Length); in ReceiveFrame()
90 this.Log(LogLevel.Warning, "There are no empty write slots. Dropping the packet"); in ReceiveFrame()
98 this.Log(LogLevel.Warning, "Packet is too long. Dropping"); in ReceiveFrame()
111 this.Log(LogLevel.Warning, "Reading outside buffer memory"); in ReadDoubleWordFromBuffer()
124 this.Log(LogLevel.Warning, "Writing outside buffer memory"); in WriteDoubleWordToBuffer()
131 this.Log(LogLevel.Noisy, "Reading from PHY: offset 0x{0:X}", offset); in ReadDoubleWordOverMDIO()
138 this.Log(LogLevel.Noisy, "Returning value: 0x{0:X}", result); in ReadDoubleWordOverMDIO()
142 this.Log(LogLevel.Warning, "Unhandled read from PHY register: 0x{0:X}", offset); in ReadDoubleWordOverMDIO()
149 … this.Log(LogLevel.Noisy, "Writing to PHY: offset 0x{0:X}, value 0x{1:X}", offset, value); in WriteDoubleWordOverMDIO()
153 this.Log(LogLevel.Warning, "Unhandled write to PHY register: 0x{0:X}", offset); in WriteDoubleWordOverMDIO()
[all …]
DLiteX_Ethernet.cs76 this.Log(LogLevel.Noisy, "Received frame of length: {0} bytes", frame.Bytes.Length); in ReceiveFrame()
90 this.Log(LogLevel.Warning, "There are no empty write slots. Dropping the packet"); in ReceiveFrame()
98 this.Log(LogLevel.Warning, "Packet is too long. Dropping"); in ReceiveFrame()
111 this.Log(LogLevel.Warning, "Reading outside buffer memory"); in ReadDoubleWordFromBuffer()
124 this.Log(LogLevel.Warning, "Writing outside buffer memory"); in WriteDoubleWordToBuffer()
131 this.Log(LogLevel.Noisy, "Reading from PHY: offset 0x{0:X}", offset); in ReadDoubleWordOverMDIO()
138 this.Log(LogLevel.Noisy, "Returning value: 0x{0:X}", result); in ReadDoubleWordOverMDIO()
142 this.Log(LogLevel.Warning, "Unhandled read from PHY register: 0x{0:X}", offset); in ReadDoubleWordOverMDIO()
149 … this.Log(LogLevel.Noisy, "Writing to PHY: offset 0x{0:X}, value 0x{1:X}", offset, value); in WriteDoubleWordOverMDIO()
153 this.Log(LogLevel.Warning, "Unhandled write to PHY register: 0x{0:X}", offset); in WriteDoubleWordOverMDIO()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DTegraDmaHost1X.cs47 this.Log(LogLevel.Warning, "Opcode 0x0 SETCL, set to 0x{0:X}",classid); in Execute_DMA()
52 this.Log(LogLevel.Warning, "Opcode 0x1 INCR, wcount = {0}", count); in Execute_DMA()
66 this.Log(LogLevel.Warning, "Opcode 0x6 GATHER, count = {0}", count); in Execute_DMA()
76 this.Log(LogLevel.Warning, "Opcode 0x1 INCR, count = {0}", count); in Execute_DMA()
80 this.Log(LogLevel.Warning, "Opcode 0x{0:X} UNSUPPORTED!", opcode); in Execute_DMA()
106 this.Log(LogLevel.Warning, ">>> Executing gather list of size {0} >>> ", cmd_l); in WriteDoubleWord()
110 this.Log(LogLevel.Warning, "<<< Executing list done <<< "); in WriteDoubleWord()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/SynopsysDWCEthernetQualityOfService/
DSynopsysDWCEthernetQualityOfService_DMA.cs73 this.Log(LogLevel.Noisy, "Receive: Watchdog reached limit."); in DMAChannel()
138 …this.Log(LogLevel.Warning, "Receive buffer size must be a multiple of 4. Ignoring LSBs, but this b… in DefineChannelRegisters()
171 …this.Log(LogLevel.Debug, "Transmit Tail register (DMACTxDTPR.TDT) set to: 0x{0:X}", txDescriptorRi… in DefineChannelRegisters()
183 …this.Log(LogLevel.Debug, "Receive Tail register (DMACRxDTPR.RDT) set to: 0x{0:X}", rxDescriptorRin… in DefineChannelRegisters()
274 this.Log(LogLevel.Debug, "Receive: Dropping overflow frame {0}", frame); in ReceiveFrame()
279 this.Log(LogLevel.Debug, "Receive: Incoming frame {0}", frame); in ReceiveFrame()
301 this.Log(LogLevel.Debug, "Blinking TxIRQ"); in UpdateInterrupts()
306 this.Log(LogLevel.Debug, "Blinking RxIRQ"); in UpdateInterrupts()
316 …this.Log(LogLevel.Debug, "TxIRQ: {0}, RxIRQ: {1}", txState ? "setting" : "unsetting", rxState ? "s… in UpdateInterrupts()
324 … this.Log(LogLevel.Warning, "Invalid interrupt mode value {0}", parent.dmaInterruptMode.Value); in UpdateInterrupts()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DUSBPendrive.cs55 …this.Log(LogLevel.Warning, "Underlying data size extended by {0} bytes to align it to the block si… in USBPendrive()
87 … this.Log(LogLevel.Debug, "Received a packet of {0} bytes in {1} mode.", packet.Length, mode); in HandleInput()
118 this.Log(LogLevel.Debug, "Sending result: {0}", response); in SendResult()
124 this.Log(LogLevel.Debug, "Sending data of length {0}.", data.Length); in SendData()
132 …this.Log(LogLevel.Warning, "Received more data ({0} bytes) than expected ({1} bytes). Aborting the… in HandleData()
137 …this.Log(LogLevel.Noisy, "Writing {0} bytes of data at address 0x{1:x}", packet.Length, dataBacken… in HandleData()
143 this.Log(LogLevel.Noisy, "All data written, switching to Command mode"); in HandleData()
152 … this.Log(LogLevel.Warning, "Broken SCSI command block wrapper detected. Ignoring it."); in HandleCommand()
156 this.Log(LogLevel.Noisy, "Parsed command block wrapper: {0}", commandBlockWrapper); in HandleCommand()
158 this.Log(LogLevel.Noisy, "Decoded command: {0}", command); in HandleCommand()
[all …]
DValentyUSB.cs114 this.Log(LogLevel.Warning, "Trying to read from an empty queue"); in DefineRegisters()
119 …this.Log(LogLevel.Noisy, "Reading byte from out buffer: 0x{0:X}. Bytes left: {1}", result, masterT… in DefineRegisters()
129 … this.Log(LogLevel.Noisy, "Endpoint 0 OUT response set to: {0} in state {1}", v, state); in DefineRegisters()
146 … this.Log(LogLevel.Warning, "Unexpected endpoint 0 OUT response: {0}. Expect problems", v); in DefineRegisters()
157 … this.Log(LogLevel.Noisy, "Endpoint 0 IN response set to: {0} in state {1}", v, state); in DefineRegisters()
175 … this.Log(LogLevel.Warning, "Unexpected endpoint 0 IN response: {0}. Expect problems", v); in DefineRegisters()
213 …this.Log(LogLevel.Error, "Setup packet handling finished, but there is still some unhandled additi… in SendSetupPacketResponse()
217 this.Log(LogLevel.Noisy, "Setup packet handled"); in SendSetupPacketResponse()
219 …this.Log(LogLevel.Noisy, "Response bytes: [{0}]", Misc.PrettyPrintCollectionHex(slaveToMasterBuffe… in SendSetupPacketResponse()
225 …this.Log(LogLevel.Error, "No setup packet is handled at the moment, but the software wants to send… in SendSetupPacketResponse()
[all …]

12345678910>>...26