| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/ |
| D | MPFS_PDMA.cs | 260 ulong sourceAddress = nextSourceHigh.Value; in InitTransfer() 261 sourceAddress = sourceAddress << 32; in InitTransfer() 262 sourceAddress = sourceAddress + nextSourceLow.Value; in InitTransfer() 274 IssueCopy(sourceAddress, destinationAddress, size); in InitTransfer() 275 FinishTransfer(sourceAddress, destinationAddress, size); in InitTransfer() 279 private void IssueCopy(ulong sourceAddress, ulong destinationAddress, ulong size) in IssueCopy() argument 291 sourceAddress, in IssueCopy() 298 sourceAddress += (ulong)partSize; in IssueCopy() 304 private void FinishTransfer(ulong sourceAddress, ulong destinationAddress, ulong size) in FinishTransfer() argument 308 var execSource = sourceAddress + size; in FinishTransfer()
|
| D | NPCX_MDMA.cs | 20 … public NPCX_MDMA(IMachine machine, uint sourceAddress, uint destinationAddress) : base(machine) in NPCX_MDMA() argument 25 DefineRegisters(sourceAddress, destinationAddress); in NPCX_MDMA() 56 private void DefineRegisters(uint sourceAddress, uint destinationAddress) in DefineRegisters() argument 66 context = DefineChannel0Registers(sourceAddress); in DefineRegisters() 133 private DMAChannelContext DefineChannel0Registers(uint sourceAddress) in DefineChannel0Registers() argument 135 …var context = new DMAChannelContext(this, sourceAddress, DefaultMemoryAddress, DMAChannelContext.T… in DefineChannel0Registers() 214 …public DMAChannelContext(NPCX_MDMA owner, uint sourceAddress, uint destinationAddress, TransferDir… in DMAChannelContext() argument 217 defaultSourceAddress = sourceAddress; in DMAChannelContext()
|
| D | MSP430F261X_DMA.cs | 74 … ? machine.SystemBus.ReadByte((ulong)sourceAddress[channelIndex]) : machine.SystemBus.ReadWord((ul… in PerformTransfer() 84 sourceAddress[channelIndex] = sourceAddress[channelIndex] + sourceIncrement; in PerformTransfer() 155 valueProviderCallback: _ => (ulong)sourceAddress[index], in DefineChannelRegisters() 156 writeCallback: (_, value) => sourceAddress[index] = (long)value), in DefineChannelRegisters() 173 private long[] sourceAddress = new long[ChannelsCount]; field in Antmicro.Renode.Peripherals.Memory.MSP430F261X_DMA
|
| D | RenesasDA_DMABase.cs | 205 Request getDescriptorData = new Request(sourceAddress, destinationAddress, in DoTransfer() 211 sourceAddress, in DoTransfer() 220 sourceAddress = (ulong)response.ReadAddress; in DoTransfer() 251 return sourceAddress; 256 sourceAddress = value; 273 public ulong sourceAddress; field in Antmicro.Renode.Peripherals.DMA.RenesasDA_DMABase.Channel 290 sourceAddress = setSourceAddress; in CircularModeReset()
|
| D | STM32LDMA.cs | 210 uint sourceAddress, destinationAddress; in DoTransfer() 216 sourceAddress = memoryAddress; in DoTransfer() 225 sourceAddress = peripheralAddress; in DoTransfer() 233 …var request = new Request(sourceAddress, destinationAddress, numberOfData, sourceTransferType, des… in DoTransfer()
|
| D | TegraDma.cs | 224 var sourceAddress = apbIsSource ? apbStartingAddress : ahbStartingAddress; in HandleControlWrite() 229 …g copy: 0x{1:X} ({2}) ---> 0x{3:X} ({4}), size {5}B.", channelNumber, sourceAddress, sourceTransfe… in HandleControlWrite() 231 …parent.dmaEngine.IssueCopy(new Request(sourceAddress, destinationAddress, size, sourceTransferType… in HandleControlWrite()
|
| D | STM32DMA.cs | 260 var sourceAddress = 0u; in CreateRequest() 266 sourceAddress = peripheralAddress; in CreateRequest() 270 sourceAddress = memory0Address; in CreateRequest() 279 …return new Request(sourceAddress, (uint)(destinationAddress + (destinationOffset ?? 0)), size ?? n… in CreateRequest()
|
| D | STM32WBA_GPDMA.cs | 314 .WithValueField(0, 32, out sourceAddress, name: "Source address (SA)", in Channel() 418 sourceAddress.Value = response.ReadAddress.Value; in DoTransfer() 430 private Response IssueCopy(ulong sourceAddress, ulong destinationAddress, uint size, in IssueCopy() argument 435 sourceAddress, in IssueCopy() 491 private IValueRegisterField sourceAddress; field in Antmicro.Renode.Peripherals.DMA.STM32WBA55_GPDMA.Channel
|
| D | EFR32MG12_LDMA.cs | 484 writeCallback: (_, value) => descriptor.sourceAddress = (uint)value, in Channel() 485 valueProviderCallback: _ => descriptor.sourceAddress, in Channel() 682 source: new Place(descriptor.sourceAddress), in Transfer() 704 descriptor.sourceAddress += SourceIncrement * blockSizeMultiplier; in Transfer() 1097 public uint sourceAddress; field
|
| D | STM32G0DMA.cs | 358 private Response IssueCopy(ulong sourceAddress, ulong destinationAddress, uint size, in IssueCopy() argument 363 sourceAddress, in IssueCopy()
|
| D | EFR32xG22_LDMA.cs | 828 writeCallback: (_, value) => descriptor.sourceAddress = (uint)value, in Channel() 829 valueProviderCallback: _ => descriptor.sourceAddress, in Channel() 1043 source: new Place(descriptor.sourceAddress), in Transfer() 1066 descriptor.sourceAddress += SourceIncrement * blockSizeMultiplier; in Transfer() 1374 public uint sourceAddress; field
|
| D | STM32DMA2D.cs | 374 …private void DoCopy(ulong sourceAddress, ulong destinationAddress, byte[] sourceBuffer, int source… in DoCopy() argument 376 var currentSource = sourceAddress; in DoCopy()
|
| D | EFR32MG24_LDMA.cs | 1475 writeCallback: (_, value) => descriptor.sourceAddress = (uint)value, in Channel() 1476 valueProviderCallback: _ => descriptor.sourceAddress, in Channel() 1690 source: new Place(descriptor.sourceAddress), in Transfer() 1713 descriptor.sourceAddress += SourceIncrement * blockSizeMultiplier; in Transfer() 2031 public uint sourceAddress; field
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/DMA/ |
| D | DmaEngine.cs | 41 var sourceAddress = request.Source.Address ?? 0; in IssueCopy() 42 var whatIsAtSource = sysbus.WhatIsAt(sourceAddress, context); in IssueCopy() 57 sysbus.ReadBytes(sourceAddress, request.Size, buffer, 0, context: context); in IssueCopy() 66 sysbus.ReadBytes(sourceAddress, readLengthInBytes, buffer, 0, context: context); in IssueCopy() 76 var readAddress = sourceAddress + offset; in IssueCopy()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/SynopsysDWCEthernetQualityOfService/ |
| D | SynopsysDWCEthernetQualityOfService_DMA.cs | 714 MACAddress? sourceAddress = null; in StartTx() 719 sourceAddress = parent.MAC0; in StartTx() 723 sourceAddress = parent.MAC1; in StartTx() 726 sourceAddress = null; in StartTx() 730 if(!sourceAddress.HasValue) in StartTx() 736 sourceAddress = parent.MAC0; in StartTx() 740 sourceAddress = parent.MAC1; in StartTx() 759 sourceAddress in StartTx()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/ |
| D | SMSC9500.cs | 782 sourceAddress = new byte[4]; in FillFromBuffer() 784 Array.Copy(buffer,MACHeaderLegth+12,sourceAddress,0,4); in FillFromBuffer() 794 Array.Copy(sourceAddress,0,arr,0,4); in ToArray() 802 private byte[] sourceAddress; field in Antmicro.Renode.Peripherals.USBDeprecated.SMSC9500.IPpacket.PseudoHeader
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/MSP430X/ |
| D | MSP430X.cs | 1113 …erand1 = GetOperandValue((Registers)source, sourceAddressing, out var sourceAddress, accessWidth: … in TryEvaluateDoubleOperand() 1119 …x{0:X} extension=0x{1:X} Operand2 address=0x{2:X} extension=0x{3:X}", sourceAddress, sourceExtensi… in TryEvaluateDoubleOperand()
|