Home
last modified time | relevance | path

Searched refs:entropyUnpackerFifo (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_EntropySource.cs29 entropyUnpackerFifo = new Queue<uint>(EntropyUnpackerFifoDepth); in OpenTitan_EntropySource()
197 if(entropyUnpackerFifo.Count == 0 && esfinalFifo.Count >= EntropyUnpackerFifoDepth) in FirmwareInterfacePath()
199entropyUnpackerFifo.EnqueueRange(esfinalFifo.DequeueRange(EntropyUnpackerFifoDepth)); in FirmwareInterfacePath()
202 if(entropyUnpackerFifo.Count > 0) in FirmwareInterfacePath()
214 if(val && entropyUnpackerFifo.Count > 0) in DefineRegisters()
318 if(entropyUnpackerFifo.Count == 0) in DefineRegisters()
324 if(!entropyUnpackerFifo.TryDequeue(out var value)) in DefineRegisters()
602 entropyUnpackerFifo.Clear(); in ResetBuffers()
621 private readonly Queue<uint> entropyUnpackerFifo; field in Antmicro.Renode.Peripherals.Miscellaneous.OpenTitan_EntropySource