| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Storage/SCSI/Commands/ |
| D | SCSICommands.cs | 57 public byte Control; field 77 public byte Control; field 91 public ushort Control; field 105 public ushort Control; field 125 public byte Control; field 141 public byte Control; field 157 public byte Control; field 171 public byte Control; field 193 public byte Control; field 215 public byte Control; field [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/ |
| D | STM32W_UART.cs | 60 case Register.Control: in WriteDoubleWord() 116 private enum Control : uint enum in Antmicro.Renode.Peripherals.UART.STM32W_UART 126 Control = 0xC85C, // SC1_UARTCR enumerator 135 return (controlRegister & (uint)Control.Stop) == 0 ? Bits.One : Bits.Two; 143 if ((controlRegister & (uint)Control.ParityEnabled) == 0) 149 … return (controlRegister & (uint)Control.ParitySelection) == 0 ? Parity.Even : Parity.Odd;
|
| D | LEUART.cs | 57 case Register.Control: in WriteDoubleWord() 179 private enum Control enum in Antmicro.Renode.Peripherals.UART.LEUART 188 Control = 0x000, enumerator 204 return (controlRegister & (uint)Control.StopBits) != 0 ? Bits.Two : Bits.One; 212 var bits = ((controlRegister & (uint)(Control.ParityH | Control.ParityL)) >> 2);
|
| D | AppUart.cs | 33 case Register.Control: in ReadDoubleWord() 65 case Register.Control: in WriteDoubleWord() 152 Control = 0x20, enumerator
|
| D | Atmel91DebugUnit.cs | 50 case Offset.Control: in WriteDoubleWord() 93 case Offset.Control: in ReadDoubleWord() 155 Control = 0x00, enumerator
|
| D | AlteraJTAG_UART.cs | 82 Registers.Control.Define(this) in DefineRegisters() 98 Control = 0x4, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/ |
| D | PeriodicInterruptTimer.cs | 67 timers[i].Control = InnerTimer.ControlRegister.InterruptEnable; in Reset() 84 case Offset.Control: in ReadTimer() 85 value = (uint)timers[timerNo].Control; in ReadTimer() 108 case Offset.Control: in WriteTimer() 109 timers[timerNo].Control = (InnerTimer.ControlRegister)value; in WriteTimer() 139 public ControlRegister Control property 177 Control = 0x008, enumerator
|
| D | PL031.cs | 40 case Offset.Control: in ReadDoubleWord() 68 case Offset.Control: in WriteDoubleWord() 118 Control = 0x0c, enumerator
|
| D | SunxiHighSpeedTimer.cs | 57 case Registers.Control: in ReadDoubleWord() 87 case Registers.Control: in WriteDoubleWord() 175 Control = 0x10, enumerator 260 controlRegister.Write((long)Registers.Control, value);
|
| D | LowPower_Timer.cs | 30 {(long)Registers.Control, new DoubleWordRegister(this) in LowPower_Timer() 94 Control = 0x0, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Test/PeripheralsTests/ |
| D | OpenTitan_AES_Test.cs | 35 peripheral.WriteDoubleWord((long)OpenTitan_AES.Registers.Control, 0x8); in ShouldChangeStatusWhenSetToAutomaticMode() 56 peripheral.WriteDoubleWord((long)OpenTitan_AES.Registers.Control, 0x205); in ShouldGiveCorrectEncryptionOutput() 72 peripheral.WriteDoubleWord((long)OpenTitan_AES.Registers.Control, 0x8405); in ShouldWorkInManualModeToo() 99 peripheral.WriteDoubleWord((long)OpenTitan_AES.Registers.Control, 0x206); in ShouldGiveCorrectDecryptionOutput() 125 peripheral.WriteDoubleWord((long)OpenTitan_AES.Registers.Control, 0x1005); in ShouldRandomizeInputRegistersOnTrigger() 144 peripheral.WriteDoubleWord((long)OpenTitan_AES.Registers.Control, 0x206); in ShouldBeAbleToDoMultipleTransformationsWithASingleKey()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/ |
| D | SCSI.cs | 32 public byte Control; field in Antmicro.Renode.Peripherals.USBDeprecated.SCSI.CommandDescriptorBlock 57 this.Control = data[5]; in Fill() 68 this.Control = data[9]; in Fill() 79 this.Control = data[11]; in Fill() 195 public byte Control; field in Antmicro.Renode.Peripherals.USBDeprecated.SCSI.ModeSenseCommand 204 this.Control = data[5]; in Fill()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/ |
| D | GaislerEth.cs | 47 case Registers.Control: in ReadDoubleWord() 48 return registers.Control; in ReadDoubleWord() 77 case Registers.Control: in WriteDoubleWord() 86 registers.Control = value; in WriteDoubleWord() 206 if((registers.Control & (1u << 1)) == 0) in ReceiveFrame() 245 if(rd.InterruptEnable && ((registers.Control & (1u << 3)) != 0)) in ReceiveFrame() 294 if(td.InterruptEnable && ((registers.Control & (1u << 2)) != 0)) in transmitFrame() 328 public uint Control = 1u << 7; field in Antmicro.Renode.Peripherals.Network.GaislerEth.regs 341 Control = 0x00, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Input/ |
| D | PL050.cs | 59 case Registers.Control: in ReadDoubleWord() 91 case Registers.Control: in WriteDoubleWord() 132 Control = 0, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm-M/ |
| D | CortexMRegisters.cs | 45 public RegisterValue Control property in Antmicro.Renode.Peripherals.CPU.CortexM 49 return GetRegisterValue32((int)CortexMRegisters.Control); 53 SetRegisterValue32((int)CortexMRegisters.Control, value); 200 …{ CortexMRegisters.Control, new CPURegister(18, 32, isGeneral: false, isReadonly: false, aliases:… 221 Control = 18, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/ |
| D | OpenTitan_SRAMController.cs | 52 Registers.Control.Define(this) in DefineRegisters() 65 Control = 0x14, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/ |
| D | OmapDma.cs | 56 case Channel.Offset.Control: in ReadDoubleWord() 57 return channels[index].Control; in ReadDoubleWord() 148 case Channel.Offset.Control: in WriteDoubleWord() 149 channels[index].Control = value; in WriteDoubleWord() 254 public uint Control; field 277 Control = 0x00, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | MAX32650_PWRSEQ.cs | 27 Registers.Control.Define(this, 0x1800) in DefineRegisters() 54 Control = 0x00, enumerator
|
| D | NPCX_HFCG.cs | 27 Registers.Control.Define(this) in DefineRegisters() 73 Control = 0x0, enumerator
|
| D | NPCX_LFCG.cs | 28 Registers.Control.Define(this) in DefineRegisters() 69 Control = 0x0, enumerator
|
| D | K6xF_RNG.cs | 24 {(long)Registers.Control, new DoubleWordRegister(this) in K6xF_RNG() 82 Control = 0x0, enumerator
|
| D | SAM_TRNG.cs | 27 Registers.Control.Define(this) in DefineRegisters() 91 Control = 0x0, enumerator
|
| D | STM32F4_RNG.cs | 27 {(long)Registers.Control, new DoubleWordRegister(this) in STM32F4_RNG() 89 Control = 0x0, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/I2C/ |
| D | EFR32xG2_I2CController.cs | 27 {(long)Registers.Control, GenerateControlRegister()}, in EFR32xG2_I2CController() 69 Control = 0x08, enumerator
|
| D | EFR32_I2CController.cs | 20 {(long)Registers.Control, GenerateControlRegister()}, in EFR32_I2CController() 71 Control = 0x00, enumerator
|