Home
last modified time | relevance | path

Searched refs:systemBus (Results 1 – 6 of 6) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DRedirector.cs33 systemBus = machine.GetSystemBus(this); in Redirector()
38 return systemBus.ReadByte(redirectedAddress + checked((ulong)offset)); in ReadByte()
43 systemBus.WriteByte(redirectedAddress + checked((ulong)offset), value); in WriteByte()
48 return systemBus.ReadWord(redirectedAddress + checked((ulong)offset)); in ReadWord()
53 systemBus.WriteWord(checked((ulong)offset), value); in WriteWord()
58 return systemBus.ReadDoubleWord(redirectedAddress + checked((ulong)offset)); in ReadDoubleWord()
63 systemBus.WriteDoubleWord(redirectedAddress + checked((ulong)offset), value); in WriteDoubleWord()
68 foreach(var range in systemBus.GetRegistrationPoints(this).Select(x => x.Range)) in TranslateAbsolute()
80 … return systemBus.ReadBytes(redirectedAddress + checked((ulong)offset), count, context: context); in ReadBytes()
85systemBus.WriteBytes(array, redirectedAddress + checked((ulong)offset), count, context: context); in WriteBytes()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DEHCIHostController.cs937 systemBus = bus; in QueueTransferDescriptor()
948 PhysNext = systemBus.ReadDoubleWord(address); in Fetch()
949 PhysAlternativeNext = systemBus.ReadDoubleWord(address + 0x04); in Fetch()
950 Token = systemBus.ReadDoubleWord(address + 0x08); in Fetch()
954 Buffer[i] = systemBus.ReadDoubleWord(address + 0x0C + i * 4); in Fetch()
1000 systemBus.WriteDoubleWord(memoryAddress, PhysNext); in UpdateMemory()
1001 systemBus.WriteDoubleWord(memoryAddress + 0x04, PhysAlternativeNext | 0x08); in UpdateMemory()
1002 systemBus.WriteDoubleWord(memoryAddress + 0x08, Token); in UpdateMemory()
1003 systemBus.WriteDoubleWord(memoryAddress + 0x0C, Buffer[0] | CurrentOffset); in UpdateMemory()
1006 systemBus.WriteDoubleWord(memoryAddress + 0x0C + i * 4, Buffer[i]); in UpdateMemory()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DAmbiqApollo4_Security.cs21 systemBus = machine.GetSystemBus(this); in AmbiqApollo4_Security()
48 data = systemBus.ReadBytes(address.Value, byteLength, onlyMemory: true); in CalculateCrc32()
145 private readonly IBusController systemBus; field in Antmicro.Renode.Peripherals.Miscellaneous.AmbiqApollo4_Security
DRenesasDA14_ClockGenerationController.cs158 var systemBus = machine.SystemBus; in DefineRegisters()
160 if(systemBus.WhatPeripheralIsAt(RomRemapAddress) != this.rom) in DefineRegisters()
166 systemBus.UnregisterFromAddress(RomRemapAddress); in DefineRegisters()
167systemBus.Register(this.eflashDataText, new BusPointRegistration(RomRemapAddress)); in DefineRegisters()
173 cpuWithRegisters.PC = systemBus.ReadDoubleWord(PCValueInELF); in DefineRegisters()
174 … cpuWithRegisters.SetRegister(SP, systemBus.ReadDoubleWord(SPValueInELF)); in DefineRegisters()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/DMA/
DDmaEngine.cs18 public DmaEngine(IBusController systemBus) in DmaEngine() argument
20 sysbus = systemBus; in DmaEngine()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Timers/
DAmbiqApollo4_RTC.cs426 systemBus = machine.GetSystemBus(owner); in RTCTimer()
547 if(systemBus.TryGetCurrentCPU(out var cpu))
603 private readonly IBusController systemBus; field in Antmicro.Renode.Peripherals.Timers.AmbiqApollo4_RTC.RTCTimer