Home
last modified time | relevance | path

Searched refs:recordEntry (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Bus/
DGaislerAHBPlugAndPlayInfo.cs76 var recordEntry = new GaislerAHBPlugAndPlayRecord(); in cacheRecords()
80 recordEntry.IdentificationRegister.Vendor = peripheral.GetVendorID(); in cacheRecords()
81 recordEntry.IdentificationRegister.Device = peripheral.GetDeviceID(); in cacheRecords()
82 recordEntry.BankAddressRegister[0].Type = peripheral.GetSpaceType(); in cacheRecords()
84 …if(recordEntry.IdentificationRegister.Vendor == 0x01 && recordEntry.IdentificationRegister.Device … in cacheRecords()
88 …if(recordEntry.BankAddressRegister[0].Type == GaislerAHBPlugAndPlayRecord.SpaceType.AHBMemorySpace) in cacheRecords()
90recordEntry.BankAddressRegister[0].Address = (uint)((deviceAddress >> 20) & 0xfff); in cacheRecords()
92 …else if(recordEntry.BankAddressRegister[0].Type == GaislerAHBPlugAndPlayRecord.SpaceType.AHBIOSpac… in cacheRecords()
94recordEntry.BankAddressRegister[0].Address = (uint)((deviceAddress >> 8) & 0xfff); in cacheRecords()
97 recordEntry.BankAddressRegister[0].Mask = 0xfff; in cacheRecords()
[all …]
DGaislerAPBController.cs108 var recordEntry = new GaislerAPBPlugAndPlayRecord(); in cacheRecords()
111 recordEntry.ConfigurationWord.Vendor = peripheral.GetVendorID(); in cacheRecords()
112 recordEntry.ConfigurationWord.Device = peripheral.GetDeviceID(); in cacheRecords()
113 recordEntry.BankAddressRegister.Type = peripheral.GetSpaceType(); in cacheRecords()
114 recordEntry.ConfigurationWord.Irq = peripheral.GetInterruptNumber(); in cacheRecords()
115 … if(recordEntry.BankAddressRegister.Type == GaislerAPBPlugAndPlayRecord.SpaceType.APBIOSpace) in cacheRecords()
117 recordEntry.BankAddressRegister.Address = (uint)deviceAddress; in cacheRecords()
118 recordEntry.BankAddressRegister.Size = deviceSize; in cacheRecords()
120 records.Add(recordEntry); in cacheRecords()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Foreign/
DRecorder.cs39 …var recordEntry = new RecordEntry<T>(name, value, GetNullifiedHandler<Action<T>>(handler), timesta… in Record()
40 RecordInner(recordEntry, domainExternal); in Record()
50 …var recordEntry = new RecordEntry<T1, T2>(name, value1, value2, GetNullifiedHandler<Action<T1, T2>… in Record()
51 RecordInner(recordEntry, domainExternal); in Record()
71 private void RecordInner(IRecordEntry recordEntry, bool domainExternal) in RecordInner() argument
77 openStreamSerializer.Serialize(recordEntry); in RecordInner()