gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
cfi_mem.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 2012-2013, 2021 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2001-2005 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 */
40
41#ifndef __MEM_FLASH_MEM_HH__
42#define __MEM_FLASH_MEM_HH__
43
44#include "base/random.hh"
45#include "mem/abstract_mem.hh"
46#include "params/CfiMemory.hh"
47
48namespace gem5
49{
50
51namespace memory
52{
53
73{
74 private:
75 enum class CfiCommand
76 {
77 NO_CMD = 0,
78 LOCK_BLOCK = 0x1,
79 ERASE_BLOCK_SETUP = 0x20,
80 WORD_PROGRAM = 0x40,
81 CLEAR_STATUS_REG = 0x50,
82 LOCK_BLOCK_SETUP = 0x60,
83 READ_STATUS_REG = 0x70,
84 READ_DEVICE_ID = 0x90,
85 READ_CFI_QUERY = 0x98,
89 UNLOCK_BLOCK = 0xD0,
90 AMD_RESET=0xF0,
91 READ_ARRAY = 0xFF,
96 };
97
99 static const uint8_t STATUS_ERASE_ERROR = 0x30;
100 static const uint8_t STATUS_LOCK_ERROR = 0x12;
101 static const uint8_t STATUS_READY = 0x80;
102 static const uint8_t STATUS_PROGRAM_LOCK_BIT = 0x10;
103
105 struct BlockData : public Serializable
106 {
107 BlockData(const CfiMemory &_parent, ssize_t number, ssize_t size)
108 : Serializable(), locked(number, false), blockSize(size),
109 parent(_parent)
110 {}
111
120 bool isLocked(Addr block_address) const;
121
129 void lock(Addr block_address);
130
138 void unlock(Addr block_address);
139
145 void erase(PacketPtr pkt);
146
148 ssize_t number() const { return locked.size(); }
149
151 ssize_t size() const { return blockSize; }
152
153 private: // Serializable
154 void serialize(CheckpointOut &cp) const override;
155
156 void unserialize(CheckpointIn &cp) override;
157
158 private:
159 uint32_t blockIdx(Addr block_address) const;
160
161 // Per block flag. True if the block is locked
163
164 // Size of the block in bytes
165 const ssize_t blockSize;
166
168 };
169
175 {
176 public:
177 // program buffer max size = 32 words
178 static const ssize_t MAX_BUFFER_SIZE = 32 * 4;
179
180 ProgramBuffer(const CfiMemory &_parent)
181 : Serializable(), parent(_parent)
182 {}
183
188 void setup(ssize_t buffer_size);
189
201 bool write(Addr flash_address, void *data_ptr, ssize_t size);
202
203 bool writeback();
204
205 private:
206 void serialize(CheckpointOut &cp) const override;
207
208 void unserialize(CheckpointIn &cp) override;
209
210 private:
211 // program buffer
213
214 // Number of bytes written in the buffer
215 ssize_t bytesWritten = 0;
216
217 // Pointing to the latest written word in the buffer
219
221 };
222
228 {
229
230 public:
231
232 const Tick tick;
234
235 DeferredPacket(PacketPtr _pkt, Tick _tick) : tick(_tick), pkt(_pkt)
236 { }
237 };
238
240 {
241 private:
243
244 public:
245 MemoryPort(const std::string& _name, CfiMemory& _memory);
246
247 protected:
248 Tick recvAtomic(PacketPtr pkt) override;
250 PacketPtr pkt, MemBackdoorPtr &_backdoor) override;
251 void recvFunctional(PacketPtr pkt) override;
252 void recvMemBackdoorReq(const MemBackdoorReq &req,
253 MemBackdoorPtr &_backdoor) override;
254 bool recvTimingReq(PacketPtr pkt) override;
255 void recvRespRetry() override;
256 AddrRangeList getAddrRanges() const override;
257 };
258
260
266
271
278
284 const double bandwidth;
285
290 bool isBusy;
291
297
303
308 void release();
309
311
316 void dequeue();
317
319
325 Tick getLatency() const;
326
331 std::unique_ptr<Packet> pendingDelete;
332
333 const uint8_t numberOfChips;
334
335 const uint16_t vendorID;
336 const uint16_t deviceID;
337 const uint16_t bankWidth;
338
342
344
346
348
349 uint8_t cfiQueryTable[61];
350
352
353 public:
354 CfiMemory(const CfiMemoryParams &p);
355
356 DrainState drain() override;
357
358 Port &getPort(const std::string &if_name,
359 PortID idx=InvalidPortID) override;
360 void init() override;
361
362 void serialize(CheckpointOut &cp) const override;
363 void unserialize(CheckpointIn &cp) override;
364
365 protected:
368 void recvFunctional(PacketPtr pkt);
369 void recvMemBackdoorReq(const MemBackdoorReq &req,
370 MemBackdoorPtr &_backdoor);
371 bool recvTimingReq(PacketPtr pkt);
372 void recvRespRetry();
373
375 void cfiAccess(PacketPtr pkt);
376
378 void write(PacketPtr pkt);
379
381 void read(PacketPtr pkt);
382
392 uint64_t readDeviceID(Addr flash_address) const;
393
399 void handleCommand(CfiCommand command);
400
405 uint64_t cfiQuery(Addr addr);
406};
407
408} // namespace memory
409} // namespace gem5
410
411#endif
AbstractMemory declaration.
const std::string _name
Definition named.hh:41
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition packet.hh:295
Ports are used to interface objects to each other.
Definition port.hh:62
std::shared_ptr< Random > RandomPtr
Definition random.hh:65
static RandomPtr genRandom()
Definition random.hh:68
A ResponsePort is a specialization of a port.
Definition port.hh:349
Basic support for object serialization.
Definition serialize.hh:170
An abstract memory represents a contiguous block of physical memory, with an associated address range...
uint64_t size() const
Get the memory size.
A deferred packet stores a packet along with its scheduled transmission time.
Definition cfi_mem.hh:228
DeferredPacket(PacketPtr _pkt, Tick _tick)
Definition cfi_mem.hh:235
AddrRangeList getAddrRanges() const override
Get a list of the non-overlapping address ranges the owner is responsible for.
Definition cfi_mem.cc:471
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &_backdoor) override
Receive an atomic request packet from the peer, and optionally provide a backdoor to the data being a...
Definition cfi_mem.cc:485
void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
Definition cfi_mem.cc:492
bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
Definition cfi_mem.cc:505
void recvMemBackdoorReq(const MemBackdoorReq &req, MemBackdoorPtr &_backdoor) override
Receive a request for a back door to a range of memory.
Definition cfi_mem.cc:498
void recvRespRetry() override
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
Definition cfi_mem.cc:511
Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
Definition cfi_mem.cc:479
CfiMemory: This is modelling a flash memory adhering to the Common Flash Interface (CFI):
Definition cfi_mem.hh:73
EventFunctionWrapper releaseEvent
Definition cfi_mem.hh:310
const uint16_t bankWidth
Definition cfi_mem.hh:337
static const uint8_t STATUS_ERASE_ERROR
Possible in the status register.
Definition cfi_mem.hh:99
void recvFunctional(PacketPtr pkt)
Definition cfi_mem.cc:261
const uint16_t vendorID
Definition cfi_mem.hh:335
CfiCommand readState
Previous command (issued in the previous write cycle)
Definition cfi_mem.hh:340
Tick recvAtomic(PacketPtr pkt)
Definition cfi_mem.cc:241
uint64_t readDeviceID(Addr flash_address) const
Helper function to read the device identifier after the read state machine is put in the CfiCommand::...
Definition cfi_mem.cc:668
static const uint8_t STATUS_PROGRAM_LOCK_BIT
Definition cfi_mem.hh:102
bool isBusy
Track the state of the memory as either idle or busy, no need for an enum with only two states.
Definition cfi_mem.hh:290
EventFunctionWrapper dequeueEvent
Definition cfi_mem.hh:318
static const uint8_t STATUS_LOCK_ERROR
Definition cfi_mem.hh:100
static const uint8_t STATUS_READY
Definition cfi_mem.hh:101
std::list< DeferredPacket > packetQueue
Internal (unbounded) storage to mimic the delay caused by the actual memory access.
Definition cfi_mem.hh:277
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition cfi_mem.cc:421
void recvMemBackdoorReq(const MemBackdoorReq &req, MemBackdoorPtr &_backdoor)
Definition cfi_mem.cc:279
ProgramBuffer programBuffer
Definition cfi_mem.hh:347
bool recvTimingReq(PacketPtr pkt)
Definition cfi_mem.cc:287
void write(PacketPtr pkt)
Write request to the CFI Memory.
Definition cfi_mem.cc:527
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition cfi_mem.cc:229
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
Definition cfi_mem.cc:431
void handleCommand(CfiCommand command)
Service a new command issued to the flash device.
Definition cfi_mem.cc:685
const uint8_t numberOfChips
Definition cfi_mem.hh:333
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &_backdoor)
Definition cfi_mem.cc:251
@ BUFFER_SIZE_READ
This is not a real command, but it is used by the internal model only to represent the 2nd write cycl...
Tick getLatency() const
Detemine the latency.
Definition cfi_mem.cc:406
bool retryReq
Remember if we have to retry an outstanding request that arrived while we were busy.
Definition cfi_mem.hh:296
uint64_t cfiQuery(Addr addr)
Return the selected entry in the CFI table.
Definition cfi_mem.cc:743
void read(PacketPtr pkt)
Read request to the CFI Memory.
Definition cfi_mem.cc:632
const uint16_t deviceID
Definition cfi_mem.hh:336
uint8_t cfiQueryTable[61]
Definition cfi_mem.hh:349
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition cfi_mem.cc:454
void release()
Release the memory after being busy and send a retry if a request was rejected in the meanwhile.
Definition cfi_mem.cc:370
void cfiAccess(PacketPtr pkt)
Make a read/write access to the CFI Memory.
Definition cfi_mem.cc:517
bool retryResp
Remember if we failed to send a response and are awaiting a retry.
Definition cfi_mem.hh:302
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
Definition cfi_mem.hh:331
const Tick latency_var
Fudge factor added to the latency.
Definition cfi_mem.hh:270
void dequeue()
Dequeue a packet from our internal packet queue and move it to the port where it will be sent as soon...
Definition cfi_mem.cc:381
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition cfi_mem.cc:442
const Tick latency
Latency from that a request is accepted until the response is ready to be sent.
Definition cfi_mem.hh:265
const double bandwidth
Bandwidth in ticks per byte.
Definition cfi_mem.hh:284
Random::RandomPtr rng
Definition cfi_mem.hh:351
STL vector class.
Definition stl.hh:37
DrainState
Object drain/handover states.
Definition drain.hh:75
Bitfield< 0 > p
Bitfield< 3 > addr
Definition types.hh:84
Bitfield< 5 > lock
Definition types.hh:82
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
const PortID InvalidPortID
Definition types.hh:246
std::ostream CheckpointOut
Definition serialize.hh:66
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition types.hh:245
uint64_t Tick
Tick count type.
Definition types.hh:58
Metadata about the erase blocks in flash.
Definition cfi_mem.hh:106
uint32_t blockIdx(Addr block_address) const
Definition cfi_mem.cc:88
void erase(PacketPtr pkt)
Erase a single block.
Definition cfi_mem.cc:755
void unlock(Addr block_address)
Unlock the block pointed by the block_address parameter.
Definition cfi_mem.cc:70
bool isLocked(Addr block_address) const
Return true if the block pointed by the block_address parameter is locked.
Definition cfi_mem.cc:58
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition cfi_mem.cc:82
BlockData(const CfiMemory &_parent, ssize_t number, ssize_t size)
Definition cfi_mem.hh:107
ssize_t number() const
Number of erase blocks in flash memory.
Definition cfi_mem.hh:148
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition cfi_mem.cc:76
ssize_t size() const
Size in bytes of a single erase block.
Definition cfi_mem.hh:151
Word Buffer used by the BUFFERED PROGRAM command to write (program) chunks of words to flash.
Definition cfi_mem.hh:175
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition cfi_mem.cc:141
void setup(ssize_t buffer_size)
Start buffering.
Definition cfi_mem.cc:94
static const ssize_t MAX_BUFFER_SIZE
Definition cfi_mem.hh:178
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition cfi_mem.cc:149
std::vector< uint8_t > buffer
Definition cfi_mem.hh:212
ProgramBuffer(const CfiMemory &_parent)
Definition cfi_mem.hh:180
bool write(Addr flash_address, void *data_ptr, ssize_t size)
Write data into the buffer.
Definition cfi_mem.cc:107
Definition mem.h:38

Generated on Mon Jan 13 2025 04:28:38 for gem5 by doxygen 1.9.8