76 uint32_t lun_id,
Callback *transfer_cb,
79 flashDisk(p->image[lun_id]),
80 flashDevice(p->internalflash[lun_id]),
81 blkSize(p->img_blk_size),
82 lunAvail(p->image.size()),
83 diskSize(flashDisk->size()),
84 capacityLower((diskSize - 1) & 0xffffffff),
87 transferCompleted(false),
91 amountOfWriteTransfers(0),
92 amountOfReadTransfers(0)
110 uint32_t temp_id = ((lun_id | 0x30) << 24) | 0x3A4449;
135 {0x01400A0A, 0x00000000,
138 {0x03800A01, 0x00000000,
141 {0x00011208, 0x00000000,
142 0x00000000, 0x00000020,
180 switch (SCSI_msg[4] & 0xFF) {
201 uint8_t* tempptr =
reinterpret_cast<uint8_t*
>(&SCSI_msg[4]);
207 uint32_t tmp = *
reinterpret_cast<uint32_t*
>(tempptr);
208 uint64_t read_offset =
betoh(tmp) & 0x1FFFFF;
210 uint32_t read_size = tempptr[4];
216 if ((read_offset + read_size) >
diskSize)
220 read_offset, read_size);
236 uint8_t* tempptr =
reinterpret_cast<uint8_t*
>(&SCSI_msg[4]);
239 uint32_t tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[2]);
240 uint64_t read_offset =
betoh(tmp);
242 uint16_t tmpsize = *
reinterpret_cast<uint16_t*
>(&tempptr[7]);
243 uint32_t read_size =
betoh(tmpsize);
248 if ((read_offset + read_size) >
diskSize)
252 read_offset, read_size);
268 uint8_t* tempptr =
reinterpret_cast<uint8_t*
>(&SCSI_msg[4]);
271 uint32_t tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[2]);
272 uint64_t read_offset =
betoh(tmp);
274 tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[6]);
275 read_offset = (read_offset << 32) |
betoh(tmp);
277 tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[10]);
278 uint32_t read_size =
betoh(tmp);
283 if ((read_offset + read_size) >
diskSize)
287 read_offset, read_size);
362 uint8_t* tempptr =
reinterpret_cast<uint8_t*
>(&SCSI_msg[4]);
365 uint32_t tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[2]);
366 uint64_t read_offset =
betoh(tmp);
368 uint16_t tmpsize = *
reinterpret_cast<uint16_t*
>(&tempptr[7]);
369 uint32_t read_size =
betoh(tmpsize);
371 if ((read_offset + read_size) >
diskSize)
389 uint8_t* tempptr =
reinterpret_cast<uint8_t*
>(&SCSI_msg[4]);
395 uint32_t tmp = *
reinterpret_cast<uint32_t*
>(tempptr);
396 uint64_t write_offset =
betoh(tmp) & 0x1FFFFF;
398 uint32_t write_size = tempptr[4];
404 if ((write_offset + write_size) >
diskSize)
408 write_offset, write_size);
421 uint8_t* tempptr =
reinterpret_cast<uint8_t*
>(&SCSI_msg[4]);
424 uint32_t tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[2]);
425 uint64_t write_offset =
betoh(tmp);
427 uint16_t tmpsize = *
reinterpret_cast<uint16_t*
>(&tempptr[7]);
428 uint32_t write_size =
betoh(tmpsize);
434 if ((write_offset + write_size) >
diskSize)
438 write_offset, write_size);
451 uint8_t* tempptr =
reinterpret_cast<uint8_t*
>(&SCSI_msg[4]);
454 uint32_t tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[2]);
455 uint64_t write_offset =
betoh(tmp);
457 tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[6]);
458 write_offset = (write_offset << 32) |
betoh(tmp);
460 tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[10]);
461 uint32_t write_size =
betoh(tmp);
467 if ((write_offset + write_size) >
diskSize)
471 write_offset, write_size);
513 if ((SCSI_msg[4] & 0x3F0000) >> 16 == 0x0A) {
524 }
else if ((SCSI_msg[4] & 0x3F0000) >> 16 == 0x01) {
537 }
else if ((SCSI_msg[4] & 0x3F0000) >> 16 == 0x08) {
549 }
else if ((SCSI_msg[4] & 0x3F0000) >> 16 == 0x3F) {
570 }
else inform(
"Wrong mode page requested\n");
585 uint8_t* tempptr =
reinterpret_cast<uint8_t*
>(&SCSI_msg[4]);
588 uint32_t tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[2]);
589 uint64_t write_offset =
betoh(tmp) & 0xFFFFFF;
591 tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[5]);
592 uint32_t write_size =
betoh(tmp) & 0xFFFFFF;
595 scsi_out.
offset = write_offset;
607 uint8_t* tempptr =
reinterpret_cast<uint8_t*
>(&SCSI_msg[4]);
610 uint32_t tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[2]);
611 uint64_t read_offset =
betoh(tmp) & 0xFFFFFF;
613 tmp = *
reinterpret_cast<uint32_t*
>(&tempptr[5]);
614 uint32_t read_size =
betoh(tmp) & 0xFFFFFF;
617 scsi_out.
offset = read_offset;
654 inform(
"Unsupported scsi message type: %2x\n", SCSI_msg[4] & 0xFF);
655 inform(
"0x%8x\n", SCSI_msg[0]);
656 inform(
"0x%8x\n", SCSI_msg[1]);
657 inform(
"0x%8x\n", SCSI_msg[2]);
658 inform(
"0x%8x\n", SCSI_msg[3]);
659 inform(
"0x%8x\n", SCSI_msg[4]);
674 uint8_t* sensecodelist)
677 sensecodelist[
count] = 0;
679 sensecodelist[0] = 18;
680 sensecodelist[1] = 0x70;
681 sensecodelist[3] = status & 0xF;
682 sensecodelist[8] = 0x1F;
752 warn(
"UFSSlots = %d, this will results in %d command slots",
756 fatal(
"Number of UFS command slots should be between 1 and 32.");
766 UFSHostDeviceParams::create()
777 using namespace Stats;
779 std::string UFSHost_name =
name() +
".UFSDiskHost";
784 .
name(UFSHost_name +
".currentSCSIQueue")
785 .
desc(
"Most up to date length of the command queue")
788 .
name(UFSHost_name +
".currentReadSSDQueue")
789 .
desc(
"Most up to date length of the read SSD queue")
792 .
name(UFSHost_name +
".currentWriteSSDQueue")
793 .
desc(
"Most up to date length of the write SSD queue")
798 .
name(UFSHost_name +
".totalReadSSD")
799 .
desc(
"Number of bytes read from SSD")
803 .
name(UFSHost_name +
".totalWrittenSSD")
804 .
desc(
"Number of bytes written to SSD")
808 .
name(UFSHost_name +
".totalReadDiskTransactions")
809 .
desc(
"Number of transactions from disk")
812 .
name(UFSHost_name +
".totalWriteDiskTransactions")
813 .
desc(
"Number of transactions to disk")
816 .
name(UFSHost_name +
".totalReadUFSTransactions")
817 .
desc(
"Number of transactions from device")
820 .
name(UFSHost_name +
".totalWriteUFSTransactions")
821 .
desc(
"Number of transactions to device")
826 .
name(UFSHost_name +
".averageReadSSDBandwidth")
827 .
desc(
"Average read bandwidth (bytes/s)")
833 .
name(UFSHost_name +
".averageWriteSSDBandwidth")
834 .
desc(
"Average write bandwidth (bytes/s)")
840 .
name(UFSHost_name +
".averageSCSIQueueLength")
841 .
desc(
"Average command queue length")
844 .
name(UFSHost_name +
".averageReadSSDQueueLength")
845 .
desc(
"Average read queue length")
848 .
name(UFSHost_name +
".averageWriteSSDQueueLength")
849 .
desc(
"Average write queue length")
854 .
name(UFSHost_name +
".curDoorbell")
855 .
desc(
"Most up to date number of doorbells used")
861 .
name(UFSHost_name +
".maxDoorbell")
862 .
desc(
"Maximum number of doorbells utilized")
865 .
name(UFSHost_name +
".averageDoorbell")
866 .
desc(
"Average number of Doorbells used")
872 .
name(UFSHost_name +
".transactionLatency")
873 .
desc(
"Histogram of transaction times")
878 .
name(UFSHost_name +
".idlePeriods")
879 .
desc(
"Histogram of idle times")
1072 data = pkt->
getLE<uint8_t>();
1076 data = pkt->
getLE<uint16_t>();
1080 data = pkt->
getLE<uint32_t>();
1084 panic(
"Undefined UFSHCD controller write size!\n");
1088 switch (pkt->
getAddr() & 0xFF)
1231 Addr address = 0x00;
1237 transferstart_info.
done = 0;
1269 address = (count * size) + (address << 32) +
1273 inform(
"UFSmodel received a task from the system; this might" 1274 " lead to untested behaviour.\n");
1278 task_info.
size = size;
1284 reinterpret_cast<uint8_t*
> 1285 (&
taskInfo.back().destination), 0, 0);
1303 count, transferstart_info.
done);
1319 transferstart_info.
mask = mask <<
count;
1320 transferstart_info.
address = address;
1321 transferstart_info.
size = size;
1329 transferstart_info.
done);
1335 address, size,
reinterpret_cast<uint8_t*
> 1397 uint32_t req_pos,
Addr finaladdress, uint32_t
1415 readDevice(
true, finaladdress, finalsize, reinterpret_cast<uint8_t*>
1416 (request_in),
true, NULL);
1433 int req_pos,
Addr finaladdress, uint32_t
1434 finalsize, uint32_t done)
1437 Addr cmd_desc_addr = 0x00;
1456 cmd_desc_addr = (cmd_desc_addr << 32) |
1485 if (
UFSDevice[LUN]->SCSIInfoQueue.size() < 2)
1488 else if (
UFSDevice[LUN]->SCSIInfoQueue.size() > 32)
1490 SCSIInfoQueue.size());
1523 if (
UFSDevice[lun_id]->SCSIInfoQueue.empty())
1524 panic(
"No SCSI message scheduled lun:%d Doorbell: 0x%8x", lun_id,
1529 SCSIInfoQueue.front().RequestIn;
1531 uint32_t req_pos =
UFSDevice[lun_id]->SCSIInfoQueue.front().reqPos;
1533 Addr finaladdress =
UFSDevice[lun_id]->SCSIInfoQueue.front().
1536 uint32_t finalsize =
UFSDevice[lun_id]->SCSIInfoQueue.front().finalSize;
1538 uint32_t* transfercommand =
reinterpret_cast<uint32_t*
> 1539 (&(
UFSDevice[lun_id]->SCSIInfoQueue.front().destination[0]));
1544 SCSICMDHandle(transfercommand);
1554 UFSDevice[lun_id]->transferInfo.requestOut.header.dWord0 =
1556 | (transfercommand[0] & 0xFF000000);
1558 UFSDevice[lun_id]->transferInfo.requestOut.header.dWord1 = 0x00000000 |
1561 UFSDevice[lun_id]->transferInfo.requestOut.header.dWord2 = 0x00000000 |
1564 UFSDevice[lun_id]->transferInfo.requestOut.senseDataLen =
1585 response_addr = (response_addr << 32) |
1590 UFSDevice[lun_id]->transferInfo.responseStartAddr = response_addr;
1591 UFSDevice[lun_id]->transferInfo.reqPos = req_pos;
1592 UFSDevice[lun_id]->transferInfo.size = finalsize;
1593 UFSDevice[lun_id]->transferInfo.address = finaladdress;
1594 UFSDevice[lun_id]->transferInfo.destination =
reinterpret_cast<uint8_t*
> 1595 (
UFSDevice[lun_id]->SCSIInfoQueue.front().RequestIn);
1596 UFSDevice[lun_id]->transferInfo.finished =
true;
1617 uint32_t size_accum = 0;
1622 while ((length > count) && size_accum
1626 SCSI_start = (SCSI_start << 32) |
1627 (sglist[count].baseAddr & 0xFFFFFFFF);
1630 (sglist[count].size + 1));
1638 uint32_t size_to_send = sglist[
count].
size + 1;
1644 reinterpret_cast<uint8_t*>
1648 size_accum += size_to_send;
1660 reinterpret_cast<uint8_t*>(request_in),
true, lun_id);
1674 uint8_t this_lun = 0;
1685 UFSDevice[this_lun]->transferInfo.reqPos,
1686 UFSDevice[this_lun]->transferInfo.requestOut,
1688 UFSDevice[this_lun]->transferInfo.address,
1689 UFSDevice[this_lun]->transferInfo.destination,
1690 UFSDevice[this_lun]->transferInfo.finished,
1691 UFSDevice[this_lun]->transferInfo.lunID);
1705 struct UTPUPIURSP request_out, uint32_t size,
1707 bool finished, uint32_t lun_id)
1710 if (
UFSDevice[lun_id]->SCSIInfoQueue.empty())
1711 panic(
"No SCSI message scheduled lun:%d Doorbell: 0x%8x", lun_id,
1715 responseStartAddr,
sizeof(request_out));
1718 lastinfo.
mask = req_pos;
1719 lastinfo.
done = finished;
1721 lastinfo.
size = size;
1724 lastinfo.
lun_id = lun_id;
1730 readDevice(
false, responseStartAddr,
sizeof(request_out),
1731 reinterpret_cast<uint8_t*>
1747 UFSDevice[lun_id]->SCSIInfoQueue.pop_front();
1749 UFSDevice[lun_id]->SCSIInfoQueue.size(), lun_id);
1762 transferEnd.front().size,
reinterpret_cast<uint8_t*
> 1781 if (!
UFSDevice[lun_id]->SCSIInfoQueue.empty())
1880 SCSIDiskOffset, uint32_t lun_id)
1900 new_transfer.
offset = SCSIDiskOffset;
1901 new_transfer.
size = size;
1902 new_transfer.
lunID = lun_id;
1917 assert(!additional_action->
scheduled());
1919 additional_action, destination, 0);
1938 UFSDevice[LUN]->setTotalWrite(sg_table_length);
1946 next_packet.
start = (next_packet.
start << 32) |
1947 (sglist[
count].baseAddr & 0xFFFFFFFF);
1948 next_packet.
LUN = LUN;
1952 (sglist[
count].size + 1));
1953 assert(sglist[
count].size > 0);
1999 UFSDevice[lun]->SSDWriteDoneInfo.size());
2037 assert(SSDWriteDoneInfo.size() > 0);
2038 flashDevice->writeMemory(
2039 SSDWriteDoneInfo.front().offset,
2040 SSDWriteDoneInfo.front().size, memWriteCallback);
2042 SSDWriteDoneInfo.pop_front();
2045 SSDWriteDoneInfo.size());
2057 totalWrite, amountOfWriteTransfers);
2060 ++amountOfWriteTransfers;
2063 assert(totalWrite >= amountOfWriteTransfers && totalWrite != 0);
2066 if (totalWrite == amountOfWriteTransfers) {
2069 amountOfWriteTransfers = 0;
2073 signalDone->process();
2089 start, size, (reinterpret_cast<uint32_t *>(destination))[0]);
2103 if (additional_action != NULL)
2104 assert(!additional_action->
scheduled());
2107 additional_action, destination, 0);
2120 offset, uint32_t sg_table_length,
2123 uint32_t size_accum = 0;
2135 (sglist[
count].baseAddr & 0xFFFFFFFF);
2138 new_transfer.
lunID = LUN;
2143 UFSDevice[LUN]->SSDReadInfo.push_back(new_transfer);
2144 UFSDevice[LUN]->SSDReadInfo.back().buffer.resize(sglist[
count].size
2153 SSDReadInfo.back().buffer[0],
2154 offset + size_accum,
2160 " 0x%8x\n", (
count + 1), (size-size_accum), size_accum);
2168 UFSDevice[LUN]->SSDReadStart(sg_table_length);
2186 totalRead = total_read;
2187 for (uint32_t number_handled = 0; number_handled < SSDReadInfo.size();
2193 flashDevice->readMemory(SSDReadInfo.front().filePointer,
2208 " %d so far\n", lunID, totalRead, amountOfReadTransfers);
2210 if (totalRead == amountOfReadTransfers) {
2212 amountOfReadTransfers = 0;
2216 signalDone->process();
2228 ++amountOfReadTransfers;
2234 deviceReadCallback->process();
2249 uint8_t this_lun = 0;
2262 UFSDevice[this_lun]->SSDReadInfo.pop_front();
2300 const uint8_t* temp_HCI_mem =
reinterpret_cast<const uint8_t*
>(&
UFSHCIMem);
2316 uint8_t* temp_HCI_mem =
reinterpret_cast<uint8_t*
>(&
UFSHCIMem);
Stats::Average averageWriteSSDQueue
Stats::Scalar currentSCSIQueue
Queue lengths.
#define panic(...)
This implements a cprintf based panic() function.
std::deque< struct transferInfo > SSDReadPending
Information from the Disk, waiting to be pushed to the DMA.
AddrRange RangeSize(Addr start, Addr size)
const FlagsType pdf
Print the percent of the total that this entry represents.
struct SCSIResumeInfo SCSIInfo
SCSI resume info information structure for SCSI resume.
void generateInterrupt()
set interrupt and sort out the doorbell register.
void SSDReadStart(uint32_t total_read)
Start the transactions to (and from) the disk The host will queue all the transactions.
std::deque< EventFunctionWrapper > writeDoneEvent
Callback * transferDoneCallback
Callbacks for the logic units.
int findLsbSet(uint64_t val)
Returns the bit position of the LSB that is set in the input.
std::deque< struct taskStart > taskInfo
When a task/transfer is started it needs information about the task/transfer it is about to perform...
#define fatal(...)
This implements a cprintf based fatal() function.
virtual void clearInt(uint32_t num)=0
Clear an interrupt from a device that is connected to the GIC.
AddrRangeList getAddrRanges() const override
Address range functions.
void unserialize(CheckpointIn &cp) override
Unserialize; needed to restore from checkpoints.
void setValues()
Initialization function.
std::deque< struct transferStart > transferStartInfo
Tick transactionStart[32]
Helper for latency stats These variables keep track of the latency for every doorbell.
Stats::Scalar currentReadSSDQueue
uint32_t ORInterruptStatus
Operation and runtime registers.
void finalUTP()
final UTP, sends the last acknowledge data structure to the system; prepares the clean up functions...
Stats::Scalar totalReadSSD
Amount of data read/written.
EventFunctionWrapper UTPEvent
Wait for the moment where we can send the last frame.
void transferStart()
Transfer Start function.
std::deque< EventFunctionWrapper > readGarbageEventQueue
Event after a read to clean up the UTP data structures.
std::deque< EventFunctionWrapper > transferEventQueue
struct UTPUPIURSP - Response UPIU structure header: UPIU header DW-0 to DW-2 residualTransferCount: R...
void manageWriteTransfer(uint8_t LUN, uint64_t offset, uint32_t sg_table_length, struct UFSHCDSGEntry *sglist)
Disk transfer management functions these set up the queues, and initiated them, leading to the data t...
void writeFlash(uint8_t *writeaddr, uint64_t offset, uint32_t size)
Write flash.
struct UTPTransferReqDesc - UTRD structure header: UTRD header DW-0 to DW-3 commandDescBaseAddrLo: UC...
void SSDWriteDone()
SSD Write Done; This is the callback function for the memory model.
UFS command flow state machine digraph CommandFlow{ node [fontsize=10]; IDLE -> transferHandler [ lab...
Stats::Scalar totalReadUFSTransactions
UFSHostDevice(const UFSHostDeviceParams *p)
Constructor for the UFS Host device.
DiskImage * flashDisk
The objects this model links to.
struct UTPUPIUHeader header
uint32_t ORInterruptEnable
Stats::Scalar totalReadDiskTransactions
Histogram & init(size_type size)
Set the parameters of this histogram.
void regStats() override
register statistics
Stats::Scalar totalWriteDiskTransactions
struct UTPUPIUTaskReq - Task request UPIU structure header - UPIU header structure DW0 to DW-2 inputP...
Callback * memWriteCallback
Tick write(PacketPtr pkt) override
UFSHCD write function.
struct UFSHostDeviceStats stats
RequestHandler stats.
std::deque< EventFunctionWrapper > taskEventQueue
Multiple tasks transfers can be scheduled at once for the device, the only thing we know for sure abo...
std::deque< struct transferStart > transferEnd
To finish the transaction one needs information about the original message.
struct UFSHostDevice::UTPTransferReqDesc::RequestDescHeader header
uint32_t ORHostControllerEnable
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
Tick read(PacketPtr pkt) override
register access functions
void readFlash(uint8_t *readaddr, uint64_t offset, uint32_t size)
Disk access functions.
Stats::Formula simSeconds
DrainState
Object drain/handover states.
void statusCheck(uint8_t status, uint8_t *sensecodelist)
Status of SCSI.
This is a base class for UFS devices The UFS interface consists out of one host controller which conn...
void setLE(T v)
Set the value in the data pointer to v as little endian.
int readPendingNum
Track number of DMA transactions in progress.
const Addr pioAddr
Host controller information.
uint32_t commandDescBaseAddrLo
void readCallback()
Read callback Call back function for the logic units to indicate the completion of a read action...
std::deque< struct UTPTransferReqDesc * > garbage
garbage queue, ensure clearing of the allocated memory
DrainState drainState() const
Return the current drain state of an object.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
void commandHandler()
Command handler function.
#define UNSERIALIZE_SCALAR(scalar)
Draining buffers pending serialization/handover.
Tick curTick()
The current simulated tick.
uint32_t HCCAP
Specify the host capabilities.
uint8_t activeDoorbells
Statistics helper variables Active doorbells indicates how many doorbells are in teh process of being...
Callback * memReadCallback
Callbacks between Device and Memory.
Stats::Average averageSCSIQueue
Average Queue lengths.
uint32_t ORHostControllerStatus
virtual void sendInt(uint32_t num)=0
Post an interrupt from a device that is connected to the GIC.
static const unsigned int UPIUHeaderDataIndWord0
uint64_t Tick
Tick count type.
Stats::Average averageDoorbell
void clearInterrupt()
Interrupt control functions.
Stats::Scalar currentWriteSSDQueue
void SSDReadDone()
SSD Read done; Determines if the final callback of the transaction should be made at the end of a rea...
Callback * deviceReadCallback
void serialize(CheckpointOut &cp) const override
Serialize an object.
std::vector< uint8_t > destination
void taskStart()
Task Start function.
virtual std::streampos write(const uint8_t *data, std::streampos offset)=0
void readDevice(bool lastTransfer, Addr SCSIStart, uint32_t SCSISize, uint8_t *SCSIDestination, bool no_cache, Event *additional_action)
Dma transaction function: read device.
void serialize(CheckpointOut &cp) const override
Serialize; needed to make checkpoints.
virtual void initializeMemory(uint64_t disk_size, uint32_t sector_size)=0
Initialize Memory.
Stats::Scalar totalWriteUFSTransactions
HCIMem UFSHCIMem
Host controller memory.
const uint32_t capacityUpper
Stats::Formula curDoorbell
Number of doorbells rung.
void LUNSignal()
LU callback function to indicate that the action has completed.
DrainState drain() override
Drain; needed to enable checkpoints.
const FlagsType none
Nothing extra to print.
std::deque< struct writeToDiskBurst > dmaWriteInfo
Information to get a DMA transaction.
static const unsigned int cachingPage[5]
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
uint32_t TMUTMRLBA
Task control registers.
Stats::Scalar totalWrittenSSD
static const unsigned int UPIUHeaderDataIndWord2
static const unsigned int UPIUHeaderDataIndWord1
void transferHandler(struct UTPTransferReqDesc *request_in, int req_pos, Addr finaladdress, uint32_t finalsize, uint32_t done)
Transfer handler function.
void SCSIStart()
Transfer SCSI function.
UFSSCSIDevice(const UFSHostDeviceParams *p, uint32_t lun_id, Callback *transfer_cb, Callback *read_cb)
Constructor and destructor.
void readGarbage()
Read garbage A read from disk data structure can vary in size and is therefor allocated on creation...
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
uint32_t CMDUICCMDR
Command registers.
void readCallback()
Functions to indicate that the action to the SSD has completed.
#define SERIALIZE_ARRAY(member, size)
Callback * signalDone
Callbacks between Host and Device.
EventFunctionWrapper SCSIResumeEvent
The events that control the functionality.
static const unsigned int UTPTaskREQCOMPL
Stats::Average averageReadSSDQueue
RequestPtr dmaAction(Packet::Command cmd, Addr addr, int size, Event *event, uint8_t *data, Tick delay, Request::Flags flag=0)
std::deque< EventFunctionWrapper > readDoneEvent
Transfer flow events Basically these events form two queues, one from memory to UFS device (DMA) and ...
void manageReadTransfer(uint32_t size, uint32_t LUN, uint64_t offset, uint32_t sg_table_length, struct UFSHCDSGEntry *sglist)
Manage read transfer.
struct UTPTransferReqDesc * destination
#define SERIALIZE_SCALAR(scalar)
struct UTPUPIUHeader header
bool scheduled() const
Determine if the current event is scheduled.
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
static const unsigned int recoveryPage[3]
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
virtual const std::string name() const
#define UNSERIALIZE_ARRAY(member, size)
Stats::Scalar maxDoorbell
device layer: This is your Logic unit This layer implements the SCSI functionality of the UFS Device ...
struct UTPTransferReqDesc * RequestIn
void readDone()
Read done Started at the end of a transaction after the last read action.
std::ostream CheckpointOut
static const unsigned int UTPTransferREQCOMPL
Bits of interest within UFS data packages.
uint32_t commandDescBaseAddrHi
Stats::Formula averageReadSSDBW
Average bandwidth for reads and writes.
Host Controller Interface This is a set of registers that allow the driver to control the transaction...
void writeDone()
Write done After a DMA write with data intended for the disk, this function is called.
Different events, and scenarios require different types of information.
virtual std::streampos read(uint8_t *data, std::streampos offset) const =0
uint16_t responseUPIULength
struct UPIUMessage message
uint32_t TRUTRLBA
Transfer control registers.
struct SCSIReply request_out_datain
SCSI reply structure, used for direct answering.
uint32_t taskCommandTrack
void signalDrainDone() const
Signal that an object is drained.
std::deque< struct transferInfo > SSDWriteinfo
Information from DMA transaction to disk.
const uint32_t capacityLower
Stats::Histogram transactionLatency
Histogram of latencies.
const uint32_t blkSize
Logic unit dimensions.
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
Transfer start information.
struct UFSHCDSGEntry - UFSHCI PRD Entry baseAddr: Lower 32bit physical address DW-0 upperAddr: Upper ...
static const unsigned int controlPage[3]
These pages are SCSI specific.
Callback * memReadCallback
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
void taskHandler(struct UTPUPIUTaskReq *request_in, uint32_t req_pos, Addr finaladdress, uint32_t finalsize)
Task handler function.
uint32_t transferTrack
Track the transfer This is allows the driver to "group" certain transfers together by using a tag in ...
std::vector< uint32_t > dataMsg
Disk transfer burst information.
virtual void regStats()
Callback to set stat parameters.
AbstractNVM * flashDevice
Helper template class to turn a simple class member function into a callback.
std::vector< UFSSCSIDevice * > UFSDevice
logic units connected to the UFS Host device Note again that the "device" as such is represented by o...
struct LUNInfo lunInfo
Logic unit info; needed for SCSI Info messages and LU identification.
void SSDWriteStart()
SSD write start.
Stats::Histogram idleTimes
uint32_t countInt
interrupt verification This keeps track of the number of interrupts generated.
struct SCSIReply SCSICMDHandle(uint32_t *SCSI_msg)
SCSI command handle function; determines what the command is and returns a reply structure that allow...
const FlagsType nozero
Don't print if this is zero.
void requestHandler()
Handler functions.
void checkDrain()
Checkdrain; needed to enable checkpoints.
Counter value() const
Return the current value of this stat as its base type.
void SCSIResume(uint32_t lun_id)
Starts the scsi handling function in the apropriate Logic unit, prepares the right data transfer sche...
Abstract superclass for simulation objects.
void transferDone(Addr responseStartAddr, uint32_t req_pos, struct UTPUPIURSP request_out, uint32_t size, Addr address, uint8_t *destination, bool finished, uint32_t lun_id)
transfer done, the beginning of the final stage of the transfer.
static const unsigned int UICCommandCOMPL
void sample(const U &v, int n=1)
Add a value to the distribtion n times.
static const unsigned int UICCommandReady
void writeDevice(Event *additional_action, bool toDisk, Addr start, int size, uint8_t *destination, uint64_t SCSIDiskOffset, uint32_t lun_id)
DMA transfer functions These allow the host to push/pull the data to the memory The provided event in...
Stats::Formula averageWriteSSDBW