Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/PCI/
DPCIHost_Bridge.cs97 if(selectedDevice != null) in WriteData()
99 selectedDevice.ConfigurationWriteDoubleWord((long)registerNumber.Value*4, data); in WriteData()
111 if(!ChildCollection.TryGetValue((int)deviceNumber.Value, out selectedDevice)) in ReadData()
114 selectedDevice = null; in ReadData()
118 return selectedDevice.ConfigurationReadDoubleWord((long)registerNumber.Value * 4); in ReadData()
133 private IPCIePeripheral selectedDevice; field in Antmicro.Renode.Peripherals.PCI.PCIHost_Bridge
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/ATAPI/
DATAPI.cs69 selectedDevice = null; in Reset()
113 return (packetTransmission || (selectedDevice?.DataReady ?? false)) ? in CreateRegisters()
135 if(!ChildCollection.TryGetValue((int)device, out selectedDevice)) in SelectDevice()
138 selectedDevice = null; in SelectDevice()
184 if(selectedDevice != null) in GatherPacket()
186 selectedDevice.HandleCommand(receivedCommand); in GatherPacket()
205 if(selectedDevice == null) in ExecuteCommand()
211 selectedDevice.SendIdentifyResponse(); in ExecuteCommand()
228 if(selectedDevice != null) in ReadData()
230 return selectedDevice.DequeueData(); in ReadData()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DIMXRT_LPSPI.cs43 selectedDevice = null; in Reset()
102 if(!TryGetByAddress((int)value, out selectedDevice)) in DefineRegisters()
415 device = selectedDevice; in TryGetDevice()
567 private ISPIPeripheral selectedDevice; field in Antmicro.Renode.Peripherals.SPI.IMXRT_LPSPI