Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/GPIOPort/
DIMXRT_GPIO.cs28 interruptConfig = new InterruptConfig[NumberOfPins]; in IMXRT_GPIO()
45 interruptConfig[i] = InterruptConfig.Low; in Reset()
164 config1.WithEnumField<DoubleWordRegister, InterruptConfig>(j * 2, 2, in BuildRegisterMap()
168 config2.WithEnumField<DoubleWordRegister, InterruptConfig>(j * 2, 2, in BuildRegisterMap()
218 case InterruptConfig.Low: in UpdateSingleInterruptRequest()
221 case InterruptConfig.High: in UpdateSingleInterruptRequest()
224 case InterruptConfig.Rising: in UpdateSingleInterruptRequest()
227 case InterruptConfig.Falling: in UpdateSingleInterruptRequest()
244 private readonly InterruptConfig[] interruptConfig;
248 private enum InterruptConfig enum in Antmicro.Renode.Peripherals.GPIOPort.IMXRT_GPIO
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/IRQControllers/
DEOSS3_IntrCtrl.cs36 …, LDO50Irq, ReservedSRAMIrq, LPSDIrq, DMicIrq }.Select((x, i) => new InterruptConfig(x, this, i)).… in EOSS3_IntrCtrl()
41 softwareInterrupt2Config = new InterruptConfig(SoftwareIrq2, this, 0); in EOSS3_IntrCtrl()
42 softwareInterrupt1Config = new InterruptConfig(SoftwareIrq1, this, 1); in EOSS3_IntrCtrl()
272 private readonly InterruptConfig[] externalIrqConfig;
273 private readonly InterruptConfig softwareInterrupt1Config;
274 private readonly InterruptConfig softwareInterrupt2Config;
283 private class InterruptConfig class in Antmicro.Renode.Peripherals.IRQControllers.EOSS3_IntrCtrl
285 public InterruptConfig(GPIO irq, EOSS3_IntrCtrl parent, int number) in InterruptConfig() method in Antmicro.Renode.Peripherals.IRQControllers.EOSS3_IntrCtrl.InterruptConfig
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/
DRenesasRA_IIC.cs521 private InterruptConfig receiveInterrupt;
522 private InterruptConfig transmitInterrupt;
523 private InterruptConfig transmitEndInterrupt;
524 private InterruptConfig startInterrupt;
525 private InterruptConfig stopInterrupt;
526 private InterruptConfig nackInterrupt;
553 private struct InterruptConfig struct in Antmicro.Renode.Peripherals.I2C.RenesasRA_IIC
DRenesasRZG_IIC.cs520 private InterruptConfig receiveInterrupt;
521 private InterruptConfig transmitInterrupt;
522 private InterruptConfig transmitEndInterrupt;
523 private InterruptConfig startInterrupt;
524 private InterruptConfig stopInterrupt;
525 private InterruptConfig nackInterrupt;
552 private struct InterruptConfig struct in Antmicro.Renode.Peripherals.I2C.RenesasRZG_IIC
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DLSM330_Gyroscope.cs123 InterruptConfig = 0x30, enumerator
DLSM9DS1_Magnetic.cs288 InterruptConfig = 0x30, enumerator
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm/
DARM_GenericInterruptController.cs2097 …ig = new ReadOnlyDictionary<InterruptId, InterruptConfig>(sgiIds.ToDictionary(id => id, _ => new I… in CPUEntry()
2387 …public IReadOnlyDictionary<InterruptId, InterruptConfig> SoftwareGeneratedInterruptsConfig { get; }
2394 …public IEnumerable<InterruptConfig> AllPrivateAndSoftwareGeneratedInterruptsConfigs => PrivatePeri…
2496 …areGeneratedInterrupt> GenerateSGIs(IReadOnlyDictionary<InterruptId, InterruptConfig> configs, CPU… in GenerateSGIs()
2989 public class InterruptConfig class
3038 public virtual InterruptConfig Config { get; } = new InterruptConfig();
3113 …public SoftwareGeneratedInterrupt(InterruptId irqId, InterruptConfig config, CPUEntry requester) :… in SoftwareGeneratedInterrupt()
3120 public override InterruptConfig Config { get; }