gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
flash_device.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2015 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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  *
37  * Authors: Rene de Jong
38  */
39 #ifndef __DEV_ARM_FLASH_DEVICE_HH__
40 #define __DEV_ARM_FLASH_DEVICE_HH__
41 
42 #include <deque>
43 
44 #include "base/statistics.hh"
45 #include "debug/FlashDevice.hh"
46 #include "dev/arm/abstract_nvm.hh"
47 #include "enums/DataDistribution.hh"
48 #include "params/FlashDevice.hh"
49 #include "sim/serialize.hh"
50 
56 class FlashDevice : public AbstractNVM
57 {
58  public:
59 
61  FlashDevice(const FlashDeviceParams*);
62  ~FlashDevice();
63 
65  DrainState drain() override;
66  void checkDrain();
67 
68  void serialize(CheckpointOut &cp) const override;
69  void unserialize(CheckpointIn &cp) override;
70 
71  private:
73  enum Actions {
82  };
83 
85  struct PageMapEntry {
86  uint32_t page;
87  uint32_t block;
88  };
89 
90  struct CallBackEntry {
92  Callback *function;
93  };
94 
98 
103 
107  };
108 
110  void initializeMemory(uint64_t disk_size, uint32_t sector_size) override
111  {
112  initializeFlash(disk_size, sector_size);
113  }
114 
115  void readMemory(uint64_t address, uint32_t amount,
116  Callback *event) override
117  {
118  accessDevice(address, amount, event, ActionRead);
119  }
120 
121  void writeMemory(uint64_t address, uint32_t amount,
122  Callback *event) override
123  {
124  accessDevice(address, amount, event, ActionWrite);
125  }
126 
128  void initializeFlash(uint64_t disk_size, uint32_t sector_size);
129 
131  void accessDevice(uint64_t address, uint32_t amount, Callback *event,
132  Actions action);
133 
135  void actionComplete();
136 
138  Tick remap(uint64_t logic_page_addr);
139 
141  Tick accessTimes(uint64_t address, Actions accesstype);
142 
144  void clearUnknownPages(uint32_t index);
145 
147  bool getUnknownPages(uint32_t index);
148 
150  void regStats() override;
151 
153  uint64_t diskSize;
154  const uint32_t blockSize;
155  const uint32_t pageSize;
156 
158  const uint32_t GCActivePercentage;
159 
164 
166  const Enums::DataDistribution dataDistribution;
167  const uint32_t numPlanes;
168 
171 
173  uint32_t pagesPerBlock;
174  uint32_t pagesPerDisk;
175  uint32_t blocksPerDisk;
176 
177  uint32_t planeMask;
178 
190 
193 
196 };
197 #endif //__DEV_ARM_FLASH_DEVICE_HH__
uint32_t planeMask
uint32_t pagesPerBlock
Disk dimensions in pages and blocks.
void serialize(CheckpointOut &cp) const override
Serialize; needed to create checkpoints.
void actionComplete()
Event rescheduler.
const uint32_t blockSize
Bitfield< 30, 0 > index
void regStats() override
Stats register function.
std::vector< uint32_t > blockEmptyEntries
number of empty entries
const uint32_t numPlanes
Stats::Scalar totalGCActivations
Amount of GC activations.
Definition: flash_device.hh:97
Generic callback class.
Definition: callback.hh:41
const Tick eraseLatency
DrainState
Object drain/handover states.
Definition: drain.hh:71
Stats::Histogram writeAccess
Histogram of address accesses.
std::vector< struct PageMapEntry > locationTable
address to logic place has a block and a page field
std::vector< uint32_t > unknownPages
when the disk is first started we are unsure of the number of used pages, this variable will help det...
Stats::Histogram fileSystemAccess
Stats::Histogram writeLatency
Histogram of access latencies.
void unserialize(CheckpointIn &cp) override
Unserialize; needed to restore from checkpoints.
Tick accessTimes(uint64_t address, Actions accesstype)
Access time calculator.
void initializeMemory(uint64_t disk_size, uint32_t sector_size) override
Device access functions Inherrited from AbstractNVM.
const Enums::DataDistribution dataDistribution
Flash organization.
void clearUnknownPages(uint32_t index)
Function to indicate that a page is known.
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2475
DrainState drain() override
Checkpoint functions.
EventWrapper< FlashDevice,&FlashDevice::actionComplete > planeEvent
Completion event.
void checkDrain()
Checkdrain; needed to enable checkpoints.
void accessDevice(uint64_t address, uint32_t amount, Callback *event, Actions action)
Flash action function.
FlashDevice(const FlashDeviceParams *)
Initialize functions.
Definition: flash_device.cc:75
struct FlashDeviceStats stats
RequestHandler stats.
uint64_t Tick
Tick count type.
Definition: types.hh:63
A copy involves taking all the used pages from a block and store it in another.
Definition: flash_device.hh:81
const Tick readLatency
Access latencies.
A simple histogram stat.
Definition: statistics.hh:2551
void writeMemory(uint64_t address, uint32_t amount, Callback *event) override
std::vector< uint32_t > blockValidEntries
number of valid entries per block
Bitfield< 10, 5 > event
Flash Device model The Flash Device model is a timing model for a NAND flash device.
Definition: flash_device.hh:56
std::vector< std::deque< struct CallBackEntry > > planeEventQueue
This vector of queues keeps track of all the callbacks per plane.
std::ostream CheckpointOut
Definition: serialize.hh:67
Actions
Defines the possible actions to the flash.
Definition: flash_device.hh:73
Tick remap(uint64_t logic_page_addr)
FTL functionality.
void readMemory(uint64_t address, uint32_t amount, Callback *event) override
Access functions Access function to simulate a read/write access to the memory.
const uint32_t pageSize
This is an interface between the disk interface (which will handle the disk data transactions) and th...
Definition: abstract_nvm.hh:55
uint32_t blocksPerDisk
bool getUnknownPages(uint32_t index)
Function to test if a page is known.
uint64_t diskSize
Disk sizes in bytes.
const uint32_t GCActivePercentage
Garbage collection algorithm emulator.
uint32_t pagesPerDisk
Every logical address maps to a physical block and a physical page.
Definition: flash_device.hh:85
const Tick writeLatency
void initializeFlash(uint64_t disk_size, uint32_t sector_size)
Initialization function; called when all disk specifics are known.

Generated on Fri Jun 9 2017 13:03:45 for gem5 by doxygen 1.8.6