Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/
DEFR32_GenericI2CController.cs151 interruptsManager.SetInterrupt(Interrupt.ReceiveDataValid, rxBuffer.Any()); in ReadRxByte()
158 interruptsManager.SetInterrupt(Interrupt.ReceiveBufferUnderflow); in ReadRxByte()
194 interruptsManager.SetInterrupt(Interrupt.MasterStopCondition); in HandleCommand()
217 interruptsManager.SetInterrupt(Interrupt.RepeatedStartCondition); in OnStartCommand()
221 interruptsManager.SetInterrupt(Interrupt.StartCondition); in OnStartCommand()
227 interruptsManager.SetInterrupt(Interrupt.BusHold); in OnStartCommand()
246 interruptsManager.SetInterrupt(Interrupt.MasterStopCondition); in OnStopCommand()
254 interruptsManager.SetInterrupt(Interrupt.TransmitBufferLevel); in OnStopCommand()
255 interruptsManager.SetInterrupt(Interrupt.TransferCompleted); in OnStopCommand()
300 interruptsManager.SetInterrupt(Interrupt.NotAcknowledgeReceived); in HandleAddressByte()
[all …]
DEFM32GGI2CController.cs59 SetInterrupt(1 << (int)Interrupts.RXUF); in ReadDoubleWord()
126 SetInterrupt(value); in WriteDoubleWord()
187 SetInterrupt(1 << (int)Interrupts.TXBL); in HandleCtrl()
202 SetInterrupt(1 << (int)Interrupts.START); in HandleCommand()
218 SetInterrupt(1 << (int)Interrupts.MSTOP); in HandleCommand()
282 SetInterrupt(1 << (int)Interrupts.TXOF); in LoadTxData()
292 SetInterrupt(1 << (int)Interrupts.TXC); in ShiftTxData()
306 SetInterrupt(1 << (int)Interrupts.TXBL); in ShiftTxData()
350 SetInterrupt(1 << (int)Interrupts.TXBL); in HandleTransfer()
382 SetInterrupt(1 << (int)Interrupts.ACK); in HandleTransfer()
[all …]
DTegraI2CController.cs45 SetInterrupt(Interrupts.RxFifoUnderflow); in ReadDoubleWord()
163 SetInterrupt(Interrupts.NoACK); in TransferData()
188 SetInterrupt(Interrupts.TxFifoDataReq); in TransferData()
208 SetInterrupt(Interrupts.PacketXferComplete, Interrupts.AllPacketsXferComplete); in FinishTransfer()
222 SetInterrupt(Interrupts.RxFifoDataReq); in PrepareRead()
256 private void SetInterrupt(params Interrupts[] interrupt) in SetInterrupt() method in Antmicro.Renode.Peripherals.I2C.TegraI2CController
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DNRF_USBREG.cs37 private void SetInterrupt(bool irq) in SetInterrupt() method in Antmicro.Renode.Peripherals.Miscellaneous.NRF_USBREG
50 writeCallback: (_, __) => SetInterrupt(false), in DefineRegisters()
57 writeCallback: (_, __) => SetInterrupt(false), in DefineRegisters()
66 writeCallback: (_, __) => SetInterrupt(true), in DefineRegisters()
DNRF52840_EGU.cs40 interruptManager.SetInterrupt((Events)i); in DefineRegisters()
60 interruptManager.SetInterrupt((Events)i, false); in DefineRegisters()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/
DNRF52840_UART.cs115 interruptManager.SetInterrupt(Interrupts.EndReceive); in CharWritten()
118 interruptManager.SetInterrupt(Interrupts.ReceiveReady); in CharWritten()
228 interruptManager.SetInterrupt(Interrupts.ReceiveReady); in DefineRegisters()
244 interruptManager.SetInterrupt(Interrupts.TransmitReady); in DefineRegisters()
302 … writeCallback: (_, value) => interruptManager.SetInterrupt(interrupt, value), in GetEventRegister()
309 interruptManager.SetInterrupt(Interrupts.ReceiveStarted); in StartRx()
329 interruptManager.SetInterrupt(Interrupts.EndReceive); in StopRx()
331 interruptManager.SetInterrupt(Interrupts.ReceiveTimeout); in StopRx()
340 interruptManager.SetInterrupt(Interrupts.TransmitStarted); in StartTx()
341 interruptManager.SetInterrupt(Interrupts.TransmitStopped); in StartTx()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DSAM_SPI.cs37 irqManager.SetInterrupt(Interrupts.TransmissionRegistersEmpty); in Reset()
102 irqManager.SetInterrupt(Interrupts.TransmitDataRegisterEmpty); in DefineRegisters()
280 irqManager.SetInterrupt(Interrupts.EndOfReceiveBuffer, pdc.EndOfRxBuffer); in HandlePDCInterrupts()
281 irqManager.SetInterrupt(Interrupts.EndOfTransmitBuffer, pdc.EndOfTxBuffer); in HandlePDCInterrupts()
282 irqManager.SetInterrupt(Interrupts.TransmitBufferEmpty, pdc.TxBufferEmpty); in HandlePDCInterrupts()
283 irqManager.SetInterrupt(Interrupts.ReceiveBufferFull, pdc.RxBufferFull); in HandlePDCInterrupts()
305 irqManager.SetInterrupt(Interrupts.OverrunError); in TryTransfer()
330 irqManager.SetInterrupt(Interrupts.ReceiveDataRegisterFull); in TryTransfer()
331 irqManager.SetInterrupt(Interrupts.TransmissionRegistersEmpty); in TryTransfer()
371 irqManager.SetInterrupt(Interrupts.TransmissionRegistersEmpty); in SWReset()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/
DEFR32xG24_SYSRTC.cs22 limitTimer.LimitReached += () => interruptManager.SetInterrupt(Interrupt.Overflow); in EFR32xG24_SYSRTC()
170 writeCallback: (irq, _, newValue) => interruptManager.SetInterrupt(irq, newValue))); in DefineRegisters()
185 interruptManager.SetInterrupt(Interrupt.Compare0Match); in HandleCompare0TimerCompareReached()
193 interruptManager.SetInterrupt(Interrupt.Compare1Match); in HandleCompare1TimerCompareReached()
201 interruptManager.SetInterrupt(Interrupt.Capture0); in HandleCapture0TimerCompareReached()
DEFR32xG2_RTCC.cs27 interruptManager.SetInterrupt(Interrupt.Overflow); in EFR32xG2_RTCC()
31 interruptManager.SetInterrupt(Interrupt.CounterTick); in EFR32xG2_RTCC()
39 interruptManager.SetInterrupt(InterruptForChannel(i)); in EFR32xG2_RTCC()
147 writeCallback: (irq, _, newValue) => interruptManager.SetInterrupt(irq, newValue))); in DefineRegisters()
DEFR32xG2_BURTC.cs31 interruptManager.SetInterrupt(Interrupt.CompareMatch); in EFR32xG2_BURTC()
95 writeCallback: (irq, _, newValue) => interruptManager.SetInterrupt(irq, newValue))); in DefineRegisters()
DEFR32_Timer.cs120 interruptManager.SetInterrupt(Interrupt.Underflow); in LimitReached()
124 interruptManager.SetInterrupt(Interrupt.Overflow); in LimitReached()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DMPFS_SDController.cs268 …irqManager.SetInterrupt(Interrupts.BufferWriteReady, irqManager.IsEnabled(Interrupts.BufferWriteRe… in InitializeRegisters()
269 …irqManager.SetInterrupt(Interrupts.BufferReadReady, irqManager.IsEnabled(Interrupts.BufferReadRead… in InitializeRegisters()
270 …irqManager.SetInterrupt(Interrupts.CommandComplete, irqManager.IsEnabled(Interrupts.CommandComplet… in InitializeRegisters()
273 …irqManager.SetInterrupt(Interrupts.TransferComplete, irqManager.IsEnabled(Interrupts.TransferCompl… in InitializeRegisters()
478 …irqManager.SetInterrupt(Interrupts.TransferComplete, irqManager.IsEnabled(Interrupts.TransferCompl… in ReadCard()
493 …irqManager.SetInterrupt(Interrupts.TransferComplete, irqManager.IsEnabled(Interrupts.TransferCompl… in WriteBuffer()
515 …irqManager.SetInterrupt(Interrupts.TransferComplete, irqManager.IsEnabled(Interrupts.TransferCompl… in WriteCard()
523 …irqManager.SetInterrupt(Interrupts.BufferReadReady, irqManager.IsEnabled(Interrupts.BufferReadRead… in ReadBuffer()
526 …irqManager.SetInterrupt(Interrupts.TransferComplete, irqManager.IsEnabled(Interrupts.TransferCompl… in ReadBuffer()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USB/
DMPFS_USB.cs130 usbInterruptsManager.SetInterrupt(UsbInterrupt.DeviceDisconnectedSessionEnded); in Unregister()
151 irqManager.SetInterrupt(irq, false);
386 txInterruptsManager.SetInterrupt(TxInterrupt.Endpoint0); in DefineNonIndexedEndpointControlAndStatusRegisters()
394 txInterruptsManager.SetInterrupt(TxInterrupt.Endpoint0); in DefineNonIndexedEndpointControlAndStatusRegisters()
404 txInterruptsManager.SetInterrupt(TxInterrupt.Endpoint0); in DefineNonIndexedEndpointControlAndStatusRegisters()
448 rxInterruptsManager.SetInterrupt((RxInterrupt)endpointId); in DefineNonIndexedEndpointControlAndStatusRegisters()
511 txInterruptsManager.SetInterrupt((TxInterrupt)endpointId); in DefineNonIndexedEndpointControlAndStatusRegisters()
619 usbInterruptsManager.SetInterrupt(UsbInterrupt.DeviceConnected); in TryInitializeConnectedDevice()
DNRF_USBD.cs124 interruptManager.SetInterrupt(@event);
144 interruptManager.SetInterrupt(@event, false); in DefineEvent()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/SiLabs/
DEFR32_GenericUSART.cs196 interruptsManager.SetInterrupt(Interrupt.ReceiveDataValid); in CharWritten()
273 interruptsManager.SetInterrupt(Interrupt.TransmitBufferLevel);
505 interruptsManager.SetInterrupt(Interrupt.TransmitBufferLevel); in HandleTxBufferData()
507 interruptsManager.SetInterrupt(Interrupt.TransmitComplete); in HandleTxBufferData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DK6xF_Ethernet.cs308 interruptManager.SetInterrupt(Interrupts.ReceiveBufferInterrupt); in ReceiveFrame()
309 interruptManager.SetInterrupt(Interrupts.ReceiveFrameInterrupt); in ReceiveFrame()
421 interruptManager.SetInterrupt(Interrupts.TransmitFrameInterrupt); in SendFrames()
422 interruptManager.SetInterrupt(Interrupts.TransmitBufferInterrupt); in SendFrames()
460 interruptManager.SetInterrupt(Interrupts.MIIInterrupt); in HandlePhyWrite()
DCadenceGEM.cs538 interruptManager.SetInterrupt(Interrupts.ReceiveComplete); in ReceiveFrame()
544 interruptManager.SetInterrupt(Interrupts.ReceiveUsedBitRead); in ReceiveFrame()
593 interruptManager.SetInterrupt(Interrupts.ManagementDone); in HandlePhyWrite()
670 interruptManager.SetInterrupt(Interrupts.TransmitUsedBitRead); in SendFrames()
671 interruptManager.SetInterrupt(Interrupts.TransmitComplete); in SendFrames()
DENC28J60.cs438 private void SetInterrupt(bool value) in SetInterrupt() method in Antmicro.Renode.Peripherals.Network.ENC28J60
445 SetInterrupt(interruptsEnabled.Value && in RefreshInterruptStatus()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DInterruptManager.cs224 writeCallback: (_, __) => SetInterrupt(local));
265 public void SetInterrupt(TInterrupt interrupt, bool status = true) in SetInterrupt() method in Antmicro.Renode.Utilities.TInterrupt
290 SetInterrupt(interrupt, false); in ClearInterrupt()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DEFR32xg13FlashController.cs196 interruptsManager.SetInterrupt(Interrupt.WriteDone); in WriteWordToFlash()
212 interruptsManager.SetInterrupt(Interrupt.EraseDone); in ErasePage()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DRenesasDA_DMABase.cs224 parent.interruptsManager.SetInterrupt((Interrupt)channelNumber); in DoTransfer()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/
DNRF52840_Radio.cs113 interruptManager.SetInterrupt(@event, false); in DefineEvent()
314 interruptManager.SetInterrupt(@event);