blob: f69e8a7c90fd80f2c4d59063048389ad36917bb5 [file] [log] [blame]
Zane Shelley871adec2019-07-30 11:01:39 -05001#pragma once
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -05002
Zane Shelley52cb1a92019-08-21 14:38:31 -05003#include <hei_includes.hpp>
4#include <register/hei_register.hpp>
5#include <util/hei_bit_string.hpp>
6
Zane Shelley871adec2019-07-30 11:01:39 -05007namespace libhei
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -05008{
9
Zane Shelley61565dc2019-09-18 21:57:10 -050010/**
Zane Shelley8deb0902019-10-14 15:52:27 -050011 * @brief An abstract class containing information (e.g. address, type, length,
12 * etc.) for an actual hardware register.
Zane Shelley61565dc2019-09-18 21:57:10 -050013 *
14 * Hardware access:
15 *
16 * Actual hardware access is defined by the user application via the user
17 * interface APIs. In order to tell the user application which chip to target,
Zane Shelley53efc352019-10-03 21:46:39 -050018 * the user application will give the isolator a list of pointers to its
19 * objects. They will then be passed into the public functions of this class
20 * and eventually given back to the user application when hardware access is
21 * needed.
Zane Shelleyd0af3582019-09-19 10:48:59 -050022 *
23 * Register cache:
24 *
25 * In order to save memory space, each instance of this class does not store
26 * the contents of the target hardware register. Instead, that data is stored
Paul Greenwood6574f6e2019-09-17 09:43:22 -050027 * in a register cache, which is a static variable defined in this class. This
Zane Shelleyd0af3582019-09-19 10:48:59 -050028 * allows us to store only what we need. The cache can also be thought of as a
29 * snapshot of the registers at the time of isolation, which can be useful if
30 * the hardware is still running and register values could change.
31 *
32 * In order to ensure stale data isn't used from the cache, call
33 * HardwareRegister::flushAll() before beginning isolation on a new attention.
34 * Also, HardwareRegister::flushAll() should be called when the isolator is
35 * uninitialized before the rest of the isolation objects are deleted.
Zane Shelley61565dc2019-09-18 21:57:10 -050036 */
Zane Shelleycd36f432019-08-30 21:22:07 -050037class HardwareRegister : public Register
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -050038{
39 public:
Zane Shelley8deb0902019-10-14 15:52:27 -050040 /** @brief Pure virtual destructor. */
41 virtual ~HardwareRegister() = 0;
42
43 protected:
Zane Shelley8deb0902019-10-14 15:52:27 -050044 /**
45 * @brief Constructor from components.
Zane Shelley7667b712020-05-11 20:45:40 -050046 * @param i_id Unique ID for this register.
47 * @param i_instance Instance of this register
48 * @param i_flags Attribute flags for this register.
Zane Shelley8deb0902019-10-14 15:52:27 -050049 */
Zane Shelley5ec88102020-05-11 21:08:25 -050050 HardwareRegister(RegisterId_t i_id, Instance_t i_instance,
51 RegisterAttributeFlags_t i_flags) :
Zane Shelley7f7a42d2019-10-28 13:28:31 -050052 Register(),
Zane Shelley5ec88102020-05-11 21:08:25 -050053 iv_id(i_id), iv_instance(i_instance), iv_flags(i_flags)
Zane Shelley8deb0902019-10-14 15:52:27 -050054 {}
55
56 private: // Instance variables
Zane Shelley8deb0902019-10-14 15:52:27 -050057 /** The unique ID for this register. */
58 const RegisterId_t iv_id;
59
60 /** A register may have multiple instances. All of which will have the same
61 * ID. This variable is used to distinguish between each instance of the
62 * register. */
Zane Shelley13b182b2020-05-07 20:23:45 -050063 const Instance_t iv_instance;
Zane Shelley8deb0902019-10-14 15:52:27 -050064
65 /** The hardware access level of this register (read/write, read-only,
66 * write-only, etc.). */
Zane Shelley7667b712020-05-11 20:45:40 -050067 const RegisterAttributeFlags_t iv_flags;
Zane Shelley8deb0902019-10-14 15:52:27 -050068
69 public: // Accessor functions
Zane Shelley8deb0902019-10-14 15:52:27 -050070 /* @return The unique ID for this register. */
Zane Shelley7f7a42d2019-10-28 13:28:31 -050071 RegisterId_t getId() const
72 {
73 return iv_id;
74 }
Zane Shelley8deb0902019-10-14 15:52:27 -050075
76 /* @return The instance of this register. */
Zane Shelley13b182b2020-05-07 20:23:45 -050077 Instance_t getInstance() const
Zane Shelley7f7a42d2019-10-28 13:28:31 -050078 {
79 return iv_instance;
80 }
Zane Shelley8deb0902019-10-14 15:52:27 -050081
Zane Shelley7667b712020-05-11 20:45:40 -050082 /** @return True if given flag is enabled, false if disabled. */
83 bool queryAttrFlag(RegisterAttributeFlags_t i_flag) const
Zane Shelley7f7a42d2019-10-28 13:28:31 -050084 {
Zane Shelley7667b712020-05-11 20:45:40 -050085 return (0 != (iv_flags & i_flag));
Zane Shelley7f7a42d2019-10-28 13:28:31 -050086 }
Zane Shelley8deb0902019-10-14 15:52:27 -050087
88 // NOTE: The following are determined by child classes.
89
90 /** @return This register's type. */
Zane Shelley5ec88102020-05-11 21:08:25 -050091 virtual RegisterType_t getType() const = 0;
Zane Shelley8deb0902019-10-14 15:52:27 -050092
93 /** @return The address of this register. */
94 virtual RegisterAddress_t getAddress() const = 0;
95
96 /** @return The size (in bytes) of this register. */
97 virtual size_t getSize() const = 0;
98
Zane Shelley75e68e92019-10-18 16:16:23 -050099 public: // Operators
Zane Shelley75e68e92019-10-18 16:16:23 -0500100 /** @brief Equals operator. */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500101 bool operator==(const HardwareRegister& i_r) const
Zane Shelley75e68e92019-10-18 16:16:23 -0500102 {
Zane Shelley981e56a2020-05-11 21:24:20 -0500103 // In general, comparing the ID and instance should be enough. However,
104 // no error will be thrown when adding the register to the flyweights
105 // and any other field differs. Therfore all fields will be used and
106 // invalid duplicates will be found when adding the register pointers
107 // to the IsolationChip objects.
108 return (getAddress() == i_r.getAddress()) && (getId() == i_r.getId()) &&
109 (getInstance() == i_r.getInstance()) &&
Zane Shelley5ec88102020-05-11 21:08:25 -0500110 (getType() == i_r.getType());
Zane Shelley75e68e92019-10-18 16:16:23 -0500111 }
112
113 /** @brief Less than operator. */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500114 bool operator<(const HardwareRegister& i_r) const
Zane Shelley75e68e92019-10-18 16:16:23 -0500115 {
Zane Shelley981e56a2020-05-11 21:24:20 -0500116 // In general, comparing the ID and instance should be enough. However,
117 // no error will be thrown when adding the register to the flyweights
118 // and any other field differs. Therfore all fields will be used and
119 // invalid duplicates will be found when adding the register pointers
120 // to the IsolationChip objects.
Zane Shelley5ec88102020-05-11 21:08:25 -0500121 if (getAddress() < i_r.getAddress())
Zane Shelley75e68e92019-10-18 16:16:23 -0500122 {
123 return true;
124 }
Zane Shelley5ec88102020-05-11 21:08:25 -0500125 else if (getAddress() == i_r.getAddress())
Zane Shelley75e68e92019-10-18 16:16:23 -0500126 {
Zane Shelley981e56a2020-05-11 21:24:20 -0500127 if (getId() < i_r.getId())
128 {
129 return true;
130 }
131 else if (getId() == i_r.getId())
132 {
133 if (getInstance() < i_r.getInstance())
134 {
135 return true;
136 }
137 else if (getInstance() == i_r.getInstance())
138 {
139 return (getType() < i_r.getType());
140 }
141 }
Zane Shelley75e68e92019-10-18 16:16:23 -0500142 }
143
144 return false;
145 }
146
Zane Shelley8deb0902019-10-14 15:52:27 -0500147 public:
Zane Shelley65ed96a2019-10-14 13:06:11 -0500148 /** Function overloaded from parent Register class. */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500149 const BitString* getBitString(const Chip& i_chip) const;
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -0500150
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -0500151 /**
Zane Shelley61565dc2019-09-18 21:57:10 -0500152 * @brief Reads a register from hardware via the user interface APIs.
Zane Shelley53efc352019-10-03 21:46:39 -0500153 * @param i_chip The target chip in which this register belongs.
Zane Shelley61565dc2019-09-18 21:57:10 -0500154 * @param i_force When false, this function will only read from hardware if
155 * an entry for this instance does not already exist in the
156 * register cache. When true, the entry in the register
157 * cache is flushed, if it exists. Then this function will
158 * read from hardware and update the cache.
159 * @return See the return code from the registerRead() user interface API.
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -0500160 */
Zane Shelley2f4aa912020-05-08 14:28:18 -0500161 bool read(const Chip& i_chip, bool i_force = false) const;
Zane Shelley61565dc2019-09-18 21:57:10 -0500162
Ben Tyner7b3420b2020-05-11 10:52:07 -0500163#ifdef __HEI_ENABLE_HW_WRITE
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -0500164
165 /**
Zane Shelley61565dc2019-09-18 21:57:10 -0500166 * @brief Writes the value stored in the register cache to hardware via the
167 * user interface APIs.
Zane Shelley53efc352019-10-03 21:46:39 -0500168 * @param i_chip The target chip in which this register belongs.
Zane Shelley61565dc2019-09-18 21:57:10 -0500169 * @return See the return code from the registerWrite() user interface API.
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -0500170 */
Zane Shelley2f4aa912020-05-08 14:28:18 -0500171 bool write(const Chip& i_chip) const;
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -0500172
Ben Tyner7b3420b2020-05-11 10:52:07 -0500173#endif // __HEI_ENABLE_HW_WRITE
Zane Shelley61565dc2019-09-18 21:57:10 -0500174
Zane Shelleyafa669a2019-10-15 13:23:17 -0500175 protected:
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -0500176 /**
Zane Shelleyafa669a2019-10-15 13:23:17 -0500177 * @brief Provides access to this register's BitString.
178 *
179 * WARNING: Allowing public access to this function may be dangerous. For
180 * now it should be left as protected.
181 *
Zane Shelley53efc352019-10-03 21:46:39 -0500182 * @param i_chip The target chip in which this register belongs.
Zane Shelleyafa669a2019-10-15 13:23:17 -0500183 * @return A reference to the BitString.
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -0500184 */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500185 BitString& accessBitString(const Chip& i_chip);
Zane Shelley61565dc2019-09-18 21:57:10 -0500186
Zane Shelleyd0af3582019-09-19 10:48:59 -0500187 private: // Register cache class variable
Zane Shelleyd0af3582019-09-19 10:48:59 -0500188 /**
189 * @brief Caches the contents of registers read from hardware.
190 *
191 * The goal is to create a snapshot of the hardware register contents as
192 * close to the reported attention as possible. This snapshot is then used
193 * for additional analysis/debug when needed.
194 */
195 class Cache
196 {
197 public:
Zane Shelleyd0af3582019-09-19 10:48:59 -0500198 /** @brief Default constructor. */
199 Cache() = default;
200
201 /** @brief Destructor. */
202 ~Cache() = default;
203
204 /** @brief Copy constructor. */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500205 Cache(const Cache&) = delete;
Zane Shelleyd0af3582019-09-19 10:48:59 -0500206
207 /** @brief Assignment operator. */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500208 Cache& operator=(const Cache&) = delete;
Zane Shelleyd0af3582019-09-19 10:48:59 -0500209
210 /**
211 * @brief Queries if a specific entry exists in the cache.
212 * @param i_chip The target chip.
213 * @param i_hwReg The target register.
214 * @return True if the entry exists, false otherwise.
215 */
Zane Shelley7f7a42d2019-10-28 13:28:31 -0500216 bool query(const Chip& i_chip, const HardwareRegister* i_hwReg) const;
Zane Shelleyd0af3582019-09-19 10:48:59 -0500217
218 /**
219 * @brief Returns the data buffer for the given chip and register.
220 * @param i_chip The target chip.
221 * @param i_hwReg The target register.
222 * @return A reference to the BitString containing the register data.
223 * @note If an entry does not exist in the cache, an entry will be
224 * created and the BitString will be initialized to 0.
225 */
Zane Shelley7f7a42d2019-10-28 13:28:31 -0500226 BitString& access(const Chip& i_chip, const HardwareRegister* i_hwReg);
Zane Shelleyd0af3582019-09-19 10:48:59 -0500227
228 /** @brief Flushes entire contents from cache. */
229 void flush();
230
231 /**
232 * @brief Removes a single register from the cache.
233 * @param i_chip The target chip.
234 * @param i_hwReg The target register.
235 */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500236 void flush(const Chip& i_chip, const HardwareRegister* i_hwReg);
Zane Shelleyd0af3582019-09-19 10:48:59 -0500237
238 private:
Zane Shelleyd0af3582019-09-19 10:48:59 -0500239 /**
240 * @brief Stores a BitStringBuffer for each HardwareRegister per Chip.
241 *
242 * The HardwareRegister keys will just be pointers to the isolation
243 * objects created in the main initialize() API. Those should exist
244 * until the main uninitialize() API is called. It is important that the
245 * cache is flushed at the beginning of the uninitialize() API before
246 * the rest of the isolation objects are deleted.
247 *
248 * The Chip keys are copies of the objects passed to the isolator
249 * because the user application is responsible for storage of the
250 * objects passed to the isolator. We don't want to chance a Chip was
251 * created as a local variable that goes out of scope, or other similar
252 * situations.
253 */
254 std::map<Chip, std::map<const HardwareRegister*, BitString*>> iv_cache;
255 };
256
257 /** This allows all HardwareRegister objects access to the cache. */
258 static Cache cv_cache;
259
260 public: // Register cache management functions.
Zane Shelleyd0af3582019-09-19 10:48:59 -0500261 /** @brief Flushes the entire register cache. */
Zane Shelley7f7a42d2019-10-28 13:28:31 -0500262 static void flushAll()
263 {
264 cv_cache.flush();
265 }
Zane Shelleyd0af3582019-09-19 10:48:59 -0500266
Zane Shelley53efc352019-10-03 21:46:39 -0500267 /**
268 * @brief Flushes this register from the cache.
269 * @param i_chip The target chip in which this register belongs.
270 */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500271 void flush(const Chip& i_chip) const
Zane Shelleyd0af3582019-09-19 10:48:59 -0500272 {
Zane Shelley83da2452019-10-25 15:45:34 -0500273 cv_cache.flush(i_chip, this);
Zane Shelleyd0af3582019-09-19 10:48:59 -0500274 }
275
Zane Shelley53efc352019-10-03 21:46:39 -0500276 private: // Register cache management functions.
Zane Shelley53efc352019-10-03 21:46:39 -0500277 /**
278 * @param i_chip The target chip in which this register belongs.
279 * @return True if an entry for this register exist in this cache.
280 */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500281 bool queryCache(const Chip& i_chip) const
Zane Shelleyd0af3582019-09-19 10:48:59 -0500282 {
Zane Shelley83da2452019-10-25 15:45:34 -0500283 return cv_cache.query(i_chip, this);
Zane Shelley53efc352019-10-03 21:46:39 -0500284 }
285
286 /**
287 * @param i_chip The target chip in which this register belongs.
288 * @return A reference to this register's BitString in cache.
289 */
Zane Shelleyfe27b652019-10-28 11:33:07 -0500290 BitString& accessCache(const Chip& i_chip) const
Zane Shelley53efc352019-10-03 21:46:39 -0500291 {
Zane Shelley83da2452019-10-25 15:45:34 -0500292 return cv_cache.access(i_chip, this);
Zane Shelleyd0af3582019-09-19 10:48:59 -0500293 }
Zane Shelleyfd3f9cc2019-07-29 15:02:24 -0500294};
295
Zane Shelley4caa0432020-05-12 22:29:02 -0500296/** Pointer management for hardware registers. */
297using HardwareRegisterPtr = std::shared_ptr<const HardwareRegister>;
298
Zane Shelley871adec2019-07-30 11:01:39 -0500299} // end namespace libhei