Home
last modified time | relevance | path

Searched refs:Address (Results 1 – 25 of 65) sorted by relevance

123

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Structure/
DTypedNumberRegistrationPoint.cs14 public T Address { get; private set; } property in Antmicro.Renode.Core.Structure.TypedNumberRegistrationPoint
19 Address = address; in TypedNumberRegistrationPoint()
25 Address = address; in TypedNumberRegistrationPoint()
31 return new TypedNumberRegistrationPoint<T>(Address, typeof(P)); in WithType()
44 return string.Format("Type: {0}, Address: {1}", Type, Address); in ToString()
58 return Address.Equals(other.Address); in Equals()
65 return (Address != null ? new Tuple<Type, T>(Type, Address).GetHashCode() : 0); in GetHashCode()
DNumberRegistrationPoint.cs15 public T Address { get; private set ;} property in Antmicro.Renode.Core.Structure.NumberRegistrationPoint
19 Address = address; in NumberRegistrationPoint()
32 return string.Format("Address: {0}", Address); in ToString()
46 return Address.Equals(other.Address); in Equals()
54 return (Address != null ? Address.GetHashCode() : 0); in GetHashCode()
DUSBRegistrationPoint.cs21 return string.Format("Port {0}", Address); in ToString()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DMPFS_Sysreg.cs26 new PeripheralDisableInfo { Address = 0x20200000, Name = "ENVM" }, in MPFS_Sysreg()
27 new PeripheralDisableInfo { Address = 0x20110000, Name = "MAC0" }, in MPFS_Sysreg()
28 new PeripheralDisableInfo { Address = 0x20112000, Name = "MAC1" }, in MPFS_Sysreg()
29 new PeripheralDisableInfo { Address = 0x20008000, Name = "MMC" }, in MPFS_Sysreg()
30 new PeripheralDisableInfo { Address = 0x20125000, Name = "TIMER" }, in MPFS_Sysreg()
31 new PeripheralDisableInfo { Address = 0x20000000, Name = "MMUART0" }, in MPFS_Sysreg()
32 new PeripheralDisableInfo { Address = 0x20100000, Name = "MMUART1" }, in MPFS_Sysreg()
33 new PeripheralDisableInfo { Address = 0x20102000, Name = "MMUART2" }, in MPFS_Sysreg()
34 new PeripheralDisableInfo { Address = 0x20104000, Name = "MMUART3" }, in MPFS_Sysreg()
35 new PeripheralDisableInfo { Address = 0x20106000, Name = "MMUART4" }, in MPFS_Sysreg()
[all …]
DLiteX_MMCM_CSR32.cs85 Registers.Address.Define(this) in DefineRegisters()
139 Address = 0x14, enumerator
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/IEEE802_15_4/
DAddress.cs13 public class Address class
15 public Address(AddressingMode mode) in Address() method in Antmicro.Renode.Peripherals.Wireless.IEEE802_15_4.Address
25 public Address(ArraySegment<byte> source) in Address() method in Antmicro.Renode.Peripherals.Wireless.IEEE802_15_4.Address
35 public Address(byte[] source) in Address() method in Antmicro.Renode.Peripherals.Wireless.IEEE802_15_4.Address
62 var objAsAddress = obj as Address; in Equals()
DAddressInformation.cs20 …DestinationAddress = new Address(new ArraySegment<byte>(data.Array, data.Offset + 2, destinationAd… in AddressInformation()
35 …SourceAddress = new Address(new ArraySegment<byte>(data.Array, data.Offset + internalOffset, sourc… in AddressInformation()
42 public Address SourceAddress { get; private set; }
44 public Address DestinationAddress { get; private set; }
DPHYHeader802154.cs20Address = byteB; // This is TI CC1200 specific byte, normally 802.15.4 has just Length in PHYHeader802154()
32 public uint Address { get; } property in Antmicro.Renode.Peripherals.Wireless.IEEE802_15_4.PHYHeader802154
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DReadMemoryCommand.cs35 if(manager.Machine.SystemBus.WhatIsAt(access.Address, context: manager.Cpu) == null) in Execute()
47 … val = manager.Machine.SystemBus.ReadByte(access.Address, context: manager.Cpu); in Execute()
51 … val = manager.Machine.SystemBus.ReadWord(access.Address, context: manager.Cpu); in Execute()
55 … val = manager.Machine.SystemBus.ReadDoubleWord(access.Address, context: manager.Cpu); in Execute()
59 … val = manager.Machine.SystemBus.ReadQuadWord(access.Address, context: manager.Cpu); in Execute()
63 …data = manager.Machine.SystemBus.ReadBytes(access.Address, (int)access.Length, context: manager.Cp… in Execute()
DWriteDataToMemoryCommand.cs64 … manager.Machine.SystemBus.WriteByte(access.Address, (byte)val, context: manager.Cpu); in WriteData()
67 … manager.Machine.SystemBus.WriteWord(access.Address, (ushort)val, context: manager.Cpu); in WriteData()
70 … manager.Machine.SystemBus.WriteDoubleWord(access.Address, (uint)val, context: manager.Cpu); in WriteData()
73 … manager.Machine.SystemBus.WriteQuadWord(access.Address, (ulong)val, context: manager.Cpu); in WriteData()
76 …manager.Machine.SystemBus.WriteBytes(data, access.Address, startingIndex, (long)access.Length, con… in WriteData()
DBreakpointCommand.cs151 … manager.Machine.SystemBus.AddWatchpointHook(descriptor.Address, descriptor.Width, access, hook); in AddWatchpointsCoveringMemoryArea()
172 manager.Machine.SystemBus.RemoveWatchpointHook(descriptor.Address, hook); in RemoveWatchpointsCoveringMemoryArea()
195 Address = address; in WatchpointDescriptor()
209 return objAsBreakpointDescriptor.Address == Address in Equals()
217 return 17 * (int)Address in GetHashCode()
223 public readonly ulong Address; field in Antmicro.Renode.Utilities.GDB.Commands.BreakpointCommand.WatchpointDescriptor
DCalculateCRCCommand.cs41 if(manager.Machine.SystemBus.WhatIsAt(access.Address, context: manager.Cpu) == null) in Execute()
48 …manager.Machine.SystemBus.ReadBytes(access.Address, (int)access.Length, data, currentIndex, onlyMe… in Execute()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/DMA/
DPlace.cs22 Address = address; in Place()
25 public ulong? Address { get; private set; } property in Antmicro.Renode.Peripherals.DMA.Place
DDmaEngine.cs27 ReadAddress = request.Source.Address, in IssueCopy()
28 WriteAddress = request.Destination.Address, in IssueCopy()
41 var sourceAddress = request.Source.Address ?? 0; in IssueCopy()
45 if(!request.Source.Address.HasValue) in IssueCopy()
103 var destinationAddress = request.Destination.Address ?? 0; in IssueCopy()
107 if(!request.Destination.Address.HasValue) in IssueCopy()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/
DCC1200.cs166 public byte Address; field
279 access.Address = command; in Transmit()
309 access.Address = data; in Transmit()
318 …"Writing to Register 0x{0:X} ({1}), value 0x{2:X}", access.Address, (Registers)access.Address, dat… in Transmit()
319 registers.Write(access.Address, data); in Transmit()
322 …ExtendedRegister 0x{0:X} ({1}), value 0x{2:X}", access.Address, (ExtendedRegisters)access.Address,… in Transmit()
323 extendedRegisters.Write(access.Address, data); in Transmit()
334 freeArea[access.Address] = data; in Transmit()
347 value = registers.Read(access.Address); in Transmit()
348 …eading from Register 0x{0:X} ({1}), value 0x{2:X}", access.Address, (Registers)access.Address, val… in Transmit()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/
DHaltArguments.cs15 Address = address; in HaltArguments()
21 public ulong? Address { get; } property in Antmicro.Renode.Peripherals.CPU.HaltArguments
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DDA16200.cs96 get => address.Address;
119 if(destination.Address == "0") in SendData()
356 Address = address; in NetworkAddress()
367 return new NetworkAddress(Address, port); in WithPort()
382 return address.Address == Address; in Equals()
387 return Address.GetHashCode(); in GetHashCode()
395 public string Address { get; } property in Antmicro.Renode.Peripherals.Network.DA16200.NetworkAddress
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSVDParser.cs135 …return registerDictionary.TryGetValue(offset, out tmpRegister) && tmpRegister.Address == offset &&… in HitInTheRegisterDictionary()
173 … var mask = ((1ul << (8 * howManyTimes)) - 1) << (8 * (int)(tmpOffset - register.Address)); in AssembleValueFromRegisters()
174 … var tmpValue = (register.ResetValue & mask) >> (8 * (int)(tmpOffset - register.Address)); in AssembleValueFromRegisters()
193 var registerLastAddress = register.Address + register.SizeInBytes - 1; in HowManyRequestsToTheRegister()
205 var address = register.Address + i; in AppendRegisterToDictionary()
601 outRegisterSettings.Address, in FindDerivedElement()
612 …ttings = GetRegisterSettings(derivedElement, outRegisterSettings, defaultRegisterSettings.Address); in FindDerivedElement()
620 defaultRegisterSettings.Address, in ScanCluster()
630 defaultRegisterSettings.Address, in ScanRegister()
670 definiteAddress ?? localRegisterSettings.Address, in GetRegisterSettings()
[all …]
DELFExtensions.cs48 return segment32.Address; in GetSegmentAddress()
52 return segment64.Address; in GetSegmentAddress()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DEHCIHostController.cs64 AttachDevice(peripheral, registrationPoint.Address.Value); in Register()
70 AttachDevice(peripheral, registrationPoint.Address.Value); in Register()
525 qh.Address = asyncAddress; in ProcessList()
530 qh.Address = (periodicAddress & 0xfffff000u) + (counter & 0xFFCu); in ProcessList()
1104 link = systemBus.ReadDoubleWord(Address); in Fetch()
1105 staticEndpointState1 = systemBus.ReadDoubleWord(Address + 0x04); in Fetch()
1106 staticEndpointState2 = systemBus.ReadDoubleWord(Address + 0x08); in Fetch()
1107 CurrentTransferDescriptor = (uint)Address + 0x10u; in Fetch()
1126 var val = (uint)(systemBus.ReadDoubleWord(Address) & ~(0x1f)); in GoToNextLink()
1127 if((val != Address) && (val != 0)) in GoToNextLink()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm/
DTCMConfiguration.cs18 Address = address; in TCMConfiguration()
40 public uint Address { get; } property in Antmicro.Renode.Peripherals.CPU.TCMConfiguration
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Bus/
DGaislerAPBPlugAndPlayRecord.cs37 public uint Address = 0; field in Antmicro.Renode.Peripherals.Bus.GaislerAPBPlugAndPlayRecord.Bar
48 var address = (Address >> 8) & 0xfff; in GetValue()
DGaislerAHBPlugAndPlayRecord.cs79 public uint Address = 0; field in Antmicro.Renode.Peripherals.Bus.GaislerAHBPlugAndPlayRecord.Bar
87 …var value = ((Address & 0xfff) << 20) | (Prefechable ? 1u<<17 : 0) | (Cacheble ? 1u<<16 : 0) | ((M… in GetValue()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DSTM32H7_QuadSPI.cs227 Registers.Address.Define(registers) in DefineRegisters()
229 … .WithWriteCallback(writeCallback: (_, __) => TriggerTransfer(TriggerTransferSource.Address)); in DefineRegisters()
432 goto case TriggerTransferSource.Address; in VerifyIfTransferShouldTrigger()
440 goto case TriggerTransferSource.Address; in VerifyIfTransferShouldTrigger()
441 case TriggerTransferSource.Address: in VerifyIfTransferShouldTrigger()
442 if(skipAddress && source == TriggerTransferSource.Address) in VerifyIfTransferShouldTrigger()
444 …is.Log(LogLevel.Noisy, "Not transferring, {0} is disabled", nameof(TriggerTransferSource.Address)); in VerifyIfTransferShouldTrigger()
653 Address, enumerator
682 Address = 0x18, enumerator
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Logging/Profiler/
DProfilerEntry.cs65 Address = address; in PeripheralEntry()
69 private ulong Address { get; } property in Antmicro.Renode.Logging.Profiling.PeripheralEntry

123